Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/config/sidebarConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ export const sidebarSections: Record<string, SidebarSection[]> = {
label: 'Interfaces, Generics, and Lists',
slug: 'learning-course/stage0/interfaces-lists',
},
{
label: 'Additional Resources',
slug: 'learning-course/stage0/additional-resources',
},
{
label: 'Stage 0 Wrap-Up',
slug: 'learning-course/stage0/stage-wrap-up',
Expand Down
35 changes: 35 additions & 0 deletions src/content/docs/learning-course/stage0/additional-resources.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
title: Additional Resources - Optional
description: Optional resources for continued learning
prev: learning-course/stage0/interfaces-lists
next: learning-course/stage0/stage-wrap-up
---

You're at the end of Stage 0!
Now you know enough Java to program your first FRC robot.

As mentioned in Stage 0's overview, Stage 0 only covers the basics.
This means that there is still a lot of learn.
This page will have **optional** resources that can be used if you want to explore more Java.
However, this page can be skipped and returned to at any point.

## Java Courses

- [Codecademy](https://www.codecademy.com/learn/learn-java)
- FIRST's Java Training
- [Part 1](https://training.firstinspires.org/courses/java-programming-part-1)
- [Part 2](https://training.firstinspires.org/courses/java-programming-part-2)
- [Mooc fi's Java Course](https://java-programming.mooc.fi/)
- [Java's Learn Java](https://dev.java/learn/)
- [Oracle’s Java Tutorials](https://docs.oracle.com/javase/tutorial/java/)
- [7237 Unibots, Java Basics](https://www.youtube.com/playlist?list=PLbyD6UONF3m7Tvp6mTluAtD8vSv2MeO8o)

## Java References

- [W3Schools](https://www.w3schools.com/java/)
- [GeeksForGeeks](https://www.geeksforgeeks.org/java/java/)

## Practice

- [Coding Bat](https://codingbat.com/java)
- [CodeWars](https://www.codewars.com/)
Loading