Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /Volumes/Bitcasa Infinite Drive/Pictures/Pictures/iPhoto Library/Masters/2009/Zoo/P1000324.JPG | |
| /Volumes/Bitcasa Infinite Drive/Pictures/Pictures/iPhoto Library/Masters/2011/03/02/20110302-181927/188X5745.JPG | |
| /Volumes/Bitcasa Infinite Drive/Pictures/Pictures/iPhoto Library/Masters/2012/01/12/20120112-163037/IMG_0434.JPG | |
| /Volumes/Bitcasa Infinite Drive/Pictures/Pictures/iPhoto Library/Masters/2007/Marias Geburtstag/IMG_4479.JPG | |
| /Volumes/Bitcasa Infinite Drive/Pictures/Pictures/iPhoto Library/Masters/2008/Automatenfotos/Bodo, Jasper, Monika, Bodo.jpg | |
| /Volumes/Bitcasa Infinite Drive/Pictures/Pictures/iPhoto Library/Masters/2007/Fussballturnier/IMG_0030.JPG | |
| /Volumes/Bitcasa Infinite Drive/Pictures/Pictures/iPhoto Library/Masters/2010/Victor/IMG_9030.JPG | |
| /Volumes/Bitcasa Infinite Drive/Pictures/Pictures/iPhoto Library/Masters/2010/Fotos Ninos Einschulung/IMG_0260.JPG | |
| /Volumes/Bitcasa Infinite Drive/Pictures/Pictures/iPhoto Library/Masters/2012/01/27/20120127-141939/P1000671.JPG | |
| /Volumes/Bitcasa Infinite Drive/Pictu |
| def youtube_id(video_tag) | |
| tests = [] | |
| tests.push(/embed\/([a-zA-Z0-9]+)/) | |
| tests.push(/src="\/\/www.youtube.com\/v\/([a-zA-Z0-9]+)/) | |
| tests.push(/youtu.be\/([a-zA-Z0-9]+)/) | |
| tests.push(/youtube.com\/watch\?v=([a-zA-Z0-9]+)/) | |
| tests.each do |regexp| | |
| return video_tag.scan(regexp)[0][0] if video_tag.scan(regexp).length > 0 | |
| end |
| a.button, | |
| .button, | |
| .property .contact .header, | |
| body.welcome.index #scrollbar-track a, | |
| body.welcome.index #coverTitle .property_code | |
| { | |
| background: #6ec93c; /* Old browsers */ | |
| background: -moz-linear-gradient(top, #6ec93c 0%, #58ac25 100%); /* FF3.6+ */ | |
| background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6ec93c), color-stop(100%,#58ac25)); /* Chrome,Safari4+ */ | |
| background: -webkit-linear-gradient(top, #6ec93c 0%,#58ac25 100%); /* Chrome10+,Safari5.1+ */ |
| # Creates an instance of CoffeeKiq | |
| {CoffeeKiq} = require('coffeekiq') | |
| coffeekiq = new CoffeeKiq "redis_port", "redis_host" | |
| # Enqueues a Job to redis namespace: "" and retry: false | |
| coffeekiq.perform 'queue', 'WorkerClass', ['arg1', 'arg2'] | |
| # Enqueues a Job to redis with namespace: "myapp:staging" and retry: true | |
| coffeekiq.perform 'queue', 'WorkerClass', ['arg1', 'arg2'], | |
| namespace: "myapp:staging" |
| ○ → curl -L get.yeoman.io | bash | |
| % Total % Received % Xferd Average Speed Time Time Time Current | |
| Dload Upload Total Spent Left Speed | |
| 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 | |
| 100 11625 100 11625 0 0 6714 0 0:00:01 0:00:01 --:--:-- 43867 | |
| Looks like you have the XCode CLI tools. Passed! | |
| Installing on OS X. | |
| You've got brew, nice work chap! | |
| =============== | |
| = brew doctor = | |
| =============== | |
| Your system is raring to brew. |
| #!/usr/bin/env bash | |
| apt-get -y update | |
| apt-get -y install build-essential zlib1g-dev libssl-dev libreadline5-dev libyaml-dev | |
| cd /tmp | |
| wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz | |
| tar -xvzf ruby-1.9.3-p194.tar.gz | |
| cd ruby-1.9.3-p125/ | |
| ./configure --prefix=/usr/local | |
| make | |
| make install |
| #!/usr/bin/env bash | |
| apt-get -y update | |
| apt-get -y install build-essential zlib1g-dev libssl-dev libreadline5-dev libyaml-dev | |
| cd /tmp | |
| wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz | |
| tar -xvzf ruby-1.9.3-p125.tar.gz | |
| cd ruby-1.9.3-p125/ | |
| ./configure --prefix=/usr/local | |
| make | |
| make install |
| gem list | cut -d" " -f1 | xargs gem uninstall -aIx |