Software As She’s Developed

Mahemoff’s Podcast/Blog - Web, Programming, Usabilty from the Author of ‘Ajax Design Patterns’ (AjaxPatterns.org)

Software As She’s Developed header image 4

Ajax/Javascript: 8 Ways to Create Graphics on the Fly

October 1st, 2006 · 29 Comments

Ajax/Javascript: 8 Ways to Create Graphics on the Fly - digg this The ability to create rich graphics on the fly is one of the critical gaps in Ajax. There are indeed techniques to do it, albeit far from perfect, and some are do-able today if you take a pragmatic view of things and keep graceful [...]

[Read more →]

Tags: Links · SoftwareDev

Lessons in Javascript Performance Optimisation: 90 seconds down to 3 seconds

September 26th, 2006 · 10 Comments

Summary: Avoid $$(".classname") on large DOMs!!! I've recently been optimising the guts out of a JS webapp I wrote, which was making IE crawl to a halt. I discovered this after introducing a stress-inducing data set. (Using Rails' fixtures makes light work of this; since the fixtures are Ruby templates just like the web templates, it's [...]

[Read more →]

Tags: Links · SoftwareDev

Ajax Functionality and Usability Patterns - Podcast 4 of 4: Functionality Patterns

September 23rd, 2006 · 2 Comments

This is the fourth and final podcast in the series on Ajax functionality and usability patterns (Book: Part 4, pp 327-530). This 54-minute podcast covers seven patterns of Ajax Architecture (Book: Chapter 17, pp 473-530): Lazy Registration Direct Login Host-Proof Hosting Timeout Heartbeat Unique URLs Dynamic Favicons Dedicated to the Nitobians, whose last podcast inspired me to crank another one out again. Recent events [...]

[Read more →]

Tags: Links · Podcast · SoftwareDev

“Ajax Design Patterns” - Book of the Month

September 20th, 2006 · 2 Comments

Ajax Design Patterns is Book of the Month in this month's .Net mag (p.23, Issue 155, October, 2006). Incidentally, the mag is about the 'Net, not specifically MS .Net (which it pre-dates). The review says: So AJAX might be the hottest thing in programming since, er, ordinary Javascript, but it's no good just learning how to [...]

[Read more →]

Tags: SoftwareDev

CSS: The Tech Ajax Forgot

July 31st, 2006 · 9 Comments

.... Wherein our protaganist awakes to the power of CSS ... CSS is as important to Ajax as Asynchrony and XMLHttpRequest. Which is to say, it's very useful, even though it's not essential. Due to an accident of the English language, JJG's creative mind, and the propensity of certain terms to rise to buzzdom, it doesn't [...]

[Read more →]

Tags: Links · SoftwareDev

Ajax Functionality and Usability Patterns - Podcast 3 of 4: Visual Effects

July 31st, 2006 · No Comments

This is the third in the four-part series on Ajax functionality and usability patterns (Book: Part 4, pp 327-530). An audio discussion of visual effects is ideally short and sweet, so this podcast is but 13 minutes long. This 13-minute podcast covers ten patterns of Ajax Architecture (Book: Chapter 16, pp 445-472): One-Second Spotlight One-Second Mutation One-Second Motion Highlight Listen Now: [...]

[Read more →]

Tags: Links · Podcast · SoftwareDev

How ‘Bout Those Radiobuttons?

July 29th, 2006 · No Comments

I'm all for Web 3.0 gadgetry in the browser, but how about some JS love for those ancient radio controls. It should be easy and portable to: * Get the current value of a radio group, without looping through each radiobutton to find the one that's checked! * Catch onchange events (no luck with IE). Right now, it's [...]

[Read more →]

Tags: SoftwareDev

Ajax Functionality and Usability Patterns - Podcast 2 of 4: Ajax Page Architecture

July 25th, 2006 · 2 Comments

This is the second in the four-part series on Ajax functionality and usability patterns (Book: Part 4, pp 327-530). The guest for this week is Dave Johnson of Nitobi (the Ajax component developers formerly known as E-Business Applications), widget guru and author of the upcoming Enterprise Ajax book. Dave helps me walk through the patterns and [...]

[Read more →]

Tags: Links · Podcast · SoftwareDev

Ajax Functionality and Usability Patterns - Podcast 1 of 4: Widgets of the Web

July 15th, 2006 · No Comments

And so, a new series begins, based on the Ajax functionality and usability patterns (Book: Part 4, pp 327-530). We've already looked at the technical details, now we're looking at what Ajax can do for users and how to implement these features. I'm asking guests to join me for most of the remaining Ajax Pattern podcasts. [...]

[Read more →]

Tags: Links · Podcast

Ajax as a Remedy for the Cacheability-Personalization Dilemma

July 13th, 2006 · 10 Comments

A pattern for your consideration, about using Ajax to help pages be RESTful. Problem How to personalize content and make pages cacheable and bookmarkable at the same time? Forces We want pages to have clean URLs that describe the main content being viewed. Doing so makes pages easily bookmarkable and send-to-friend-able, and also allows us to cache the [...]

[Read more →]

Tags: SoftwareDev