-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.html
698 lines (668 loc) · 42.9 KB
/
resources.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="images/logo.png" type="image/icon type">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Barracoders - Resources</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="styles/resources.css">
</head>
<body>
<nav>
<div class="logo">
<a href="index.html"><img src="images/logo.png" alt="Logo"></a>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="docs/bylaws.pdf">Bylaws</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="portfolios.html">Portfolios</a></li>
</ul>
</nav>
<header>
<h1>Programming Resources</h1>
</header>
<main>
<section id="big-container">
<section id="resources">
<div class="search-container">
<input type="text" id="searchInput" placeholder="Search for resources...">
<div class="filter-container">
<label><input type="checkbox" class="filter" value="Languages"> Languages</label>
<label><input type="checkbox" class="filter" value="Engines"> Engines</label>
<label><input type="checkbox" class="filter" value="Other"> Other</label>
</div>
</div>
<div class="resources-grid" id="resourcesGrid">
<div class="resource-item" data-category="Languages">
<h3>JavaScript</h3>
<p>A versatile language commonly used for web development.</p>
<ul>
<li><a href="https://www.freecodecamp.org">freeCodeCamp</a></li>
<li><a href="https://javascript.info">JavaScript.info</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">MDN Web Docs</a></li>
<li><a href="https://www.codecademy.com/learn/introduction-to-javascript">Codecademy</a></li>
<li><a href="https://eloquentjavascript.net">Eloquent JavaScript</a></li>
<li><a href="https://www.w3schools.com/js/">W3Schools</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>Python</h3>
<p>A powerful language that is easy to learn and widely used in many industries.</p>
<ul>
<li><a href="https://www.python.org">Python.org</a></li>
<li><a href="https://realpython.com">Real Python</a></li>
<li><a href="https://automatetheboringstuff.com">Automate the Boring Stuff</a></li>
<li><a href="https://www.codecademy.com/learn/learn-python-3">Codecademy</a></li>
<li><a href="https://www.datacamp.com">DataCamp</a></li>
<li><a href="https://www.learnpython.org">Learn Python</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>Java</h3>
<p>A widely used object-oriented programming language known for its portability.</p>
<ul>
<li><a href="https://docs.oracle.com/javase/tutorial/">Oracle Java Tutorials</a></li>
<li><a href="https://www.codecademy.com/learn/learn-java">Codecademy</a></li>
<li><a href="https://www.udemy.com/topic/java/">Udemy</a></li>
<li><a href="https://www.coursera.org/courses?query=java">Coursera</a></li>
<li><a href="https://www.geeksforgeeks.org/java/">GeeksforGeeks</a></li>
<li><a href="https://www.javatpoint.com/java-tutorial">JavaTpoint</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>Swift</h3>
<p>A powerful language for iOS and macOS app development.</p>
<ul>
<li><a href="https://swift.org">Apple's Language Guide</a></li>
<li><a href="https://www.raywenderlich.com">Ray Wenderlich</a></li>
<li><a href="https://www.hackingwithswift.com">Hacking with Swift</a></li>
<li><a href="https://www.udacity.com/course/ios-developer-nanodegree--nd003">Udacity</a></li>
<li><a href="https://www.codecademy.com/learn/learn-swift">Codecademy</a></li>
<li><a href="https://developer.apple.com/swift/">Apple Developer</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>HTML</h3>
<p>The standard markup language for creating web pages.</p>
<ul>
<li><a href="https://www.w3schools.com/html/">W3Schools</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">MDN Web Docs</a></li>
<li><a href="https://www.freecodecamp.org">freeCodeCamp</a></li>
<li><a href="https://www.codecademy.com/learn/learn-html">Codecademy</a></li>
<li><a href="https://www.coursera.org/courses?query=html">Coursera</a></li>
<li><a href="https://html.com">HTML.com</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>TypeScript</h3>
<p>A typed superset of JavaScript that compiles to plain JavaScript.</p>
<ul>
<li><a href="https://www.typescriptlang.org">TypeScriptlang.org</a></li>
<li><a href="https://www.freecodecamp.org">freeCodeCamp</a></li>
<li><a href="https://www.codecademy.com/learn/learn-typescript">Codecademy</a></li>
<li><a href="https://www.udemy.com/topic/typescript/">Udemy</a></li>
<li><a href="https://www.coursera.org/courses?query=typescript">Coursera</a></li>
<li><a href="https://basarat.gitbook.io/typescript/">TypeScript Deep Dive</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>C</h3>
<p>A powerful general-purpose language that is excellent for system programming.</p>
<ul>
<li><a href="https://www.learn-c.org">Learn-C.org</a></li>
<li><a href="https://www.geeksforgeeks.org/c-programming-language/">GeeksforGeeks</a></li>
<li><a href="https://www.codecademy.com/learn/learn-c">Codecademy</a></li>
<li><a href="https://www.udemy.com/topic/c-programming/">Udemy</a></li>
<li><a href="https://www.coursera.org/courses?query=c%20programming">Coursera</a></li>
<li><a href="https://www.programiz.com/c-programming">Programiz C</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>C#</h3>
<p>A modern object-oriented programming language developed by Microsoft.</p>
<ul>
<li><a href="https://docs.microsoft.com/en-us/learn/csharp/">Microsoft Learn</a></li>
<li><a href="https://www.codecademy.com/learn/learn-c-sharp">Codecademy</a></li>
<li><a href="https://www.udemy.com/topic/c-sharp/">Udemy</a></li>
<li><a href="https://www.pluralsight.com/paths/csharp">Pluralsight C# Path</a></li>
<li><a href="https://www.coursera.org/courses?query=c%23">Coursera</a></li>
<li><a href="https://www.tutorialspoint.com/csharp/index.htm">TutorialsPoint C#</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>C++</h3>
<p>A highly efficient and flexible language for system and application development.</p>
<ul>
<li><a href="https://www.learncpp.com">LearnCpp.com</a></li>
<li><a href="https://www.codecademy.com/learn/learn-c-plus-plus">Codecademy</a></li>
<li><a href="https://www.geeksforgeeks.org/c-plus-plus/">GeeksforGeeks</a></li>
<li><a href="https://www.udemy.com/topic/c-plus-plus/">Udemy</a></li>
<li><a href="https://www.coursera.org/courses?query=c%2B%2B">Coursera</a></li>
<li><a href="https://www.programiz.com/cpp-programming">Programiz C++</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>C*</h3>
<p>A language for parallel computing developed by Thinking Machines Corporation.</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/C*">Wikipedia C*</a></li>
<li><a href="https://www.tutorialspoint.com/cprogramming/index.htm">TutorialsPoint C</a></li>
<li><a href="https://www.geeksforgeeks.org/c-programming-language/">GeeksforGeeks C</a></li>
<li><a href="https://www.javatpoint.com/c-programming-language-tutorial">JavaTpoint C</a></li>
<li><a href="https://www.learn-c.org/">Learn C</a></li>
<li><a href="https://www.programiz.com/c-programming">Programiz C</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>C--</h3>
<p>A C-like programming language designed to be generated by compilers for very high-level languages.</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/C--">Wikipedia C--</a></li>
<li><a href="https://www.cs.cmu.edu/~rwh/papers/c--paper.pdf">C-- Paper CMU</a></li>
<li><a href="https://www.geeksforgeeks.org/c-plus-plus/">GeeksforGeeks C++</a></li>
<li><a href="https://www.learncpp.com/">LearnCpp.com</a></li>
<li><a href="https://www.udemy.com/topic/c-plus-plus/">Udemy C++</a></li>
<li><a href="https://www.coursera.org/courses?query=c%2B%2B">Coursera C++</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>F</h3>
<p>An array programming language based on APL.</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/F_(programming_language)">Wikipedia F</a></li>
<li><a href="https://www.tutorialspoint.com/f-programming/index.htm">TutorialsPoint F</a></li>
<li><a href="https://www.tutorialspoint.com/fortran/index.htm">TutorialsPoint Fortran</a></li>
<li><a href="https://www.geeksforgeeks.org/fortran-programming-language/">GeeksforGeeks Fortran</a></li>
<li><a href="https://fortran-lang.org/">Fortran-lang</a></li>
<li><a href="https://www.coursera.org/courses?query=fortran">Coursera Fortran</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>F#</h3>
<p>A functional-first programming language that runs on .NET.</p>
<ul>
<li><a href="https://fsharp.org/">F# Foundation</a></li>
<li><a href="https://docs.microsoft.com/en-us/dotnet/fsharp/">Microsoft F# Docs</a></li>
<li><a href="https://fsharpforfunandprofit.com/">F# for Fun and Profit</a></li>
<li><a href="https://www.udemy.com/course/fsharp-programming/">Udemy F#</a></li>
<li><a href="https://www.coursera.org/courses?query=f%23">Coursera F#</a></li>
<li><a href="https://www.pluralsight.com/courses/fsharp-fundamentals">Pluralsight F#</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>F*</h3>
<p>A general-purpose functional programming language with effects aimed at program verification.</p>
<ul>
<li><a href="https://www.fstar-lang.org/">F* Official Site</a></li>
<li><a href="https://en.wikipedia.org/wiki/F*">Wikipedia F*</a></li>
<li><a href="https://www.microsoft.com/en-us/research/project/fstar/">Microsoft F*</a></li>
<li><a href="https://www.udemy.com/topic/f-star/">Udemy F*</a></li>
<li><a href="https://www.coursera.org/courses?query=f%20star">Coursera F*</a></li>
<li><a href="https://github.com/FStarLang/FStar">GitHub F*</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>Jython</h3>
<p>An implementation of Python that runs on the Java platform.</p>
<ul>
<li><a href="https://www.jython.org/">Jython Official Site</a></li>
<li><a href="https://en.wikipedia.org/wiki/Jython">Wikipedia Jython</a></li>
<li><a href="https://www.udemy.com/course/learn-jython/">Udemy Jython</a></li>
<li><a href="https://www.coursera.org/courses?query=jython">Coursera Jython</a></li>
<li><a href="https://www.tutorialspoint.com/jython/index.htm">TutorialsPoint Jython</a></li>
<li><a href="https://github.com/jythontools/jython">GitHub Jython</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>SQL</h3>
<p>A language for managing and manipulating databases.</p>
<ul>
<li><a href="https://www.w3schools.com/sql/">W3Schools</a></li>
<li><a href="https://www.codecademy.com/learn/learn-sql">Codecademy</a></li>
<li><a href="https://sqlzoo.net">SQLZoo</a></li>
<li><a href="https://mode.com/sql-tutorial/">Mode Analytics</a></li>
<li><a href="https://www.coursera.org/courses?query=sql">Coursera</a></li>
<li><a href="https://www.khanacademy.org/computing/computer-programming/sql">Khan Academy SQL</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>Ruby</h3>
<p>A dynamic, open-source programming language with a focus on simplicity and productivity.</p>
<ul>
<li><a href="https://www.codecademy.com/learn/learn-ruby">Codecademy</a></li>
<li><a href="https://www.theodinproject.com">The Odin Project</a></li>
<li><a href="https://www.learn-ruby.org">Learn-Ruby.org</a></li>
<li><a href="https://rubymonk.com">RubyMonk</a></li>
<li><a href="https://www.udemy.com/topic/ruby/">Udemy</a></li>
<li><a href="https://www.codecademy.com/learn/ruby">Codecademy Ruby</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>Rust</h3>
<p>A language empowering everyone to build reliable and efficient software.</p>
<ul>
<li><a href="https://www.rust-lang.org/learn">Rust Lang</a></li>
<li><a href="https://github.com/pretzelhammer/rust-blog/blob/master/posts/common-rust-lifetime-misconceptions.md">Rust Blog</a></li>
<li><a href="https://rustbyexample.com">Rust by Example</a></li>
<li><a href="https://www.udemy.com/course/rust-programming-language/">Udemy</a></li>
<li><a href="https://www.coursera.org/courses?query=rust">Coursera</a></li>
<li><a href="https://www.reddit.com/r/rust/">Reddit Rust</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>Go</h3>
<p>Go is an open-source programming language that makes it easy to build simple, reliable, and efficient software.</p>
<ul>
<li><a href="https://golang.org/doc/">Go Documentation</a></li>
<li><a href="https://tour.golang.org">A Tour of Go</a></li>
<li><a href="https://gobyexample.com">Go by Example</a></li>
<li><a href="https://www.udemy.com/course/learn-go-the-complete-bootcamp-course-golang/">Udemy Go</a></li>
<li><a href="https://www.coursera.org/courses?query=go">Coursera</a></li>
<li><a href="https://www.reddit.com/r/golang/">Reddit Go</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>PHP</h3>
<p>A popular general-purpose scripting language that is especially suited to web development.</p>
<ul>
<li><a href="https://www.php.net/docs.php">PHP Documentation</a></li>
<li><a href="https://www.w3schools.com/php/">W3Schools PHP</a></li>
<li><a href="https://www.codecademy.com/learn/learn-php">Codecademy PHP</a></li>
<li><a href="https://www.udemy.com/topic/php/">Udemy PHP</a></li>
<li><a href="https://www.coursera.org/courses?query=php">Coursera PHP</a></li>
<li><a href="https://www.learn-php.org">Learn PHP</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>Kotlin</h3>
<p>A modern programming language that makes developers happier.</p>
<ul>
<li><a href="https://kotlinlang.org/docs/home.html">Kotlin Documentation</a></li>
<li><a href="https://developer.android.com/kotlin">Android Developers Kotlin</a></li>
<li><a href="https://www.codecademy.com/learn/learn-kotlin">Codecademy Kotlin</a></li>
<li><a href="https://www.udemy.com/topic/kotlin/">Udemy Kotlin</a></li>
<li><a href="https://www.coursera.org/courses?query=kotlin">Coursera Kotlin</a></li>
<li><a href="https://www.jetbrains.com/academy/">JetBrains Academy Kotlin</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>Microsoft .NET</h3>
<p>A free, cross-platform, open-source developer platform for building many different types of applications.</p>
<ul>
<li><a href="https://dotnet.microsoft.com/learn">Microsoft Learn .NET</a></li>
<li><a href="https://docs.microsoft.com/en-us/dotnet/">.NET Documentation</a></li>
<li><a href="https://www.codecademy.com/learn/learn-dotnet">Codecademy .NET</a></li>
<li><a href="https://www.udemy.com/topic/dotnet/">Udemy .NET</a></li>
<li><a href="https://www.coursera.org/courses?query=.net">Coursera .NET</a></li>
<li><a href="https://www.dotnetfoundation.org/learn">.NET Foundation Learn</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>GameMaker</h3>
<p>GameMaker is a cross-platform game engine developed by YoYo Games.</p>
<ul>
<li><a href="https://gamemaker.io/en/learn">GameMaker Tutorials</a></li>
<li><a href="https://www.yoyogames.com/learn">YoYo Games Learn</a></li>
<li><a href="https://www.udemy.com/topic/gamemaker/">Udemy GameMaker</a></li>
<li><a href="https://www.reddit.com/r/gamemaker/">Reddit GameMaker</a></li>
<li><a href="https://www.youtube.com/user/YoYoGamesLTD">YoYo Games YouTube</a></li>
<li><a href="https://www.yoyogames.com/forum">YoYo Games Forum</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>GDevelop</h3>
<p>GDevelop is an open-source, cross-platform game engine designed for everyone.</p>
<ul>
<li><a href="https://gdevelop.io/learn">GDevelop Tutorials</a></li>
<li><a href="https://wiki.compilgames.net/doku.php/gdevelop5">GDevelop Wiki</a></li>
<li><a href="https://www.youtube.com/user/FlorianRival">GDevelop YouTube</a></li>
<li><a href="https://www.reddit.com/r/gdevelop/">Reddit GDevelop</a></li>
<li><a href="https://www.gdevelop.io/community">GDevelop Community</a></li>
<li><a href="https://www.tutorialspoint.com/gdevelop/index.htm">TutorialsPoint GDevelop</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>Pico-8</h3>
<p>Pico-8 is a fantasy console for making, sharing, and playing tiny games and other computer programs.</p>
<ul>
<li><a href="https://www.lexaloffle.com/pico-8.php">Pico-8 Documentation</a></li>
<li><a href="https://pico-8.fandom.com/wiki/PICO-8_Wiki">Pico-8 Wiki</a></li>
<li><a href="https://www.youtube.com/channel/UCg27XOjYojC_FM_3nt7wX0w">Pico-8 YouTube</a></li>
<li><a href="https://www.reddit.com/r/PICO_8/">Reddit Pico-8</a></li>
<li><a href="https://www.tutorialspoint.com/pico-8/index.htm">TutorialsPoint Pico-8</a></li>
<li><a href="https://www.lexaloffle.com/bbs/?cat=7">Pico-8 BBS</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>Defold</h3>
<p>Defold is a cross platform game engine for indie developers.</p>
<ul>
<li><a href="https://defold.com/learn/">Defold Learn</a></li>
<li><a href="https://defold.com/manuals/getting-started/">Defold Manuals</a></li>
<li><a href="https://www.udemy.com/course/introduction-to-the-defold-game-engine/">Udemy Defold</a></li>
<li><a href="https://www.youtube.com/playlist?list=PLgt9l7xRUL7L20mQeR9nSlgbzX-NYID6J">Defold YouTube</a></li>
<li><a href="https://www.reddit.com/r/defold/">Reddit Defold</a></li>
<li><a href="https://defold.com/community/">Defold Community</a></li>
</ul>
</div>
<div class="resource-item" data-category="Other">
<h3>Linux Mint</h3>
<p>Linux Mint is a community-driven Linux distribution based on Ubuntu, bundled with a variety of free and open-source applications.</p>
<ul>
<li><a href="https://linuxmint.com/documentation.php">Linux Mint Docs</a></li>
<li><a href="https://forums.linuxmint.com/">Linux Mint Forums</a></li>
<li><a href="https://linuxmint-user-guide.readthedocs.io/en/latest/">Linus Mint User Guide</a></li>
<li><a href="https://www.reddit.com/r/linuxmint/">r/linuxmint</a></li>
<li><a href="https://blog.linuxmint.com/">Linux Mint Blog</a></li>
<li><a href="https://www.tutorialspoint.com/linux_mint/index.htm">TutorialsPoint Linux Mint</a></li>
</ul>
</div>
<div class="resource-item" data-category="Other">
<h3>Windows PowerShell</h3>
<p>PowerShell is a task automation and configuration management program from Microsoft, consisting of a command-line shell and the associated scripting language.</p>
<ul>
<li><a href="https://learn.microsoft.com/en-us/powershell/">Microsoft Learn</a></li>
<li><a href="https://learn.microsoft.com/en-us/powershell/scripting/overview?view=powershell-7.4&viewFallbackFrom=powershell-7.1">Microsoft Powershell Docs</a></li>
<li><a href="https://www.pluralsight.com/courses/powershell-intro">PluralSight Powershell</a></li>
<li><a href="https://devblogs.microsoft.com/scripting/">Microsoft Scripting Blog</a></li>
<li><a href="https://www.udemy.com/course/powershell/">Udemy PowerShell</a></li>
<li><a href="https://www.reddit.com/r/PowerShell/">Reddit PowerShell</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>Godot</h3>
<p>Godot is a cross-platform, free and open-source game engine released under the permissive MIT license.</p>
<ul>
<li><a href="https://docs.godotengine.org/en/stable/index.html">Godot Docs</a></li>
<li><a href="https://www.gdquest.com/">GD Quest</a></li>
<li><a href="https://forum.godotengine.org/">Godot Forum</a></li>
<li><a href="https://www.reddit.com/r/godot/">r/godot</a></li>
<li><a href="https://godotengine.org/community/">Godot Community</a></li>
<li><a href="https://www.tutorialspoint.com/godot/index.htm">TutorialsPoint Godot</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>Unity</h3>
<p>Unity is a cross-platform game engine developed by Unity Technologies.</p>
<ul>
<li><a href="https://learn.unity.com/">Unity Learn</a></li>
<li><a href="https://docs.unity3d.com/Manual/index.html">Unity Docs</a></li>
<li><a href="https://discussions.unity.com/">Unity Forums</a></li>
<li><a href="https://unity.com/community">Unity Community</a></li>
<li><a href="https://www.reddit.com/r/Unity3D/">r/Unity3D</a></li>
<li><a href="https://www.tutorialspoint.com/unity/index.htm">TutorialsPoint Unity</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>Unreal Engine</h3>
<p>Unreal Engine is a series of 3D computer graphics and game engines developed by Epic Games.</p>
<ul>
<li><a href="https://docs.unrealengine.com/en-US/index.html">Unreal Docs</a></li>
<li><a href="https://www.unrealengine.com/en-US/onlinelearning-courses">UE Online Learning</a></li>
<li><a href="https://dev.epicgames.com/community/unreal-engine/learning">Unreal Learning</a></li>
<li><a href="https://forums.unrealengine.com/">Unreal Forums</a></li>
<li><a href="https://unrealcommunity.wiki/">Unreal Wiki</a></li>
<li><a href="https://www.tutorialspoint.com/unreal_engine/index.htm">TutorialsPoint Unreal</a></li>
</ul>
</div>
<div class="resource-item" data-category="Other">
<h3>Other Resources</h3>
<p>General resources for learning coding and software development.</p>
<ul>
<li><a href="https://www.freecodecamp.org">freeCodeCamp</a></li>
<li><a href="https://glitch.com">Glitch</a></li>
<li><a href="https://codehs.com">CodeHS</a></li>
<li><a href="https://sololearn.com">Sololearn</a></li>
<li><a href="https://ozaria.com">Ozaria</a></li>
<li><a href="https://khanacademy.org">Khan Academy</a></li>
</ul>
</div>
<div class="resource-item" data-category="Other">
<h3>Binary</h3>
<p>A numeric system that only uses two digits — 0 and 1.</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Binary_number">Wikipedia Binary</a></li>
<li><a href="https://www.tutorialspoint.com/computer_logical_organization/binary_number_system.htm">TutorialsPoint Binary</a></li>
<li><a href="https://www.mathsisfun.com/binary-number-system.html">MathIsFun Binary</a></li>
<li><a href="https://www.khanacademy.org/computing/computer-science/cryptography">Khan Academy Cryptography</a></li>
<li><a href="https://www.cs.cmu.edu/~cburch/survey/reviews/binary.html">CMU Binary</a></li>
<li><a href="https://learn.sparkfun.com/tutorials/binary/what-is-binary">SparkFun Binary</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>XML</h3>
<p>A markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable.</p>
<ul>
<li><a href="https://www.w3schools.com/xml/">W3Schools XML</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/XML">MDN Web Docs XML</a></li>
<li><a href="https://www.xml.com/">XML.com</a></li>
<li><a href="https://www.tutorialspoint.com/xml/index.htm">TutorialsPoint XML</a></li>
<li><a href="https://www.geeksforgeeks.org/xml/">GeeksforGeeks XML</a></li>
<li><a href="https://www.ibm.com/developerworks/xml/tutorials/x-introxml/">IBM XML Tutorial</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>Game Salad</h3>
<p>A visual, drag-and-drop game creation tool.</p>
<ul>
<li><a href="https://learn.gamesalad.com/">Game Salad Learn</a></li>
<li><a href="https://help.gamesalad.com/">Game Salad Help</a></li>
<li><a href="https://www.youtube.com/user/gamesalad">Game Salad YouTube</a></li>
<li><a href="https://www.reddit.com/r/gamesalad/">Reddit Game Salad</a></li>
<li><a href="https://forums.gamesalad.com/">Game Salad Forums</a></li>
<li><a href="https://www.tutorialspoint.com/game_development/index.htm">TutorialsPoint Game Development</a></li>
</ul>
</div>
<div class="resource-item" data-category="Other">
<h3>ChatGPT Coding Resources</h3>
<p>Resources for coding with ChatGPT and understanding its applications.</p>
<ul>
<li><a href="https://platform.openai.com/docs/guides/gpt">OpenAI GPT Documentation</a></li>
<li><a href="https://platform.openai.com/docs/models/gpt">GPT Models Overview</a></li>
<li><a href="https://github.com/openai/openai-python">OpenAI Python Client Library</a></li>
<li><a href="https://openai.com/blog/chatgpt">OpenAI ChatGPT Blog</a></li>
<li><a href="https://community.openai.com">OpenAI Community Forum</a></li>
<li><a href="https://www.youtube.com/results?search_query=chatgpt+api+tutorial">ChatGPT API Tutorials on YouTube</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>A-Frame</h3>
<p>A web framework for building virtual reality experiences.</p>
<ul>
<li><a href="https://aframe.io/">A-Frame Official Site</a></li>
<li><a href="https://aframe.io/docs/">A-Frame Docs</a></li>
<li><a href="https://github.com/aframevr/aframe">GitHub A-Frame</a></li>
<li><a href="https://www.udemy.com/topic/a-frame/">Udemy A-Frame</a></li>
<li><a href="https://www.coursera.org/courses?query=a-frame">Coursera A-Frame</a></li>
<li><a href="https://www.youtube.com/channel/UCnhO7t2s0rA92IWFiWwU1CQ">A-Frame YouTube</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>Xcode</h3>
<p>An integrated development environment for macOS containing a suite of software development tools.</p>
<ul>
<li><a href="https://developer.apple.com/xcode/">Apple Xcode</a></li>
<li><a href="https://developer.apple.com/library/archive/documentation/DeveloperTools/Conceptual/Xcode_Overview/">Xcode Overview</a></li>
<li><a href="https://developer.apple.com/documentation/xcode">Xcode Documentation</a></li>
<li><a href="https://www.udemy.com/topic/xcode/">Udemy Xcode</a></li>
<li><a href="https://www.coursera.org/courses?query=xcode">Coursera Xcode</a></li>
<li><a href="https://www.raywenderlich.com/ios">Ray Wenderlich Xcode</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>Scratch</h3>
<p>A block-based visual programming language primarily used by children.</p>
<ul>
<li><a href="https://scratch.mit.edu/">Scratch MIT</a></li>
<li><a href="https://wiki.scratch.mit.edu/wiki/Scratch_Wiki">Scratch Wiki</a></li>
<li><a href="https://www.udemy.com/topic/scratch/">Udemy Scratch</a></li>
<li><a href="https://www.coursera.org/courses?query=scratch">Coursera Scratch</a></li>
<li><a href="https://www.scratch.mit.edu/ideas">Scratch Ideas</a></li>
<li><a href="https://www.reddit.com/r/scratch">Reddit Scratch</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>RPGMaker</h3>
<p>A game creation software designed for making role-playing games.</p>
<ul>
<li><a href="https://www.rpgmakerweb.com/">RPGMaker Web</a></li>
<li><a href="https://www.rpgmakerweb.com/support">RPGMaker Support</a></li>
<li><a href="https://forums.rpgmakerweb.com/">RPGMaker Forums</a></li>
<li><a href="https://www.reddit.com/r/RPGMaker/">Reddit RPGMaker</a></li>
<li><a href="https://www.youtube.com/user/RPGMakerDotNet">RPGMaker YouTube</a></li>
<li><a href="https://www.tutorialspoint.com/rpg/index.htm">TutorialsPoint RPGMaker</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>Roblox Studio</h3>
<p>The building tool of Roblox that helps to create the places of your dreams.</p>
<ul>
<li><a href="https://developer.roblox.com/">Roblox Developer</a></li>
<li><a href="https://en.help.roblox.com/hc/en-us/articles/115004630823-How-to-Use-Roblox-Studio">Roblox Studio Help</a></li>
<li><a href="https://www.udemy.com/topic/roblox/">Udemy Roblox</a></li>
<li><a href="https://www.coursera.org/courses?query=roblox">Coursera Roblox</a></li>
<li><a href="https://www.reddit.com/r/roblox">Reddit Roblox</a></li>
<li><a href="https://www.youtube.com/channel/UCw0xaH3n2PBe4Kn8cxQC0yg">Roblox YouTube</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>Ren'py</h3>
<p>A visual novel engine that helps you use words, images, and sounds to tell stories with the computer.</p>
<ul>
<li><a href="https://www.renpy.org/">Ren'py Official Site</a></li>
<li><a href="https://www.renpy.org/doc/html/">Ren'py Documentation</a></li>
<li><a href="https://www.reddit.com/r/RenPy/">Reddit Ren'py</a></li>
<li><a href="https://www.udemy.com/topic/renpy/">Udemy Ren'py</a></li>
<li><a href="https://www.coursera.org/courses?query=renpy">Coursera Ren'py</a></li>
<li><a href="https://www.youtube.com/channel/UCUs7SzatqC3PZ_jA75VrZfg">Ren'py YouTube</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>Source</h3>
<p>A 3D game engine developed by Valve Corporation.</p>
<ul>
<li><a href="https://developer.valvesoftware.com/wiki/Source">Source Wiki</a></li>
<li><a href="https://developer.valvesoftware.com/wiki/SDK_Docs">Source SDK Docs</a></li>
<li><a href="https://developer.valvesoftware.com/wiki/Source_SDK_2013">Source SDK 2013</a></li>
<li><a href="https://www.moddb.com/engines/source">ModDB Source Engine</a></li>
<li><a href="https://www.udemy.com/topic/source-engine/">Udemy Source Engine</a></li>
<li><a href="https://www.coursera.org/courses?query=source%20engine">Coursera Source Engine</a></li>
</ul>
</div>
<div class="resource-item" data-category="Languages">
<h3>JerryScript</h3>
<p>A lightweight JavaScript engine designed for embedded systems.</p>
<ul>
<li><a href="https://github.com/jerryscript-project/jerryscript">JerryScript GitHub Repository</a></li>
<li><a href="https://jerryscript.net">JerryScript Official Site</a></li>
<li><a href="https://github.com/jerryscript-project/jerryscript/wiki">JerryScript Documentation</a></li>
<li><a href="https://www.slideshare.net/oliverjones90/jerryscript-a-lightweight-javascript-engine-for-embedded-systems">JerryScript Slideshare Presentation</a></li>
<li><a href="https://twitter.com/jerryscript">JerryScript Twitter</a></li>
</ul>
</div>
<div class="resource-item" data-category="Other">
<h3>Raspberry Pi</h3>
<p>A series of small, affordable computers used for a wide range of projects, from learning programming to building electronics. (better than arduions)</p>
<ul>
<li><a href="https://www.raspberrypi.org">Official Raspberry Pi Site</a></li>
<li><a href="https://www.raspberrypi.org/documentation/">Raspberry Pi Documentation</a></li>
<li><a href="https://www.raspberrypi.org/forums/">Raspberry Pi Forums</a></li>
<li><a href="https://www.youtube.com/user/raspberrypi">Raspberry Pi YouTube Channel</a></li>
<li><a href="https://projects.raspberrypi.org/en/">Raspberry Pi Projects</a></li>
</ul>
</div>
<div class="resource-item" data-category="Other">
<h3>Arduino</h3>
<p>A popular open-source electronics platform based on easy-to-use hardware and software.</p>
<ul>
<li><a href="https://www.arduino.cc">Official Arduino Site</a></li>
<li><a href="https://www.arduino.cc/en/Guide">Arduino Guide</a></li>
<li><a href="https://www.arduino.cc/en/Tutorial/HomePage">Arduino Tutorials</a></li>
<li><a href="https://store.arduino.cc">Arduino Store</a></li>
<li><a href="https://forum.arduino.cc">Arduino Forum</a></li>
</ul>
</div>
<div class="resource-item" data-category="Engines">
<h3>Blender</h3>
<p>A powerful open-source tool for 3D modeling, animation, and rendering.</p>
<ul>
<li><a href="https://www.blender.org">Blender Official Site</a></li>
<li><a href="https://docs.blender.org/manual/en/latest/">Blender Documentation</a></li>
<li><a href="https://www.blenderartists.org">Blender Artists Forum</a></li>
<li><a href="https://www.youtube.com/user/BlenderFoundation">Blender YouTube Channel</a></li>
<li><a href="https://blendermarket.com">Blender Market</a></li>
<li><a href="https://www.blendernation.com">BlenderNation Blog</a></li>
</ul>
</div>
<div class="resource-item" data-category="Other">
<h3>Google Search API</h3>
<p>APIs for integrating Google Search capabilities into applications.</p>
<ul>
<li><a href="https://developers.google.com/custom-search">Custom Search JSON API</a></li>
<li><a href="https://developers.google.com/custom-search/docs/overview">Custom Search API Documentation</a></li>
<li><a href="https://console.cloud.google.com/apis/library/customsearch.googleapis.com">Google Cloud Console</a></li>
<li><a href="https://developers.google.com/custom-search/v1/overview">Custom Search API Overview</a></li>
<li><a href="https://github.com/googleapis/google-api-nodejs-client">Google API Node.js Client</a></li>
<li><a href="https://www.youtube.com/results?search_query=google+search+api">Google Search API Tutorials on YouTube</a></li>
</ul>
</div>
<div class="resource-item" data-category="Other">
<h3>Aseprite</h3>
<p>A pixel art tool for creating 2D animations and sprites.</p>
<ul>
<li><a href="https://www.aseprite.org">Aseprite Official Site</a></li>
<li><a href="https://www.aseprite.org/docs/">Aseprite Documentation</a></li>
<li><a href="https://www.youtube.com/channel/UCf7F8q8Zx8O4hdcFZp3j2cg">Aseprite YouTube Tutorials</a></li>
<li><a href="https://twitter.com/aseprite">Aseprite Twitter</a></li>
<li><a href="https://github.com/aseprite/aseprite">Aseprite GitHub Repository</a></li>
<li><a href="https://www.patreon.com/aseprite">Aseprite Patreon</a></li>
</ul>
</div>
</div>
</section>
</section>
</main>
<footer>
<p>
© 2024
<a href="https://www-bhs.stjohns.k12.fl.us/">Beachside Highschool</a>.
Created by the <a href="Untitled_design.png" style="text-decoration: none; color: inherit;">Beachside Barracoders</a>.
</p>
<p>
<a href="https://github.com/Barracoders/barracoders" style="text-decoration: none; color: #a6aeb0;"><i class="fa-brands fa-github" ></i> Proudly Open-Source</a>
</p>
</footer>
<script>
const searchInput = document.getElementById('searchInput');
const resourcesGrid = document.getElementById('resourcesGrid');
const filterCheckboxes = document.querySelectorAll('.filter');
searchInput.addEventListener('input', filterResources);
filterCheckboxes.forEach(checkbox => checkbox.addEventListener('change', filterResources));
function filterResources() {
const searchText = searchInput.value.toLowerCase();
const selectedFilters = Array.from(filterCheckboxes)
.filter(checkbox => checkbox.checked)
.map(checkbox => checkbox.value.toLowerCase());
const resources = resourcesGrid.querySelectorAll('.resource-item');
resources.forEach(resource => {
const matchesSearch = resource.textContent.toLowerCase().includes(searchText);
const matchesFilter = selectedFilters.length === 0 || selectedFilters.some(filter => resource.dataset.category.toLowerCase().includes(filter));
if (matchesSearch && matchesFilter) {
resource.style.display = 'block';
} else {
resource.style.display = 'none';
}
});
}
</script>
<script>
document.addEventListener('keydown', function(event) {
if (event.ctrlKey && event.altKey && event.key === 'x') {
window.open('/dev-tools/directory.html', '_blank');
}
});
</script>
</body>
</html>