How to quadruple your productivity with an army of student interns

How much the mythical man month applies to your project depends on how you structure your team, architecture, and communications.

"I feel for Google – Steve Jobs threatened to sue me, too."

Jonathan Schwartz details the games people play in technology IP lawsuits as it relates to the recent Apple suit over Android. A great read on the topic with some real inside perspective.

I had not read Jonathan’s blog since he left Sun and retitled it “What I couldn’t say…”. It is a compelling read, and I’m glad he’s able to provide an inside perspective on Sun after the fact. I also hope Jonathan has found some time to take a break after what I’m sure were several extremely challenging years as CEO before the Oracle buyout.

"To the best of our knowledge this work is the first quantitative study on the entire Twittersphere and information diffusion on it."

A very compelling analysis of Twitter connection and information diffusion data. Worth a skim. One interesting discovery: “…any retweeted tweet is to reach an average of 1,000 users no matter what the number of followers is of the original tweet. “

AJAX, or LAJAX?

I’ve noticed a disturbing trend in web site design: flashy ajax-y user interfaces that are actually worse than their full-page-refresh forefathers. The Ajax calls are *synchronous* in nature when they would have been aysnchronous using plain-jane HTML.

Let me call this LAJAX. Lame AJAX, or latent javascript xml communication depending on your politics.

The worst offender of this is forms with checkboxes and drop-downs. Let me illustrate exactly what I’m talking about with a clear example from a certain gigantic mobile conference registration form.

What happens:

On each page, there is a set of checkboxes which you must check to select which events and activities you plan to attend. Clicking each box results in a long delay between when you click the checkbox, and when it shows the actual check.

Click-pause-pause-check. Click-pause-pause-check.

This is confusing as heck for users who think their browser has hung in the middle of a big transaction.

Why does this happen?

Because they are custom checkboxes which use javascript to communicate with the server, wait for a response, then update the page to reflect my choice. They are not normal HTML checkboxes — they are special javascript thingys designed to enhance the user experience.

Why this is LAJAX:

a) The long delay is confusing to users who don’t understand why a normal page element does not seem to be working. This reduces their trust in the web site form — did their selection go through, or fail? A plain-jane full-page-refresh web page would have worked better with less development effort.

b) The normal checkboxes supported in HTML are already asynchronous as far as the user is concerned. When the user clicks a plain-jane HTML checkbox, it will immediately show a check without a page refresh or server response. You can always then send an event back to the client (the browser) to modify another element on the page later, if necessary for validation or another function.

Some recommendations:

a) Think carefully before incorporating advanced javascript elements into your web pages, and do not replace asynchronous HTML elements like checkboxes with less effective LAJAX versions. The idea behind AJAX is a better, faster, snappier user experience. Not just to eliminate page refreshes or do more with javascript.

b) If you need to attach advanced functionality to existing HTML elements, do it in an asynchronous manner. Update the UI elements immediately rather than waiting for that xmlhttprequest to return from the server on Sealand. Avoid situations where the javascript submits something to the server then waits for a response before updating the page.

c) There are times when you want to wait for a server response before showing something to the user. In those cases, you can show a “loading…” animation to let the user know what is going on so they don’t freak out when there is a delay. An example of this would be a credit card transaction or flight ticket search. Click-loading-loading-response.

Hope this is helpful for those of you writing site code out there. Sorry I don’t have time to provide some code examples for the above — if someone has a suggestion for some good examples definitely send it my way or add it as a comment.

*I know there is a debate about whether or not ajax is an acronym. Does it mean “asynchronous javascript with xml” or is it a word which encapsulates almost any method of constructing a web page UI in a way that does not require a page refresh to modify page elements. I am not chiming in on that debate — I am continuing the ambiguity with the new question: Does LAJAX mean latent javascript and xml, or does it encapsulate any web page UI element which causes unnecessary latency by attempting to do something silly using ajax-y methods?

Global Venture Capital (VC) Blog Directory – Ranked By Monthly Uniques

This is a great list of some great VC blogs. They’re earning their uniques, imo…

caterpillarcowboy:

  1. Fred Wilson, Union Square Ventures, A VC (100,279)
  2. Guy Kawasaki, Garage Technology Ventures, How To Change The World (82,838)
  3. Paul Graham, YCombinator, Essays (71,924)
  4. Brad Feld, Foundry Group, Feld Thoughts (45,633)
  5. Mark Suster, GRP Partners, Both Sides of the Table (39,389)
  6. Bill Gurley, Benchmark Capital, Above The Crowd (23,084)
  7. Dave McClure, Founders Fund, Master of 500 Hats (21,462)
  8. Josh Kopelman, First Round Capital, Redeye VC (12,972)
  9. Bijan Sabet, Spark Capital, Bijan Sabet (12,451)
  10. Jeremy Liew, Lightspeed Ventures Partners, LSVP (12,097)
  11. Mark Peter Davis, DFJ Gotham Ventures, Venture Made Transparent (12,010)
  12. Larry Cheng, Volition Capital, Thinking About Thinking (11,851)
  13. Eric Friedman, Union Square Ventures, Marketing.fm (11,520)
  14. Multiple Authors, Union Square Ventures, Union Square Ventures Blog (11,408)
  15. Albert Wenger, Union Square Ventures, Continuations (9,729)
  16. Christine Herron, First Round Capital, Christine.net (9,561)
  17. Mendelson/Feld, Foundry Group, Ask The VC (9,270)
  18. Seth Levine, Foundry Group, VC Adventure (8,206)
  19. Nic Brisbourne, Esprit Capital Partners, The Equity Kicker (8,052)
  20. Fred Destin, Atlas Venture, Fred Destin’s Blog (7,928)

OH in the mission: “What I said out loud was not what I said in my head.”

OH: “What I said out loud was not what I said in my head.” It never is ;)