0
votes
1answer
13 views
X-Sendfile and VERY big files on Apache2
Any filesize over about 4GB is not going to work with the mod_xsendfile for Apache2 (as it sets the content length to a long).
I am willing to rewrite it to support this; however, …
3
votes
1answer
64 views
How does ironpython speed compare to other .net languages?
Hi,
I would like to give sources for what I'm saying but I just dont have them, it's something I heard.
Once a programming professor told me that some software benchmarking done …
6
votes
4answers
62 views
What is the use of Python’s basic optimizations mode? (`python -O`)
Python has a flag -O that you can execute the interpreter with. The option will generate "optimized" bytecode (written to .pyo files), and given twice, it will discard docstrings. …
2
votes
3answers
53 views
What cool hacks can be done using sys.settrace?
I love being able to modify the arguments the get sent to a function, using settrace, like :
import sys
def trace_func(frame,event,arg):
value = frame.f_locals["a"]
if va …
0
votes
4answers
27 views
Django: Ordering objects by their children’s attributes
Consider the models:
class Author(models.Model):
name = models.CharField(max_length=200, unique=True)
class Book(models.Model):
pub_date = models.DateTimeField()
author = mode …
1
vote
4answers
77 views
Python : List of dict, if exists increment a dict value, if not append a new dict
I would like do something like that.
list_of_urls = ['http://www.google.fr/', 'http://www.google.fr/',
'http://www.google.cn/', 'http://www.google.com/',
…
3
votes
6answers
151 views
What is a scripting engine?
I've seen here that what sets a programming language apart from a scripting language is the scripting engine. But I don't understand how it works, so I don't know the difference.
…
9
votes
9answers
223 views
Is there a more succinct / pythonic way to do this? (counting longest seq of heads, tails in coin flips)
Count the longest sequence of heads and tails in 200 coin flips.
I did this - is there a niftier way to do it in python? (without being too obfuscated)
import random
def toss(n) …
3
votes
1answer
25 views
Open web page with custom cookies in Python
Hi everyone.
For example, I have cookies
my_cookies = {'name': 'Albert', 'uid': '654897897564'}
and I want to open page http://website.com
opener = urllib2.build_opener(urllib …
3
votes
5answers
90 views
Performance difference in alternative switches in Python.
I have read a few articles around alternatives to the switch statement in Python. Mainly using dicts instead of lots of if's and elif's. However none really answer the question: is …
5
votes
14answers
347 views
How can there be only one way to do it (Perl vs Python) [closed]
I am quite used to Perl and I love Perl. And I have almost no exposure to Python.
I have just read another thread that sort of compares Perl with Python and one recurring theme se …
2
votes
3answers
144 views
Does Google allow other people to use their “Did you mean” API?
I have been searching all over the Internet, but did not find that exact API.
I'd like to use their Did You mean feature for my own website.
0
votes
8answers
125 views
How do you generate random unique identifiers in a multi process and multi thread environment?
Every solution I come up with is not thread save.
@classmethod
def uuid(cls,db):
u = hexlify(os.urandom(8)).decode('ascii')
db.execute('SELECT sid FROM sessions WHERE sid= …
0
votes
9answers
107 views
python or bash - adding “ at beginning of line and “, at end of line
I have text file with something like
first line
line nr 2
line three
etc
And i want to generate
"first line",
"line nr 2",
"line three",
I wonder how to do this in python or …
2
votes
4answers
165 views
Is TCP Guaranteed to arrive in order?
If I send two TCP messages, do I need to handle the case where the latter arrives before the former? Or is it guaranteed to arrive in the order I send it? I assume that this is not …
