<>p>Luke Birdeau has remixed Craigslist to produce a desktop-esque Ajax application view on the data that adds features such as being able to save your favorites, add notes to them, and even use the app offline (e.g. take your laptop on the road to go see the stuff for sale of meet that blind date). The app combines aspects of 3 libraries – TIBCO GI 3.5 for the interface, plus Dojo (for offline) and Google Maps.
To get started you first pick a locale, then a category, then do a search. You can also add multiple regions and categories too.
Here is a quick demonstration of the app in action:
Related Content:
Tibco boosts Ajax Tibco Software Inc. is giving a boost to Ajax in the enterprise with the new release Version 3.5 of its open-source Ajax toolkit, General Interface...
Adding Ajax to Apache Struts2 This article shows how to create a new Ajax front end to an existing Apache Struts2 .jsp application using TIBCO General Interface (GI), an open...
Ajax CRUD with Struts2 and Tibco GI In this article you will learn how to create a new Ajax RIA front end to an existing Apache Struts2 .jsp application using TIBCO General Interface...
Tibco offering open-source Ajax interface tool Tibco's General Interface 3.2 lets developers create and deploy an Ajax-based UI for Web applications. It includes a component library and offers a...
Okay, I’m not really one to bash stuff (at least publicly) but this app runs horribly slow, to the point of being unusable, on every browser I tried. I figured Safari or Opera might do better than FF but it was still frustrating. As an avid Craigslist user, I was excited to check this out. The UI design and idea are great but it suffers from performance issues at this point…
for me it’s quite snappy for the amount of parsing thats being done. FF on winxp here.
maybe there was still a bug in there when you tried it.
Comment by mhr — October 4, 2007
Very nice – runs very snappily for me on FF2 on Win XP and Ubuntu. There seems to be some problems with viewing the images for houses, but besides that I’m very impressed.
GI is not a markup-replacement framework that tries to modify portions of an existing Web page. It does use HTML and JavaScript like other Ajax toolkits, but the approach is different. It’s like the difference between JSP and Swing. They’re both Java, but while the former is more appropriate to Web pages, the latter is more appropriate to applications. As such, GI “installs” itself the first time you go to the given Web site by downloading the JavaScript libraries to your temporary internet files directory. Depending upon your connection (and because I use a cheap Web host), the first time you visit the site it will take between 9 and 20 seconds to “install”. Thereafter (e.g., the next time you visit the site), it will typically load in around 2 seconds. That’s simply how GI works. It makes sense for designing applications, but makes less sense for doing a bit of markup replacement on an HTML-centric site (I think jQuery does a good job at that). Will’s experience is pretty common (complaining and then backing down). The same thing happened last time we posted an application on Ajaxian (http://tibco.xignite.com). As far as Safari support is concerned, the WebKit nightly builds are coming along well. They’ve cleaned up most of the issues that GI needs to run well. Supported browsers include: IE, Firefox, and Safari.
Performance is definitely something to look at, although this is an interesting mix of technologies – it’s clear the browser is doing a lot of grinding.
It took about 6 weeks. That includes design, planning, and figuring out how craigslit works and how to integrate dojo, google, and skype. I use IntelliJ for my JavaScript editor and GI Builder to create the components and the UI. It’s really easy to drag/drop assemble the UI in General Interface, so most of my time is spent doing the app-specific logic.
Of course I work on GI itself (the core product), so feel free to double my time estimate if this is your first GI project. If you want a more accurate sense of what’s involved, the entire code base is kept in the googlecode respository. For example, here is the main controller for the application.
Comment by Luke — October 5, 2007
Just a quick note; this uses Dojo 0.4 plus the Flash Dojo Storage Provider. It’s not using Dojo 0.9 with the new Dojo Offline+Google Gears combo.
This looks like an interesting application, but think of the reason people even use Craigslist. The majority of Craigslist users aren’t very tech-savy, which is why they love the easy to use Craigslist. I doubt this will become very popular.
Caching and dynamic views My client does not want to change his cache settings on IE and I'm trying to figure out a way to dynamically update a view each time it is visited. I...
IE 8 Crashing Problem Hello Everyone,
Here\'s the situation:
two iSeries boxes - Dev and Prod both V5R4M0
We\'re using AJAX to dynamically load content using a tabbed...
Okay, I’m not really one to bash stuff (at least publicly) but this app runs horribly slow, to the point of being unusable, on every browser I tried. I figured Safari or Opera might do better than FF but it was still frustrating. As an avid Craigslist user, I was excited to check this out. The UI design and idea are great but it suffers from performance issues at this point…
for me it’s quite snappy for the amount of parsing thats being done. FF on winxp here.
maybe there was still a bug in there when you tried it.
Very nice – runs very snappily for me on FF2 on Win XP and Ubuntu. There seems to be some problems with viewing the images for houses, but besides that I’m very impressed.
Maybe that assessment was a bit harsh… It is usable in Safari and still much faster than using the actual Craigslist site I suppose. Nice job.
GI is not a markup-replacement framework that tries to modify portions of an existing Web page. It does use HTML and JavaScript like other Ajax toolkits, but the approach is different. It’s like the difference between JSP and Swing. They’re both Java, but while the former is more appropriate to Web pages, the latter is more appropriate to applications. As such, GI “installs” itself the first time you go to the given Web site by downloading the JavaScript libraries to your temporary internet files directory. Depending upon your connection (and because I use a cheap Web host), the first time you visit the site it will take between 9 and 20 seconds to “install”. Thereafter (e.g., the next time you visit the site), it will typically load in around 2 seconds. That’s simply how GI works. It makes sense for designing applications, but makes less sense for doing a bit of markup replacement on an HTML-centric site (I think jQuery does a good job at that). Will’s experience is pretty common (complaining and then backing down). The same thing happened last time we posted an application on Ajaxian (http://tibco.xignite.com). As far as Safari support is concerned, the WebKit nightly builds are coming along well. They’ve cleaned up most of the issues that GI needs to run well. Supported browsers include: IE, Firefox, and Safari.
Nice, but proxying the Craig’s List content may in fact violate article 12 of the CL terms of use. (http://www.craigslist.org/about/terms.of.use.html)
Performance is definitely something to look at, although this is an interesting mix of technologies – it’s clear the browser is doing a lot of grinding.
Date sorting seems broken.. It isn’t sorting the months in their actual order. When sorting descending, September comes before October.
Otherwise this is sort of neat. I’d prefer the ability to view each category by itself, but whatever.
How long did it take to build this? Just curious about the productivity using Tibco GI.
It took about 6 weeks. That includes design, planning, and figuring out how craigslit works and how to integrate dojo, google, and skype. I use IntelliJ for my JavaScript editor and GI Builder to create the components and the UI. It’s really easy to drag/drop assemble the UI in General Interface, so most of my time is spent doing the app-specific logic.
Of course I work on GI itself (the core product), so feel free to double my time estimate if this is your first GI project. If you want a more accurate sense of what’s involved, the entire code base is kept in the googlecode respository. For example, here is the main controller for the application.
Just a quick note; this uses Dojo 0.4 plus the Flash Dojo Storage Provider. It’s not using Dojo 0.9 with the new Dojo Offline+Google Gears combo.
Great work Luke!
Best,
Brad
This looks like an interesting application, but think of the reason people even use Craigslist. The majority of Craigslist users aren’t very tech-savy, which is why they love the easy to use Craigslist. I doubt this will become very popular.