This file contains hidden or 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
Configuration Options: | |
verbose <boolean> Default: false | |
Use verbose output | |
max_width <unsigned integer> Default: 100 | |
Maximum width of each line | |
ideal_width <unsigned integer> Default: 80 | |
Ideal width of each line |
This file contains hidden or 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
main(argc, argv) | |
int argc; | |
char *argv[]; | |
{ | |
int i; | |
argc--; | |
for(i=1; i<=argc; i++) | |
printf("%s%c", argv[i], i==argc? '\n': ' '); | |
} |
This file contains hidden or 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
#!/bin/bash | |
if [[ $1 == "-d" || $1 == "--decode" ]] | |
then | |
base64 -d < $2 > $3 | |
else | |
base64 < $2 > $3 | |
fi |
This file contains hidden or 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
Settings loaded from C:\Users\Polymetric\.chunky\chunky.json | |
Found Minecraft directory C:\Users\Polymetric\AppData\Roaming\.minecraft | |
Found latest Minecraft version: C:\Users\Polymetric\AppData\Roaming\.minecraft\versions\1.8.9-OptiFine_HD_U_G9\1.8.9-OptiFine_HD_U_G9.jar | |
Loading textures from C:\Users\Polymetric\AppData\Roaming\.minecraft\versions\1.8.9-OptiFine_HD_U_G9\1.8.9-OptiFine_HD_U_G9.jar | |
Failed to load textures from default texture pack (C:\Users\Polymetric\AppData\Roaming\.minecraft\versions\1.8.9-OptiFine_HD_U_G9\1.8.9-OptiFine_HD_U_G9.jar): | |
grass_path_side | |
chorus_plant | |
end_rod | |
chorus_flower | |
purpur_pillar |
This file contains hidden or 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
$ gem install twitter ebooks | |
Building native extensions. This could take a while... | |
ERROR: Error installing twitter_ebooks: | |
ERROR: Failed to build gem native extension. | |
/usr/bin/ruby.exe extconf.rb | |
creating Makefile | |
make "DESTDIR=" clean | |
rm -f |
This file contains hidden or 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.awt.Canvas; | |
import java.awt.Color; | |
import java.awt.Dimension; | |
import java.awt.Graphics; | |
import java.awt.event.KeyEvent; | |
import java.awt.event.KeyListener; | |
import java.awt.event.MouseEvent; | |
import java.awt.event.MouseListener; | |
import java.awt.image.BufferStrategy; | |
import java.security.MessageDigest; |
This file contains hidden or 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.util.ArrayList; | |
import java.util.Random; | |
public class Skew { | |
public static void main(String[] args) { | |
byte[] bytes = new byte[1024]; | |
new Random(0).nextBytes(bytes); | |
boolean[] bools_in = bytesToBools(bytes); | |
ArrayList<Byte> bools_in_2 = new ArrayList<Byte>(); | |
ArrayList<Byte> bools_out = new ArrayList<Byte>(); |