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 / Main.java
Created May 8, 2018 21:59
Gui for Final Project
package sample;
//Ashwin Randhir
//5/7/2018
//CSC 112
//Interm Java
//Gui for final
//atrandhir0001@student.stcc.edu
//Gui for Final, with regex field check
/*Ashwin Randhir
*5/1/2018
* Exam 3
* Skeleton Application Code for the Send Mail App
*
* Prof. A.C. Silvestri
* CSCI-211 Intermediate Java Programming
* 4/20/2015
*/
package sample;
@200tristan
200tristan / sample.Main.java
Created April 25, 2018 01:39
HW 10 Gui for Lottery Sim
//Ashwin Randhir
//4/24/2018
//CSC 112
//Interm Java
//Homework 10
//atrandhir0001@student.stcc.edu
//Gui for Lottery HW
package sample;
import javafx.application.Application;
@200tristan
200tristan / EtchASketch.java
Created April 17, 2018 00:51
HW_9 Based off Sample Code
//Ashwin Randhir
//4/12/2018
//CSC 112
//Interm Java
//Paint Homework
//atrandhir0001@student.stcc.edu
//Simple paint program with save and reload
package sample;
@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;
@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 / 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 / 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 / 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 / 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.*;