diff --git a/src/config/sidebarConfig.ts b/src/config/sidebarConfig.ts index 7864997e..8c3b99be 100644 --- a/src/config/sidebarConfig.ts +++ b/src/config/sidebarConfig.ts @@ -89,6 +89,10 @@ export const sidebarSections: Record = { 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', diff --git a/src/content/docs/learning-course/stage0/additional-resources.mdx b/src/content/docs/learning-course/stage0/additional-resources.mdx new file mode 100644 index 00000000..fe970f75 --- /dev/null +++ b/src/content/docs/learning-course/stage0/additional-resources.mdx @@ -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/)