Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
5answers
3k views

Python thread pool similar to the multiprocessing Pool?

Is there a Pool class for worker threads, similar to the multiprocessing module's Pool class? I like for example the easy way to parallelize a map function def long_running_func(p): ...
15
votes
24answers
1k views

Important UI Features That Are Often Left Out

I really want to know if I'm missing anything obvious in the software I'm developing. What User Interface features that you consider important are often missing in most software?
13
votes
5answers
21k views

Function overloading in Python: Missing [closed]

As this says: http://mail.python.org/pipermail/python-list/2003-May/206149.html Function overloading is absent in Python. As far as I feel this a big handicap since its also an OO language. ...
4
votes
1answer
159 views

Resolving replication conflicts entirely within CouchDB

Is it possible to resolve conflicts caused by database replication entirely within CouchDB? I know it has its own internal algorithm for deciding which revision to use, but can an application ...
3
votes
5answers
227 views

Missing features in jQuery

jQuery is a very popular JavaScript framework nowadays. You can tell that based on number of jQuery tags on this site for example. I haven't used any other JS frameworks and I would like to get your ...
2
votes
5answers
87 views

Which features do html form elements miss

I just wondered and wanted to gather together in one place all missing features of our beloved html form elements. One example could be missing of horizontal scrollbar in a listbox. But I am sure ...
2
votes
3answers
678 views

How to handle a missing feature of SQLite : disable triggers?

How to handle a missing feature of SQLite: disable triggers? I don't have it stored the name of triggers for a specific table. For example how can I drop all triggers? What would you do?
1
vote
1answer
307 views

Where is “navigate to” in Visual Studio 2010 Express C#

Is "Navigate to" one of the "missing" features from Visual Studio Express 2010?
0
votes
2answers
293 views

Missing datetime.time.__sub__?

Why can't subtract two time objects? For example, 12:00 - 11:00 = 1:00 from datetime import time time(12,00) - time(11,00) # -> timedelta(hours=1) It seems that datetime.time.__sub__ is missing ...
0
votes
1answer
102 views

How to generically/dynamically create/drop users

(Related to, but separate from http://stackoverflow.com/questions/1502885/syntax-error-with-emulating-create-user-if-not-exists.) Is it possible to achieve the functionality of ...