-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
1207 lines (915 loc) · 42.2 KB
/
project.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
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
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dhyan's Projects!</title>
<link rel="icon" type="image/x-icon" href="media/favicon.ico">
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:[email protected]&family=Space+Grotesk:[email protected]&display=swap" rel="stylesheet">
<style>
img{margin-right: 2%}
</style>
</head>
<body>
<script src="api.js"></script>
<!-- Navbar -->
<nav class="navbar">
<div class="navbar__container">
<a href="https://dhyans.xyz" id="navbar__logo">
<img src="media/assets/svg/No-Background-1080.svg"
alt="dhyans.xyz" style="width:125%; height:125%; background-clip: inherit; margin-top: 1px;"></a>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="/" class="navbar__links">Home</a>
</li>
<li class="navbar__item">
<a href="project" class="navbar__links">Projects</a>
</li>
<li class="navbar__item">
<a href="game" class="navbar__links">Games</a>
</li>
<li class="navbar__item">
<a href="subdomain" class="navbar__links">Subdomains</a>
</li>
<li class="navbar__btn">
<a href="mailto:[email protected]" class="button">Contact Me!</a>
</li>
</ul>
</div>
</nav>
<br>
<p1 class="intro"> <center> Projects </center></p1>
<br><br>
<center>
<p2> Visit my GitHub for a comprehensive look at my projects</p2>
</center>
<center>
<a href="https://github.com/bluelightning26">
<img src="media/images/icons/tech/github-i8.svg" alt="My Github" style="width:5%; height:5%;">
</a>
<hr style="width:20%; border-color:mediumpurple;">
<br><br><br><br>
</center>
<center>
<p3> Projects are sorted by their first ship onto GitHub</p3>
<p5 style="font-size: 25px">
This page is currently being redone using YAML! <br>
Check out the indev version <a style="color: #82d2ef" href="proj-new.html">here</a>!
</p5>
</center>
<br><br><br>
<center>
<a href="project.html#November2024"><p4> November 2024</p4></a>
<a href="project.html#December2024"><p4> December 2024</p4></a>
<a href="project.html#January2025"><p4> January 2025</p4></a>
<a href="project.html#February2025"><p4> February 2025</p4></a>
<a href="project.html#March2025"><p4> March 2025</p4></a>
<a href="project.html#April2025"><p4> April 2025</p4></a>
</center>
<br><br><br><br><br><br>
<center>
<h1 id="November2024"></h1>
<br><br><br><br><br><br>
<hr width="50%" style=" border-color: mediumpurple; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p6> November 2024</p6>
<br><br><br><br><br>
</center>
<p5>
Reach the End! (Multiplayer) Game designed for the Sprig Console!
<br><br>
<div class="language">
Language: Javascript
</div>
</p5>
<a href="https://github.com/Bluelightning26/sprig/">
<img src="https://cdn.hackclubber.dev/slackcdn/c99ed0cd8bec79eed23c3b27917f6768.png" alt="proj icon" style="float: right ; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/sprig/" class="subdomain-button">View Source Code </a>
<br>
Fight your way to the opposing player's end-zone while they push back,
the twine will get shorter with more pushes when your opponent is in their own end-zone.
To prevent your opponent from ruthlessly pushing you, freeze their controls!
This can be done five times by each player and lasts half a second.
This is a two player game, designed to be simple while taking advantage of the Sprig’s layout.
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Unfolding the Progression of Virtual Reality
<br><br>
<div class="language">
Languages: HTML + CSS
</div>
</p5>
<a href="https://github.com/Bluelightning26/Virtual-Reality-Progression/">
<img src="media/images/projects/unfoldingTheProgressionOfVirtualReality.png" alt="proj icon" style="float: right ; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/Virtual-Reality-Progression/" class="subdomain-button">View Source Code </a>
<br>
This website attempts to inform the reader about virtual reality.
Especially before the modern types we have and know of today!
This is the first website I have made!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
GPA Calculator!
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/GPA-Calculator">
<img src="https://cloud-bqpuwsrqf-hack-club-bot.vercel.app/0gpa_calc_.png" alt="proj icon" style="float: right ; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/GPA-Calculator" class="subdomain-button">View Source Code </a>
<br>
A handy unweighted GPA calculator I made in Java,
you can enter the number of classes you take,
how many credits each class is worth and your letter grade in each class for your custom GPA!
An updated version of this project has been made with a GUI!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Password Strength Meter!
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/Password-Strength-Meter">
<img src="https://cloud-ogcgujcgz-hack-club-bot.vercel.app/0gpa_calc_.png" alt="proj icon" style="float: right ; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/Password-Strength-Meter" class="subdomain-button">View Source Code </a>
<br>
Check if your passwords are strong using the Java Password Strength Meter!
This uses recommendations from security.org to guide you!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Quotes of the Day!
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/QOTD">
<img src="https://cloud-ht4rgv45a-hack-club-bot.vercel.app/0qotd.png" alt="proj icon" style="float: right ; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/QOTD" class="subdomain-button">View Source Code </a>
<br>
Quotes are a great way to motivate us!
They help inspire us to become better versions of ourselves and look up when things aren't going our way.
I hope you enjoy!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Guess the Number!
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/NumberGuess_HighSeas">
<img src="https://cloud-dlydeok7e-hack-club-bot.vercel.app/0numguess.png" alt="proj icon" style="float: right ; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/NumberGuess_HighSeas" class="subdomain-button">View Source Code </a>
<br>
Choose the difficulty and guess the randomly generated number!
You get three tries and hints saying if it is higher or lower, good luck!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Rock Paper Scissors!
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/Rock-Paper-Scissors">
<img src="https://cloud-8y8utn31s-hack-club-bot.vercel.app/0rps.png" alt="proj icon" style="float: right ; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/Rock-Paper-Scissors" class="subdomain-button">View Source Code </a>
<br>
Play Rock Paper Scissors VS the CPU!
With the choice of three game modes
(one and done, best of three, and first to three)
there is plenty of fun to be had!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
True False Trivia (CLI)
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/True-False-Trivia/tree/4f48efa03fa61e2232d2bab5ebc90f00ac1c0da1">
<img src="https://cloud-q8l5eqnpe-hack-club-bot.vercel.app/0truefalsetrivia.png" alt="proj icon" style="float: right ; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/True-False-Trivia/tree/4f48efa03fa61e2232d2bab5ebc90f00ac1c0da1" class="subdomain-button">View Source Code </a>
<br>
A trivia game in Java!
Choose the question genre and answer 3 random questions of the library filled with 24 questions by typing true or false!
More genres and questions coming soon!
<br>
Note, this project was rewritten the following January with a focus on a GUI!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
23 The Game
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/23">
<img src="https://cloud-oehglk7mj-hack-club-bot.vercel.app/0numguess.gif" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/23" class="subdomain-button">View Source Code </a>
<br>
Count up between one and three more numbers each turn,
but don't be the one to say 23!
Good luck, the CPU isn't out to get you...
but if you make a mistake later on in the game it will pounce on it and devour the win!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Hangman Minecraft Edition
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/Hangman-Minecraft-Edition">
<img src="https://cloud-anyzg80jd-hack-club-bot.vercel.app/0hangman.gif" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/Hangman-Minecraft-Edition" class="subdomain-button">View Source Code </a>
<br>
You can only get 7 letters wrong before the creeper blows you up...
are you sure you can guess the right Minecraft related word?
Play to find out!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Strong Password Generator
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/Password-Generator">
<img src="https://cloud-o10u70v9w-hack-club-bot.vercel.app/0passgen.gif" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/Password-Generator" class="subdomain-button">View Source Code </a>
<br>
Ditch your old, weak password and generate a new, strong password that has all the requirements for a great one!
With 18 characters, numbers, symbols, and both cases
it's hard for people to memorize while peaking over your shoulder!
</p3>
<br><br><br><br><br>
<center>
<h1 id="December2024"></h1>
<br><br><br><br><br><br>
<hr width="50%" style=" border-color: mediumpurple; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p6> December 2024</p6>
<br><br><br><br><br>
</center>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Flip a coin and Gamble!
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/Coin-Gamble">
<img src="https://cloud-eein7luew-hack-club-bot.vercel.app/0coin_.gif" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/Coin-Gamble" class="subdomain-button">View Source Code </a>
<br>
Flip the coin and bet away your $100!
You have 6 tries to get as much money as possible...
my PR as a final score is $451 can you beat that?!!
Good Luck!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Minecraft Crafting Recipe Quiz
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/Minecraft-Crafting-Recipe">
<img src="https://cloud-8mboaqjwi-hack-club-bot.vercel.app/0craft.gif" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/Minecraft-Crafting-Recipe" class="subdomain-button">View Source Code </a>
<br>
Do you know the ingredients needed for a craft in Minecraft?
Find out here!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Potato Perks Minecraft Mod (Alpha Release)
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/potato-perks-1.21.1">
<img src="https://cloud-ed9wmq86j-hack-club-bot.vercel.app/0potatoperkslogo.svg" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/potato-perks-1.21.1" class="subdomain-button">View Source Code </a>
<br>
Craft Powered Potatoes with cool special effects!
In the form of blocks they can make you faster, jump, higher, or even slip around!
Cook, then consume the potatoes to see the effect of these perks on the fly!
Use the special Potato Portal to switch between the different awesome potato abilities by throwing a potato on it!
There is plenty of fun to be had and many unique mini-game opportunities! Check it out on Modrinth!
<br>
Major updates were shipped in the following January!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Nested Patterns
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/Nested-For-Loops-Java">
<img src="https://cloud-9mhfd31jm-hack-club-bot.vercel.app/0copy_of_numguess.png" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/Nested-For-Loops-Java" class="subdomain-button">View Source Code </a>
<br>
Cool patterns with For Loops!
<br>
Made to Practice for a Test :)
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Minecraft Word Jumble
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/Minecraft-Word-Jumble">
<img src="https://cloud-e3qb84y0o-hack-club-bot.vercel.app/0coin_.gif" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/Minecraft-Word-Jumble" class="subdomain-button">View Source Code </a>
<br>
See if you can unscramble the Minecraft related words.
This game has a 1000 different word combinations,
so you are sure to never get bored!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Money Counter
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/Money-Counter">
<img src="https://cloud-1u00ysxal-hack-club-bot.vercel.app/0money_counter.gif" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/Money-Counter" class="subdomain-button">View Source Code </a>
<br>
Count coins and bills, get balance value!
<br>
Current currencies supported: USD $ EUR € INR ₹ CAD $
<br>
Each currency has three options for ease of use, coins only, bills only, and coins and bills
<br>
Denominations that are likely in possession but are devalued are noted for the user, but present in the program
<br>
Examples: 1000₹, 2000₹ bills
<br>
Want your own currencies added? Contact me on Slack, I will push out an update soon, with a GUI!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Bank Account
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/Bank-Account">
<img src="https://cloud-dj0p63qu5-hack-club-bot.vercel.app/0copy_of_coin_.gif" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/Bank-Account" class="subdomain-button">View Source Code </a>
<br>
CLI Bank Account with Actions!
<br>
Features
<br>
Username, Pin and Balance are Stored in a text file to be used later (functionality to restore to be added!)
-I learned how to take variables and store them in text files using the File Writer Class
-Java Methods used! (My first program involving them!)
-With methods the user can go anywhere in the program, that is not linear!
-Numbers are formatted to display like currency using the Decimal Format class and patterns
-Actions when signed in include
View Balance;
Deposit Money
Withdraw Money
Program warns you if you are going into debt
Change Pin
Minimum # of digits = 4
Generates a random pin for if 0 is entered
Log out
Sends user to login menu
Quit
Displays System properties, then quits with exit code of: 0
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Reindeer Insurance!
<br><br>
<div class="language">
Languages: HTML + CSS + JavaScript
</div>
</p5>
<a href="https://github.com/Bluelightning26/Reindeer-Insurance-Winter-Boba">
<img src="https://cloud-gw483t35j-hack-club-bot.vercel.app/0granma.png" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/Reindeer-Insurance-Winter-Boba" class="subdomain-button">View Source Code </a>
<br>
Don't have the same fate as Grandma!
<br>
Get Insured from Reindeer Damage!
<br>
Grandma Wishes she visted this simple website and bought it!
<br>
Now hosted on winter.dhyans.xyz
</p3>
<center>
<h1 id="January2025"></h1>
<br><br><br><br><br><br>
<hr width="50%" style=" border-color: mediumpurple; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p6> January 2025</p6>
<br><br><br><br><br>
</center>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
GUI in Java!
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/First-GUI">
<img src="https://cloud-6fosf159e-hack-club-bot.vercel.app/0screenshot_2025-01-19_at_8.38.07___am.png" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/First-GUI" class="subdomain-button">View Source Code </a>
<br>
My first Java program utilizing a GUI!
<br>
What is it?
A simple clicking game
Click the button to increment, and click the subtract button to decrement
Gamble your clicks! (The house likes to win)
You cannot gamble when clicks are -1, 0, 1 as that makes no sense
What I learned
Java Swing Class!
Frame vs Panel (took a while)
Panel labels
Swing buttons:
making them
basic placements
taking input
enable / disable
a lot more!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Website in a QR Code!
<br><br>
<div class="language">
Languages: HTML + CSS + Javascript
</div>
</p5>
<a href="https://github.com/Bluelightning26/QR-Website">
<img src="https://cloud-k75ylncm2-hack-club-bot.vercel.app/0image.png" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/QR-Website" class="subdomain-button">View Source Code </a>
<br>
Ever wonder what a QR code is, where it's from, how it came to be?
Or what those three squares in the corners mean?
Find out on a offline website, built into a QR code!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Dhyan's Website!
<br><br>
<div class="language">
Languages: HTML + CSS + Javascript
</div>
</p5>
<a href="https://github.com/Bluelightning26/website">
<img src="https://cloud-bnx2lurva-hack-club-bot.vercel.app/0screenshot_2025-01-29_at_7.37.50___pm.png" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/website" class="subdomain-button">View Source Code </a>
<br>
My first personal website with a custom domain!
Unlike my websites of the past, this one looks decent in my opinion.
I learned a lot about web hosting when developing this, and how CloudFlare and Gmail work on a deeper level.
I am excited to expand on this in the future, and is the first web project I am really excited about.
(I normally stick to languages like Java :P)
I will keep expanding on the project as I am finding it fun to try new things and experiment through design,
something that is not too common in Java.
More sites for various topics will be hosted on subdomains on my website!
dhyans.xyz
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Trivia False Trivia (GUI) (Old version also listed in December)
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/True-False-Trivia">
<img src="https://cloud-rmuqjz045-hack-club-bot.vercel.app/0screenshot_2025-01-20_at_10.54.31___am.png" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/True-False-Trivia" class="subdomain-button">View Source Code </a>
<br>
A True-False trivia game with 7 categories and a GUI in Java!
<br>
This project used to be a CLI program that checked for user error but did not implement methods and used for loops instead.
In this update (Jan 2025) when setting out to create a GUI for this
I encountered a plethora of bugs when trying to modify the old code and essentially ended up starting from scratch.
The only piece of old logic that I kept were the question switch cases, which themselves had to be modified and moved.
This is my first project in which I converted an old CLI program to a GUI app it was far more difficult than I envisioned.
This tested my patience the most out of any project I have built so far as I kept squashing and making bugs for what seemed to be hours,
and having to go through trial and error many times as I teach myself how the Swing library works.
<br>
Check readme for more info!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
NamePlate NFC Tag
<br><br>
<div class="language">
Language: CAD (TinkerCAD)
</div>
</p5>
<a href="https://github.com/Bluelightning26/asylum/">
<img src="https://cloud-afpnnkjlz-hack-club-bot.vercel.app/0screenshot_2025-01-27_at_9.14.46___pm.png" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/asylum/" class="subdomain-button">View Source Code </a>
<br>
Designed in TinkerCAD, text imported from a Google Drawing converted into an SVG.
There is a 0.2 mm hole to pause the print 0.8mm through to place a programmable NFC Tag.
Print Colors: light blue Base, white letter backings, light blue letters,
or black base, purple letter backings, black letters.
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Potato Perks Minecraft Mod! (Also Listed in December)
<br><br>
<div class="language">
Language: Java
</div>
</p5>
<a href="https://github.com/Bluelightning26/potato-perks-1.21.1">
<img src="https://cloud-ed9wmq86j-hack-club-bot.vercel.app/0potatoperkslogo.svg" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/potato-perks-1.21.1" class="subdomain-button">View Source Code </a>
<br>
Full Release! <br>
Craft Powered Potatoes with cool special effects!
In the form of blocks they can make you faster, jump, higher, or even slip around!
Cook, then consume the potatoes to see the effect of these perks on the fly!
Use the special Potato Portal to switch between the different awesome potato abilities by throwing a potato on it!
There is plenty of fun to be had and many unique mini-game opportunities!
Check it out on Modrinth!
</p3>
<br><br><br><br><br>
<center>
<h1 id="February2025"></h1>
<br><br><br><br><br><br>
<hr width="50%" style=" border-color: mediumpurple; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p6> February 2025</p6>
<br><br><br><br><br>
</center>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Penguin Cookie Cutter!
<br><br>
<div class="language">
Language: CAD (Designed in Onshape)
</div>
</p5>
<a href="https://github.com/Bluelightning26/bakebuild">
<img src="https://cdn.hackclubber.dev/slackcdn/2fbec7257d71de266b8ba01c43a26d4d.png" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/bakebuild" class="subdomain-button">View Source Code </a>
<br>
It's a cookie cutter shaped like a penguin! Yummy, made for BakeBuild!
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
PrintBoard
<br><br>
<div class="language">
Language: CAD (Designed in Onshape)
</div>
</p5>
<a href="https://github.com/Bluelightning26/printboard">
<img src="https://cdn.hack.pet/slackcdn/6724a2fb732e0df2afa0876fbf0e665a.png" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://github.com/Bluelightning26/printboard" class="subdomain-button">View Source Code </a>
<br>
3D Designs that interface with the Ikea Skådis Pegboard! <br> I made two designs and a peg to connect them to the board!
Design #1: A glasses stand that has as a slot for a cleaning cloth!
Design #2: A Headphone Holder whose shape was inspired by the hooks that shovels / garden tools are hung on!
Both utilize the same peg shape that was designed by me.
</p3>
<br><br><br><br><br>
<br><br><br><br>
<hr style="width:20%; border-color: white; border-radius: 10px; border-style: dashed; border-width: 2px;">
<br><br><br><br>
<p5>
Hack Club YSWS List
<br><br>
<div class="language">
Languages: None
</div>
</p5>
<a href="https://cdn.hackclubber.dev/slackcdn/a5c0eca11e8f70268da8d5e3229ce10d.pdf">
<img src="https://cdn.hack.pet/slackcdn/9263597fa4a1e166b09afddc2ff00ce6.png" alt="proj icon" style="float: right; width: 25%; height:25%;">
</a>
<p3>
<a href="https://cdn.hackclubber.dev/slackcdn/a5c0eca11e8f70268da8d5e3229ce10d.pdf" class="subdomain-button">No Source Code Available. </a>
<br>
A comprehensive list of Hack Club YSWS programs organized and formatted them in a Canvas
for all Hack Club members to view (#ysws channel). This was heavily based on work done by previous Hack Clubbers,
but hours of work were put in by me.