Questions tagged [popularity]

Use this tag for questions relevant with objects/entities/etc. that support the popularity concept.

Objects/entities/etc. can be sorted by popularity. For example, websites; Stackoverflow is more popular than the Meta.

85 questions
0
votes
1 answer

Directed Graph with sentences as node usnig Python

I want to implement a popularity feature for ranking multiple sentence in my project. I want to know how to implement a directed graph, with each node representing a sentence and an edge exists between them if the cosine similarity between the…
Insta
  • 3
  • 5
0
votes
3 answers

Finding popular keywords in huge list

I have a huge list with about 100 000 lines like this: ipadnews abcipad cddeeffipad hellworld iworldthis .. and so on And would like to find popular substrings, in this case "ipad" would be the most popular and "world" would be on second place.…
Jonas Lejon
  • 3,189
  • 3
  • 28
  • 26
0
votes
2 answers

How to update content popularity scoring such as Hacker News algorithm?

I'm using a customized version of Hacker News popularity algorithm for my social site (items with a number of likes and comments). The algorithm works perfectly but I don't know how to update item scorings correctly (I'm storing the score in item…
jorilallo
  • 788
  • 1
  • 8
  • 23
0
votes
2 answers

Udacity Popular movie Stage 1 Issue

My app is supposed to fetch popular movies photos from TheMovieDB API into a GridView. I have built all the app components and what's left is how to load the photos into the adapter array when it lands on the phone, How?! Below is my fragment…
Khaled Almanea
  • 168
  • 1
  • 12
0
votes
1 answer

rel=publisher for Google Plus and rel=me togheter?

i don't know if is a mistake to put in the head, the link publisher but also rel="me"? or i should to add it (rel="me") for example in my social button in the link for google plus ? And is a…
Borja
  • 3,359
  • 7
  • 33
  • 66
0
votes
1 answer

What is the name of this search term popularity component?

If you look at SharpCrafters, the front page has a cool component that shows how popular certain search terms are, with larger text for more popular terms. I've seen this around the web in different places, especially blogs. What is this called in…
Carlos
  • 5,991
  • 6
  • 43
  • 82
0
votes
1 answer

URL rank checker API for google popularity

I am trying to find the rank of a given url/domain for google search popularity from an API.I have found one such project in GitHub that gives the same but i am not sure about the reliability and accuracy of the results it is returning…
user3775217
  • 4,675
  • 1
  • 22
  • 33
0
votes
1 answer

Autocomplete in solr with popularity

I am now using solr autocomplete and search functions, I want to use the popularity of searched terms in ranking the autocomplete suggestions. For example, if 'usb' was searched 10 times last week, and 'user' was searched 100 time last week, when…
0
votes
0 answers

How do I sort links based on their popularity?

This might look a little noobish, but after a lot of research, I am asking this. I'd like to make a page, which will have links to different pages inside. Like this http://tympanus.net/Tutorials/CaptionHoverEffects/ I basically want them to arrange…
0
votes
3 answers

If WCF is the future why do searches for "web services" still point to ASMX?

I am needing to create a web service, so the first thing I did of course was go to google If you look in those results, you'll see nothing but things about ASMX, which apparently is dubbed legacy technology to be replaced by WCF. Why is it that ASMX…
Earlz
  • 62,085
  • 98
  • 303
  • 499
0
votes
1 answer

How to calculate and sort by popularity?

I'm working on adding a most popular to my display options. I'm not sure if this equation is the one I want to use but I figure the math is the irreverent part of my question, but free for suggested improvements. My issue is with "@cards.pop = (@W +…
Ian
  • 65
  • 6
0
votes
1 answer

API to Rank blog articles

I would like to know if there is any easy way to rank blog articles by counting how many times they have been retweeted / digg'ed / buzz'ed and if there is an existing api for it. The idea would be to keep important 'stories' at the top of the blog…
Roch
  • 21,741
  • 29
  • 77
  • 120
0
votes
3 answers

How to Find ALL Most Common Values in SQL?

How would I go about showing ALL most common values in SQL? So I have the query to show the most common value here bellow. SELECT name, COUNT(*) AS popularity FROM cattwo GROUP BY name ORDER BY popularity DESC LIMIT 1; …
optional
  • 23
  • 4
0
votes
3 answers

Solr click scoring implementation

after searching and searching over the net, i've found a possible open-source solution for the click-count-popularity in solr (=does not require a payd version of lucid work search). In my next two answers i will try to solve the problem in a easy…
0
votes
2 answers

Rank by Views with MySQL

I love MySQL and I have been using it during the last 2 years. But now I'm stuck... I have three tables Files --------- id | name | views | folder_id 1 | car | 274 | 1 2 | bike | 100 | 1 3 | train | 120 | 2 Folders --------- id…
Alex
  • 317
  • 2
  • 16