-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrandom-project.html
1594 lines (1403 loc) · 57.3 KB
/
random-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" xmlns="http://www.w3.org/1999/html">
<head>
<link rel="icon" href="images/Logo.png">
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>Jackson Elia</title>
<link rel="stylesheet" type="text/css" href="styles/style.css">
<link rel="stylesheet" type="text/css" href="styles/header.css">
<link rel="stylesheet" type="text/css" href="styles/random-project.css">
<link rel="stylesheet" type="text/css" href="styles/buttons.css">
<link rel="stylesheet" type="text/css" href="styles/footer.css">
<link rel="stylesheet" type="text/css" href="styles/sliders.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<link href='https://fonts.googleapis.com/css?family=JetBrains Mono' rel='stylesheet'>
</head>
<body>
<header>
<div id="header-container">
<a href="index.html" id="logo"><img src="images/Logo.png" alt="Logo made by Sydney"></a>
<input id="main-nav-toggle" type="checkbox"/>
<label class="main-nav-button-container" for="main-nav-toggle">
<div class="main-nav-button" id="top-nav-button"></div>
<div class="main-nav-button" id="mid-nav-button"></div>
<div class="main-nav-button" id="bot-nav-button"></div>
</label>
<ul id="main-nav-list">
<li class="main-nav-item"><a href="index.html">Home</a></li>
<li class="main-nav-item"><a href="about.html">About</a></li>
<li class="main-nav-item"><a href="random-project.html">Random Project</a></li>
</ul>
<div id="header-background"></div>
</div>
</header>
<section class="page-section">
<!-- Start of Random Projects -->
<div class="random-project-div">
<div class="random-project-title">
<h2 class="page-title">Random Project Template</h2>
<a href="#" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
<h3 class="page-subtitle">Some Info</h3>
<div class="random-project-image">
<img src="images/Bouncy%20Image.png" alt="place-holder" loading="lazy">
</div>
<hr>
<div class="random-project-first-block">
<p>
Here is some text giving a basic overview of what the project is. quis nostrud exercitation
ullamco
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
<div class="random-project-second-block">
<h3 class="subtitle">Watch it in Action</h3>
<div class="random-project-text-video">
<p>
Here is some text explaining what is happening, what the video is showing etc. Lorem ipsum
dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat.
</p>
<img class="random-project-video" src="images/Bouncy%20Image.png" alt="place-holder"
loading="lazy">
</div>
</div>
<div class="random-project-third-block">
<h3 class="subtitle">Why I made it</h3>
<p>
Here gives a background on my motivation for the project wether that be learning or fun.
Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
<div class="random-project-fourth-block">
<div class="what-i-learned-box">
<h3 class="subtitle">What I learned</h3>
<div class="things-learned">
<ol class="things-learned-list">
<li class="thing-learned-item">
Thing that was learned
<p>
Some more info about what was learned and how I grew
</p>
</li>
<li class="thing-learned-item">
Thing that was learned
<p>
Some more info about what was learned and how I grew
</p>
</li>
<li class="thing-learned-item">
Thing that was learned
<p>
Some more info about what was learned and how I grew
</p>
</li>
</ol>
</div>
</div>
</div>
<div class="random-project-fifth-block">
<h3 class="subtitle">Learn More</h3>
<div class="call-to-action-box">
<p>Further information, background, and a download for this project are available at my
Github.</p>
<a class="button1" href="#"><span
class="button1span">Check it Out!</span></a>
</div>
</div>
</div>
<!-- AFK Apex Bot -->
<div class="random-project-div">
<div class="random-project-title">
<h2 class="page-title">AFK Apex Bot</h2>
<a href="https://github.com/jacksonelia/AFK_Apex_Bot" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
<h3 class="page-subtitle">A bot that gets XP in Apex Legends</h3>
<div class="random-project-image">
<img src="images/AFK%20Apex%20Bot%20Image.png" alt="AFK Apex Bot GUI" loading="lazy">
</div>
<hr>
<div class="random-project-first-block">
<p>
A program that allows the user to AFK in Apex Legends games in order to either lower their
KD or get XP. This is especially useful for finishing the battlepass or getting an heirloom
as it can get a substantial amount of XP in a short period of time. Only works in 1080P and
1440P (Your primary monitor for Apex has to be one of these resolutions, check quick fixes
at the bottom for a work around.). Also, it is assummed that your jump key is space and your
move forward key is w but allows you to choose your interact key and tactical key.
</p>
</div>
<!-- <div class="random-project-second-block">-->
<!-- <h3 class="subtitle">Watch it in Action</h3>-->
<!-- <div class="random-project-text-video">-->
<!-- <p>-->
<!-- Here is some text explaining what is happening, what the video is showing etc. Lorem ipsum-->
<!-- dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut-->
<!-- labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco-->
<!-- laboris nisi ut aliquip ex ea commodo consequat.-->
<!-- </p>-->
<!-- <img class="random-project-video" src="images/Bouncy%20Image.png" alt="place-holder"-->
<!-- loading="lazy">-->
<!-- </div>-->
<!-- </div>-->
<!-- TODO: Record video for this -->
<div class="random-project-third-block">
<h3 class="subtitle">Why I made it</h3>
<p>
I made this program mainly because the battle pass in Apex Legends takes a long time to get
by manually playing, and I realized that I could automate a process to do it for me. Also, I
made it because I wanted to learn more about making GUIs with python.
</p>
</div>
<div class="random-project-fourth-block">
<div class="what-i-learned-box">
<h3 class="subtitle">What I learned</h3>
<div class="things-learned">
<ol class="things-learned-list">
<li class="thing-learned-item">
GUI Making with Tkinter
<p>
This is one of the oldest and most used library for GUI making for Python
</p>
</li>
<li class="thing-learned-item">
PyAutoGUI
<p>
This library allows for easy image recognition and automation
</p>
</li>
<li class="thing-learned-item">
PyDirectInput
<p>
This library allows for artificially simulating mouse and keyboard inputs
</p>
</li>
</ol>
</div>
</div>
</div>
<div class="random-project-fifth-block">
<h3 class="subtitle">Learn More</h3>
<div class="call-to-action-box">
<p>Further information, background, and a download for this project are available at my
Github.</p>
<a class="button1" href="https://github.com/jacksonelia/AFK_Apex_Bot"><span
class="button1span">Check it Out!</span></a>
</div>
</div>
</div>
<!-- Bouncy -->
<div class="random-project-div">
<div class="random-project-title">
<h2 class="page-title">Bouncy</h2>
<a href="https://github.com/jacksonelia/Bouncy" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
<h3 class="page-subtitle">A simple game that quickly turns to chaos</h3>
<div class="random-project-image">
<img src="images/Bouncy%20Image.png" alt="Bouncy GUI" loading="lazy">
</div>
<hr>
<div class="random-project-first-block">
<p>
This is a simple game made from Java that becomes a chaotic bullet-hell. I made the
rudimentary game engine from scratch. It is an endless game that continually gets harder.
As the player gets further into the game, the difficulty quickly ramps up with new enemies
and bosses appearing.
</p>
</div>
<!-- <div class="random-project-second-block">-->
<!-- <h3 class="subtitle">Watch it in Action</h3>-->
<!-- <div class="random-project-text-video">-->
<!-- <p>-->
<!-- Here is some text explaining what is happening, what the video is showing etc. Lorem ipsum-->
<!-- dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut-->
<!-- labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco-->
<!-- laboris nisi ut aliquip ex ea commodo consequat.-->
<!-- </p>-->
<!-- <img class="random-project-video" src="images/Bouncy%20Image.png" alt="place-holder"-->
<!-- loading="lazy">-->
<!-- </div>-->
<!-- </div>-->
<!-- TODO: Record video -->
<div class="random-project-third-block">
<h3 class="subtitle">Why I made it</h3>
<p>
I made this game because I wanted to learn more about Java and the reason why I started
programming was to make games. This project helped me learn more about the Java development
process and changed programming in it from a pain-filled, grueling process to a mild
annoyance. Additionally, it reinvigorated my interest in programming because it made me
realize how fun game development is.
</p>
</div>
<div class="random-project-fourth-block">
<div class="what-i-learned-box">
<h3 class="subtitle">What I learned</h3>
<div class="things-learned">
<ol class="things-learned-list">
<li class="thing-learned-item">
Java AWT
<p>
Java's original platform-dependent windowing, graphics, and user-interface widget
toolkit
</p>
</li>
<li class="thing-learned-item">
OpenCSV
<p>
This library is used for local data storage
</p>
</li>
<li class="thing-learned-item">
The Java Design Structure
<p>
I learned how a project should be created and structured in Java
</p>
</li>
</ol>
</div>
</div>
</div>
<div class="random-project-fifth-block">
<h3 class="subtitle">Learn More</h3>
<div class="call-to-action-box">
<p>Further information, background, and a download for this project are available at my
Github.</p>
<a class="button1" href="https://github.com/jacksonelia/Bouncy"><span
class="button1span">Check it Out!</span></a>
</div>
</div>
</div>
<!-- Casino Crawl -->
<div class="random-project-div">
<div class="random-project-title">
<h2 class="page-title">Casino Crawl</h2>
<a href="https://github.com/yikuansun/CasinoCrawler" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
<h3 class="page-subtitle">A dungeon crawler game-jam game</h3>
<div class="random-project-image">
<img src="images/Casino%20Crawl.png" alt="place-holder" loading="lazy">
</div>
<hr>
<div class="random-project-first-block">
<p>
Me and a few friends made this game in the 2022 GMTK Game Jam. We were extremely time
crunched as we didn't do anything the first day of the jam, and ended up making this game
in around 12 hours. It was my first time using the JavaScript framework Phaser and it was
the second real game I made. Overall, it was a lot of fun and helped me learn a lot about
game development with a team.
</p>
</div>
<!-- <div class="random-project-second-block">-->
<!-- <h3 class="subtitle">Watch it in Action</h3>-->
<!-- <div class="random-project-text-video">-->
<!-- <p>-->
<!-- First, the bot scans the village for an obstacle, then it finds one and removes it. Next,-->
<!-- it opens the builder menu and checks to see if there are any available upgrades, then it-->
<!-- upgrades a building. Next, it trains some troops and eventually starts looking for bases-->
<!-- to attack while reading how much loot each base has. When it finds a base with higher-->
<!-- loot than normal, it attacks it. Finally, it repeats this whole process.-->
<!-- </p>-->
<!-- <iframe src="https://www.youtube.com/embed/oEafdI-6Ch4"></iframe>-->
<!-- </div>-->
<!-- </div>-->
<!-- TODO: Add video -->
<div class="random-project-third-block">
<h3 class="subtitle">Why I made it</h3>
<p>
I made this game because I wanted to learn more about JavaScript and because I wanted to
experience what it was like making a game in such short notice.
</p>
</div>
<div class="random-project-fourth-block">
<div class="what-i-learned-box">
<h3 class="subtitle">What I learned</h3>
<div class="things-learned">
<ol class="things-learned-list">
<li class="thing-learned-item">
Phaser
<p>
A fast, free and fun open source framework for powered browser games
</p>
</li>
<li class="thing-learned-item">
JavaScript
<p>
The most popular and used programming language for websites
</li>
<li class="thing-learned-item">
Gimp
<p>
An open source image editor used for everything from photo manipulation to creating
original artwork
</p>
</li>
</ol>
</div>
</div>
</div>
<div class="random-project-fifth-block">
<h3 class="subtitle">Learn More</h3>
<div class="call-to-action-box">
<p>You can play this game on Itch.io!</p>
<a class="button1" href="https://makegamestopcomplain.itch.io/casino-crawl"><span
class="button1span">Check it Out!</span></a>
</div>
</div>
</div>
<!-- COC Auto Bot -->
<div class="random-project-div">
<div class="random-project-title">
<h2 class="page-title">COC Auto Bot</h2>
<a href="https://github.com/jacksonelia/COC_Auto_Bot" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
<h3 class="page-subtitle">A bot that automates the game Clash of Clans</h3>
<div class="random-project-image">
<img src="images/COC%20Auto%20Bot%20Image.png" alt="place-holder" loading="lazy">
<!-- TODO: Get a better picture-->
</div>
<hr>
<div class="random-project-first-block">
<p>
This is a bot that can automate the full process of leveling up an account in Clash of
Clans. This bot aims to be able to level up and upgrade a Clash of Clans account from
town hall 2 to town hall 14 with very little user interference. It can collect resources,
remove obstacles, upgrade and buy new buildings, train troops, and attack. The goal of the
project is to prove that it is possible rather than to exploit the game.
</p>
</div>
<div class="random-project-second-block">
<h3 class="subtitle">Watch it in Action</h3>
<div class="random-project-text-video">
<p>
First, the bot scans the village for an obstacle, then it finds one and removes it. Next,
it opens the builder menu and checks to see if there are any available upgrades, then it
upgrades a building. Next, it trains some troops and eventually starts looking for bases
to attack while reading how much loot each base has. When it finds a base with higher
loot than normal, it attacks it. Finally, it repeats this whole process.
</p>
<!-- <iframe src="https://www.youtube.com/embed/oEafdI-6Ch4"></iframe>-->
<!-- They took down my video :( -->
</div>
</div>
<div class="random-project-third-block">
<h3 class="subtitle">Why I made it</h3>
<p>
I made this bot because I wanted to familiarize myself with OpenCV and image recognition so
that I could use it on my school's robotics team's robot. We want to eventually do some
image recognition and deep learning on our robot so that we can surpass other teams
programmatically. Also, I made this bot because I could not find others who had tried making
a bot in the same was as me.
</p>
</div>
<div class="random-project-fourth-block">
<div class="what-i-learned-box">
<h3 class="subtitle">What I learned</h3>
<div class="things-learned">
<ol class="things-learned-list">
<li class="thing-learned-item">
OpenCV
<p>
A library of aimed at real-time computer vision and image recognition
</p>
</li>
<li class="thing-learned-item">
Pillow
<p>
A library used for working with and manipulating images
</p>
</li>
<li class="thing-learned-item">
PyWin32
<p>
A library that provides access to many of the Window's APIs
</p>
</li>
</ol>
</div>
</div>
</div>
<div class="random-project-fifth-block">
<h3 class="subtitle">Learn More</h3>
<div class="call-to-action-box">
<p>Further information, background, and a download for this project are available at my
Github.</p>
<a class="button1" href="https://github.com/jacksonelia/COC_Auto_Bot"><span
class="button1span">Check it Out!</span></a>
</div>
</div>
</div>
<!-- DCS Terminal -->
<div class="random-project-div">
<div class="random-project-title">
<h2 class="page-title">DCS Terminal</h2>
<a href="https://github.com/jacksonelia/DCS_Terminal" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
<h3 class="page-subtitle">A terminal that completes Datacamps</h3>
<div class="random-project-image">
<img src="images/DCS%20Terminal%20Image.jpg" alt="place-holder" loading="lazy">
</div>
<hr>
<div class="random-project-first-block">
<p>
This program will automatically finish a Datacamp course in minutes using a hacker-esque
terminal! It reaches into the page's source code and parses it in order to get the answers
and input them. Many, many, many nuances in Datacamp and bugs with Selenium made this
difficult to finish, but it is very effective.
</p>
</div>
<div class="random-project-second-block">
<h3 class="subtitle">Watch it in Action</h3>
<div class="random-project-text-video">
<p>
First the program logs into Datacamp using stored user credentials. Once it has finished
that, it accepts a link to a Datacamp course and then starts solving it. It solves each
type of exercise either by brute forcing it, or by parsing the answers from the page's
source code.
</p>
<iframe src="https://www.youtube.com/embed/KC-bnrYZPH0"></iframe>
</div>
</div>
<div class="random-project-third-block">
<h3 class="subtitle">Why I made it</h3>
<p>
Me and the other creator are both very passionate about programming and learning new things,
but we shared a hatred of datacamp. When we found out that all of the answers to the
exercises were in the page's source code, we new we had to exploit such an obvious
vulnerability. Its about the principle! Not about cheating on Datacamp! We made this in
order to learn more about websites, Selenium, and the Terminal.
</p>
</div>
<div class="random-project-fourth-block">
<div class="what-i-learned-box">
<h3 class="subtitle">What I learned</h3>
<div class="things-learned">
<ol class="things-learned-list">
<li class="thing-learned-item">
Selenium
<p>
A web based automation tool
</p>
</li>
<li class="thing-learned-item">
Undetected Chrome Driver
<p>
A version of chromedriver that can bypass Cloudflare
</p>
</li>
<li class="thing-learned-item">
How to work with others
<p>
This is one of my few projects where I have worked with another, the experience
taught me a lot about communication and working together
</p>
</li>
</ol>
</div>
</div>
</div>
<div class="random-project-fifth-block">
<h3 class="subtitle">Learn More</h3>
<div class="call-to-action-box">
<p>Further information, background, and a download for this project are available at my
Github.</p>
<a class="button1" href="https://github.com/jacksonelia/DCS_Terminal"><span
class="button1span">Check it Out!</span></a>
</div>
</div>
</div>
<!-- Ethermine Tracker -->
<div class="random-project-div">
<div class="random-project-title">
<h2 class="page-title">Ethermine Tracker</h2>
<a href="https://github.com/jacksonelia/EthermineTracker" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
<h3 class="page-subtitle">A lightweight program for tracking a mining address</h3>
<div class="random-project-image">
<img src="images/Ethermine%20Tracker.png" alt="place-holder" loading="lazy">
</div>
<hr>
<div class="random-project-first-block">
<p>
This project is for those who might have multiple people mining to the same pool, and want
to track how much each person is owed. It uses selenium to launch Chrome in headless mode
and tracks how much each computer/person is mining on ethermine.org every 10 minutes. It
stores the data in a csv file and displays it on the JavaFX gui.
</p>
</div>
<!-- <div class="random-project-second-block">-->
<!-- <h3 class="subtitle">Watch it in Action</h3>-->
<!-- <div class="random-project-text-video">-->
<!-- <p>-->
<!-- Here is some text explaining what is happening, what the video is showing etc. Lorem ipsum-->
<!-- dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut-->
<!-- labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco-->
<!-- laboris nisi ut aliquip ex ea commodo consequat.-->
<!-- </p>-->
<!-- <img class="random-project-video" src="images/Bouncy%20Image.png" alt="place-holder"-->
<!-- loading="lazy">-->
<!-- </div>-->
<!-- </div>-->
<!-- TODO: Record video -->
<div class="random-project-third-block">
<h3 class="subtitle">Why I made it</h3>
<p>
I made this project to familiarize myself with GUI building in Java, and because it was a
small problem that I wanted to solve. This project helped me get more comfortable with Java
and JAR files while helping me automate a boring task.
</p>
</div>
<div class="random-project-fourth-block">
<div class="what-i-learned-box">
<h3 class="subtitle">What I learned</h3>
<div class="things-learned">
<ol class="things-learned-list">
<li class="thing-learned-item">
JavaFX
<p>
The flagship, Java framework for creating and delivering desktop applications
</p>
</li>
<li class="thing-learned-item">
Maven
<p>
A build automation tool used primarily for Java projects
</p>
</li>
<li class="thing-learned-item">
Selenium
<p>
A web based automation tool
</p>
</li>
</ol>
</div>
</div>
</div>
<div class="random-project-fifth-block">
<h3 class="subtitle">Learn More</h3>
<div class="call-to-action-box">
<p>Further information, background, and a download for this project are available at my
Github.</p>
<a class="button1" href="https://github.com/jacksonelia/EthermineTracker"><span
class="button1span">Check it Out!</span></a>
</div>
</div>
</div>
<!-- Mazer -->
<div class="random-project-div">
<div class="random-project-title">
<h2 class="page-title">Mazer</h2>
<a href="https://github.com/jacksonelia/Mazer" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
<h3 class="page-subtitle">A maze maker and solver</h3>
<div class="random-project-image">
<img src="images/Mazer%20Image.png" alt="place-holder" loading="lazy">
</div>
<hr>
<div class="random-project-first-block">
<p>
Uses PyQt5 to paint the mazes. The user can make a maze and then watch as it is solved. Uses
brute force threading to solve the maze. Randomly generated mazes are a future addition.
This was my first project that really got me in love with programming as it challenged me
and made me grow. Since making it, I have come so far.
</p>
</div>
<!-- <div class="random-project-second-block">-->
<!-- <h3 class="subtitle">Watch it in Action</h3>-->
<!-- <div class="random-project-text-video">-->
<!-- <p>-->
<!-- Here is some text explaining what is happening, what the video is showing etc. Lorem ipsum-->
<!-- dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut-->
<!-- labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco-->
<!-- laboris nisi ut aliquip ex ea commodo consequat.-->
<!-- </p>-->
<!-- <img class="random-project-video" src="images/Bouncy%20Image.png" alt="place-holder"-->
<!-- loading="lazy">-->
<!-- </div>-->
<!-- </div>-->
<!-- TODO: Record a video -->
<div class="random-project-third-block">
<h3 class="subtitle">Why I made it</h3>
<p>
I made this program because I was bored and I wanted to prove to my Computer Science teacher
that I knew how to program. Also, I wanted to learn some things like recursive functions,
multi-threading, and how to make GUIs with PyQt5.
</p>
</div>
<div class="random-project-fourth-block">
<div class="what-i-learned-box">
<h3 class="subtitle">What I learned</h3>
<div class="things-learned">
<ol class="things-learned-list">
<li class="thing-learned-item">
PyQt5
<p>
A Python binding of the cross-platform GUI toolkit Qt
</p>
</li>
<li class="thing-learned-item">
Recursive Functions
<p>
A function that calls itself during its execution
</p>
</li>
<li class="thing-learned-item">
Multi-Threading
<p>
Running multiple processes simultaneously
</p>
</li>
</ol>
</div>
</div>
</div>
<div class="random-project-fifth-block">
<h3 class="subtitle">Learn More</h3>
<div class="call-to-action-box">
<p>Further information, background, and a download for this project are available at my
Github.</p>
<a class="button1" href="https://github.com/jacksonelia/Mazer"><span
class="button1span">Check it Out!</span></a>
</div>
</div>
</div>
<!-- Screen Dimmer -->
<div class="random-project-div">
<div class="random-project-title">
<h2 class="page-title">Screen Dimmer</h2>
<a href="https://github.com/jacksonelia/Screen_Dimmer" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
<h3 class="page-subtitle">A simple brightness-control app</h3>
<div class="random-project-image">
<img src="images/Screen%20Dimmer%20Image.png" alt="Screen Dimmer Image" loading="lazy">
</div>
<hr>
<div class="random-project-first-block">
<p>
This application lets you adjust the brightness of your screens/monitors individually or
at once. It is especially useful for controlling the brightness of external monitors for a
desktop pc. It sits in your toolbar and makes controlling brightness easy. It will detect
how many monitors you have connected automatically.
</p>
</div>
<div class="random-project-third-block">
<h3 class="subtitle">Why I made it</h3>
<p>
I made this app because I have a 3 monitor setup, and they were burning my eyes at night.
For some reason, windows wasn't allowing me to change their brightness and I had to
manually change it with the monitors' buttons. Also, I couldn't find any better apps that
weren't filled with glitches, so I made my own.
</p>
</div>
<div class="random-project-fourth-block">
<div class="what-i-learned-box">
<h3 class="subtitle">What I learned</h3>
<div class="things-learned">
<ol class="things-learned-list">
<li class="thing-learned-item">
PyQt5
<p>
A Python binding of the cross-platform GUI toolkit Qt
</p>
</li>
<li class="thing-learned-item">
Qt Designer
<p>
The Qt tool for designing and building graphical user interfaces
</p>
</li>
<li class="thing-learned-item">
SBC
<p>
A Python tool for controlling the brightness of your monitor
</p>
</li>
</ol>
</div>
</div>
</div>
<div class="random-project-fifth-block">
<h3 class="subtitle">Learn More</h3>
<div class="call-to-action-box">
<p>Further information, background, and a download for this project are available at my
Github.</p>
<a class="button1" href="https://github.com/jacksonelia/Screen_Dimmer"><span
class="button1span">Check it Out!</span></a>
</div>
</div>
</div>
<!-- This Website -->
<div class="random-project-div">
<div class="random-project-title">
<h2 class="page-title">This Website</h2>
<a href="https://github.com/jacksonelia/jacksonelia.github.io" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
<h3 class="page-subtitle">My Portfolio website to display my programming</h3>
<div class="random-project-image">
<img src="images/Website%20Image.png" alt="place-holder" loading="lazy">
</div>
<hr>
<div class="random-project-first-block">
<p>
This project is my personal portfolio website, the one you're viewing right now! This
website was my first real introduction to webdev, and I did it with Google and trial and
error, no tutorial! I'm proud of how it turned out, and I'm excited to continue making
websites.
</p>
</div>
<div class="random-project-third-block">
<h3 class="subtitle">Why I made it</h3>
<p>
I made this website because I wanted a better place to show off my programming portfolio
than github, and I thought: "Wouldn't it be cool to program a website to show off my
programs and portfolio?" And it was! Also, I've been wanting to get into webdev and learn
JavaScript for a while, and this was the perfect way to start.
</p>
</div>
<div class="random-project-fourth-block">
<div class="what-i-learned-box">
<h3 class="subtitle">What I learned</h3>
<div class="things-learned">
<ol class="things-learned-list">
<li class="thing-learned-item">
JavaScript
<p>
The most popular and used programming language for websites
</p>
</li>
<li class="thing-learned-item">
HTML
<p>
The standard markup language for documents designed to be displayed in a web browser
</p>
</li>
<li class="thing-learned-item">
CSS
<p>
A style sheet language used for stylizing a webpage and its appearance
</p>
</li>
</ol>
</div>
</div>
</div>
<div class="random-project-fifth-block">
<h3 class="subtitle">Learn More</h3>
<div class="call-to-action-box">
<p>Further information, background, and a download for this project are available at my
Github.</p>
<a class="button1" href="https://github.com/jacksonelia/jacksonelia.github.io"><span
class="button1span">Check it Out!</span></a>
</div>
</div>
</div>
<!-- William Whitaker's Words -->
<div class="random-project-div">
<div class="random-project-title">
<h2 class="page-title">William Whitaker's Words App</h2>
<a href="https://github.com/JacksonElia/WilliamWhitakersWordsSwiftApp" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
<h3 class="page-subtitle">My own take at a William Whitakers Latin Translation app</h3>
<div class="random-project-image">
<img src="images/William%20Whitakers%20Words%20App%20Image.png" alt="place-holder"
loading="lazy">
</div>
<hr>
<div class="random-project-first-block">
<p>
My own take at a William Whitakers Latin Translation app that utilizes some basic web
scrapping and html parsing.
</p>
</div>
<div class="random-project-third-block">
<h3 class="subtitle">Why I made it</h3>
<p>
I made this app because I am a Latin student and I was unsatisfied with the app made for
William Whitaker's Words on IOS. Also, Swift was the first language I learned, but I was
getting rusty as I hadn't made something with it for a while. So, I made this app to
refamiliarize myself with Swift.
</p>
</div>
<div class="random-project-fourth-block">
<div class="what-i-learned-box">
<h3 class="subtitle">What I learned</h3>
<div class="things-learned">
<ol class="things-learned-list">
<li class="thing-learned-item">
Swift
<p>
The most popular and used programming language for IOS apps
</p>
</li>
<li class="thing-learned-item">
SwiftSoup
<p>
A library for webscrapping in Swift
</p>
</li>
</ol>
</div>
</div>
</div>
<div class="random-project-fifth-block">
<h3 class="subtitle">Learn More</h3>