-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
509 lines (473 loc) · 20.4 KB
/
index.html
File metadata and controls
509 lines (473 loc) · 20.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Foojay Java in Education Catalog</title>
<meta name="description" content="A community-driven catalog of Java learning resources with websites, tutorials, videos, books, and tools for students, educators, coding clubs, and developers.">
<meta property="og:type" content="website">
<meta property="og:title" content="Foojay Java in Education Catalog">
<meta property="og:description" content="A community-driven catalog of Java learning resources with websites, tutorials, videos, books, and tools for students, educators, coding clubs, and developers.">
<meta property="og:site_name" content="Foojay Java in Education Catalog">
<meta property="og:locale" content="en_US">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Foojay Java in Education Catalog">
<meta name="twitter:description" content="A community-driven catalog of Java learning resources with websites, tutorials, videos, books, and tools for students, educators, coding clubs, and developers.">
<style>
:root {
--bg: #00131B;
--surface: #0b1d26;
--card: #132733;
--border: #2b4958;
--accent-blue: #3562E5;
--accent-cyan: #4FC3F7;
--accent-green: #5EB761;
--accent-orange: #F0981B;
--text: #e2e4ea;
--text-muted: #9fb4c0;
--text-bright: #ffffff;
--radius: 12px;
--max-w: 1180px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
a {
color: var(--accent-cyan);
text-decoration: none;
transition: color .2s;
}
a:hover { color: var(--accent-orange); }
p a, li a { text-decoration: underline; text-underline-offset: 2px; }
nav {
position: sticky;
top: 0;
z-index: 100;
background: rgba(0, 19, 27, .88);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
}
.nav-inner {
max-width: var(--max-w);
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
padding: .85rem 1.5rem;
}
.nav-logo {
font-size: 1.05rem;
font-weight: 800;
color: var(--text-bright);
letter-spacing: -.02em;
white-space: nowrap;
}
.nav-logo .brand { color: var(--accent-cyan); }
.nav-links {
display: flex;
gap: .75rem;
flex-wrap: wrap;
}
.nav-links button {
background: none;
border: none;
color: var(--text-muted);
font-size: .875rem;
font-weight: 600;
cursor: pointer;
padding: .2rem 0;
}
.nav-links button:hover { color: var(--text-bright); }
.mobile-toggle {
display: none;
background: none;
border: none;
color: var(--text);
font-size: 1.5rem;
cursor: pointer;
}
.hero {
padding: 4rem 1.5rem 3rem;
background: radial-gradient(ellipse at 50% 0%, rgba(53, 98, 229, .22) 0%, transparent 60%);
}
.hero-inner {
max-width: var(--max-w);
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
gap: 1.5rem;
text-align: left;
}
.hero-logo {
max-width: 150px;
max-height: 150px;
width: auto;
height: auto;
display: block;
flex-shrink: 0;
}
.hero-copy { max-width: 900px; }
.hero h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 800;
color: var(--text-bright);
letter-spacing: -.03em;
margin-bottom: .8rem;
}
.hero h1 span {
background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-subtitle {
max-width: 900px;
margin-bottom: .75rem;
color: #c5d8e3;
font-size: 1.2rem;
font-weight: 600;
}
.hero-description {
max-width: 940px;
margin-bottom: .5rem;
color: var(--text-muted);
font-size: 1rem;
}
.hero-description:last-child { margin-bottom: 0; }
section { padding: 3.5rem 1.5rem; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-title {
font-size: 1.7rem;
font-weight: 700;
color: var(--text-bright);
margin-bottom: 1.5rem;
letter-spacing: -.02em;
}
.section-divider {
border: none;
border-top: 1px solid var(--border);
max-width: var(--max-w);
margin: 0 auto;
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1.25rem;
}
.card {
position: relative;
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1.5rem;
transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(79, 195, 247, .55); }
a.card {
display: block;
color: inherit;
text-decoration: none;
cursor: pointer;
}
a.card:hover {
color: inherit;
border-color: var(--accent-cyan);
transform: translateY(-2px);
}
.card-badges {
display: flex;
gap: .5rem;
flex-wrap: wrap;
margin-bottom: .8rem;
}
.card-badge {
display: inline-block;
font-size: .7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .05em;
padding: .2rem .55rem;
border-radius: 6px;
}
.badge-framework { background: rgba(53, 98, 229, .2); color: #8aa7ff; }
.badge-inference { background: rgba(79, 195, 247, .2); color: #9ddfff; }
.badge-assistant { background: rgba(240, 152, 27, .2); color: #f9be6b; }
.badge-resource { background: rgba(94, 183, 97, .2); color: #8ddd90; }
.card h3 {
font-size: 1.06rem;
font-weight: 600;
color: var(--text-bright);
margin-bottom: .45rem;
}
.card h3 a {
color: var(--text-bright);
text-decoration: none;
}
.card h3 a:hover {
text-decoration: underline;
color: var(--text-bright);
}
.card p, .card li {
font-size: .9rem;
color: var(--text-muted);
}
.card ul {
margin-top: .45rem;
margin-left: 1rem;
}
.card-links {
display: flex;
gap: .85rem;
margin-top: .85rem;
flex-wrap: wrap;
}
.card-links a {
display: inline-flex;
align-items: center;
gap: .35rem;
font-size: .82rem;
color: var(--text-muted);
text-decoration: none;
}
.card-links a:hover { color: var(--text-bright); }
.icon::before {
content: "";
display: inline-block;
width: 16px;
height: 16px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
opacity: .85;
transition: opacity .2s;
flex-shrink: 0;
}
.icon:hover::before { opacity: 1; }
.icon-web::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239fb4c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10 15.3 15.3 0 01-4-10 15.3 15.3 0 014-10z'/%3E%3C/svg%3E"); }
.icon-github::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239fb4c0'%3E%3Cpath d='M12 .3a12 12 0 00-3.8 23.38c.6.12.82-.26.82-.58L9 21.07c-3.34.72-4.04-1.61-4.04-1.61-.55-1.39-1.34-1.76-1.34-1.76-1.08-.74.08-.73.08-.73 1.2.08 1.84 1.24 1.84 1.24 1.07 1.83 2.8 1.3 3.49 1 .1-.78.42-1.3.76-1.6-2.67-.31-5.47-1.34-5.47-5.93 0-1.31.47-2.38 1.24-3.22-.14-.3-.54-1.52.1-3.18 0 0 1-.32 3.3 1.23a11.5 11.5 0 016.02 0c2.28-1.55 3.29-1.23 3.29-1.23.64 1.66.24 2.88.12 3.18a4.65 4.65 0 011.23 3.22c0 4.61-2.8 5.62-5.48 5.92.42.36.81 1.1.81 2.22l-.01 3.29c0 .32.2.7.82.58A12 12 0 0012 .3'/%3E%3C/svg%3E"); }
footer {
text-align: center;
padding: 2.3rem 1.5rem;
border-top: 1px solid var(--border);
color: var(--text-muted);
font-size: .85rem;
}
footer p + p { margin-top: .5rem; }
@media (max-width: 900px) {
.nav-links {
display: none;
flex-direction: column;
width: 100%;
gap: .5rem;
padding-top: .75rem;
}
.nav-inner { flex-wrap: wrap; }
.mobile-toggle { display: block; }
.hero {
padding: 3rem 1.1rem 2.4rem;
}
.hero-inner {
flex-direction: column;
align-items: center;
text-align: center;
}
.hero-copy { max-width: 100%; }
section { padding: 2.4rem 1rem; }
.card-grid { grid-template-columns: 1fr; }
.hero-subtitle { font-size: 1.06rem; }
}
</style>
</head>
<body>
<nav>
<div class="nav-inner">
<div class="nav-logo">Foojay <span class="brand">Java in Education</span></div>
<button class="mobile-toggle" onclick="const links = document.querySelector('.nav-links'); links.style.display = links.style.display === 'flex' ? 'none' : 'flex';" aria-label="Toggle menu">☰</button>
<div class="nav-links">
<button type="button" onclick="document.getElementById('websites').scrollIntoView({ behavior: 'smooth' })">Websites</button>
<button type="button" onclick="document.getElementById('tutorials').scrollIntoView({ behavior: 'smooth' })">Tutorials</button>
<button type="button" onclick="document.getElementById('books').scrollIntoView({ behavior: 'smooth' })">Books</button>
<button type="button" onclick="document.getElementById('minecraft').scrollIntoView({ behavior: 'smooth' })">Minecraft</button>
<button type="button" onclick="document.getElementById('raspberry-pi').scrollIntoView({ behavior: 'smooth' })">Raspberry Pi</button>
</div>
</div>
</nav>
<header class="hero">
<div class="hero-inner">
<img class="hero-logo" src="foojay-logo.png" alt="Foojay logo">
<div class="hero-copy">
<h1>Foojay <span>Java in Education</span> Catalog</h1>
<p class="hero-subtitle">A community-driven catalog of Java learning resources with websites, tutorials, videos, books, and tools for students, educators, coding clubs, and developers.</p>
<p class="hero-description">The goal is to provide an open, collaborative hub for students, educators, and developers to discover the best Java learning content for teaching, self-learning, and classroom use.</p>
<p class="hero-description">This project is a call for the community to collaborate, to show that Java is still strong, and to highlight the numerous resources available for learning or teaching Java today.</p>
<p class="hero-description">Community-curated Java learning resources. Contributions are welcome on <a href="https://github.com/foojayio/java-education-catalog" target="_blank" rel="noopener noreferrer">GitHub</a>!</p>
</div>
</div>
</header>
<main>
<section id="websites">
<div class="container">
<h2 class="section-title">Websites</h2>
<div class="card-grid">
<a class="card" href="https://github.com/jcp-org/Java-in-Education/wiki/Java-in-Education---Wiki-Page" target="_blank" rel="noopener noreferrer">
<div class="card-badges">
<span class="card-badge badge-resource">Website</span>
</div>
<h3>Java in Education – Wiki Page</h3>
<p>Community-curated wiki about Java teaching and educational initiatives. Maintained by the JCP (Java Community Process) community.</p>
</a>
<a class="card" href="https://foojay.io/" target="_blank" rel="noopener noreferrer">
<div class="card-badges">
<span class="card-badge badge-resource">Website</span>
</div>
<h3>Foojay, the website for Friends Of OpenJDK</h3>
<p>Foojay is a central resource for the Java community’s daily information needs, a place for friends of OpenJDK, and a community platform for the Java ecosystem, bringing together and helping Java professionals everywhere.</p>
</a>
<a class="card" href="https://javaevolved.github.io/" target="_blank" rel="noopener noreferrer">
<div class="card-badges">
<span class="card-badge badge-resource">Website</span>
</div>
<h3>Java Evolved</h3>
<p>Java has evolved. Your code can too. A collection of modern Java code snippets. Every old Java pattern next to its clean, modern replacement — side by side.</p>
</a>
<a class="card" href="https://dev.java/learn/" target="_blank" rel="noopener noreferrer">
<div class="card-badges">
<span class="card-badge badge-resource">Website</span>
</div>
<h3>Learn Java on dev.java</h3>
<p>A collection of tutorials on how to get started with Java, getting to know the Java language, and more.</p>
</a>
<a class="card" href="https://jakarta.ee/learn/" target="_blank" rel="noopener noreferrer">
<div class="card-badges">
<span class="card-badge badge-resource">Website</span>
</div>
<h3>Learn Jakarta EE</h3>
<p>A collection of tutorials on how to get started with Jakarta EE.</p>
</a>
</div>
</div>
</section>
<hr class="section-divider">
<section id="tutorials">
<div class="container">
<h2 class="section-title">Tutorials</h2>
<div class="card-grid">
<a class="card" href="https://foojay.io/java-quick-start/" target="_blank" rel="noopener noreferrer">
<div class="card-badges">
<span class="card-badge badge-framework">Tutorial</span>
<span class="card-badge badge-assistant">Video</span>
</div>
<h3>Foojay Java Quick Start</h3>
<p>On Foojay.io: Step-by-step instructions to install Java on Windows, Linux, and macOS. And 10 short lessons to learn the very basics of the Java programming language.</p>
</a>
<a class="card" href="https://www.youtube.com/watch?v=V_vXRRydnYI" target="_blank" rel="noopener noreferrer">
<div class="card-badges">
<span class="card-badge badge-assistant">Video</span>
</div>
<h3>Creating your first Java application with IntelliJ IDEA</h3>
<p>A video tutorial on how to create and run a simple Java application that prints Hello, World! to the system output.</p>
</a>
<a class="card" href="https://www.jetbrains.com/help/idea/creating-and-running-your-first-java-application.html" target="_blank" rel="noopener noreferrer">
<div class="card-badges">
<span class="card-badge badge-assistant">Video</span>
</div>
<h3>Create your first Java application</h3>
<p>A written tutorial on how to create, build, run and package a simple Java application.</p>
</a>
<a class="card" href="https://github.com/devoxx4kids/materials/blob/master/workshops/java/en/chapters/intro.adoc" target="_blank" rel="noopener noreferrer">
<div class="card-badges">
<span class="card-badge badge-framework">Tutorial</span>
</div>
<h3>Getting Started with Java by Devoxx4Kids</h3>
<p>Installing and Fundamentals.</p>
</a>
<a class="card" href="https://github.com/aws-samples/sample-once-upon-spring-ai" target="_blank" rel="noopener noreferrer">
<div class="card-badges">
<span class="card-badge badge-framework">Tutorial</span>
</div>
<h3>Create your first Agentic AI Java application with Spring AI</h3>
<p>A step-by-step tutorial to go from a coding apprentice to a game master of AI agent orchestration.</p>
</a>
</div>
</div>
</section>
<hr class="section-divider">
<section id="books">
<div class="container">
<h2 class="section-title">Books</h2>
<div class="card-grid">
<a class="card" href="https://www.amazon.nl/Raising-Young-Coders-Teaching-Programming/dp/B0DVBQZ483" target="_blank" rel="noopener noreferrer">
<div class="card-badges">
<span class="card-badge badge-inference">Parents</span>
<span class="card-badge badge-framework">Teaching</span>
</div>
<h3>Raising Young Coders: A Parent’s Guide to Teaching Programming at Home</h3>
<p>Book by Cassandra Chin: Introduce your children to programming at an early age and see how nurturing their interest can significantly contribute to their future success. This book offers creative, kid-friendly tools and projects to ignite childhood curiosity, all while confronting early-age gender biases in tech and supplementing the lack of creative and diverse tech curriculum in schools.</p>
</a>
<div class="card">
<div class="card-badges">
<span class="card-badge badge-assistant">Raspberry Pi</span>
</div>
<h3><a href="https://webtechie.be/books/" target="_blank" rel="noopener noreferrer">Getting Started with Java on the Raspberry Pi</a></h3>
<p>eBook by Frank Delporte: Controlling physical things with some lines of code is magic! This book includes a lot of information, history about Java itself, and how to install and use Java on the Raspberry Pi to interact with electronic components.</p>
<div class="card-links">
<a class="icon icon-web" href="https://webtechie.be/books/" target="_blank" rel="noopener noreferrer">Website</a>
<a class="icon icon-web" href="https://leanpub.com/gettingstartedwithjavaontheraspberrypi/" target="_blank" rel="noopener noreferrer">Leanpub</a>
</div>
</div>
</div>
</div>
</section>
<hr class="section-divider">
<section id="minecraft">
<div class="container">
<h2 class="section-title">Minecraft</h2>
<div class="card-grid">
<a class="card" href="https://github.com/devoxx4kids/materials/tree/master/workshops/minecraft" target="_blank" rel="noopener noreferrer">
<div class="card-badges">
<span class="card-badge badge-framework">Tutorial</span>
</div>
<h3>Minecraft Modding by Devoxx4Kids</h3>
<p>How to do Minecraft modding with two different tools:</p>
<ul>
<li>Forge: client-side modding, which only works if you have the mod installed. With Forge, you can do lots of cool things like making new blocks, items, mobs, and even biomes and dimensions.</li>
<li>Spigot: server-side modding, anyone who connects to the server can enjoy the mods installed. Most big servers, like Mineplex and Hypixel, are Spigot servers.</li>
</ul>
</a>
</div>
</div>
</section>
<hr class="section-divider">
<section id="raspberry-pi">
<div class="container">
<h2 class="section-title">Raspberry Pi</h2>
<div class="card-grid">
<div class="card">
<div class="card-badges">
<span class="card-badge badge-assistant">Raspberry Pi</span>
</div>
<h3><a href="https://www.pi4j.com/examples/jbang/" target="_blank" rel="noopener noreferrer">Control electronics with Java, JBang, and Pi4J</a></h3>
<p>Want to get started with Java programming on the Raspberry Pi? JBang is a great way to create your first program to control electronic components connected to a Raspberry Pi's GPIO pins.</p>
<div class="card-links">
<a class="icon icon-web" href="https://www.pi4j.com/examples/jbang/" target="_blank" rel="noopener noreferrer">Website</a>
<a class="icon icon-github" href="https://github.com/Pi4J/pi4j-jbang" target="_blank" rel="noopener noreferrer">Repository</a>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<p>Foojay Java in Education Catalog. Contributions welcome on <a href="https://github.com/foojayio/java-education-catalog" target="_blank" rel="noopener noreferrer">GitHub</a>.</p>
<p>This website and the workflow are based on the work done by <a href="https://github.com/jamesward" target="_blank" rel="noopener noreferrer">James Ward</a> for <a href="https://ai4jvm.com/" target="_blank" rel="noopener noreferrer">ai4jvm.com</a>.</p>
</footer>
</body>
</html>