This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| KEY=xxx | |
| DATE=`date +%Y-%m-%d` | |
| curl "https://www.rescuetime.com/anapi/data?key=$KEY&format=csv&rb=$DATE&re=$DATE" > $DATE.csv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(ggplot2) | |
| # Load and format data. | |
| bb <- read.csv("bb.csv") | |
| fr <- data.frame(idx=as.numeric(1:57), rating=bb$User.Rating, season=factor(bb$Season)) | |
| # Print graph. | |
| png("/tmp/bb.png", width=1280, height=768) | |
| gplot(data=fr, aes(x=fr$idx, y=fr$rating, color=season)) + geom_point(size=3) + geom_smooth(aes(group=fr$season), method="lm") + labs(x="", y="User rating", color="Season", title="Breaking Bad episode rating") | |
| dev.off() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #,Episode,"User | |
| Rating","User | |
| Votes",,Season | |
| 1.1,Pilot,8.8,3339,1 2 3 4 5 6 7 8 9 10 8.8/10 X,1 | |
| 1.2,Cat's in the Bag...,8.5,2313,1 2 3 4 5 6 7 8 9 10 8.5/10 X,1 | |
| 1.3,...And the Bag's in the River,8.6,2154,1 2 3 4 5 6 7 8 9 10 8.6/10 X,1 | |
| 1.4,Cancer Man,8.3,2019,1 2 3 4 5 6 7 8 9 10 8.3/10 X,1 | |
| 1.5,Gray Matter,8.3,1976,1 2 3 4 5 6 7 8 9 10 8.3/10 X,1 | |
| 1.6,Crazy Handful of Nothin',9.1,2249,1 2 3 4 5 6 7 8 9 10 9.1/10 X,1 | |
| 1.7,A No-Rough-Stuff-Type Deal,8.7,1972,1 2 3 4 5 6 7 8 9 10 8.7/10 X,1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Host * | |
| Compression=yes | |
| CompressionLevel=9 | |
| ControlMaster auto | |
| ControlPath /tmp/%r@%h:%p | |
| ServerAliveInterval 100 | |
| Host bastion | |
| HostName bastion-21.network.hosting.acquia.com | |
| User attilafekete |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ALL_TASKS=`cat ~/todo.txt | wc -l` | |
| COMPLETED_TASKS=`cat ~/todo.txt | grep '^x\ ' | wc -l` | |
| echo -n '[' | |
| for i in $(seq 1 $COMPLETED_TASKS); do | |
| echo -n '=' | |
| done; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| HOUR=`date +%H | sed -e 's/^0//g'` | |
| DAY=`date +%A` | |
| # Don't list work related tasks... | |
| FILTER='-+Pronovix' | |
| # ... Except at work time. | |
| if [[ $HOUR -gt 8 && $HOUR -lt 18 ]]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| DIRECTORY='~/Library/Application Support/Google/Chrome/' | |
| TMPFILE=`mktemp /tmp/chrome_cleanup.XXXXXX` | |
| find "$DIRECTORY" >> $TMPFILE | |
| SQLITE_FILES=`mktemp /tmp/chrome_cleanup.XXXXXX` | |
| SAVEIFS=$IFS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function serverReachable() { | |
| // Cross-browser XHR creation | |
| var request = new ( window.ActiveXObject || XMLHttpRequest )( "Microsoft.XMLHTTP" ), | |
| status_code; | |
| request.open( | |
| // requesting the headers is faster, and just enough | |
| "HEAD", | |
| // append a random string to the current hostname, | |
| // to make sure we're not hitting the cache |
NewerOlder