Archive for the ‘auction’ Category

Making eBay more like Amazon

May 3, 2007

Amazon has certainly nailed the usability features for repeat users, such as ‘Your Recently Viewed Items’, but sadly eBay doesn’t provide this simple feature yet, without actively creating Watchlists after signing in.

However, buyers searching eBay via Auction Alfie are provided with their recent searches to make it even quicker to view previously viewed items.

auction_alfie_recently_viewed2.gif

Try it out

The technical bit – how does it work?

Auction Alfie uses a technology called JINC which was originally coined by prominent Perl Euro-hacker, Leon Brocard (acme). 

JINC stands for ‘JSON in cookies’, but I can’t stop myself from saying ‘JINCs’ so I’ll be referring to it as that from now on (it’s much more catchy anyway – sorry Leon!).

JINCs is a lightweight, client-side method for creating dynamic content with Javascript after storing data in a cookie as JSON (JavaScript Object Notation). It is a particularly elegant way of dealing with information in cookies as you can eval() the JSON string with one line to retrieve your original data structure.

With the current push for a cleaner and more extensible javascript coding style by people like the Yahoo! Developer Network, JINCs integrates extremely well with this clean way of coding.

The nitty-gritty:

First install the small JSON Javascript library code and some cookie handling code.

Then, once you have created your object you can parse it as a JSON string and store this string in the cookie:

var MYGLOBALOBJECT = new Object();
MYGLOBALOBJECT.TestArray = new Array("hello", "world");
MYGLOBALOBJECT.Cookie = MYGLOBALOBJECT.toJSONString();
Set_Cookie("mytestcookie",MYGLOBALOBJECT.Cookie ,expires,'/');

Then to retrieve it:

MYGLOBALOBJECT.Cookie = Get_Cookie("mytestcookie");
if(MYGLOBALOBJECT.Cookie != null){
 MYGLOBALOBJECT.TestArray = eval('('+MYGLOBALOBJECT.Cookie+')');
}

You now have your original data structure to play with. Enjoy.

add to del.icio.us Add to Delicious 

.

Tab-based auction search tool

April 19, 2007

Tabbing between websites is a quick and tidy way of managing different web pages in one place. Auction Alfie has extended this concept to allow tabbed-browsing of auction and classified listing sites.

Tabbed search results

By filling out one search form bargain-hunters can flick between similar products on all the best auction sites, like ebay, ebid, Yahoo! Auctions and Tazbar, as well as classified listings on Loot, Gumtree and Google Base.

Tabbed search is gathering pace, with sites like Twerq and Auction Alfie offering options for searchers to manage their search results in interesting ways.

add to del.icio.us Add to Delicious     Digg itDigg it

Welcome to Auction Alfie

April 17, 2007

Auction Alfie helps search across multiple auction and classified websites.

Just fill out one form, then flick quickly between the best auction websites (like ebay, eBid, Yahoo! Auctions) and classifieds listings websites (like Loot, Gumtree, Google Base).

If you’re looking to buy used or secondhand stuff, Auction Alfie should definitely be your first point of call so you know you’re getting the best price.

Give Alfie something to search


Follow

Get every new post delivered to your Inbox.