Tagged Questions

13
votes
10answers
2k 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" …
0
votes
5answers
375 views

smart way to shorten long strings with javascript

Does anyone have a more sophisticated solution/library for shortening strings with JavaScript, than the obvious one: if(string.length > 25) { string = string.substring(0,24 …
0
votes
1answer
52 views

Obtaining a referring short URL using a widget.

Hi, I'd like to create a client-side javascript widget on a blog that obtains the shortened URL from which a visitor used to come to the blog. While the widget can get the Referrer …
1
vote
5answers
230 views

Using wildcard for classpath?

G'day everybody, I have been using so many 3rd party libraries(jar files) that my CLASSPATH is completely messed up as i have to include the path for every single …
8
votes
9answers
1k 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, …
3
votes
2answers
225 views

Shorten a text and only keep important sentences

Hello! The German website nandoo.net offers the possibility to shorten a news article. If you change the percentage value with a slider, the text changes and some sentences are le …
1
vote
1answer
746 views

Shorten Zend Framework Route Definitions

Hi! How can I shorten the definition of my custom routes in Zend Framework? I currently have this as definition: $route = new Zend_Controller_Router_Route( ":module/:id", array( …
1
vote
3answers
380 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 alphab …
0
votes
5answers
220 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 in …