Yan Pritzker photographer, entrepreneur, software engineer, musician, skier

Blog :: Git Workflows Book :: Dotfiles :: Photography :: About Me

TwitterCounter for @skwp

Get the news feed
Get updates by email
Follow me on twitter

hello, i'm yan

I am a photographer, entrepreneur, software engineer, guitarist, climber, and telemark skier

This blog is about startups, blogging, Ruby On Rails, virtualization and cloud computing, photography, customer service, marketing, ux and design, git, and lots more.

Enterprise intelligence with prediction markets

Find out what your team, colleagues and partners really know about the future — and leverage their knowledge to improve business decisions.

I'm the founder of Planypus, the place to share your plans!

Archives

Contact

Reach me at yan at pritzker.ws

Posts Tagged vim

Convert rspec pending to xit with vim

RSpec has two ways of disabling tests: pending and xit. Except one of them is truly evil. Pending actually still runs the before block even when it’s disabled. This is bad when you have a test with a very expensive before block. Changing the pending to xit is a great strategy, but tedious. Vimscript to [...]


Learn to speak vim – verbs, nouns, and modifiers!

.vim strong { font-size: 120%; background: lightyellow; } .vim code { background: #eee; padding: 0.5em; margin-top:1em; display:block } Using vim is like talking to your editor in ‘verb modifier object’ sentences, turned into acronyms learn some verbs: v (visual), c (change), d (delete), y (yank/copy). these are the most important. there are others learn some [...]


Vim demystified: ten commands you can start using today

.vimtable { text-align: left; width: 600px; border: 1px solid #aaa; margin-bottom: 1em } .vimtable td,th { padding: 1em; } .vimtable tr td {border-bottom: 1px solid #ddd } .vimtable tr.last td { border-bottom: none} .vimtable td.first { font-weight: bold; font-size: 120%; } .vimtable strong { font-size: 120%; background: lightyellow; } .vimtable tr.warning td { background: #ffffcc; [...]