These are albums and tracks that evoke hacker intention.
Mostly ambient albums so far.
- The Social Network (album) - Trent Reznor and Atticus Ross
- Plume (album) - Loscil
- Ghosts (album) - Monolake
| #!/bin/sh | |
| outname="$1"; shift | |
| target="${outname}.tif" | |
| scanimage --format tiff --resolution 300 --mode Gray > "$target" && \ | |
| convert "$target" -colorspace gray -level 10%,90%,1 -blur 2 +dither -monochrome "${outname}_bw.tif" && \ | |
| tiff2pdf -o "${outname}.pdf" "${outname}_bw.tif" |
| function getEmails() { | |
| // set spreadsheet and retrieve labels | |
| var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
| var name = "LABEL"; | |
| // create sheets and clear content | |
| var label = GmailApp.getUserLabelByName(name); | |
| var sh = ss.getSheetByName(label.getName()) || | |
| ss.insertSheet(label.getName(), ss.getSheets().length); | |
| sh.clear(); |
| <?php | |
| $dir = '/var/www/html'; | |
| if (getenv('WORDPRESS_PATH')) { | |
| $dir = getenv('WORDPRESS_PATH'); | |
| } | |
| require_once($dir . '/wp-load.php'); | |
| class PageSync | |
| { | |
| public static function export() { |
| #!/bin/sh | |
| # | |
| # Say something in a slack channel. | |
| # | |
| # Usage: | |
| # | |
| # standup 't: doing a thing' | |
| # | |
| # Finding Values: | |
| # |
| #!/bin/sh | |
| # Run this in your current directory to chmod files and directories with | |
| # default permissions to allow group access. | |
| find . -type f -perm 644 -print -exec chmod 664 {} \; | |
| find . -type d -perm 744 -print -exec chmod 774 {} \; |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/awk -f | |
| # | |
| # goal-calc | |
| # | |
| # Returns a weekly budget amount given the date of your next | |
| # paycheck, a target date, and a target amount. | |
| # | |
| # USAGE | |
| # | |
| # If you're next paycheck will be arriving on 2011/08/29 and you have |