-
Notifications
You must be signed in to change notification settings - Fork 0
/
overview.html
560 lines (547 loc) · 24.8 KB
/
overview.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta lang="en">
<title>MaFo5 - Project Overview</title>
<meta name="description" content="These are my current projects.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="stylesheets/dark.css" />
<style>
body {
--color-success-darker: #00421b;
--color-success: #007E33;
--color-success-lighter: #00C851;
--color-fail-darker: #cc000080;
--color-fail: #CC0000;
--color-fail-lighter: #FF4444;
--color-disabled: #555555;
align-content: start;
animation: start;
display: flex;
font-family: Impact, Charcoal, sans-serif;
grid-auto-columns: max-content;
grid-column-gap: 1rem;
grid-template-columns: auto auto;
justify-content: center;
flex-wrap: wrap;
}
header {
width: 100%;
display: grid;
justify-content: center;
}
dl, dt, dd {
list-style: none;
margin: 0;
padding: 0;
display: block
}
dl {
display: grid;
justify-content: center;
grid-template-columns: max-content 1fr;
grid-column-gap: 1rem;
grid-row-gap: 0.2rem;
}
dd {
justify-self: end;
text-align: end;
}
dt, dd.empty, dd.done, dd.fail, dd.onHold {
font-size: 0.7rem;
}
section {
margin: 0 1rem 1rem 0;
}
ul {
padding-left: 1rem;
}
li {
line-height: 1.5rem;
list-style: none;
padding-left: 1.5rem;
position: relative;
}
li::before {
border-radius: 1em;
border: 0.1rem solid white;
content: ' ';
display: inline-block;
height: 1rem;
left: 0;
position: absolute;
top: 0.15em;
width: 1rem;
}
.success, .success a, .done, .done a {
color: var(--color-success);
}
.fail, .fail a {
color: var(--color-fail);
}
li.done, li.done a {
color: var(--color-success);
text-decoration: line-through;
}
li.done::before {
border-color: var(--color-success);
background-color: var(--color-success);
color: black;
}
li.fail, li.fail a {
color: var(--color-fail);
text-decoration: line-through;
}
li.fail::before {
border-color: var(--color-fail);
background-color: var(--color-fail);
color: black;
}
.onHold, .past {
color: var(--color-disabled);
border-color: var(--color-disabled);
}
li.onHold::before, .onHold li::before {
border-color: var(--color-disabled);
}
.onHold.done, .onHold li.done {
color: var(--color-success-darker);
}
.onHold.fail {
color: var(--color-fail-darker);
}
li.onHold.done::before, .onHold li.done::before {
border-color: var(--color-success-darker);
background-color: var(--color-success-darker);
}
.empty {
font-style: italic;
}
.hideDone.done, .hideDone .done {
display: none;
}
@media screen and (min-width: 500px) {
dl {
grid-template-columns: max-content 1fr max-content 1fr;
}
}
@media screen and (min-width: 700px) {
header {
grid-template-columns: 1fr 1fr 1fr;
}
dl {
grid-template-columns: max-content 1fr;
}
}
@media screen and (min-width: 1000px) {
header {
grid-template-columns: 1fr 1fr 1fr;
}
dl {
grid-template-columns: max-content 1fr max-content 1fr;
}
}
</style>
</head>
<body>
<header>
<section>
<h1>Woche 46</h1>
<dl>
<dt class="">Montag</dt>
<dd class="">Review Legal Texts</dd>
<dt class="">Dienstag</dt>
<dd class="">Grobkonzept OXventure</dd>
<dt class="">Mittwoch</dt>
<dd class="">Therapie</dd>
<dt class="">Donnerstag</dt>
<dd class=""></dd>
<dt class="">Freitag</dt>
<dd class=""></dd>
<dt class="">Samstag</dt>
<dd class=""></dd>
<dt class="">Sonntag</dt>
<dd class=""></dd>
</dl>
</section>
<section id="year">
<h1>Jahr 2020</h1>
<dl>
<dt class="done">Januar</dt>
<dd class="done">Sk1llSeekers</dd>
<dt class="fail">Februar</dt>
<dd class="fail">HeroForFun</dd>
<dt class="">März</dt>
<dd class="empty">nichts</dd>
<dt class="">April</dt>
<dd class="empty">nichts</dd>
<dt class="">Mai</dt>
<dd class="empty">nichts</dd>
<dt class="fail">Juni</dt>
<dd class="fail">PEERS Beta</dd>
<dt class="done">Juli</dt>
<dd class="done">API Monitor Release</dd>
<dt class="done">August</dt>
<dd class="done">SimpleAWS Release</dd>
<dt>September</dt>
<dd class="fail">PEERS Beta</dd>
<dt>Oktober</dt>
<dd class="fail">HeroForFun</dd>
<dt>November</dt>
<dd class="">OXventure Part1</dd>
<dt>Dezember</dt>
<dd class="">PEERS Beta/live</dd>
</dl>
</section>
<section>
<h1>Long Game</h1>
<dl>
<dt>2020 <small>(38)</small></dt>
<dd class="empty">nichts</dd>
<dt>2021 <small>(39)</small></dt>
<dd class="">Unternehmertum</dd>
<dt>2022 <small>(40)</small></dt>
<dd class="">Wohnungskauf</dd>
<dt>2023 <small>(41)</small></dt>
<dd class="">Exit</dd>
<dt>2024 <small>(42)</small></dt>
<dd class="">Travel the World</dd>
</dl>
</section>
</header>
<section>
<h1>Action List</h1>
<ul>
<li>Long Game evaluieren</li>
<li><a href="https://mafo5.github.io/overview.html">Todos</a> aktualisieren</li>
<li>Rückblickeintrag</li>
<li><a href="#">Brave New World</a> lesen</li>
<li><a href="https://github.com/mafo5/simpleAWS">SimpleAWS</a> weiterentwickeln</li>
<li><a href="https://github.com/mafo5/becomeAhero">HeorForFun</a> weiterentwickeln</li>
<li><a href="https://peers-mentoring.webflow.io/">PEERS</a> weiterentwickeln</li>
<!-- FIXME: On Hold: <li>Ihrke weiterentwickeln</li> -->
</ul>
</section>
<section>
<h1>Todo List - November (09.11.20)</h1>
<ul>
<li class="done">Stefan Hamm anschreiben wegen Projekt Q1/21</li>
<li class="done">Telefonat mit Dave wegen Projekt</li>
<li class="done">Homepage aktualisieren</li>
<li class="done">Crunchyroll SAS anschreiben</li>
<li class="done">BitingBit Meeting absagen (bis 30.10.20)</li>
<li class="done">zum Hautarzt Ersttermin gehen (29.10.20)</li>
<li>Orthopäde Termin machen</li>
<li>Freelance Marketing machen</li>
<li>HeroForFun Marketing machen</li>
<li>Nürnberg Besuch organisieren</li>
<li>Fallschirmsprung planen</li>
<li>Weihnachtsbaumständer fotografieren</li>
<li>Spint fotografieren</li>
<li>Wolle fotografieren</li>
<li>Vorhang fotografieren</li>
<li>Sport Handgelenk Dinger fotografieren</li>
<li>Offene Auktionen erstellen</li>
<li>Kisten in den Keller stellen</li>
<li>Retro schreiben</li>
</ul>
</section>
<section>
<h1>Ziele</h1>
<ul>
<li>Mein Leben bewusst (er)leben</li>
<li>Gesichertes Einkommen haben</li>
<li>Räumlich flexibel sein</li>
<li>Einen guten Ruf haben</li>
</ul>
</section>
<section>
<h1>Mein Leben bewusst (er)leben</h1>
<ul>
<li>Bewusstsein schärfen</li>
<li>Gesichertes Einkommen haben</li>
<li>Seite zur Eingabe der Monatskarten erstellen</li>
<li>Auswertung der Monatskarten-Eingaben erstellen</li>
<li>Fallschirmsprung durchführen</li>
<li>Lebenskollage erstellen</li>
</ul>
</section>
<section class="hideDone">
<h1>Bewusstsein schärfen</h1>
<ul>
<li class="done">Overview Page erstellen</li>
<li>Rückblick 2019 erstellen</li>
<li>Notizen zu Rückblick 2020 erstellen</li>
<li>Rückblick 2020 erstellen</li>
<li>Routine Page erstellen</li>
<li>Gaming Page erstellen</li>
</ul>
</section>
<section>
<h1>Gesichertes Einkommen haben</h1>
<ul>
<li class="done">Techsperto (Stefan Hamme/Victor) anschreiben wegen Projekt Q1/21</li>
<li>Guten Ruf aufbauen</li>
<li>Beta Launch von PEERs durchführen</li>
<li>eHealth (Frederik) anschreiben wegen Projekt Q1/21</li>
<li>Senacor (???) anschreiben wegen Projekt Q1/21</li>
<li>"Hero For Fun" veröffentlichen</li>
<li>"Handwash" veröffentlichen</li>
</ul>
</section>
<section>
<h1>Räumlich flexibel sein</h1>
<ul>
<li>Inventar mit Nutzungsintensität auflisten</li>
<li>Ungenutzte Dinge verkaufen</li>
<li>Mixer fotografieren</li>
<li>Mixer Aktionstext schreiben</li>
<li>Spint fotografieren</li>
<li>Spint Aktionstext schreiben</li>
</ul>
</section>
<section class="hideDone">
<h1>Einen guten Ruf haben</h1>
<ul>
<li class="done">API Monitor veröffentlichen</li>
<li>"Simple AWS" veröffentlichen</li>
<li>"Fake REST API" veröffentlichen</li>
<li>"ExampleApp" veröffentlichen</li>
<li>"Hero For Fun" veröffentlichen</li>
<li>"Handwash" veröffentlichen</li>
<li>"Agile Me" veröffentlichen</li>
</ul>
</section>
<section>
<h1>Auktionen</h1>
<ul>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/wandregal-slim-livingboard-30-x-25-x-1-9-cm/1216602399-88-3357">Wandregal</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/3-nerdy-schalen-ctrl-alt-del/1325902858-246-3357">Nerdschalen</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/weihnachtsschmuck-lichterkette-led/1216649875-246-3357">Lichterkette</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/metallbehaelter-mit-kaffeebild/1325913093-86-3357">Metallbehälter</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/ein-tassen-kaffeemaschine/1325915875-86-33577">Kaffeemaschine</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/deko-kanne/1325914594-86-3357">Kanne</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/milchkaenchen-aus-keramik/1325910333-86-3357">Milchkännchen</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/keramikbehaelter/1325909392-86-3357">Keramikbehälter</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/automatischer-korkenzieher/1325908098-86-3357">Korkenzieher</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/6-schnapsglaeser-mit-afrikabildern/1325906156-86-3357">Schnapsgläser</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/2-holzbehaelter-mit-kunststoffeinsatz/1325904655-86-3357">Holzbehälter</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/kaffeebox-mit-kaffeemass/1325901353-86-3357">Kaffeebox</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/4-smiley-schalen/1325899100-86-3357">Smileyschalen</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/weihnachtsschmuck-baumspitze-silbern/1216656246-246-3357">Baumspitze</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/weihnachtsschmuck-girlande-schneeflocke-ca-8m/1216639628-246-3357">Girlande</a></li>
<li><a href="https://www.ebay-kleinanzeigen.de/s-anzeige/glaeserset-mit-17-glaesern/1325917073-86-3357">Gläser</a></li>
</ul>
</section>
<section class="hideDone">
<h1>Lesen</h1>
<ul>
<li class="done"><a href="https://www.amazon.de/Keine-gro%C3%9Fe-Sache-Unternehmen-verwirklicht/dp/3453650069">keine große Sache</a></li>
<li>jeden Monat ein Buch lesen <span class="fail">(Status 7/12)</span></li>
<li><a href="https://www.amazon.de/dp/3596905737">Schöne neue Welt</a></li>
<li><a href="https://www.amazon.de/Radical-Candor-Revised-Updated-Saying/dp/1529038340">Radical Candor</a></li>
<li><a href="https://www.amazon.de/Design-Everyday-Things-Revised-Expanded/dp/0465050654">The Design of Everyday Things</a></li>
<li><a href="https://www.amazon.de/Knigge-f%C3%BCr-Softwarearchitekten-Peter-Hruschka/dp/3868028064">Knigge für Softwarearchitekten</a></li>
<li><a href="https://www.amazon.de/gp/product/1623367581">The Code of the Extraordinary Mind</a></li>
<li><a href="https://www.amazon.de/gp/product/1480247871">The Retrospective Handbook</a></li>
<li><a href="https://www.amazon.de/gp/product/0134841522">Mastering Professional Scrum</a></li>
<li><a href="https://www.amazon.de/gp/product/3426276704">Digitaler Burnout</a></li>
<li><a href="https://www.amazon.de/gp/product/0321503627">Growing Object-Oriented Software</a></li>
<li><a href="https://www.amazon.de/gp/product/3548060412">Factfulness</a></li>
<li><a href="https://www.amazon.de/gp/product/3328100342">Schnelles Denken, langsames Denken</a></li>
<li><a href="https://www.amazon.de/gp/product/1501124021">Principles: Life and Work</a></li>
</ul>
</section>
<section class="hideDone">
<h1>Lebenskollage</h1>
<ul>
<li class="done">Martina wegen Feedback/Todos fragen</li>
<li>Bild für App größer malen</li>
<li>zentrales Bild für Erfolg malen</li>
<li>Bild für Naturschutz malen</li>
<li>Bild für Schießen neu malen</li>
<li>Bild für Asien drehen und neu malen</li>
<li>kleine Bilder auf Leinwand übertragen</li>
</ul>
</section>
<section class="hideDone">
<h1>PEERS</h1>
<ul>
<li>Finanzplan erstellen (<a href="https://www.b-p-w.de/de/downloads/vorlagen/">BPW Vorlage</a>)</li>
<li>Businessplan erstellen (<a href="https://www.b-p-w.de/de/downloads/handbuch/">BPW Handbuch</a>)</li>
<li>Client Mobile fähig machen</li>
<li>Datenbank einrichten</li>
<li>Daten von Webflow zu AirTable transferieren</li>
</ul>
</section>
<section>
<h1>Hamjest Sinon Extension</h1>
<ul>
<li>regelmäßige Versionsprüfung erstellen (monatlich)</li>
<li>Empty Bug beheben</li>
</ul>
</section>
<section class="hideDone">
<h1>Simple AWS Tutorial</h1>
<ul>
<li class="done">App erstellen</li>
<li class="done">GitHub Actions anlegen</li>
<li class="done">Docker Images erstellen</li>
<li class="done">Docker Images zu Amazon transferieren</li>
<li class="done"><a href="https://github.com/nyaascii/package-version/issues/3">Bug VersionTag</a> lösen</li>
<li>AWS Prozesse löschen</li>
<li>Docker Images in Amazon Cloud starten</li>
<li>MongoDB durch DynamoDB ersetzen</li>
<li>S3 als Datenquelle nutzen</li>
<li>AWS Daten löschen</li>
</ul>
</section>
<section class="hideDone">
<h1>API Monitor</h1>
<ul>
<li class="done">API aufrufen</li>
<li class="done">Action zum API Call erzeugen</li>
<li class="done">API Call Ergebnis abspeichern</li>
<li class="done">API Call im Interval abrufen</li>
<li class="done">Liste von Konfigurationen darstellen</li>
<li class="done">Ergebnisse darstellen</li>
<li class="done">Konfiguration darstellen</li>
<li class="done">Konfiguration ändern</li>
<li class="done">List View designen</li>
<li class="done">Tests Preview</li>
<li class="done">Bug Github Diagram lösen</li>
<li class="done">Tests Details</li>
<li class="done">Konfigurationsbearbeitung designen</li>
<li class="done">Back Button einbauen</li>
<li class="done">Konfiguration speichern beim Testen</li>
<li class="done">Konfiguration per URL erzeugen</li>
<li class="done">Indicator</li>
<li class="done">clear storage button</li>
<li class="done">Save As JSON</li>
<li class="done">Load from JSON</li>
<li class="done">info modal</li>
<li class="done">Response Details</li>
<li class="done">download local proxy</li>
<li class="done">Release 1.0.0</li>
<li>Ergebnisse zoomen: 1h, 24h, 7d, 30d (chartjs 3.0.0)</li>
<li>Testen von APIs: https://github.com/public-apis/public-apis</li>
<li>OAuth</li>
<li>Upcoming feature List in ?</li>
<li>Bugfix Sync Last Response</li>
<li>Scenario: not successful first response</li>
<li>Scenario: successful non numeric first response</li>
<li>Scenario: successful numeric first response</li>
<li>Scenario: not successful later response</li>
<li>Scenario: URL change</li>
</ul>
</section>
<section class="hideDone">
<h1>FakeRestAPI</h1>
<ul>
<li>Feature-Stand ermitteln</li>
<li>README.md erstellen</li>
<li>Version auf NPM deployen</li>
</ul>
</section>
<section class="hideDone">
<h1>ExampleApp</h1>
<ul>
<li>Feature Konzept erstellen</li>
<li>Atome extrahieren</li>
<li>Moleküle extrahieren</li>
<li>Organismen extrahieren</li>
<li>Templates extrahieren</li>
<li>neue Version Design Lib auf NPM deployen</li>
<li>App auf GitHub-Pages deployen</li>
<li>React Implementierung erstellen</li>
<li>VueJS Implementierung erstellen</li>
<li>WebComponents Implementierung erstellen</li>
</ul>
</section class="hideDone">
<section class="hideDone">
<h1>Personal Webpage</h1>
<ul>
<li class="done">Zur PR Seite umbauen</li>
<li class="done">Contact: Kanäle identifizieren</li>
<li>Portfolio Seite erstellen</li>
<li>Portfolio Seite verlinken</li>
</ul>
</section>
<section class="hideDone">
<h1>Handwash</h1>
<ul>
<li>Design auf Figma erstellen</li>
<li>Einstellungsseite hinzufügen</li>
<li>Detailierte Schritte der Reinigung anzeigen</li>
<li>Option Flüssig- und Kernseife hinzufügen</li>
<li>AppleWatch Integration</li>
<li>History Seite hinzufügen</li>
<li>App veröffentlichen</li>
</ul>
</section>
<section class="hideDone">
<h1>Hero For Fun</h1>
<ul>
<li class="done">Homepage URL sichern</li>
<li class="done">Crunchyroll SAS anschreiben wegen Rechte</li>
<li class="done">Instagram Account erstellen</li>
<li>App veröffentlichen</li>
<li>Beta Tester aquerieren</li>
<li>Homepage überarbeiten</li>
<li>Datenschutzerklärung erstellen</li>
<li>Impressum erstellen</li>
<li>AGB erstellen</li>
</ul>
</section>
<section class="hideDone">
<h1>Agile Me</h1>
<ul>
<li>neu einlesen</li>
<li>Feedback von Frau P. bekommen</li>
<li>Psychologische Elemente je Kapitel hinzufügen</li>
<li>Feedback von Dave einarbeiten</li>
<li>Feedback von Martina einarbeiten</li>
</ul>
</section>
<section>
<h1>Digital Personal Assistent</h1>
<ul>
<li>Bewerbung bei EF oder APX (Dave hat Kontakt weitergegeben)</li>
<li>BigData App erstellen</li>
<li>Datengruppe erstellen</li>
<li>Daten zu Gruppe hinzufügen</li>
<li>Datenauswertung hinzufügen</li>
<li>Dokument als Datentyp hinzufügen</li>
<li>Dokumente digitalisieren</li>
<li>Dokumente analysieren</li>
<li>Gruppe Finanzen erstellen</li>
<li>Gruppe Freizeit erstellen</li>
<li>Gruppe Routinen erstellen</li>
<li>iOS App erstellen</li>
</ul>
</section>
<section class="onHold">
<h1>Ihrke</h1>
<ul>
<li>Architektur festlegen</li>
<li>Backend für Client anlegen</li>
</ul>
</section>
</body>
<script type="text/javascript">
const yearElement = document.getElementById('year');
const yearElementChildList = Array.from(document.getElementById('year').children);
let past = true;
const currentMonth = new Intl.DateTimeFormat('de-DE', { month: '2-digit'}).format(new Date());
const monthDescriptionList = Array.from(yearElementChildList.find((child) => child.nodeName.toUpperCase() === 'DL').children);
monthDescriptionList.forEach((element, index) => {
const month = Math.floor(index / 2) + 1;
if (month < currentMonth) {
element.classList.add('onHold');
} else {
element.classList.remove('onHold');
}
})
</script>
</html>