-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLearning.html
More file actions
811 lines (692 loc) · 20.5 KB
/
Learning.html
File metadata and controls
811 lines (692 loc) · 20.5 KB
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
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kotlin + Python Learning Roadmap</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', sans-serif;
}
body {
scroll-behavior: smooth;
background: linear-gradient(to bottom, #0f172a, #111827);
color: white;
line-height: 1.7;
padding: 20px;
}
.navbar {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(15, 23, 42, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid #334155;
padding: 18px 30px;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}
.nav-logo {
font-size: 1.4rem;
font-weight: bold;
color: #38bdf8;
}
.nav-links {
display: flex;
gap: 20px;
list-style: none;
flex-wrap: wrap;
}
.nav-links a {
color: #cbd5e1;
text-decoration: none;
transition: color 0.3s ease;
font-weight: 500;
}
.nav-links a:hover {
color: #38bdf8;
}
.container {
max-width: 1200px;
margin: auto;
}
.hero {
text-align: center;
padding: 60px 20px;
background: rgba(30, 41, 59, 0.8);
border-radius: 30px;
border: 1px solid #334155;
margin-bottom: 40px;
backdrop-filter: blur(10px);
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
color: #f8fafc;
}
.hero p {
max-width: 750px;
margin: auto;
color: #cbd5e1;
font-size: 1.1rem;
}
.comfort-box {
margin-top: 30px;
background: #1e293b;
padding: 25px;
border-radius: 25px;
border: 1px solid #475569;
}
.comfort-box h2 {
color: #facc15;
margin-bottom: 10px;
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 35px;
}
.card {
background: rgba(30, 41, 59, 0.9);
padding: 25px;
border-radius: 24px;
border: 1px solid #334155;
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
.card h2 {
margin-bottom: 10px;
color: #38bdf8;
}
.section-title {
margin: 60px 0 20px;
font-size: 2.5rem;
color: #f8fafc;
}
.phase {
background: rgba(17, 24, 39, 0.9);
padding: 35px;
border-radius: 30px;
margin-bottom: 45px;
border: 1px solid #334155;
}
.phase-intro {
color: #cbd5e1;
margin-bottom: 20px;
}
.stage {
background: #1e293b;
padding: 30px;
border-radius: 25px;
margin-top: 30px;
border: 1px solid #334155;
}
.stage-header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 20px;
}
.stage h3 {
font-size: 1.7rem;
}
.badge {
background: #0f172a;
padding: 8px 16px;
border-radius: 999px;
color: #94a3b8;
border: 1px solid #334155;
}
.easy-note {
background: #172554;
padding: 18px;
border-radius: 18px;
margin-bottom: 20px;
color: #bfdbfe;
border-left: 4px solid #60a5fa;
}
.stage-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
}
.mini-card {
transition: transform 0.25s ease, border-color 0.25s ease;
background: #0f172a;
padding: 22px;
border-radius: 20px;
border: 1px solid #334155;
}
.mini-card:hover {
transform: translateY(-4px);
border-color: #475569;
}
.mini-card h4 {
margin-bottom: 15px;
color: #facc15;
font-size: 1.2rem;
}
ul {
list-style: none;
}
li {
margin-bottom: 12px;
color: #cbd5e1;
}
.tracker-wrapper {
display: flex;
justify-content: center;
align-items: center;
perspective: 1200px;
margin-top: 70px;
}
.tracker-book {
max-width: 1100px;
position: relative;
width: 100%;
min-height: 700px;
transform-style: preserve-3d;
}
.tracker-page {
box-shadow: 0 25px 60px rgba(0,0,0,0.35);
position: absolute;
width: 100%;
backface-visibility: hidden;
transition: transform 0.8s ease;
border-radius: 30px;
}
.tracker-front {
background: linear-gradient(to bottom right, rgba(15,23,42,0.98), rgba(30,41,59,0.95));
z-index: 2;
transform: rotateY(0deg);
}
.tracker-back {
background: linear-gradient(to bottom right, rgba(17,24,39,0.98), rgba(30,41,59,0.96));
transform: rotateY(180deg);
}
.tracker-book.flipped .tracker-front {
transform: rotateY(-180deg);
}
.tracker-book.flipped .tracker-back {
transform: rotateY(0deg);
}
.flip-btn {
margin-top: 25px;
padding: 14px 28px;
border: none;
border-radius: 16px;
background: linear-gradient(to right, #a855f7, #6366f1);
color: white;
font-weight: bold;
cursor: pointer;
transition: transform 0.2s ease;
}
.flip-btn:hover {
transform: scale(1.04);
}
.tracker-section {
margin-top: 60px;
background: rgba(17, 24, 39, 0.95);
padding: 40px;
border-radius: 30px;
border: 1px solid #334155;
}
.tracker-intro {
color: #cbd5e1;
margin-top: 10px;
max-width: 800px;
}
.tracker-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 35px;
}
textarea,
input {
width: 100%;
margin-top: 12px;
padding: 16px;
border-radius: 15px;
border: 1px solid #475569;
background: #1e293b;
color: white;
font-size: 1rem;
}
textarea {
min-height: 200px;
resize: vertical;
}
textarea:focus,
input:focus {
outline: none;
border-color: #38bdf8;
box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}
.save-btn {
margin-top: 15px;
padding: 14px 24px;
background: linear-gradient(to right, #38bdf8, #22d3ee);
border: none;
border-radius: 15px;
cursor: pointer;
font-weight: bold;
color: #0f172a;
transition: transform 0.2s ease;
}
.save-btn:hover {
transform: scale(1.03);
}
.progress-container {
margin-top: 20px;
}
.progress-bar {
width: 100%;
height: 22px;
background: #1e293b;
border-radius: 999px;
overflow: hidden;
margin-top: 12px;
}
.progress-fill {
width: 0%;
height: 100%;
background: linear-gradient(to right, #22c55e, #4ade80);
transition: width 0.4s ease;
}
.energy-section {
margin-top: 50px;
background: #1e293b;
border-radius: 25px;
padding: 30px;
border: 1px solid #334155;
}
.energy-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-top: 20px;
}
.energy-card {
background: #0f172a;
padding: 20px;
border-radius: 18px;
border: 1px solid #334155;
}
.energy-card h4 {
margin-bottom: 10px;
color: #38bdf8;
}
.footer {
text-align: center;
margin-top: 70px;
color: #94a3b8;
padding-bottom: 40px;
}
.footer p {
margin-bottom: 8px;
}
@media (max-width: 768px) {
.navbar {
flex-direction: column;
gap: 15px;
align-items: flex-start;
}
.nav-links {
gap: 12px;
}
.hero h1 {
font-size: 2.5rem;
}
.section-title {
font-size: 2rem;
}
.stage-header {
flex-direction: column;
align-items: flex-start;
}
}
</style>
</head>
<body>
<nav class="navbar">
<div class="nav-logo">Dev Journey</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#kotlin">Kotlin Roadmap</a></li>
<li><a href="#python">Python Roadmap</a></li>
<li><a href="#tracker">Learning Tracker</a></li>
<li><a href="#energy">Study System</a></li>
</ul>
</nav>
<div class="container">
<section class="hero" id="home">
<div class="comfort-box">
<h2>Built for Slow, Gentle Learning</h2>
<p>
This roadmap is designed to reduce overwhelm. You do not need to learn everything quickly.
Some days your energy will be high. Some days it will be low. Progress still counts.
Your goal is consistency, not perfection.
</p>
</div>
<h1>Kotlin + Python Learning Roadmap</h1>
<p>
A structured roadmap and personal learning tracker designed to guide your journey
from Kotlin fundamentals to Android development and Python for Outreachy.
</p>
<div class="card-grid">
<div class="card">
<h2>Primary Goal</h2>
<p>Kotlin → Android Development</p>
</div>
<div class="card">
<h2>Secondary Goal</h2>
<p>Python → Outreachy + Open Source</p>
</div>
<div class="card">
<h2>Study Style</h2>
<p>Late-night deep focused sessions</p>
</div>
</div>
</section>
<section id="kotlin">
<h2 class="section-title">Phase 1 — Kotlin Deep Focus</h2>
<section class="phase">
<p>Goal: Become comfortable building real projects and Android apps.</p>
<div class="stage">
<div class="stage-header">
<h3>Stage 1 — Kotlin Fundamentals</h3>
<div class="badge">Start Small + Build Confidence</div>
</div>
<div class="easy-note">
Focus on understanding one idea at a time. Repeat concepts slowly until they feel natural.
You are training your brain, not racing people online.
</div>
<div class="badge">2–3 Weeks</div>
<div class="stage-grid">
<div class="mini-card">
<h4>Topics</h4>
<ul>
<li>Variables and data types</li>
<li>Conditions and loops</li>
<li>Functions</li>
<li>Null safety</li>
<li>Collections</li>
</ul>
</div>
<div class="mini-card">
<h4>Projects</h4>
<ul>
<li>Calculator</li>
<li>Guessing game</li>
<li>Console to-do app</li>
</ul>
</div>
<div class="mini-card">
<h4>Checklist</h4>
<ul>
<li><input type="checkbox"> Practice loops daily</li>
<li><input type="checkbox"> Write functions independently</li>
<li><input type="checkbox"> Push projects to GitHub</li>
</ul>
</div>
</div>
</div>
<div class="stage">
<div class="stage-header">
<h3>Stage 2 — Object-Oriented Programming</h3>
<div class="badge">Make Code Feel Organized</div>
</div>
<div class="easy-note">
OOP can feel confusing at first. Use real-world examples like students, books, and games.
Understanding comes with practice.
</div>
<div class="badge">2 Weeks</div>
<div class="stage-grid">
<div class="mini-card">
<h4>Topics</h4>
<ul>
<li>Classes and objects</li>
<li>Constructors</li>
<li>Inheritance</li>
<li>Interfaces</li>
</ul>
</div>
<div class="mini-card">
<h4>Projects</h4>
<ul>
<li>Library system</li>
<li>Inventory tracker</li>
<li>Student grading system</li>
</ul>
</div>
<div class="mini-card">
<h4>Checklist</h4>
<ul>
<li><input type="checkbox"> Understand OOP deeply</li>
<li><input type="checkbox"> Build reusable classes</li>
<li><input type="checkbox"> Structure code cleanly</li>
</ul>
</div>
</div>
</div>
</section>
</section>
<section id="python">
<h2 class="section-title">Phase 2 — Python for Outreachy</h2>
<section class="phase">
<p>Goal: Prepare for open source contributions and Outreachy applications.</p>
<div class="stage">
<div class="stage-header">
<h3>Stage 1 — Python Basics</h3>
<div class="badge">Python for Outreachy</div>
</div>
<div class="easy-note">
Python is easier to read than many languages. Focus on writing small scripts first.
Small wins build momentum.
</div>
<div class="badge">2 Weeks</div>
<div class="stage-grid">
<div class="mini-card">
<h4>Topics</h4>
<ul>
<li>Variables and syntax</li>
<li>Functions and loops</li>
<li>Lists and dictionaries</li>
<li>File handling</li>
</ul>
</div>
<div class="mini-card">
<h4>Projects</h4>
<ul>
<li>Password generator</li>
<li>Automation script</li>
<li>Weather CLI</li>
</ul>
</div>
<div class="mini-card">
<h4>Checklist</h4>
<ul>
<li><input type="checkbox"> Understand Python syntax</li>
<li><input type="checkbox"> Build scripts independently</li>
<li><input type="checkbox"> Practice every day</li>
</ul>
</div>
</div>
</div>
</section>
</section>
<section id="tracker" class="tracker-wrapper">
<div class="tracker-book" id="trackerBook">
<div class="tracker-page tracker-front">
<section class="tracker-section">
<h2 class="section-title">Personal Learning Tracker</h2>
<p>Track what you learned, your confusion points, questions, motivation, and progress.</p>
<div class="tracker-grid">
<div class="mini-card">
<h4>What I Learned Today</h4>
<textarea id="learned" placeholder="Write what you learned today..."></textarea>
<button class="save-btn" onclick="saveData('learned')">Save</button>
</div>
<div class="mini-card">
<h4>Confusions / Problems</h4>
<textarea id="confusions" placeholder="What confused you today?"></textarea>
<button class="save-btn" onclick="saveData('confusions')">Save</button>
</div>
<div class="mini-card">
<h4>Questions to Research</h4>
<textarea id="questions" placeholder="Write questions you want to answer later..."></textarea>
<button class="save-btn" onclick="saveData('questions')">Save</button>
</div>
<div class="mini-card">
<h4>Motivational Quotes</h4>
<textarea id="quotes" class="quote-box" placeholder="Write quotes that motivate you..."></textarea>
<button class="save-btn" onclick="saveData('quotes')">Save</button>
</div>
<div class="mini-card">
<h4>Daily Reflection</h4>
<textarea id="reflection" placeholder="How did today's learning session go?"></textarea>
<button class="save-btn" onclick="saveData('reflection')">Save</button>
</div>
<div class="mini-card">
<h4>Track Your Progress</h4>
<label>Overall Progress (%)</label>
<input type="number" id="progressInput" placeholder="Enter progress percentage" min="0" max="100">
<button class="save-btn" onclick="updateProgress()">Update Progress</button>
<div class="progress-container">
<div class="progress-bar">
<div class="progress-fill" id="progressFill"></div>
</div>
<p id="progressText">0% Completed</p>
</div>
</div>
</div>
</section>
<section class="energy-section" id="energy">
<h2 class="section-title">Energy-Friendly Study System</h2>
<div class="energy-grid">
<div class="energy-card">
<h4>Low-Energy Days</h4>
<p>
Watch one short tutorial, review notes, or fix one tiny bug.
Small progress still matters.
</p>
</div>
<div class="energy-card">
<h4>High-Energy Days</h4>
<p>
Build projects, practice coding challenges, and explore new concepts.
</p>
</div>
<div class="energy-card">
<h4>Night Learning Tips</h4>
<p>
Keep water nearby, reduce distractions, and focus on one task at a time.
</p>
</div>
<div class="energy-card">
<h4>Anti-Overwhelm Rule</h4>
<p>
Never move to a new topic until the current one feels comfortable enough.
</p>
</div>
</div>
</section>
<button class="flip-btn" onclick="flipTracker()">Open Learning Journal</button>
</section>
</div>
<div class="tracker-page tracker-back">
<section class="tracker-section">
<h2 class="section-title">Personal Learning Journal</h2>
<p class="tracker-intro">
This is your safe learning space. Write slowly. Think slowly. Reflect honestly.
You do not need perfect notes. This journal exists to help your brain process learning gently.
</p>
<div class="tracker-grid">
<div class="mini-card">
<h4>What I Understand Now</h4>
<textarea id="understand" placeholder="Explain concepts in your own simple words..."></textarea>
<button class="save-btn" onclick="saveData('understand')">Save Thoughts</button>
</div>
<div class="mini-card">
<h4>What Still Confuses Me</h4>
<textarea id="deepConfusions" placeholder="What still feels hard or unclear?"></textarea>
<button class="save-btn" onclick="saveData('deepConfusions')">Save Confusion</button>
</div>
<div class="mini-card">
<h4>Tiny Wins Today</h4>
<textarea id="wins" placeholder="Even small progress matters..."></textarea>
<button class="save-btn" onclick="saveData('wins')">Save Win</button>
</div>
<div class="mini-card">
<h4>Learning Reflection</h4>
<textarea id="emotions" placeholder="How did learning feel today?"></textarea>
<button class="save-btn" onclick="saveData('emotions')">Save Reflection</button>
</div>
</div>
<button class="flip-btn" onclick="flipTracker()">Back to Roadmap</button>
</section>
</div>
</div>
</section>
<footer class="footer">
<h2>Learning Rules</h2>
<p>Consistency > Intensity</p>
<p>Projects > Tutorials</p>
<p>Understanding > Memorization</p>
</footer>
</div>
<script>
function saveData(id) {
const value = document.getElementById(id).value;
localStorage.setItem(id, value);
alert('Saved successfully!');
}
function loadData() {
const fields = [
'learned',
'confusions',
'questions',
'quotes',
'reflection',
'understand',
'deepConfusions',
'wins',
'emotions'
];
fields.forEach(field => {
const saved = localStorage.getItem(field);
if (saved) {
document.getElementById(field).value = saved;
}
});
const progress = localStorage.getItem('progress');
if (progress) {
document.getElementById('progressInput').value = progress;
document.getElementById('progressFill').style.width = progress + '%';
document.getElementById('progressText').innerText = progress + '% Completed';
}
}
function flipTracker() {
document.getElementById('trackerBook').classList.toggle('flipped');
}
function updateProgress() {
const progress = document.getElementById('progressInput').value;
document.getElementById('progressFill').style.width = progress + '%';
document.getElementById('progressText').innerText = progress + '% Completed';
localStorage.setItem('progress', progress);
}
loadData();
</script>
</body>
</html>