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
214
votes
11 answers

Why is SCTP not much used/known

I recently checked out the book "UNIX Network Programming, Vol. 1" by Richards Stevens and I found that there is a third transport layer standard besides TCP and UDP: SCTP. Summary: SCTP is a transport-level protocol that is message-driven like…
dmeister
  • 34,704
  • 19
  • 73
  • 95
38
votes
2 answers

Are there any popularity / usage statistics available for the Free RCS/SCM/VCS systems?

Are there any surveys anywhere which report on number of projects and/or people using the assorted Free version control systems? Also interesting is if a similar survey was one over time, to see how things have changed. Obviously, it's hard to…
Peter Boughton
  • 110,170
  • 32
  • 120
  • 176
26
votes
1 answer

Why isn't BLToolkit more popular?

While searching around the net for light, fast ORMs targeting .NET, I came across BLToolKit, which seems absolutely amazing in terms of performance, openness, maintainability, and flexibility. However, I've also noticed that it has received very…
Carl Sagan
  • 982
  • 1
  • 13
  • 34
22
votes
5 answers

Simple Popularity Algorithm

Summary As Ted Jaspers wisely pointed out, the methodology I described in the original proposal back in 2012 is actually a special case of an exponential moving average. The beauty of this approach is that it can be calculated recursively, meaning…
David Jones
  • 10,117
  • 28
  • 91
  • 139
17
votes
4 answers

Deciding and implementing a trending algorithm in Django

I have a Django application in which I need to implement a simple trending/ranking algorithm. I'm very lost as a : I have two models, Book and Reader. Every night, new books are added to my database. The number of readers for each book are updated…
Mridang Agarwalla
  • 43,201
  • 71
  • 221
  • 382
14
votes
23 answers

Before XML became a standard and given all its shortcomings, what made XML so popular?

Yes XML is human readable but so is comma delimited text and properties files. XML is bloated, hard to parse, hard to modify in code, plus a ton of other problems that I can think about with it. My questions is what are XML's most attractive…
Autobyte
  • 1,231
  • 4
  • 19
  • 28
12
votes
5 answers

Popularity Algorithm

I'm making a digg-like website that is going to have a homepage with different categories. I want to display the most popular submissions. Our rating system is simply "likes", like "I like this" and whatnot. We basically want to display the…
Dixon Crews
9
votes
2 answers

Sorting A List Of Songs By Popularity

For student council this year, I'm on the "songs" committee, we pick the songs. Unfortunately, the kids at the dances always end up hating some of the stupid song choices. I thought I could make it different this year. Last thursday, I created a…
Matt Egan
  • 809
  • 1
  • 10
  • 16
9
votes
4 answers

PHP MySQL Query most popular in last 24 hours

Say I want to get ten records with the MOST likes in the last 24 hours. Here's what I have so far: $date = date("o-m-d"); $query = "SELECT date_created,COUNT(to),from,to FROM likes WHERE date_created LIKE '$date%' GROUP BY to ORDER BY COUNT(to) DESC…
Dylan Taylor
  • 351
  • 2
  • 5
  • 12
7
votes
14 answers

What are the popular, contemporary uses for Perl?

What are the popular, contemporary uses for Perl? Edit I should have been more specific. I was wondering more on the large scale (popular) what people are using Perl for rather than what it could be used for on the individual level.
T. Stone
  • 19,209
  • 15
  • 69
  • 97
7
votes
2 answers

How to find stats for general trends of programming language popularity using google trends

I like to keep an eye on trending browsers/OSs/languages etc... I find google trends is a very useful resource sometimes but other times I can not get the information I want. Example of very clear increase of Ubuntu (with 6 monthly peaks near…
Billy Moon
  • 57,113
  • 24
  • 136
  • 237
7
votes
4 answers

Is assembly the only low level programming language, and if not is it the most widely used?

I've started learning assembly recently and as I've looked across the internet I see more and more people saying that assembly is not useless, but it's also not worth the time to program things in a language that requires such time and effort…
kjh
  • 3,407
  • 8
  • 42
  • 79
6
votes
4 answers

Implementing a visitor counter

I am a newbie and developing a website using ASP .Net 2.0 with C# 2005. I would like to add a facility to count the no. of visitors to my website. I have collected the basic informations to add this feature using Global.asax. I have made…
LalitBarik
  • 183
  • 1
  • 9
  • 16
6
votes
5 answers

Why LDAP is not popular?

We start to use LDAP and I wonder why LDAP is not that popular? I read that it has faster reads than database, however slower writes. EDIT: Its the first time i use LDAP and i have been programming in enterprise for sometime now. That is the reason…
IAdapter
  • 62,595
  • 73
  • 179
  • 242
6
votes
6 answers

Why is MySQL used so often in web development?

I have often wondered why MySQL has become so popular. Any ideas why? Are there specific reasons behind its success? (Please keep answers analytical)
Michael Younkin
  • 788
  • 6
  • 11
1
2 3 4 5 6