Recently Updated Pages
Example Seeing if a game piece is inside a mechanism
Sometimes you'll need to see if a game piece is inside of the robot. This can make automating a s...
Operator Controls
General Rules Once again the operators preferences are key but following these rules first will ...
Driver Controls
Basic Rules These arent absolute rules but you should really think about it when you break them....
What is Git?
Description Git is a version/source control software that tracks any changes across a set of sour...
Glossary
Basic Terms Term one is a more simple version, while term two is a more advanced explanation. It ...
Resources
This will serve less as a direct guide to how to do web design, but put you on a guided course of...
Required Development Tools Install Instructions
Git Follow default install instructions in installer. FRC Game Tools Follow instruction on th...
L12
FibonacciTest.java import java.util.*; public class FibonacciTest { public static void main(...
L11
InsufficientFunds.java public class InsufficientFunds extends RuntimeException{ public Insuff...
L10
ExceptionsLab.java import java.util.Scanner; public class ExceptionLab { public static void...
L09
ReverseIt.java /** * Reverses each line of an input file and writes it to an output file. * * @...
L08
AutoPilot.java public interface Autopilot { final double MAX_AIRSPEED = 550; double airsp...
L07
Shape.java public abstract class Shape { private String shapeName; public Shape() { ...
L06
BankAccount.java /** * Parent BankAccount class * * @author Brandon * @version 1/1/1990 */ ...
L05
UsingArrays.java public class UsingArrays { public static void main(String[] args) { ...
L04 - Part 2
Loops.java public class Loops { public static void main(String[] args) { // sum the n...
L04 - Part 1
Patterns.java public class Patterns { public static void main(String[] args) { for (i...
L03
Coupons.java import java.util.Scanner; public class Coupons { public static void main(String...
L02
SodaCan.java /** * Constructor and methods for a soda can object * * @author Brandon * @vers...
L01
Test.java /** * Print the Answer to Life, the Universe, Everything. * * @author Brandon * @v...