Archive for September, 2005

Me, a Googler

Sunday, September 25th, 2005

With the start of October I’ll be working at Google. It has been a long process over last couple of months and I have been looking forward to starting since the first email.
Google has hired a lot of really bright people lately and getting a chance to work with some of them is very inspiring.
I [...]

Free Opera

Tuesday, September 20th, 2005

Opera web browser has broken the chains of ad-ware. The desktop version is now free.
Opera is the fastest browser on the earth. It has excellent HTML, XHTML, XML, DOM, CSS, and JS support. It also supports SVG tiny.

Typed Programming

Sunday, September 18th, 2005

Typed programming can be nice but when you have to write something like this things have gone too far:
Microsoft.Msn.Hotmail.SortBy _sortBy = (Microsoft.Msn.Hotmail.SortBy)
Enum.Parse(typeof(Microsoft.Msn.Hotmail.SortBy), aSortBy);
Compared to a dynamic typed language:
var _sortBy = aSortBy;

Atlas Comments

Thursday, September 15th, 2005

Last night I looked a bit at Atlas and its Quick Start tutorials. With the risk of sounding like I hate Microsoft I’ll write down some thoughts…

Atlas is nice. I really like a lot of it. There are tons of things that I don’t like but the initial reaction is that this might end up [...]

IE7 and XMLHttpRequest

Wednesday, September 14th, 2005

Over at the IE Blog:
IE 7 implements a native XMLHTTPRequest object for Javascript applications, instead of requiring an ActiveXObject to be created. This also means XMLHTTPRequest will function on machines that have ActiveX disabled.
Thank you Dean.

JavaScript 1.6

Friday, September 9th, 2005

With the upcoming release of Firefox 1.5 Mozilla have decided to increase their JavaScript version number to 1.6. There are basically three new features since 1.5:

ECMAScript 4 XML
Array Extras
Array and String generics

Array and String generics means that some of the methods that are available on Array.prototype and String.prototype are now also available as static methods [...]

For Each Loop in Mozilla

Friday, September 2nd, 2005

I’m not entirely sure when Mozilla started to support for each loops but I guess it was part of the E4X code checkins. Anyway, I was totally shocked when I saw it and I fired up a quick test.
var o = {a: “A”, b: “B”, c: “C”};
for each (var v in o) {
[...]