I hereby claim:
- I am jestre on github.
- I am scottschulz (https://keybase.io/scottschulz) on keybase.
- I have a public key ASBsq26Q6AdVnoLxGFxM-0myfG8jgycDPZTmkHUrZCxu7wo
To claim this, I am signing this object:
| # Bullet Train theme for iTerm 2 install | |
| $ git clone https://github.com/powerline/fonts.git | |
| $ cd fonts | |
| $ ./install.sh | |
| $ cd ~/.oh-my-zsh/custom/themes | |
| $ curl -O https://raw.githubusercontent.com/caiogondim/bullet-train-oh-my-zsh-theme/master/bullet-train.zsh-theme | |
| $ vim ~/.zshrc |
I hereby claim:
To claim this, I am signing this object:
The current height of the Neuse River in Clayton, NC
| use Term::ANSIColor; | |
| #Open a text file with a list of users to highlight | |
| open our $handle, '<', "/home/<your username>/tweetersToHighlight.txt"; | |
| chomp(our @customConsole = <$handle>); | |
| #Convert array to hash/dictionary | |
| our %users = map { $_ => 1 } @customConsole; | |
| close $handle; | |
| #Setup ttytter hook | |
| $handle = sub { |
| def shit_happens(num): | |
| """ (num) | |
| Take 2 on lucpet's function. | |
| This one takes a num, adds it to itself, and then compares | |
| it to various static numbers. | |
| >>> shit_happens(3) | |
| woo hoo |
| def shit_happens(): | |
| if 2 + 2 >= 5: | |
| #if shit happens, do this | |
| print('woo hoo') | |
| elif 2 + 2 >= 4: | |
| #if that last didn't happen, do this | |
| print('yay') | |
| else: | |
| """ | |
| If none of that happened, do this |