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
I am attesting that this GitHub handle natenolting is linked to the Tezos account tz1Sue5xUeUPLu7nn2ECAEGrskJVBDWG8a1K for tzprofiles | |
sig:edsigtudptJuQiwRNnb15HrRSc8YDbAdPFr8SPZtxbXZ7wgM2v929tp54h5ZYQLroGzC7XiAsCy46dtz4nhQRMjkkY3CPRGaCBG |
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
Tezos Signed Message: I am attesting that this GitHub handle natenolting is linked to the Tezos account tz1Sue5xUeUPLu7nn2ECAEGrskJVBDWG8a1K for tzprofiles | |
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
Tezos Signed Message: I am attesting that this GitHub handle natenolting is linked to the Tezos account tz1Sue5xUeUPLu7nn2ECAEGrskJVBDWG8a1K for tzprofiles |
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
color[] colors = new int[2]; | |
void setup() { | |
size(1000,1000); | |
colorMode(HSB, 359, 99, 99, 255); | |
colors[0] = color(60, 7, 60, 255); | |
colors[1] = color(25, 100, 86, 255); | |
} | |
void draw() { |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
#!/usr/bin/env bash | |
# =================================================== | |
# Start Setup | |
# =================================================== | |
cd ~/ | |
# Update yum | |
sudo yum -y update | |
# =================================================== |
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
#!/usr/bin/env bash | |
# Get Selenium and Firefox for headless testing in vagrant box | |
if [ ! -d "/var/selenium" ]; then | |
sudo mkdir /var/selenium | |
cd /var/selenium | |
sudo wget http://goo.gl/PJUZfa selenium-server-standalone.jar | |
fi | |
sudo yum -y install java-1.8.0-openjdk-headless.x86_64 | |
sudo yum -y install firefox.x86_64 | |
sudo yum -y install xorg-x11-server-Xvfb.x86_64 |