Skip to content

Comment on Ask HN: Review a simple URL un-shortening service.parent

Comments

> for [anyone] without the skills to unshorten it themselves

I think I'm one, because I don't know of any way to unshorten these tiny URLs without visiting them or using some such service.

If you know of one, could you enlighten me? Thanks...

It's really not hard. For example, on the command line:

     $ curl -I http://tinyurl.com/9a4xj6
     HTTP/1.1 301 Moved Permanently
     X-Powered-By: PHP/5.2.8
     Location: http://www.hostingcoupons.org/godaddy-coupons/
     Content-type: text/html
     Date: Fri, 24 Apr 2009 21:26:48 GMT
     Server: TinyURL/1.6
or in Python:
     >>> import urllib
     >>> u=urllib.urlopen("http://tinyurl.com/9a4xj6")
     >>> u.url
     'http://www.hostingcoupons.org/godaddy-coupons/'
     >>> 
etc...
AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.