(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| <DT><H3 FOLDED>iPhones</H3> | |
| <DL><p> | |
| <DT><A HREF="javascript:open(location,'iPhone:portrait','innerWidth='+(640+15)+',innerHeight='+(1136+15)+',scrollbars=yes');">iPhone 5 - Portrait</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:landscape','innerWidth='+(1136+15)+',innerHeight='+(640+15)+',scrollbars=yes');">iPhone 5 - Landscape</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:portrait','innerWidth='+(640+15)+',innerHeight='+(960+15)+',scrollbars=yes');">iPhone 4 - Portrait</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:landscape','innerWidth='+(960+15)+',innerHeight='+(640+15)+',scrollbars=yes');">iPhone 4 - Landscape</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:portrait','innerWidth='+(320+15)+',innerHeight='+(480+15)+',scrollbars=yes');">iPhone 3 - Portrait</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:landscape','innerWidth='+(480+15)+',innerHeight='+(320+15)+',scrollbars=yes');">iPhone 3 - Landscape</A> | |
| <DT><A HREF="http://www.iphoneresolution.com/">What's the iPhone Screen Resolut |
| <DT><H3 FOLDED>iPhones</H3> | |
| <DL><p> | |
| <DT><A HREF="javascript:open(location,'iPhone:portrait','innerWidth='+(640+15)+',innerHeight='+(1136+15)+',scrollbars=yes');">iPhone 5 - Portrait</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:landscape','innerWidth='+(1136+15)+',innerHeight='+(640+15)+',scrollbars=yes');">iPhone 5 - Landscape</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:portrait','innerWidth='+(640+15)+',innerHeight='+(960+15)+',scrollbars=yes');">iPhone 4 - Portrait</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:landscape','innerWidth='+(960+15)+',innerHeight='+(640+15)+',scrollbars=yes');">iPhone 4 - Landscape</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:portrait','innerWidth='+(320+15)+',innerHeight='+(480+15)+',scrollbars=yes');">iPhone 3 - Portrait</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:landscape','innerWidth='+(480+15)+',innerHeight='+(320+15)+',scrollbars=yes');">iPhone 3 - Landscape</A> | |
| <DT><A HREF="http://www.iphoneresolution.com/">What's the iPhone Screen Resolut |
| { | |
| "after":"98248f0e892ce4e4e37411730ac98b53f2aa1261", | |
| "base_ref":"refs/heads/br2", | |
| "before":"0000000000000000000000000000000000000000", | |
| "commits":[ | |
| ], | |
| "compare":"https://github.com/nevik/testrepo/compare/tag2", | |
| "created":true, | |
| "deleted":false, |
| // ==UserScript== | |
| // @name jQueryfy | |
| // @namespace http://rafasales.com | |
| // @version 0.1 | |
| // @description Loads jQuery in any page | |
| // @match http*://* | |
| // @copyright 2012+, Rafael Sales | |
| // ==/UserScript== | |
| if (typeof(unsafeWindow.jQuery) != 'undefined') { | |
| return; |
This is how we test that all translation keys match up between locales.
Stuff that only goes in one locale (such as an admin section) or that can't be translated yet (if you use external translators) can simply go in files that don't match the path "config/locales/??.yml", like "config/locales/wip.fo.yml".
| # Install rvm system-wide | |
| bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer ) | |
| # Update the packages | |
| apt-get update | |
| apt-get upgrade | |
| apt-get install build-essential | |
| # get the packages required by ruby | |
| rvm pkg install zlib |
| # Variation on Hashrocket's script for managing the git process | |
| # as documented here: http://reinh.com/blog/2008/08/27/hack-and-and-ship.html | |
| # Create shell scripts out of each of these, put them in your path (~/bin for example) | |
| # chmod 755 them and use like this: | |
| # | |
| # This version of hack is totally different than Hackrockets. I feel that hack implies | |
| # that you are getting started, not finishing up. sink is Hashrockets hack. | |
| # | |
| # $ hack branch_name | |
| # Test and Implement until done |