http://to/ World's Shortest URL Shortener
21–30 of 150 posts
Re: http://to/ World's Shortest URL Shortener
#22Earlier quoted context omitted.
Depends on your DNS. Works for some without.
The dns works. But the browser doesn't. Without the trailing dot the browser looks up the .com address. With the dot it works, but then the browser fixes up the url, and removes the dot - so all subsequent requests don't work. (This is for me, using firefox on linux.)
Re: http://to/ World's Shortest URL Shortener
#23 #!/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
#24Re: http://to/ World's Shortest URL Shortener
#25Chrome 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...
Re: http://to/ World's Shortest URL Shortener
#26Re: http://to/ World's Shortest URL Shortener
#27Re: http://to/ World's Shortest URL Shortener
#28Re: http://to/ World's Shortest URL Shortener
#29Earlier quoted context omitted.
The dns works. But the browser doesn't. Without the trailing dot the browser looks up the .com address. With the dot it works, but then the browser fixes up the url, and removes the dot - so all subsequent requests don't work. (This is for me, using firefox on linux.)
seems safari users are struggling without the . as well .. probably a webkit issue then edited for spelling mistake