27 May 2009

Windows Rules to Live by: The Registry

Never deploy code that writes to the Windows registry without having tested sister code that removes what was written from the registry.

Thought for the Day: Unit Tests

Keep your documentation close, but your unit tests closer.

Ah! Post unit test build complete!

Back at it...

05 February 2009

GeoPDF Now OGC Best Practice

After many long years, GeoPDF is open and an OGC best practice. I would have like to have seen this go down in 2003 when I first wrote the specification. It would have been very different, since it would have been designed for external consumption (too many naught bits hang out in the LGIDict specification, but it had to get done in about a day and a half...), but it should have been open from the get-go, IMO. A little gruntle for the ranting set, too...

10 July 2008

In Praise of Mavericks

Col. Michael Wyly's AFJ article made me think about what "professional" means. John Boyd, mentioned in the article, was an interesting cat.

21 April 2008

Artistic License

Go forth and take (get) your artistic license. Be sure to click on the license itself so you can take in the grandeur that are the codes.

19 April 2008

Teach Yourself Programming in 10 Months

We'll almost no matter what you do, you can't learn programming in 10 months. However, Eli Bendersky shows one how to make the most of your first 10 months of the process. I'll leave it to
Peter Norvig to explain why learning to program is takes more than a few weeks with a "21 days" book...

09 April 2008

When ever you hear...

"linux", substitute "mobile". Pictures get a whole lot more interesting...

26 October 2007

Phil Baugh: Country Guitar


I was doing time on the connector when what wafted through the aether on WRFG? Phil Baugh's Country Guitar. I don't know why, but it really struck my fancy

29 August 2007

New Acronym: WTFW?

Do you ever wonder from whence something came? I do. I love thesarui, e. g.

WTFW?

Where TF Whence?

25 July 2007

QOTD

Software can't solve the dumb-ass problem. -- Dr Aybabtu

11 May 2007

Duff's Template


template <class T>
void
duff(T* to, T* from, T count) {
T n = (count+7)/8;
switch (count % 8) {
do {
case 0: *to = *from++;
case 7: *to = *from++;
case 6: *to = *from++;
case 5: *to = *from++;
case 4: *to = *from++;
case 3: *to = *from++;
case 2: *to = *from++;
case 1: *to = *from++;
} while (--n > 0);
}
}

20 April 2007

How to Make a Grown Hacker Cry

From Yaml for Ruby:

Man 1: What's Yaml?
Man 2: It's for writing data structures in plain text.
Man 1: And?
Man 2: And what? That's not good enough for you?