Tricks
Way to test a specific section in a file without using Focus
11/24/14 Public, Tricks, Testing / TDD
Adding a focus to a spec file is good way to just test that specific area. The one drawback is you have to remember to remove the...
1 vote - harrylevine
11/15/14 Public, Tricks
1 vote - plawler
Coloring the tab of an un-saved file in Sublime text
11/15/14 Public, Tricks
This will make the tab's text orange whenever there are unsaved changes to a file.
"highlight_modified_tabs": true,
http://stackoverflow.com/questions/11294620...
1 vote - brookemcg
11/07/14 Public, Tricks, Ruby General
To take an array like:
and have it result in an array of pairs such as:
You can use each_slice method.
Provided, of course, that array is assigned the original ...
2 votes - kotp
Ways to create test email addresses
10/28/14 Public, Tricks, Testing / TDD
1) You can add a “+” sign right after your email prefix, and then add anything after that, between the + and the @, and it will create unique test emails address. All of which will be emailed to your original address.
For example, if your emai...
1 vote - harrylevine