Helps
Test driving contenteditable?
I want to TDD contenteditable, where a DT element can be changed and it’s underlying resource receives an PUT. Is this even possible?
I want to TDD contenteditable, where a DT element can be changed and it’s underlying resource receives an PUT. Is this even possible?
Today’s github outage drove us to try ssh urls instead of the https urls we were using. A pleasant speed improvement in deployment time resulted.
How to test a javascript onLoad event in an iframe?
*crickets*
Google Code Jam is today, some pivots will be taking part on it!
Spacing matters. Leaving a space after a minus and before a number is entirely different from putting the minus right before the number. The former is binary arithmetic and the latter is a unary operator. For example:
[-1, 1, 2, 3].count - 1 #=> 3 (subtracting 1 from the array size)
[-1, 1, 2, 3].count -1 #=> 1 (counting the number of occurrences of -1 in the array)