-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathprojects_registry.json
More file actions
773 lines (773 loc) · 18.3 KB
/
Copy pathprojects_registry.json
File metadata and controls
773 lines (773 loc) · 18.3 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
[
{
"name": "Rock Paper Scissors",
"emoji": "🪨",
"category": "games",
"difficulty": "beginner",
"description": "Battle against the computer in this classic hand game.",
"keywords": [
"rock",
"paper",
"scissors",
"game",
"battle",
"computer"
],
"path": "games/Rock-Paper-Scissor/Rock-Paper-Scissor.py"
},
{
"name": "Dice Rolling",
"emoji": "🎲",
"category": "games",
"difficulty": "beginner",
"description": "Roll two dice and calculate your fortune with emoji dice!",
"keywords": [
"dice",
"roll",
"random",
"luck",
"board"
],
"path": "games/Rolling-Dice/Rolling-Dice.py"
},
{
"name": "Coin Flip",
"emoji": "🪙",
"category": "games",
"difficulty": "beginner",
"description": "Predict heads or tails — a quick decision maker.",
"keywords": [
"coin",
"flip",
"heads",
"tails",
"random"
],
"path": "games/Flipping-Toss/Flipping-Toss.py"
},
{
"name": "Number Guessing Game",
"emoji": "🎯",
"category": "games",
"difficulty": "beginner",
"description": "Guess the computer's secret number with smart hints.",
"keywords": [
"guess",
"number",
"hints",
"game",
"interactive"
],
"path": "games/Number-Guessing-Game/Number-Guessing-Game.py"
},
{
"name": "Hangman Game",
"emoji": "🎮",
"category": "games",
"difficulty": "intermediate",
"description": "Classic word-guessing game with 6 attempts.",
"keywords": [
"hangman",
"word",
"guess",
"letters",
"classic"
],
"path": "games/Hangman-Game/Hangman-Game.py"
},
{
"name": "FLAMES Game",
"emoji": "💖",
"category": "games",
"difficulty": "beginner",
"description": "Discover your relationship status with two names!",
"keywords": [
"flames",
"love",
"relationship",
"names",
"fun"
],
"path": "games/FLAMES-Game/FLAMES-Game.py"
},
{
"name": "Fibonacci Series",
"emoji": "✨",
"category": "math",
"difficulty": "beginner",
"description": "Generate beautiful Fibonacci sequences visually.",
"keywords": [
"fibonacci",
"series",
"sequence",
"math",
"pattern"
],
"path": "math/Fibonacci-Series/Fibonacci-Series.py"
},
{
"name": "Pascal's Triangle",
"emoji": "🔺",
"category": "math",
"difficulty": "intermediate",
"description": "Explore mathematical beauty in Pascal's triangle.",
"keywords": [
"pascal",
"triangle",
"pattern",
"math",
"rows"
],
"path": "math/Pascal-Triangle/Pascal-Triangle.py"
},
{
"name": "Armstrong Number Checker",
"emoji": "💎",
"category": "math",
"difficulty": "beginner",
"description": "Check if a number is an Armstrong number with breakdown.",
"keywords": [
"armstrong",
"number",
"checker",
"narcissistic",
"math"
],
"path": "math/Armstrong-Number/Armstrong-Number.py"
},
{
"name": "Scientific Graphing Calculator",
"emoji": "🧮",
"category": "math",
"difficulty": "beginner",
"description": "All basic math operations plus power and modulus.",
"keywords": [
"calculator",
"math",
"arithmetic",
"add",
"subtract"
],
"path": "math/Scientific-Graphing-Calculator/Scientific-Graphing-Calculator.py"
},
{
"name": "Prime Number Analyzer",
"emoji": "🔱",
"category": "math",
"difficulty": "intermediate",
"description": "Check, generate, and factorize prime numbers.",
"keywords": [
"prime",
"factor",
"analyze",
"sieve",
"number theory"
],
"path": "math/Prime-Number-Analyzer/Prime-Number-Analyzer.py"
},
{
"name": "Collatz Conjecture",
"emoji": "🔢",
"category": "math",
"difficulty": "intermediate",
"description": "Explore the famous 3n+1 sequence until it reaches 1.",
"keywords": [
"collatz",
"conjecture",
"sequence",
"3n+1",
"math"
],
"path": "math/Collatz-Conjecture/Collatz-Conjecture.py"
},
{
"name": "Projectile Motion Game",
"emoji": "🚀",
"category": "math",
"difficulty": "advanced",
"description": "Launch projectiles and visualize trajectory stats with matplotlib.",
"keywords": [
"projectile",
"physics",
"simulation",
"trajectory",
"matplotlib"
],
"path": "math/Projectile-Motion-Game/Projectile-Motion-Game.py"
},
{
"name": "Complete Calculus Engine",
"emoji": "∫",
"category": "math",
"difficulty": "advanced",
"description": "Compute derivatives and integrals, evaluate definite integrals, and graph polynomial functions.",
"keywords": [
"derivative",
"integral",
"calculus",
"polynomial",
"math",
"algebra",
"graph"
],
"path": "math/Complete-Calculus-Engine/Complete-Calculus-Engine.py"
},
{
"name": "Coordinate to Polar Transformation",
"emoji": "🧭",
"category": "math",
"difficulty": "intermediate",
"description": "Convert Cartesian (x,y) coordinates to polar form.",
"keywords": [
"polar",
"cartesian",
"coordinate",
"geometry",
"angle"
],
"path": "math/Coordinate-to-Polar-Transformation/Coordinate-to-Polar-Transformation.py"
},
{
"name": "AP/GP/AGP/HP Recognizer",
"emoji": "📐",
"category": "math",
"difficulty": "intermediate",
"description": "Identify progression types from any number sequence.",
"keywords": [
"progression",
"arithmetic",
"geometric",
"harmonic",
"sequence"
],
"path": "math/AP-GP-AGP-HP-Recognizer/AP-GP-AGP-HP-Recognizer.py"
},
{
"name": "Morse Code Translator",
"emoji": "📻",
"category": "utilities",
"difficulty": "beginner",
"description": "Translate text to Morse code and back — bidirectional.",
"keywords": [
"morse",
"code",
"translate",
"encrypt",
"dots",
"dashes"
],
"path": "utilities/Text-to-Morse/Text-to-Morse.py"
},
{
"name": "Tower of Hanoi",
"emoji": "🗼",
"category": "utilities",
"difficulty": "intermediate",
"description": "Solve the classic Tower of Hanoi puzzle step by step.",
"keywords": [
"tower",
"hanoi",
"puzzle",
"recursion",
"algorithm"
],
"path": "utilities/Tower-of-Hanoi/Tower-of-Hanoi.py"
},
{
"name": "Blackjack 21",
"emoji": "🃏",
"category": "games",
"difficulty": "intermediate",
"description": "Play a classic card game of Blackjack against the dealer.",
"keywords": [
"blackjack",
"card",
"game",
"casino",
"dealer"
],
"path": "games/Blackjack-21/Blackjack21_cli.py"
},
{
"name": "Dots & Boxes AI",
"emoji": "🔲",
"category": "games",
"difficulty": "advanced",
"description": "Play the classic dots and boxes grid game against a smart AI player.",
"keywords": [
"dots",
"boxes",
"ai",
"grid",
"game"
],
"path": "games/Dots-Boxes-AI/Dots-Boxes-AI.py"
},
{
"name": "Emoji Memory Game",
"emoji": "🍎",
"category": "games",
"difficulty": "beginner",
"description": "Test and train your memory by repeating emoji patterns.",
"keywords": [
"emoji",
"memory",
"game",
"pattern",
"brain"
],
"path": "games/Emoji-Memory-Game/Emoji-Memory-Game.py"
},
{
"name": "Number Sliding Puzzle",
"emoji": "🧩",
"category": "games",
"difficulty": "intermediate",
"description": "Arrange the shuffled number tiles in ascending order in this grid puzzle.",
"keywords": [
"sliding",
"puzzle",
"number",
"grid",
"game"
],
"path": "games/Number-Sliding-Puzzle/Number-Sliding-Puzzle.py"
},
{
"name": "Password Forge",
"emoji": "🔥",
"category": "games",
"difficulty": "beginner",
"description": "Survive evolving firewall rules by generating strong, conforming passwords.",
"keywords": [
"password",
"forge",
"game",
"generator",
"security"
],
"path": "games/Password-Forge/Password-Forge.py"
},
{
"name": "Reverse Hangman Game",
"emoji": "🎮",
"category": "games",
"difficulty": "intermediate",
"description": "Flip the role of Hangman — you try to guess the secret word from the computer.",
"keywords": [
"hangman",
"reverse",
"word",
"guess",
"letters"
],
"path": "games/Reverse-Hangman-Game/Reverse-Hangman-Game.py"
},
{
"name": "Simon Says",
"emoji": "🔊",
"category": "games",
"difficulty": "beginner",
"description": "Remember and repeat the growing sequence of moves correctly.",
"keywords": [
"simon",
"says",
"memory",
"sequence",
"game"
],
"path": "games/Simon-Says/Simon-Says.py"
},
{
"name": "War Card Game",
"emoji": "⚔️",
"category": "games",
"difficulty": "beginner",
"description": "A simple card-drawing war game played against another player.",
"keywords": [
"war",
"card",
"deck",
"player",
"game"
],
"path": "games/War-Card-Game/War-Card-Game.py"
},
{
"name": "Whack-a-Mole",
"emoji": "🔨",
"category": "games",
"difficulty": "intermediate",
"description": "Whack the moles as they pop up on a 3x3 grid before time runs out!",
"keywords": [
"mole",
"whack",
"grid",
"time",
"speed",
"game"
],
"path": "games/Whack-a-Mole/Whack-a-Mole.py"
},
{
"name": "Word Scramble Game",
"emoji": "🔠",
"category": "games",
"difficulty": "beginner",
"description": "Unscramble jumbled words across different categories like Animals and Fruits.",
"keywords": [
"scramble",
"word",
"jumbled",
"guess",
"vocab"
],
"path": "games/Word-Scramble-Game/Word-Scramble-Game.py"
},
{
"name": "Binary Search Visualizer",
"emoji": "🔍",
"category": "math",
"difficulty": "intermediate",
"description": "Visualize binary search step-by-step on a sorted list of numbers.",
"keywords": [
"binary",
"search",
"visualizer",
"algorithm",
"math"
],
"path": "math/Binary-Search/Binary-Search.py"
},
{
"name": "Multi-Algorithm Sorting Visualizer",
"emoji": "🫧",
"category": "math",
"difficulty": "intermediate",
"description": "Visualize Bubble Sort, Selection Sort, Insertion Sort, and Quick Sort step-by-step.",
"keywords": [
"sorting",
"sort",
"visualizer",
"algorithm",
"selection",
"insertion",
"quick",
"math"
],
"path": "math/Bubble-Sort/Bubble-Sort.py"
},
{
"name": "Matrix Calculator",
"emoji": "🧮",
"category": "math",
"difficulty": "intermediate",
"description": "Perform addition, subtraction, multiplication, and transposition of matrices.",
"keywords": [
"matrix",
"calculator",
"multiplication",
"transpose",
"math"
],
"path": "math/Matrix-Calculator/Matrix-Calculator.py"
},
{
"name": "Quadratic Solver",
"emoji": "📐",
"category": "math",
"difficulty": "beginner",
"description": "Solve quadratic equations and get real or complex roots interactively.",
"keywords": [
"quadratic",
"solver",
"roots",
"equations",
"math"
],
"path": "math/Quadratic-Solver/Quadratic-Solver.py"
},
{
"name": "AI Resume Analyzer",
"emoji": "📄",
"category": "utilities",
"difficulty": "advanced",
"description": "Analyze resumes using NLTK to extract key skills and suggestions.",
"keywords": [
"resume",
"analyzer",
"nltk",
"skills",
"parser"
],
"path": "utilities/AI-Resume-Analyzer/AI-Resume-Analyzer.py"
},
{
"name": "Budget Tracker",
"emoji": "💰",
"category": "utilities",
"difficulty": "intermediate",
"description": "Track income, expenses, and view summaries by category persistently in a CSV.",
"keywords": [
"budget",
"tracker",
"expense",
"income",
"finance"
],
"path": "utilities/Budget-Tracker/budget_tracker.py"
},
{
"name": "Caesar Cipher",
"emoji": "🔒",
"category": "utilities",
"difficulty": "beginner",
"description": "Encrypt and decrypt messages using the shift-based Caesar Cipher algorithm.",
"keywords": [
"caesar",
"cipher",
"encrypt",
"decrypt",
"security"
],
"path": "utilities/Caesar-Cipher/Caesar-Cipher.py"
},
{
"name": "Fake News Headline Generator",
"emoji": "📰",
"category": "utilities",
"difficulty": "beginner",
"description": "Generate funny, exaggerated fake news headlines in multiple modes.",
"keywords": [
"fake",
"news",
"headline",
"generator",
"funny"
],
"path": "utilities/Fake-News-Headline-Generator/Fake-News-Headline-Generator.py"
},
{
"name": "Number System Converter",
"emoji": "🔢",
"category": "utilities",
"difficulty": "beginner",
"description": "Convert numbers interactively between Decimal, Binary, Octal, and Hexadecimal.",
"keywords": [
"number",
"converter",
"decimal",
"binary",
"hexadecimal",
"octal"
],
"path": "utilities/Number-System-Converter/Number-System-Converter.py"
},
{
"name": "Productive Pet",
"emoji": "🐧",
"category": "utilities",
"difficulty": "intermediate",
"description": "Evolve your pet by tracking tasks and staying productive.",
"keywords": [
"pet",
"task",
"tracker",
"evolve",
"gamification"
],
"path": "utilities/Productivity-Pet/Productivity-Pet.py"
},
{
"name": "Progress Tracker",
"emoji": "🏆",
"category": "utilities",
"difficulty": "beginner",
"description": "Track which mini projects you have completed on your learning journey.",
"keywords": [
"progress",
"tracker",
"completed",
"learning",
"journey"
],
"path": "utilities/Progress-Tracker/Progress-Tracker.py"
},
{
"name": "Typing Speed Tester",
"emoji": "⌨️",
"category": "utilities",
"difficulty": "intermediate",
"description": "Test your typing speed (WPM) and accuracy with randomized sentences.",
"keywords": [
"typing",
"tester",
"wpm",
"speed",
"accuracy"
],
"path": "utilities/Typing-Speed-Tester/Typing-Speed-Tester.py"
},
{
"name": "Sudoku Solver & Game",
"emoji": "🧩",
"category": "games",
"difficulty": "intermediate",
"description": "Interactive Sudoku puzzle with difficulty levels and a visual backtracking solver.",
"keywords": [
"sudoku",
"game",
"backtracking",
"solver",
"puzzle",
"grid"
],
"path": "games/Sudoku-Game/Sudoku-Game.py"
},
{
"name": "Fourier Series Visualizer",
"emoji": "📈",
"category": "math",
"difficulty": "intermediate",
"description": "Explore how complex waveforms can be approximated using harmonics.",
"keywords": [
"fourier",
"series",
"visualizer",
"math",
"wave",
"harmonics"
],
"path": "math/Fourier-Series-Visualizer/Fourier-Series-Visualizer.py"
},
{
"name": "Pathfinding Visualizer",
"emoji": "🗺️",
"category": "utilities",
"difficulty": "advanced",
"description": "Visualize Dijkstra's and A* Search algorithms on an interactive grid.",
"keywords": [
"pathfinding",
"visualizer",
"algorithm",
"dijkstra",
"astar",
"grid",
"search"
],
"path": "utilities/Pathfinding-Visualizer/Pathfinding-Visualizer.py"
},
{
"name": "TSP Visualizer",
"emoji": "🗺️",
"category": "utilities",
"difficulty": "advanced",
"description": "Visualize the Traveling Salesperson Problem (TSP) using Nearest Neighbor and Brute Force algorithms.",
"keywords": [
"tsp",
"visualizer",
"algorithm",
"salesperson",
"path",
"shortest",
"search"
],
"path": "utilities/TSP-Visualizer/TSP-Visualizer.py"
},
{
"name": "Chess Game",
"emoji": "♟️",
"category": "games",
"difficulty": "advanced",
"description": "Play a standard game of Chess with full rules, moves, and a beautiful UI.",
"keywords": [
"chess",
"board",
"game",
"strategy",
"two-player",
"ai"
],
"path": "games/Pygame-Chess/main.py"
},
{
"name": "2048 Game",
"emoji": "🔢",
"category": "games",
"difficulty": "intermediate",
"description": "Combine tiles and reach 2048!",
"keywords": [
"2048",
"game",
"puzzle",
"numbers",
"tiles",
"merge"
],
"path": "games/2048-Game/2048-Game.py"
},
{
"name": "Flappy Game",
"emoji": "🐦",
"category": "games",
"difficulty": "intermediate",
"description": "Flappy bird style game",
"keywords": [
"flappy",
"bird",
"game",
"arcade",
"wings",
"pipes"
],
"path": "games/Flappy-Game/Flappy-Game.py"
},
{
"name": "Math Quiz",
"emoji": "🧮",
"category": "math",
"difficulty": "beginner",
"description": "Test your math skills",
"keywords": [
"math",
"quiz",
"game",
"arithmetic",
"test",
"skills"
],
"path": "games/Math-Quiz/Math-Quiz.py"
},
{
"name": "Tic Tac Toe",
"emoji": "❌",
"category": "games",
"difficulty": "beginner",
"description": "Classic X vs O game",
"keywords": [
"tic",
"tac",
"toe",
"game",
"strategy",
"two-player"
],
"path": "games/Tic-Tac-Toe/Tic-Tac-Toe.py"
},
{
"name": "Spot the Difference",
"emoji": "🔍",
"category": "games",
"difficulty": "beginner",
"description": "Find differences between images",
"keywords": [
"spot",
"difference",
"game",
"puzzle",
"visual",
"images"
],
"path": "games/Spot-the-Difference/Spot-the-Difference.py"
}
]