The fascination with url shorteners is really worrying and useless. Can we get past this fad?
http://to/ World's Shortest URL Shortener
31–40 of 150 posts
Re: http://to/ World's Shortest URL Shortener
#32Somehow uses IDN TLD to eschew the TLD altogether. Let the landgrab begin!
No, it is the TLD (for Tonga). Somehow they hawked out their TLD A-record. (edit: turns out it's actually run by the ISP who operates the .to TLD)
Re: http://to/ World's Shortest URL Shortener
#33Re: http://to/ World's Shortest URL Shortener
#34Earlier quoted context omitted.
No, it is the TLD (for Tonga). Somehow they hawked out their TLD A-record. (edit: turns out it's actually run by the ISP who operates the .to TLD)
yeah, got root level on the tld .. how did they manage that..
Re: http://to/ World's Shortest URL Shortener
#35I wrote a program to find the shortest URL. Enjoy! #!/usr/bin/perl # use WWW::Mechanize; die "usage: $0 " unless @ARGV; $name = 'a'; $m = WWW::Mechanize->new; while (1) { print "Trying http://to./$name\n"; $m->post('http://to./', { url => $ARGV[0], name => $name, 'Witz that URL!' => 'Witz that URL!' }); unless ($m->content =~ /sorry/) { print "You got http://to./$name\n"; exit(0); } $name++; }
Re: http://to/ World's Shortest URL Shortener
#36Re: http://to/ World's Shortest URL Shortener
#37Just what the world needs, YAUS
Re: http://to/ World's Shortest URL Shortener
#38Can someone give me a quick introduction on how this was done?
1- Periods (.) don't do anything after a domain (ie www.weebly.com.), but they are useful for preventing the browsers from redirecting to http://www.to.com/ 2- The real domain we're looking at: "to" -- no "suffix" attached (TLD: top-level domain ) 3- The .to registry added an A-record for the "to" domain, which resolves correctly. [Edit: Looks like .cm does this too: ;; ANSWER SECTION: cm. 86400 IN A 195.24.205.60]
Re: http://to/ World's Shortest URL Shortener
#39The fascination with url shorteners is really worrying and useless. Can we get past this fad?
Re: http://to/ World's Shortest URL Shortener
#40Chrome doesn't really like the URLs, and Twitter doesn't see them either. Awesome, though.
Funny, it's working under my current configuration with Firefox but not with Opera and Chrome translates it in a Google search. Not the world's best URL shortener...