Coincidences

Posted on

The day steve jobs died, my mom, who is in the hospital fighting ovarian cancer, came off of a respirator. She couldn't talk, so she used my iPad to type out what she needed.

Tags: Cancer, Real Life

─── ✧ ─── ✦ ─── ✧ ───

Startups are getting smaller

Posted on

Startups today are almost half the size than they were a decade ago. It seems that a lot of the collaborative tools that have emerged over the last year help productivity so you can do more work with less employees. And I don't think its just true for startups, I know at work we're doing a lot of work with just 3 people in the Digital Media department. Do you think this study accounts for the start ups and open source projects that pioneered the services that make this possible?

Start-ups are now being launched with an average of 4.9 employees, down from 7.5 in the 1990s, according to a recent Kauffman Foundation study. In 2009, new independent businesses created a total of 2.3 million jobs, more than 700,000 fewer jobs than the annual average through 2008, the study found.

HT: With New Technology, Start-Ups Go Lean

Tags: Digital Media, Economics, Open Source, People, Technology

─── ✧ ─── ✦ ─── ✧ ───

Lightweight UI Plugins for jQuery

Posted on

One of my newest and persistent obsessions is constantly looking for ways to make dcunited.com load faster.  It's a challenge because we want to have a content-rich site, with lots of photos, videos, and interactive elements.  There are a lot of techniques you can try, from optimizing images, using subdomains to trick browsers into downloading in parallel, combining images into sprites, and so on.  Of course, none of these techniques can help you if you choose or are forced to use something that has a big payload.

In this case, I was looking at the javascript libraries we use to do tabs, table sorting, and fancy tooltips.  jQuery itself is 31kb minified, which is a little chunky but not a horrible tradeoff.  Most plugins are svelt, except qTip which weighs in at comparatively hefty YUI-compressed 38kb.  For 38kb you get a ton of features with the plugin, but if you aren't using most of them, its just bloat.

I need a compact UI library for websites

I started looking for a replacement plugin, and quickly found jQuery TOOLS, which states :

Websites are not desktop applications. They are different. What you really need is high usability, striking visual effects and all those "web 2.0" goodies that you have seen on your favourite websites.

Replacing qTip with the jQuery TOOLS tooltip plugin didn't take a lot of time, by mid-morning I was already testing it across our supported browsers to roll it out to the live site. You can still get pretty fancy with this plugin.  However, you can customize your download to only include the tooltip plugin, which clocks in at just over 3kb minified javascript.  

This is a big difference, although 35kB may not sound like much, that's 35kb less data that visitors have to download. More importantly, that is less javascript code that a browser has to parse when rendering a page. Javascript parsing can block other downloads and slow page loading.

Tags: jQuery, Web Design

─── ✧ ─── ✦ ─── ✧ ───