Two Mics - Bluebird
Celldweller - Through the Gates
Celldweller - Pulsar
Dj Gontran - Moby Glitch
Krubb Wenkroist - Bleach
Di Dubai - Vodka Aspirin
Di Gontran - Chemistry
AWOLNATION - Burn it Down
MuteMath - Blood Pressure
View bookmarklet.html
<h1><a href="javascript:!function(){document.designMode=%22on%22}();">DesignMode</a></h1> | |
<p>Drag this to your bookmark bar</p> |
View index.html
<html><head><title>super-uber-chapter-meetup</title></head><body><img src="http://media0.giphy.com/gifsu/l2Je7F2ADWJZmBrEc/giphy-glitter.gif"> <br><a href="http://karriere.at">we are hiring</a></body></html> |
View gist:00923fe3b13525948c37
View gist:19e284a8a3a285415e5a
var init = function() { | |
next(); | |
}; | |
var next = function() { | |
++idx; | |
if(!steps[idx]) process.exit(); | |
steps[idx](next); | |
}; |
View yosemite-comp.md
A short list on osx yosemite compatibility from my setup
System Version: OS X 10.10 b2 (14A261i) Model Identifier: MacBookAir6,1
working
- atom
- safari
- little snitch
- bartender
View homebrew-yosemite.md
#Fix your homebrew installation
open
/usr/local/Library/brew.rb
replace
#!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -W0
View chromium_updater.sh
#!/bin/bash | |
# | |
# Originally from "Automatically download Chromium nightly builds" | |
# http://top-frog.com/2010/05/29/automatically-download-chromium-nightly-builds/ | |
LATEST=`curl -s http://commondatastorage.googleapis.com/chromium-browser-snapshots/Mac/LAST_CHANGE` | |
CURRENT=`defaults read /Applications/Chromium.app/Contents/Info.plist SCMRevision 2>/dev/null` | |
PROCESSID=`ps ux | awk '/Chromium/ && !/awk/ {print $2}'` | |
if [[ $LATEST -eq $CURRENT ]]; then |
View README
These two files should help you to import passwords from mac OS X keychains to 1password. | |
Assumptions: | |
1) You have some experience with scripting/are a power-user. These scripts worked for me | |
but they haven't been extensively tested and if they don't work, you're on your own! | |
Please read this whole document before starting this process. If any of it seems | |
incomprehensible/frightening/over your head please do not use these scripts. You will | |
probably do something Very Bad and I wouldn't want that. | |
2) You have ruby 1.9.2 installed on your machine. This comes as standard with Lion, previous | |
versions of OS X may have earlier versions of ruby, which *may* work, but then again, they |
View click_allow.scpt
tell application "System Events" | |
repeat while exists (processes where name is "SecurityAgent") | |
tell process "SecurityAgent" | |
click button "Allow" of group 1 of window 1 | |
end tell | |
delay 0.2 | |
end repeat | |
end tell |
View gist:4762681
$( "li.track" ).each(function( index ) { | |
var track = $('.t', this).text(), | |
artist = $('.a', this).text().replace("&",""); | |
$(this).text(artist + ' - ' +track); | |
}); |
NewerOlder