If you’ve been holding your breath waiting for Google to release Chrome for Mac (or Linux), you can take a breath. It has been a long time coming, but Google finally announced today that they are releasing “developer” builds for Mac and Linux.

Because of its startup speed (dramatically better than any of the other browsers out there), I’ve been using Chrome more and more as my primary browser as of late. Once some critical “Add-ons” become available, I’m pretty sure it will become my only browser – assuming that a few improvements are made to the developer tools.

If you are looking for a solid release of Chrome, you’ll probably want to hold off for awhile, though, as this is an alpha release that is missing a bunch of critical features. If, however, you just want to play around a bit, you might as well go for it. It is definitely solid enough for most of what I do on the web. In fact, I’m writing this post in it.

{ 0 comments }

Ext Releases Ext Core

by Nate on April 5, 2009

If the upcoming 3.0 release of the full ExtJS library wasn’t enough to get you excited, yesterday’s announcement of the release of a new lightweight core library, Ext Core, should be enough to get your pulse up. Ext Core looks to fill the void that exists between a full Ext application (basically a desktop class application built in JavaScript) and more traditional web sites with multiple pages and fairly simple needs.

The full Ext library is a bit heavy for basic web sites so, up until now developers have had to go with other JavaScript libraries to fill this need (I’ve generally stuck with jQuery). The release of Ext Core, however, allows developers to utilize their knowledge of and experience with Ext in places where it was otherwise not possible.

And if you are worried about licensing, worry no more:

Ext Core is released under a permissive MIT license – there is no cost to use Ext Core – it’s free for everyone.

And in traditional Ext style, the code is beautifully-written (at least what I’ve been able to peruse so far) and well-documented.

In my opinion, Ext has been overlooked as of late because of the much-publicized licensing debacle. I still consider it the best JavaScript library out there for writing desktop class web application. I hope that this release will get it some much deserved support from the larger web development community.

{ 3 comments }

Managing My Social Networks

April 4, 2009

I like the idea of social networking (heck, I’m building a spatially-enabled social networking app), but am still struggling with the idea of managing multiple social networks at the same time. I mean who uses only Facebook? And the complexity grows even more when you start to consider all of the other web apps that [...]

Read the full article →

Cappuccino Atlas

February 24, 2009

I just read on Ajaxian that the Cappuccino team announced Atlas, a new “visual layout editor and development environment”, today at the Future of Web Apps conference in Miami. I heard Atlas mentioned (not by name) by a member of the Cappuccino team, Ross Boucher while attending a Cappuccino bootcamp session at Web Directions North [...]

Read the full article →

Foxmarks Now for Internet Explorer and Safari

February 5, 2009

I just read on Lifehacker that Foxmarks has released versions of its bookmark synchronization utility for Internet Explorer and Safari (for Mac, not yet Windows). This is exciting news, as now I can truly consider using Safari while working on my Mac. On top of this, I can now get my bookmarks onto (and off [...]

Read the full article →

Planning for Internet Explorer 8

February 4, 2009

Look out web developers, a new version of Internet Explorer is about to be released into the wild. Fun fun. There’s no use complaining. You know you’re going to have to support it, so, the only thing left to do is work hard to make sure that your site works in the new browser. How [...]

Read the full article →

Great JavaScript Debugging Article

February 3, 2009

When I first started digging deep into writing complex applications with JavaScript, one of the biggest hurdles that I had to overcome was figuring out how to debug my code. At the time, the tools available were (to say the least) lacking. Since then, the tools have improved dramatically.
With the pre-release versions of Internet Explorer [...]

Read the full article →

Attending Web Directions North

February 2, 2009

I’ll be at the Web Directions North conference here in Denver today through Thursday of this week.
If you haven’t heard about the conference yet, take a look at the schedule at the conference site. There are some great workshops and sessions, with some presenters that I highly recommend seeing. And, oh yeah, there is a [...]

Read the full article →

ArcGIS JavaScript Extension for Microsoft Virtual Earth Bug: Cannot Dynamically Draw Polyline or Polygon in Internet Explorer 7

January 22, 2009

UPDATE: This was a bug. I reported it to ESRI, and they have fixed it in the latest release (1.3) of Virtual Earth JavaScript extension. Funny, I’m not sure if anyone is even using the extension, as there was a major lack of response about this issue in the ESRI forums. Are you using it? [...]

Read the full article →

Internet Explorer <a href=””></a> JavaScript Links

January 9, 2009

Using <a href=””></a> links to call JavaScript functions can be a bit trickier than you might think. The issues that I’ve run into are generally Internet Explorer-specific (aren’t they all?). While troubleshooting these issues, I’ve discovered a syntax that seems to solve all of the problems:
<a href=”javascript:void(0)” onclick=”yourFunction();return false”>Click Here</a>
Hopefully this helps someone.

Read the full article →