Skip to main content

Recently Updated Pages

L04 - Part 2

Intro to Java Lab Solutions

Patterns.java public class Patterns { public static void main(String[] args) { for (i...

Updated 4 months ago by Brandon Duke

L04 - Part 1

Intro to Java Lab Solutions

Loops.java public class Loops { public static void main(String[] args) { // sum the n...

Updated 4 months ago by Brandon Duke

L04 - Iteration Lab - Part 2 - Nested For Loops

Intro to Java Labs

We can determine if a number is even or odd by checking the remainder after dividing the number b...

Updated 4 months ago by Brandon Duke

L04 - Iteration Lab - Part 1 - The Three Loops

Intro to Java Labs

Enter the following program and fill in the missing pieces so that the three different styles of ...

Updated 4 months ago by Brandon Duke

Example Seeing if a game piece is inside a mechanism

System Design Picking a Sensor

Sometimes you'll need to see if a game piece is inside of the robot. This can make automating a s...

Updated 10 months ago by Brandon Duke

Operator Controls

System Design Designing Teleop Controls

General Rules Once again the operators preferences are key but following these rules first will ...

Updated 10 months ago by Brandon Duke

Driver Controls

System Design Designing Teleop Controls

Basic Rules These arent absolute rules but you should really think about it when you break them....

Updated 10 months ago by Brandon Duke

What is Git?

Git Documentation

Description Git is a version/source control software that tracks any changes across a set of sour...

Updated 10 months ago by Brandon Duke

Glossary

Git Documentation

Basic Terms Term one is a more simple version, while term two is a more advanced explanation. It ...

Updated 10 months ago by Brandon Duke

Resources

Intro to Web Design

This will serve less as a direct guide to how to do web design, but put you on a guided course of...

Updated 10 months ago by Brandon Duke

Required Development Tools Install Instructions

Programming Resources

Git Follow default install instructions in installer. FRC Game Tools Follow instruction on th...

Updated 10 months ago by Brandon Duke

L12

Intro to Java Lab Solutions

FibonacciTest.java import java.util.*; public class FibonacciTest { public static void main(...

Updated 10 months ago by Brandon Duke

L11

Intro to Java Lab Solutions

InsufficientFunds.java public class InsufficientFunds extends RuntimeException{ public Insuff...

Updated 10 months ago by Brandon Duke

L10

Intro to Java Lab Solutions

ExceptionsLab.java import java.util.Scanner; public class ExceptionLab { public static void...

Updated 10 months ago by Brandon Duke

L09

Intro to Java Lab Solutions

ReverseIt.java /** * Reverses each line of an input file and writes it to an output file. * * @...

Updated 10 months ago by Brandon Duke

L08

Intro to Java Lab Solutions

AutoPilot.java public interface Autopilot { final double MAX_AIRSPEED = 550; double airsp...

Updated 10 months ago by Brandon Duke

L07

Intro to Java Lab Solutions

Shape.java public abstract class Shape { private String shapeName; public Shape() { ...

Updated 10 months ago by Brandon Duke

L06

Intro to Java Lab Solutions

BankAccount.java /** * Parent BankAccount class * * @author Brandon * @version 1/1/1990 */ ...

Updated 10 months ago by Brandon Duke

L05

Intro to Java Lab Solutions

UsingArrays.java public class UsingArrays { public static void main(String[] args) { ...

Updated 10 months ago by Brandon Duke

L03

Intro to Java Lab Solutions

Coupons.java import java.util.Scanner; public class Coupons { public static void main(String...

Updated 10 months ago by Brandon Duke