The weblog of Craig Hockenberry
Sade Olutola
AnasAbdin
Mike Driver
YOU ARE THE REASON
styofa doing anything

JVL

Janaina Medeiros
wallacepolsom
sheepfilms

tannertan36
Peter Solarz
Alisa U Zemlji Chuda
Cosmic Funnies
RMH
Today's Document
dirt enthusiast

blake kathryn
Cosimo Galluzzi
i don't do bad sauce passes
Keni

seen from Russia
seen from Sweden

seen from United States

seen from Malaysia
seen from United States
seen from Germany

seen from United States

seen from Malaysia

seen from United States

seen from United States

seen from United States
seen from Peru

seen from Russia

seen from Italy

seen from United States

seen from United Kingdom

seen from Malaysia
seen from Türkiye
seen from United States

seen from United States
@tlbrack-blog
The weblog of Craig Hockenberry
spine.js contacts tutorial bugs
When working through the spine contacts tutorial, there are a few things missing (as of 4/20/2012) to get the final pretty output. 1. Edit slug.json to include spine/lib/list as a dependency. 2. Edit Main to include the following
className: 'main stack'
3. The public index should export the app in this manner:
exports.app = new App({el: $("#article")});
4. The body should contain the following:
<header id="header"> <h1>Spine Contacts</h1> </header> <article id="article"></article>
5. Finally, copy over the fancy css from the github repo!
If there is only a vimball for what you want to install, so be it.
more api ideas to consume
example flow: http://www.infoq.com/articles/webber-rest-workflow
real world production rest api: http://developer.netflix.com/docs/REST_API_Conventions
versioning by mime rather than url: http://barelyenough.org/blog/2008/05/versioning-rest-web-services/
I had no difficulties building ruby 1.9.3 with rvm, but when I attempted a bundle install, I'd get a segmentation fault with the backtrace pointing at openssl. Ultimately the solution was to install openssl again as an rvm package, and force it to ignore both the os x base version and the newer macports version.
using regex in vim subtitute command
Wrap your captures in escapes parentheses, then use a 1 based index to refer to the captures in the replacement section. Basically something like
%s/blarg \(capture 1\) \(capture 2\)/replaced with flipped blarg \2 \1/
Quick way to find the line numbers for iPhone crash reports
If you want to store something like CGRect in NSArray.
vim copy/yank/paste to other apps easily
In your .vimrc:
set clipboard=unnamed
via