May 2009
3 posts
3 tags
Old! Resolving shortened URLs
Sometimes you just think of something, start it, and then discover that others have been doing the same. My latest example of this is resolvurl.com.
As I was thinking about shortening URLs and the fact that there quite some services out there, I started wondering about “the other way around”. How to resolve URLs for what they really are.
Without proper investigation (who wants to...
JQuery.ajax() and associative arrays
When in need of passing an associative array using JQuery’s Ajax function, declare the array as:
var $a = new Object();
instead of:
var $a = new Array();
Works lots better ;)