Using Dead Man's Snitch with Whenever
A quick tip to make it easier to use Dead Man's Snitch with the whenever gem
Hi, I’m Andrew, a programmer and entrepreneur from South Africa,
building
Mailcast
for taking control of your email.
Thanks for visiting and reading.
A quick tip to make it easier to use Dead Man's Snitch with the whenever gem
Hash#clean, a monkey patch to provide easy, Array#map like access to hash values to update them inline.
A short video from Business of Software on determining which features to include in your product.
Watch YouTube videos maximised within the browser window without watching full screen.
How to ignore blank lines when parsing a csv file with ruby's CSV parser.
When an item is added to a collection in Backbone.js it should automatically be added to the corresponding list. When using a sorted collection it would be nice to have it appear in place, especially when not refreshing the entire list. That's what I'll explore in this post.
If you want to view the SQL query used to construct the information returned from a psql command (which will help you learn the underlying information schema) then …
You can use a unique index to ensure only one occurance of a value but what do you do if you want to limit uniqueness to two rows instead of one? PostgreSQL's partial indexing can help.
“If I kicked the person responsible for most of my problems, I wouldn’t be able to sit down for weeks.”
I needed to loop over a fairly large data set and group it by year and month. In this post I walk through using two Ruby Fibers which communicate between each other in order to do in-loop grouping