User dsvensson - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T07:28:30Zhttp://stackoverflow.com/feeds/user/5962http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/665061/python-defaultdict-became-unmarshallable-object-in-2-6/944344#9443442Answer by dsvensson for Python: defaultdict became unmarshallable object in 2.6?dsvensson2009-06-03T12:01:32Z2009-06-03T12:01:32Z<p>wrt performance issues.. encoding a list of ~600000 dicts, each with 4 key/values, one of the values has a list (around 1-3 length) of 2 key/val dicts:</p>
<pre><code>In [27]: timeit(cjson.encode, data)
4.93589496613
In [28]: timeit(cPickle.dumps, data, -1)
141.412974119
In [30]: timeit(marshal.dumps, data, marshal.version)
1.13546991348
</code></pre>
http://stackoverflow.com/questions/881639/python-imports-importing-a-module-without-py-extension/881658#8816582Answer by dsvensson for Python imports: importing a module without .py extension?dsvensson2009-05-19T08:55:32Z2009-05-19T08:55:32Z<p>The <a href="http://docs.python.org/library/imp.html" rel="nofollow">imp module</a> is used for this: </p>
<pre><code>daniel@purplehaze:/tmp/test$ cat mymodule
print "woho!"
daniel@purplehaze:/tmp/test$ cat test.py
import imp
imp.load_source("apanapansson", "mymodule")
daniel@purplehaze:/tmp/test$ python test.py
woho!
daniel@purplehaze:/tmp/test$
</code></pre>
http://stackoverflow.com/questions/117006/prevent-people-from-pushing-a-git-commit-with-a-different-author-name/642182#6421823Answer by dsvensson for Prevent people from pushing a git commit with a different author name?dsvensson2009-03-13T11:03:45Z2009-03-13T11:10:16Z<p>We use the following to prevent accidental unknown-author commits (for example when doing a fast commit from a customer's server or something). It should be placed in .git/hooks/pre-receive and made executable.</p>
<pre><code>#!/usr/bin/env python
# -*- coding: utf-8 -*-
import subprocess
from itertools import islice, izip
import sys
old, new, branch = sys.stdin.read().split()
authors = {
"John Doe": "john.doe@example.com"
}
proc = subprocess.Popen(["git", "rev-list", "--pretty=format:%an%n%ae%n", "%s..%s" % (old, new)], stdout=subprocess.PIPE)
data = [line.strip() for line in proc.stdout.readlines() if line.strip()]
def print_error(commit, author, email, message):
print "*" * 80
print "ERROR: Unknown Author!"
print "-" * 80
proc = subprocess.Popen(["git", "rev-list", "--max-count=1", "--pretty=short", commit], stdout=subprocess.PIPE)
print proc.stdout.read().strip()
print "*" * 80
raise SystemExit(1)
for commit, author, email in izip(islice(data, 0, None, 3), islice(data, 1, None, 3), islice(data, 2, None, 3)):
_, commit_hash = commit.split()
if not author in authors:
print_error(commit_hash, author, email, "Unknown Author")
elif authors[author] != email:
print_error(commit_hash, author, email, "Unknown Email")
</code></pre>
http://stackoverflow.com/questions/245624/detecting-cpu-architecture-32bit-64bit-in-scons/418719#4187192Answer by dsvensson for Detecting CPU architecture (32bit / 64bit ) in scons?dsvensson2009-01-07T00:08:48Z2009-01-07T00:08:48Z<p>Something like this?</p>
<pre><code>env = Environment()
conf = Configure(env)
if conf.CheckDeclaration("__i386__"):
conf.Define("MY_ARCH", "blahblablah")
env = conf.Finish()
</code></pre>
http://stackoverflow.com/questions/416577/maintaining-the-programming-family-balance/416620#4166206Answer by dsvensson for Maintaining the Programming/Family balancedsvensson2009-01-06T13:59:01Z2009-01-06T13:59:01Z<p>Go to bed with girlfriend, and when she falls asleep it's hacktime!</p>
http://stackoverflow.com/questions/280656/where-does-and-come-from16Where does '.' and '..' come from?dsvensson2008-11-11T11:31:53Z2008-11-11T12:41:46Z
<p>What's the story behind our massive repitition of './foo' and 'cd ..'. Where do these two '.' and '..' come from? Where could they be seen as a way of navigating a file system tree for the first time?</p>
<p>I seem to have formulated this question a bit vague. Answers to earliest reference have been found, however, the question remains to why it is '.' and '..' instead of something else. If this is by coincidence, or something like the "point-to-point" answer, I don't know, but if anyone knows it would be way cool trivia.</p>
http://stackoverflow.com/questions/164137/how-do-i-deploy-a-python-desktop-application/166332#1663320Answer by dsvensson for How do I deploy a Python desktop application?dsvensson2008-10-03T10:57:05Z2008-10-03T10:57:05Z<p>Maybe IronPython can provide something for you? I bet those .exe/.dll-files can be pretty locked down. Not sure how such features work on mono, thus no idea how this works on Linux/OS X...</p>
http://stackoverflow.com/questions/57019/where-should-cross-platform-apps-keep-their-data/57416#574162Answer by dsvensson for Where should cross-platform apps keep their data?dsvensson2008-09-11T19:35:16Z2008-09-11T19:35:16Z<p>For Linux/BSD/Solaris:
<a href="http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html" rel="nofollow">http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html</a></p>
http://stackoverflow.com/questions/416577/maintaining-the-programming-family-balance/416620#416620Comment by dsvensson on Maintaining the Programming/Family balancedsvensson2009-01-06T19:06:57Z2009-01-06T19:06:57Zno, not really... a kiss on her cheek and it's hacktime again ;)
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164446#164446Comment by dsvensson on What real life bad habits has programming given you?dsvensson2009-01-06T14:08:23Z2009-01-06T14:08:23ZThis is actually an AS-trait, and it's not the least uncommon that programmers share a heap of similar traits of that of an AS person. <a href="http://en.wikipedia.org/wiki/Asperger_syndrome#Speech_and_language" rel="nofollow">en.wikipedia.org/wiki/…</a>