I hereby claim:
- I am christianbagley on github.
- I am christianb (https://keybase.io/christianb) on keybase.
- I have a public key ASADQvqk5wE6nY66_KQ2qlIznkuREEUjmFVOa1v2Gy-eSwo
To claim this, I am signing this object:
| #!/bin/sh | |
| # | |
| # commandlinefu - Simple shell script using commandlinefu.com API | |
| # | |
| # All commands sorted by date: | |
| # % commandlinefu | |
| # | |
| # All commands sorted by votes: | |
| # % commandlinefu -v | |
| # |
| unsubscribe OR opt - out OR "opt out" | |
| OR "mail preferences" | |
| OR "email preferences" | |
| OR "manage notifications" | |
| OR "manage your notifications" | |
| OR "manage alerts" | |
| OR "alert preferences" | |
| OR "list:yahoogroups" | |
| OR "list:googlegroups" | |
| OR "list:listserv" |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
| #!/bin/sh | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' | |
| white='\033[0;37m' | |
| red='\033[0;31m' |
| # Short of learning how to actually configure OSX, here's a hacky way to use | |
| # GNU manpages for programs that are GNU ones, and fallback to OSX manpages otherwise | |
| alias man='_() { echo $1; man -M $(brew --prefix)/opt/coreutils/libexec/gnuman $1 1>/dev/null 2>&1; if [ "$?" -eq 0 ]; then man -M $(brew --prefix)/opt/coreutils/libexec/gnuman $1; else man $1; fi }; _' |
| export PERL5LIB="/usr/local/lib/perl5/site_perl/5.18.2" |
| a[href^="http://"]:after { | |
| content: "\f08e"; | |
| font-family: FontAwesome; | |
| font-weight: normal; | |
| font-style: normal; | |
| display: inline-block; | |
| text-decoration: none; | |
| padding-left: 3px; | |
| } | |
| /* Strip from links to own domain or with class no_icon */ |
| set exceptionsList to {"JETDRIVE"} | |
| tell application "Finder" | |
| set diskList to the disks | |
| repeat with mountedDisk in diskList | |
| if name of mountedDisk is not in exceptionsList then | |
| eject mountedDisk | |
| end if | |
| end repeat | |
| end tellset exceptionsList to {"MobileBackups", "startup disk", "home", "net"} | |
| tell application "Finder" |