Skip to content

Instantly share code, notes, and snippets.

View 200tristan's full-sized avatar

Ashwin Randhir 200tristan

  • Amherst, Massachusetts
View GitHub Profile
@200tristan
200tristan / CircleDriver.java
Created February 4, 2018 02:15
Circle Program - Main Driver
//Ashwin Randhir
//1/30/2018
//CSC 112
//Interm Java
//Circle Homework
//atrandhir0001@student.stcc.edu
//Creates 2 circles and finds data based on given points.
import java.util.Scanner;
@200tristan
200tristan / Circle.java
Created February 4, 2018 02:16
Program Method Holder
//Ashwin Randhir
//1/30/2018
//CSC 112
//Interm Java
//Circle Homework
//atrandhir0001@student.stcc.edu
//Creates 2 circles and finds data based on given points.
public class Circle{
@200tristan
200tristan / Complex.java
Created February 14, 2018 04:16
Complex Main
//Ashwin Randhir
//12/13/2018
//CSC 112
//Interm Java
// Homework 3
//atrandhir0001@student.stcc.edu
//process complex values
public class Complex {
private double realx;
private double imagx;
//Ashwin Randhir
//12/13/2018
//CSC 112
//Interm Java
// Homework 3
//atrandhir0001@student.stcc.edu
//process complex values
public class Complex {
private double realx;
private double imagx;
@200tristan
200tristan / ComplexNumberDriverString.java
Created February 25, 2018 04:25
String Based Calculator HW5- DRAFT
//Ashwin Randhir
//2/16/2018
//CSC 112
//Interm Java
// Homework
//atrandhir0001@student.stcc.edu
//
import java.awt.Component;
import javax.swing.*;
@200tristan
200tristan / Complex.java
Created February 26, 2018 22:54
HW5 Regex
//Ashwin Randhir
//12/13/2018
//CSC 112
//Interm Java
// Homework 3
//atrandhir0001@student.stcc.edu
//process complex values
public class Complex {
private double realx;
private double imagx;
@200tristan
200tristan / US_Flag.java
Last active May 3, 2019 02:05
HW 6 - US Flag
/*
* Name:Ashwin Randhir
* Date: 3/23/2018
* Course Number:CSC-112
* Course Name: Intermediate Topics in Java Programming
* Email: atrandhir0001@student.stcc.edu
* US Flag using JavaFX
*/
package FlagProject;
import javafx.application.Application;
@200tristan
200tristan / HW_7_JFX_Poly.java
Created March 31, 2018 22:49
HW 7 Updatable Polygon
/*
* Name:Ashwin Randhir
* Date: 3/27/2018
* Course Number:CSC-112
* Course Name: Intermediate Topics in Java Programming
* Email: atrandhir0001@student.stcc.edu
* Updatable Variable Sided Polygon
*/
@200tristan
200tristan / updatableClock.java
Created April 10, 2018 02:07
Unfinished and Bugged HW_8
package sample;
/*
* Name:Ashwin Randhir
* Date: 4/7/2018
* Course Number:CSC-112
* Course Name: Intermediate Topics in Java Programming
* Email: atrandhir0001@student.stcc.edu
* Updatable Clock with
*/
@200tristan
200tristan / Main.java
Last active April 10, 2018 14:38
Exam 2 Traffic Light Simulator (Image Based)
package sample;
/*
* Name:Ashwin Randhir
* Date: 4/10/2018
* Course Number:CSC-112
* Course Name: Intermediate Topics in Java Programming
* Email: atrandhir0001@student.stcc.edu
* Exam 2
*/
import javafx.application.Application;