|
Lets see if polls don't hate me tonight.
Hello there LD, I had an interesting night.
The shortened version:
I was out for once tonight, just quietly talking with a couple of my friends at a table, and in the time I was there, I managed to get dragged ...
Started by Just Another Pyramid on
, 13 posts
by 10 people.
Answer Snippets (Read the full thread at gaiaonline):
My Friday so far has consisted of me rocking back and forth under a blanket, screaming and crying ... .
I'd rather watch people dance.
Heart I love when people ask me to dance, but I have the rhythm of a drunk squirrel .
I want a turn dancing with you, too.
|
|
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.
Started by T. Stone on
, 15 posts
by 15 people.
Answer Snippets (Read the full thread at stackoverflow):
Get into best practices, and you've got a system that is quite good at doing very large programming tasks ,0.98,0, 1); redo}### #written....
It works quite well with Ajax, as I've noticed through my own use of it.
Of frameworks for web design.
|
|
What is the state of native SVG support in the most popular browsers in their latest releases?
Internet explorer Firefox Opera Safari Chrome Konqueror Camino
Started by Brian R. Bondy on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
This chart is quite.
Results of testing against W3C SVG Test Suite in various implementations .
Uneven.
|
Ask your Facebook Friends
|
Is the SO tag ordering a good representation of programming language popularity?
My first guess would be that it's not and that it's largely populated by fans of Jeff (who would probably be .Net biased) and fans of Joel (who may be more C/C++ biased among...
Started by Brian R. Bondy on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Certain techonologies are quite stable and hence hence the questions would be less, you would observe : Php is likely to be vastly used (if not neccesarily popular) by web developpers, Game.
On SO.
|
|
What is the most popular resolution in use in your company? Our is 1440 x 900 (15" widescreen).
Is anyone using 1024x768 or less anymore? I'm sure there odd machines here and there but I'd have thought >1024x768 is not popular, am I right?
Finally ...
Started by Scott on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at serverfault):
As we have many different quite small as your lowest common denominator and try make sure your design looks good (or at least enough to be considered popular.
Our "most popular" is the native resolution of the LCD screen itself.
|
|
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 why...
Started by 01 on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
If it wasn't popular you probably wouldn't ....
I think your a little off-base on saying it is not popular.
How do you come to the conclusion that LDAP is not popular? In every larger company I worked among lots of different systems.
|
|
I’ve been looking at Smalltalk (VisualWorks) for the past couple of months - and the more I learn the more I’m impressed. However, I think I must be missing something as Smalltalk doesn’t seem to be popular these days - and perhaps it never was.
What ...
Started by KHWP on
, 23 posts
by 23 people.
Answer Snippets (Read the full thread at stackoverflow):
It is hard to persuade customers to go to less popular....
Needs to be popular? Isn't such small but nice and lively community as we have now a better thing than the big community?
On the other side being more popular is a good selling point.
|
|
I need to find the most popular occurrence of an item grouped by date and display the total of all items along with the name of this item. Is something like this possible in a single query?
note: If they are all of equal occurrence (see last 3 rows in...
Started by kenitech on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
What about using GROUP BY :
select date, item_id, item, count(*) as num from test_popularity group by date, item_id, item order by count(*) desc limit 0, 1
It'll get you :
+ + + + + | date | item_id | item | num | + + + + + | 2009-08-02 00:00:0....
|
|
How does the future look for ReiserFS? Did the trial affect its popularity much?
This is a pretty subjective question, so referring to a published statistic/article would be nice.
Started by username on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at serverfault):
I was big fan of Reiserfs and I also tried some pre-alpha of Reiser4 that was quite fast as well.
|
|
I have two models:
Novel has_many :pages Page belongs_to :novel
I want to list popular Novels according to page count. Essentially, I want Novel models loaded from the outcome of this query:
select p.novel_id, count(*) as count from pages p GROUP BY p...
Started by gmoore on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
On the Novel model then becomes
class Novel < ActiveRecord::Base named_scope :popular, :order => 'page.
|