Skip to content

Instantly share code, notes, and snippets.

View JumperBot's full-sized avatar
🏠
Working on something!!!

JumperBot_ JumperBot

🏠
Working on something!!!
View GitHub Profile
@wtfaremyinitials
wtfaremyinitials / ByteOutputStream.java
Created March 15, 2016 16:26
Easily write one bit at a time in Java
import java.io.*;
public class ByteOutputStream extends FileOutputStream {
byte buffer;
byte pos;
public ByteOutputStream(File file) throws FileNotFoundException {
super(file);
buffer = 0x00;