Search Results

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 "abcde …
3
votes
2answers
228 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 left out. …
31
votes
10answers
938 views

What is the best way to compute trending topics or tags?

Many sites offer some statistics like "The hottest topics in the last 24h". For example, Topix.com shows this in its section "News Trends". There, you can see the topics which have the fastest grow …
5
votes
3answers
524 views

Best clustering algorithm? (simply explained)

Hello! Imagine the following problem: You have a database containing about 20,000 texts in a table called "articles" You want to connect the related ones using a clus …
3
votes
3answers
178 views

Adjust algorithm for generating random strength values

A few days ago, you helped me to find out an algorithm for generating random strength …
0
votes
1answer
79 views

Time frames for Standard score

For finding trending topics, I use the Standard score in combination with a moving average: z-score = ([current trend] - [average historic trends]) / [standard deviation of historic …