bulk offline issue cloner:
first, in a new folder create a folder for each user you want, and a sub folder inside each users folder for each of their repos that you want to clone the issues from
e.g.
mkdir issues
cd issues
mkdir -p maxogden/dat
bulk offline issue cloner:
first, in a new folder create a folder for each user you want, and a sub folder inside each users folder for each of their repos that you want to clone the issues from
e.g.
mkdir issues
cd issues
mkdir -p maxogden/dat
These are all the JSConf 2014 slides, codes, and notes I was able to cull together from twitter. Thanks to the speakers who posted them and thanks to @chantastic for posting his wonderful notes.
for f in *.jpg; do | |
convert ./"$f" -gravity center -resize 1137 -extent 1137x640 -blur 0x4 ./finalcat/"new-$f" | |
convert ./finalcat/"new-$f" -page +248 ./"$f" -flatten ./finalcat/"new-$f" | |
done |
# to test run eval "$(curl https://gist.githubusercontent.com/mafintosh/8b420dd5273a137cd6fe/raw/7cd9c707f71b171ef4b9f986c67132978e59da5e/emoji-ps1.sh -sL)" | |
PS1_EMOJIS=("๐" "๐ฌ" "๐" "๐" "๐" "๐" "๐ " "๐" "๐" "๐" "๐" "๐" "๐" "โบ๏ธ" "๐" "๐" "๐" "๐" "๐" "๐" "๐" "๐" "๐" "๐" "๐ค" "๐ค" "๐" "๐ค" "๐" "๐ถ" "๐" "๐" "๐ค" "๐ณ" "๐" "๐" "๐ " "๐" "๐" "๐" "๐ฃ" "๐" "๐ฉ" "๐ค" "๐ฎ" "๐ฑ" "๐จ" "๐ฐ" "๐ฏ" "๐ฆ" "๐ง" "๐ข" "๐ฅ" "๐ช" "๐" "๐ญ" "๐ฒ" "๐ค" "๐ท" "๐ด" "๐ฉ" "๐บ" "๐ธ" "๐น" "๐ป" "๐ผ" "๐ฝ" "๐" "๐ฟ" "๐พ" "๐" "๐" "๐" "๐" "๐" "๐ถ" "๐ถ" "๐ฑ" "๐ญ" "๐น" "๐ฐ" "๐ป" "๐ผ" "๐จ" "๐ฏ" "๐ฆ" "๐ฎ" "๐ท" "๐ฝ" "๐ธ" "๐" "๐ต" "๐" "๐" "๐" "๐" "๐" "๐ง" "๐ฆ" "๐ค" "๐ฃ" "๐ฅ" "๐บ" "๐" "๐ด" "๐ฆ" "๐" "๐" "๐" "๐" "๐" "๐ท" "๐ฆ" "๐ฆ" "๐" "๐ข" "๐ " "๐" "๐ก" "๐ฌ" "๐ณ" "๐" "๐" "๐" "๐ " "๐" "๐" "๐" "๐ช" "๐ซ" "๐" "๐" "๐" "๐" "๐" "๐" "๐" "๐" "๐" "๐ฆ" "๐" "๐" "๐ฉ" "๐" "๐" "๐ฟ" "๐พ" "๐" "๐ฒ" "๐ธ" "๐ค" "๐") | |
_p1_emoji () { | |
printf "${PS1_EMOJIS[$RANDOM % 152]} ${PS1_EMOJIS[$RANDOM % 152]} ${PS1_EMOJIS[$RANDOM % 152]} " | |
} | |
export PS1="$PS1\$(_p1_emoji)" |
#include <nan.h> | |
using namespace v8; | |
typedef struct { | |
int result; | |
int prev; | |
} fibo_t; | |