Christopher Mahan's blog
Friday, December 11, 2009
Blog is moving!
Friday, August 14, 2009
Pyrant
recession proof graduate
Interesting. Especially since it comes from a 22 year old.
Thursday, August 13, 2009
Socal-piggies
Thursday, August 06, 2009
Saturday, August 01, 2009
pytyrant
>>> t = pytyrant.PyTyrant.open('127.0.0.1', 1978)
>>> t['__test_key__'] = 'foo'
>>> t.concat('__test_key__', 'bar')
>>> print t['__test_key__']
foobar
>>> del t['__test_key__']
obvious no?
from http://code.google.com/p/pytyrant/
Monday, July 27, 2009
Sharin's poem
She noted that she'd never come across that meter. She called it Chris Meter. 8-6, repeat.
Friday, July 03, 2009
Recent tweet by a coder I know (VS2008)
Discouraged by version control
I think I'm just going to go back to the old way: compressed archives of (few) directories.
For those who ask, indignantly, and not on this blog because comment count is almost negative, about the multi-member team working on massive software, I reply: The Rule Of Modularity (http://www.faqs.org/docs/artu/ch01s06.html#id2877537), which I transcribe here purely for effect.
As Brian Kernighan once observed, “Controlling complexity is the essence of computer programming” [Kernighan-Plauger]. Debugging dominates development time, and getting a working system out the door is usually less a result of brilliant design than it is of managing not to trip over your own feet too many times.
Assemblers, compilers, flowcharting, procedural programming, structured programming, “artificial intelligence”, fourth-generation languages, object orientation, and software-development methodologies without number have been touted and sold as a cure for this problem. All have failed as cures, if only because they ‘succeeded’ by escalating the normal level of program complexity to the point where (once again) human brains could barely cope. As Fred Brooks famously observed [Brooks], there is no silver bullet.
The only way to write complex software that won't fall on its face is to hold its global complexity down — to build it out of simple parts connected by well-defined interfaces, so that most problems are local and you can have some hope of upgrading a part without breaking the whole.
On writing software.
On thinking in
I left a comment there:
http://myownhat.blogspot.com/2009/07/help-how-do-you-do-test-driven-design.html
See also: http://chrismahan.blogspot.com/2008_10_01_archive.html
I've just made another interesting deviation while rereading the above. The rulers in Dune relied on the mentats to best determinate long-term strategy, as well as implementation details. The elder Herbert continues to amaze me.