Skip to content

Instantly share code, notes, and snippets.

View GeoffYart's full-sized avatar

Nathan Fei GeoffYart

View GitHub Profile

Keybase proof

I hereby claim:

  • I am geoffyart on github.
  • I am nf31 (https://keybase.io/nf31) on keybase.
  • I have a public key ASCEef59YgCLbNvGtObmR6DEx8gWIp8sKE7Q_w_UKdxjuQo

To claim this, I am signing this object:

@GeoffYart
GeoffYart / Steggysteg.java
Created May 23, 2017 21:55
A simple, 2 end bit steganography program
import java.awt.image.BufferedImage;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Scanner;
@GeoffYart
GeoffYart / Tetris.java
Created May 23, 2017 21:57
A simple Tetris game
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Point;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.util.ArrayList;
import java.util.Collections;