This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.benjaminurquhart.stdout; | |
import java.io.PrintStream; | |
import java.time.OffsetDateTime; | |
import java.util.Locale; | |
// yes yes I know there's no input for I here. | |
public class STDIOPlus extends PrintStream{ | |
private static boolean enabled; | |
// Do NOT mess around with the stdout or stderr variables unless you want to risk breaking disable() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.File; | |
import java.io.FileInputStream; | |
import java.nio.file.Files; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.List; | |
public class Extractor { | |
public static int find(byte[] bytes, byte[] toFind, int start) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import traceback | |
mediaDir = "/media/" | |
def strip(string): | |
toRemove = ["'","/"," "] | |
stripped = "" | |
for i in string: | |
if i in toRemove: | |
stripped = stripped + "\ ".replace(" ","") |
NewerOlder