As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 14, | |
| // font family with optional fallbacks |
| #!/bin/bash | |
| user="CHANGEME" | |
| pages=$(curl -I https://api.github.com/users/$user/starred | sed -nr 's/^Link:.*page=([0-9]+).*/\1/p') | |
| for page in $(seq 0 $pages); do | |
| curl "https://api.github.com/users/$user/starred?page=$page&per_page=100" | jq -r '.[].html_url' | | |
| while read rp; do | |
| git clone $rp | |
| done |
| if [ -z "$1" ]; then | |
| echo "Usage: $0 <file_with_ips>" | |
| exit 0 | |
| fi | |
| echo "Running enum4linux\n" | |
| echo "IP File: $1" | |
| echo "\n" | |
| for ip in $(cat $1);do |
| Season | Episode | Title | Reason | |
|---|---|---|---|---|
| 1 | 5 | The Enchiridion | A good intro to the series, plus introduces the important Enchiridion | |
| 1 | 8 | Business Time* | First mention of Ooo being post-apocalyptic | |
| 1 | 9 | My Two Favorite People | Intros the Jake and LR plotline | |
| 1 | 10 | Memories of Boom Boom Mountain | A look at how Finn was adopted into Jake's Family | |
| 1 | 12 | Evicted! | Intros Marceline | |
| 1 | 16 | Ocean of Fear | Introduces Finn's phobia | |
| 1 | 22 | Henchman* | Establishes Finn and Marceline as friends | |
| 1 | 23 | Rainy Day Daydream* | good episode to show someone who’s never seen the show before | |
| 1 | 25 | His Hero | introduces the Lich and Billy |
| #!/usr/bin/python | |
| # Code that quickly generates a deployable .war for a PowerShell one-liner | |
| import zipfile | |
| import StringIO | |
| import sys | |
| def generatePsWar(psCmd, appName): |
| #!/bin/bash | |
| ################################ | |
| # OS X Install ISO Creater # | |
| # # | |
| # Author: shela # | |
| ################################ | |
| ####################################### | |
| # Declarations |