I hereby claim:
- I am korni22 on github.
- I am korni22 (https://keybase.io/korni22) on keybase.
- I have a public key ASBwMcDWX7ogNgnNQvuYEdzzfO8HHYDcJ9SsoJotM_r-Kgo
To claim this, I am signing this object:
#!/bin/bash | |
URL=http://www.zdf.de/rss/podcast/video/zdf/comedy/neo-magazin-mit-jan-boehmermann | |
REGEX='/<link>[^<]+neo-magazin-royale-mit-jan-boehmermann-vom[^<]+/' | |
OFFSET=6 | |
curl -fsSL $URL \ | |
| awk "match(\$0, $REGEX) { print substr(\$0, RSTART+$OFFSET, RLENGTH-$OFFSET); }" \ | |
| xargs -n1 youtube-dl -c -o "%(title)s.%(ext)s" |
#!/bin/bash | |
curl -fsSL http://www.zdf.de/rss/podcast/video/zdf/comedy/neo-magazin-mit-jan-boehmermann | pcregrep -o1 -i '<link>([^<]+NEO-MAGAZIN-ROYALE-vom-[^<]+)<\/link>' | xargs -n1 youtube-dl -c -o "%(title)s.%(ext)s" |
#!/bin/bash | |
curl -fsSL http://www.zdf.de/rss/zdf/comedy/heute-show | pcregrep -o1 -i '<link>([^<]+heute-show-vom[^<]+)<\/link>' | xargs -n1 youtube-dl -c -o "%(title)s.%(ext)s" |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Affiliate-Bookmarklet</title> | |
<meta charset="utf-8"> | |
<script> | |
function generate() { | |
// Get content from textarea and split | |
var codes = document.getElementById('codes').value.split('\n').join('\',\''); | |
var js = "javascript:(function(n){var e=Math.round(Math.random()*(n.length-1)),t=n[e];window.location.href='https://www.amazon.de?tag='+t})(['"+codes+"'])" |
I hereby claim:
To claim this, I am signing this object:
&> /dev/null |
read –n1 |
alias update='sudo softwareupdate -i -a; brew update; brew upgrade; brew cleanup; npm update npm -g; npm update -g; sudo gem update' |