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
using System; | |
using System.Collections.Specialized; | |
using System.Linq; | |
using System.Net; | |
class Example | |
{ | |
public static void Main (string[] args) | |
{ | |
Subscribe(1905, "[email protected]"); |
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
# Git log fancify | |
alias gitlog="git log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative" | |
alias gitlog1="git log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(bold white)— %an%C(reset)' --abbrev-commit" |
Install and start your first go app:
brew update
brew install go
mkdir -p $HOME/go
export GOPATH=$HOME/go
go get "github.com/jasondelponte/golib/config"
cd $HOME
gem install gokart
rbenv rehash
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 | |
# default values | |
env_file_location=".env" | |
procfile_location="Procfile" | |
# possibly overwrites $env_file_location | |
read_command_line_options() { | |
# read the options | |
TEMP=`getopt e:h $*` |
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
var start = new Date().getTime(); | |
var sum = 0; | |
for (i = 0; i < 5000000; ++i) { | |
sum += Math.sin(Math.random()); | |
} | |
var end = new Date().getTime(); | |
var time = end - 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
#!/usr/bin/env bash | |
hexchars="0123456789ABCDEF" | |
macs=() | |
for run in {1..10} | |
do | |
macs+=($( for i in {1..6} ;do echo -n ${hexchars:$(( $RANDOM % 16 )):1} ; done | sed -e 's/\(..\)/-\1/g' )) | |
done | |
seeds=("20171101" "20171102" "20171103") |