Archive for the ‘Web Development’ Category

June 30, 2009 3

Podcast #1: Coloring Outside the Lines with WordPress, Thesis, Firebug, HTML & CSS.

By in Web Development

Just tried my first podcast.

November 22, 2007 0

While (EndlessLoop): Sit there and wait;

By in Web Development

I think the “While” loop in programming languages needs a refresh. More and more software these days is being pushed to Web servers, which is essentially a “shared hardware” environment. Which means, one little runaway endless loop can pin the CPU and ruin it for everyone (sometimes, thousands of other users). Sure, if set up [...]

September 18, 2007 0

Joel on how the JavaScript performance thing is a temporary problem. Now get back to writing maintainable code.

By in Web Development

I have a pet peeve about how some of the more popular JavaScript libraries today have awfully awkward syntax (for these modern times in which we live). All these inline objects, terse names, passing function literals as arguments to other functions, and so forth. Icky readability. Sure, JavaScript is a very “expressive” language as they [...]

November 21, 2006 0

Counting Keystrokes in Code

By in Web Development

I can’t tell you how much this irks me: $A(someNodeList).each(function(node) { alert(node.nodeName + ‘: ‘ + node.innerHTML); } ); This is a horrible style of code being popularized by the very trendy Javascript library, Prototype. Let me say that I am absolutely thrilled to see an army of smart people really going to town with [...]

October 16, 2006 2

Fixing Cross-Browser CSS

By in Web Development

Please. I beg you. If you are developing any kind of web-based software, read this. We all know that in magical gum-drop land “standards” like those put out by the W3C would save developers from even having to think about cross-browser development issues. And I’m happy to see that with the modern browsers these days, [...]