Tagged Questions
69
votes
14answers
14k views
How to code a URL shortener?
I want to create a URL shortener service where you can write a long URL into an input field and the service shortens the URL to "http://www.example.org/abcdef". Instead of "abcdef" there can be any ...
22
votes
11answers
6k views
How to convert an integer to the shortest url-safe string in Python?
I want the shortest possible way of representing an integer in a URL. For example, 11234 can be shortened to '2be2' using hexadecimal. Since base64 uses is a 64 character encoding, it should be ...
2
votes
3answers
2k views
Create Tinyurl style hash
does anyone know of an algorithm that generates hashes that look like tinyurl hashes from a string (url)
I think the requirements would be
case sensitive
short
numbers and alphabets only
anything ...
1
vote
5answers
360 views
url shortening service
I want to write a url shorten service. I trying to think of scenarios that would be dangerous.
one I thought of was if a submitted url is from my own website, it would create an inifinite redirection ...
0
votes
0answers
20 views
Shorten an url with '#' symbol via bit.ly API
So, i have an url - http://somesite.com/#sometext. I need to shorten this url with the bit.ly API. The problem is, i cant properly escape the '#' symbol. I dont get any short url's if trying to short ...