jpopsuki small seed downloader
#!/bin/bash
### jpopsuki configuration ###
cookie='Cookie: PHPSESSID=...' # your jpopsuki's cookie, you can get it by
# doing "alert(document.cookie)" in your
# browser's console.
query_string='order_by=s4&order_way=ASC' # get torrents in the order of size,
# ascending
start_page=1 # start download from page 1
end_page=40 # and end at page 40 (seed #2000, normally)
### transmissiond configuration ###
transmission_host='http://example.com:9091/transmission' # URL to transmission PRC
transmission_auth='username:password' # your transmission RPC
# credential
#### uncomment next line if you done configuration ###
#run=true
[[ -z $run ]] && echo "[*] Configure Required!" && exit 1
tmp=$(mktemp)
for page in $(seq $start_page $end_page)
do
echo "[$(date)] Started Page $page"
curl -H $cookie -s "http://jpopsuki.eu/torrents.php?page=${page}&${query_string}" | grep 'action=download' | sed 's/\&/\&/g; s/"/"/g;' | awk -F'href="' '{print $2}' | awk -F'"' '{print $1}' | sed -e 's/^/http:\/\/jpopsuki.eu\//g' | while read -r url
do
echo -n "[*] Procressing torrent id $(awk -F"id=|&" '{print $3}' <<< $url)..."
transmission-remote $transmission_host -n $transmission_auth -a $url > $tmp
[[ ! $? == 0 ]] && echo " err: $(cat $tmp)" || echo " ok"
done
done
rm $tmp
echo "[$(date)] Done"
Replies to jpopsuki small seed downloader 
{"html5":"htmlmixed","css":"css","javascript":"javascript","php":"php","python":"python","ruby":"ruby","lua":"text\/x-lua","bash":"text\/x-sh","go":"go","c":"text\/x-csrc","cpp":"text\/x-c++src","diff":"diff","latex":"stex","sql":"sql","xml":"xml","apl":"apl","asterisk":"asterisk","c_loadrunner":"text\/x-csrc","c_mac":"text\/x-csrc","coffeescript":"text\/x-coffeescript","csharp":"text\/x-csharp","d":"d","ecmascript":"javascript","erlang":"erlang","groovy":"text\/x-groovy","haskell":"text\/x-haskell","haxe":"text\/x-haxe","html4strict":"htmlmixed","java":"text\/x-java","java5":"text\/x-java","jquery":"javascript","mirc":"mirc","mysql":"sql","ocaml":"text\/x-ocaml","pascal":"text\/x-pascal","perl":"perl","perl6":"perl","plsql":"sql","properties":"text\/x-properties","q":"text\/x-q","scala":"scala","scheme":"text\/x-scheme","tcl":"text\/x-tcl","vb":"text\/x-vb","verilog":"text\/x-verilog","yaml":"text\/x-yaml","z80":"text\/x-z80"}