I hereby claim:
- I am dewey on github.
- I am dewey (https://keybase.io/dewey) on keybase.
- I have a public key whose fingerprint is AA6F A1E8 62E3 0BDB 1FE5 6DF7 E047 2B03 3D23 D359
To claim this, I am signing this object:
for f in torrents/*; do scp "$f" [email protected]:~/rtorrent/watch/watchWHAT/ && rm "$f" ; sleep 5; done |
#!/bin/bash | |
#title : backup-znc-logs.sh | |
#description : Create a local backup of all important ZNC accounts | |
#date : 19.08.2014 | |
# ------------------------- START CONFIG ------------------------- | |
# Script home directory | |
# This is the directory where you want to store the directories containing your log files. | |
SCRIPT_HOME="${HOME}/Documents/Textual Logs/ZNC/" |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
#title : popcorntime.sh | |
#description : This script picks a random movie from a given directory based on various input parameters. | |
#author : dewey | |
#date : 17.02.2014 | |
# Initialise some variables | |
quality= | |
extension= |
# Refreshing | |
auto-reload yes | |
reload-threads 3 | |
reload-time 20 | |
feed-sort-order unreadarticlecount-asc | |
# Open links in this browser | |
browser open | |
# Write error log |
cd ~/Documents/Developement/Eclipse/Trash | |
cp -R code ~ | |
git branch -D abgabe | |
git checkout --orphan abgabe | |
git rm -rf . | |
rm -rf documentation .DS_Store code | |
git rm -r --cached documentation speisekarten .settings README.md | |
mv ~/code . | |
git add code/ | |
git commit -m "Commit: $(date)" |
After accidentally hitting command + R
in Textual.app your channel list will get sorted alphabetically. Unfortunately there's currently no way to revert that.
cp /path/to/timemachine/.../com.codeux.irc.textual.plist ~/Library/Containers/com.codeux.irc.textual/Data/Library/Preferences/com.codeux.irc.textual.plist
To prevent this from happening overwrite Textual's shortcut with some obscure shortcut you'll never hit:
#!/usr/bin/php | |
<?php | |
$doc = new DOMDocument(); | |
$doc->load("http://ws.audioscrobbler.com/2.0/user/apfeltalkdewey/recenttracks.xml?limit=1"); | |
$arrFeeds = array(); | |
foreach ($doc->getElementsByTagName('track') as $node) { | |
$itemRSS = array ( | |
'artist' => $node->getElementsByTagName('artist')->item(0)->nodeValue, | |
'name' => $node->getElementsByTagName('name')->item(0)->nodeValue | |
); |