Step 1: I make coffee.
Step 3. I reach for the cup, but it’s empty.
Can you guess step 2 and 4?
Step 1: I make coffee.
Step 3. I reach for the cup, but it’s empty.
Can you guess step 2 and 4?
I’m In The Mood For Love by Nat King Cole W/ Lyrics – YouTube.
Found this to complement the following quote today on IRC at Automattic, by yourself truly .
♫ I’m in the mood to ship, simply because you’re near ready ♫ (to the tune of http://www.youtube.com/watch?v=Gg7OUG9V_cw)
To which Andy replied:
I was thinking more like “It’s time to ship!!!” http://www.youtube.com/watch?v=Ue3F3isiCvQ
Works too! Now, let’s ship that code! :)
I’ve recently made the plunge and standardized all my text editing needs around vim. That is to say vim when in local or remote terminal sessions and macvim when editing local files.
Since this has lead me to tweak my .vimrc file, I figured I’d post its current incarnation for posterity.
set tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab set nowrap set ruler syntax on filetype indent on autocmd FileType php set omnifunc=phpcomplete#CompletePHP autocmd FileType javascript set omnifunc=javascriptcomplete#CompleteJS autocmd FileType html set omnifunc=htmlcomplete#CompleteTags autocmd FileType css set omnifunc=csscomplete#CompleteCSS autocmd FileType xml set omnifunc=xmlcomplete#CompleteTags autocmd FileType python set omnifunc=pythoncomplete#Complete autocmd FileType c set omnifunc=ccomplete#Complete
Here’s what it means:
set wrap
when I need it insteadThose are the only configs I’ve found myself needing at the moment, but they made a huge difference in my daily productivity. Maybe they will for you too.
Check out Facebook’s worldwide coding competition:
The 2011 Facebook Hacker Cup is the first annual Facebook programming contest where hackers compete against each other for fame, fortune, glory and a shot at the coveted Hacker Cup. […] Many will enter, but only one will claim title as champion and take home the $5,000 USD cash prize and be immortalized on the Hacker Cup.
Registration opens on December 20th 2010.
On a side note, I love that poster design. :)
Did you know Google ignores dots in your Gmail address username?
Sometimes you may receive a message sent to an address that looks like yours but has a different number or arrangement of periods. While we know it might be unnerving if you think someone else’s mail is being routed to your account, don’t worry: both of these addresses are yours.
I knew. Good thing I remembered when asked by a previous Plinky user about why he was still receiving weekly emails despite having deleted his account prior to Automattic‘s acquisition of the product. This was in fact the source of the issue.
Developers should also keep this in mind when programming a user and authentication system, as it can lead to support conundrums. This is also another example of why it’s always a great idea to go through an email validation step during your signup/activation process.