HN user

bmac

151 karma
Posts11
Comments13
View on HN

One time charges are pretty typical when layoffs are announced. They are usually the cost of severance pay for the weeks or months of salary paid to employees who are no longer working. Office space leases are typically long term (multiple years) and accounting rules require they recognize the expected future cost of that now-useless space when the layoff decision is made. In practice, cash won't actually change hands for the office space until rent is due in future months. And companies will work with the landlord to get out of the lease (but often pay some penalty for the privilege).

> There are no `Models` in the framework by default although there's a plugin which does fine job.

Can I ask which plugin you are referring to? I've been looking for something like this.

In some ways 'ship spinning' in eve was the iphone equivalent of dragging a screen past its boundary and watching it snap back in place.

Dragging the camera (with a mouse down, move and release) would cause it to rotate around the player's ship until some artificial 'drag' decided the spin should slow to a stop. It was one of those innocent and functionally useless UI features, that is surprisingly satisfying to preform.

I second watching the WePay talk.

One of the best pieces of advice I heard at Startup bootcamp came from Bill Clerico (WePay CEO) when he described building software as a community process. It seemed like an elegant way to say users are what really matter and it applies equally well to commercial, open source and personal projects.

The overthinking it podcast is one of my favorites. A panel generally overthinks movies and other artifacts from pop culture and arrives at some interesting concepts by following Hollywood's 'movie logic'. http://www.overthinkingit.com/category/podcast/otip/

If you enjoy comedy Jordan Jesse Go! and Stop Podcasting yourself are two podcast from Maximumfun that regularly interview comedic stars from Los Angeles and Vancouver respectively. http://www.maximumfun.org/shows/jordan-jesse-go http://www.maximumfun.org/shows/stop-podcasting-yourself

I only recently spent enough time with regexs to learn them to the point where I no longer need to consult a reference every time I wanted to write one. Now I wish I had learned regexs sooner. Regexs are fantastical useful and I've noticed a productivity boost not only in writing programs but also for manipulating tools such as grep and emacs.

CS Junior at Worcester Polytechnic Institute looking for a web development internship in the Boston area. Skilled in Python, Django, Java, Linux and more. Email bmcloughlin@wpi.edu for a resume.

my emacs.d still needs a few tweaks but I'm convinced it always will.

most useful parts: replacing fundamental mode with text-mode as the default mode when a new buffer is open.

(setq default-major-mode 'text-mode)

turn auto fill (automatic line wraping) and flyspell (spellchecking) on by default

(add-hook 'text-mode-hook 'turn-on-auto-fill)

(add-hook 'text-mode-hook 'turn-on-flyspell)

also I find yasnippet http://code.google.com/p/yasnippet/ wonderful for coding html mockups and django templates.

my github repo if anyone cares to take a peek: http://github.com/bmac/emacs