User llimllib - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T17:58:23Zhttp://stackoverflow.com/feeds/user/42559http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1255914/finding-functions-defined-in-a-with-block6Finding Functions Defined in a with: Blockllimllib2009-08-10T16:38:03Z2009-08-10T21:57:32Z
<p>Here's some code from <a href="http://www.mechanicalcat.net/richard/log/Python/Something%5FI%5Fm%5Fworking%5Fon.3" rel="nofollow">Richard Jones' Blog</a>:</p>
<pre><code>with gui.vertical:
text = gui.label('hello!')
items = gui.selection(['one', 'two', 'three'])
with gui.button('click me!'):
def on_click():
text.value = items.value
text.foreground = red
</code></pre>
<p>My question is: how the heck did he do this? How can the context manager access the scope inside the with block? Here's a basic template for trying to figure this out:</p>
<pre><code>from __future__ import with_statement
class button(object):
def __enter__(self):
#do some setup
pass
def __exit__(self, exc_type, exc_value, traceback):
#XXX: how can we find the testing() function?
pass
with button():
def testing():
pass
</code></pre>
http://stackoverflow.com/questions/1180303/static-vs-instance-methods-of-str-in-python/1180424#11804244Answer by llimllib for Static vs instance methods of str in Pythonllimllib2009-07-24T22:07:39Z2009-07-24T22:07:39Z<blockquote>
<p>There should be one-- and preferably only one --obvious way to do it.</p>
</blockquote>
<p>Philosophically speaking, there <em>is</em> only one obvious way to do it: 'a'.center(3). The fact that there is an unobvious way of calling any method (i.e. the well-explained-by-previous-commentors o.method(x) and Type.method(o, x)) which is useful in many contexts is perfectly in line with the zen of python.</p>
<p>Your homework assignment is to read Guido's <a href="http://neopythonic.blogspot.com/2008/10/why-explicit-self-has-to-stay.html" rel="nofollow">Why the Explicit Self Has to Stay</a>.</p>
http://stackoverflow.com/questions/1115000/javascript-stop-additional-event-listeners/1115049#11150491Answer by llimllib for JavaScript, stop additional event listenersllimllib2009-07-12T00:54:33Z2009-07-12T00:54:33Z<p>I'll start with the simplest answer that satisfies the constraints you've given so far. If it doesn't meet some condition you haven't yet specified, let me know and I'll update it.</p>
<p>Only allow one click handler, and call functions based on conditions there. Your test code becomes:</p>
<pre><code>var myFunc1 = function(event) {
alert(1);
}
var myFunc2 = function(event) {
alert(2);
}
var clickHandler = function(event) {
if (f1active) myFunc1(event);
if (f2active) myFunc2(event);
}
element.addEventListener('click', clickHandler);
var f1active = true;
var f2active = true;
</code></pre>
<p>and you can of course put any conditions you want to in clickHandler.</p>
http://stackoverflow.com/questions/1082413/sort-a-list-of-strings-based-on-regular-expression-match-or-something-similar/1082431#10824313Answer by llimllib for Sort a list of strings based on regular expression match or something similarllimllib2009-07-04T15:38:59Z2009-07-04T18:42:21Z<pre><code>In [1]: def grp(pat, txt):
...: r = re.search(pat, txt)
...: return r.group(0) if r else '&'
In [2]: y
Out[2]:
['random text random text, can be anything blabla %A blabla',
'random text random text, can be anything blabla %D blabla',
'random text random text, can be anything blabla blabla %F',
'random text random text, can be anything blabla blabla',
'random text random text, %C can be anything blabla blabla']
In [3]: y.sort(key=lambda l: grp("%\w", l))
In [4]: y
Out[4]:
['random text random text, can be anything blabla %A blabla',
'random text random text, %C can be anything blabla blabla',
'random text random text, can be anything blabla %D blabla',
'random text random text, can be anything blabla blabla %F',
'random text random text, can be anything blabla blabla']
</code></pre>
http://stackoverflow.com/questions/1045344/how-do-you-create-an-incremental-id-in-a-python-class/1045491#10454913Answer by llimllib for How do you create an incremental ID in a Python Classllimllib2009-06-25T18:28:23Z2009-06-25T18:28:23Z<p>Are you aware of the <a href="http://docs.python.org/library/functions.html#id" rel="nofollow">id function</a> in python, and could you use it instead of your counter idea?</p>
<pre><code>class C(): pass
x = C()
y = C()
print id(x), id(y) #(4400352, 16982704)
</code></pre>
http://stackoverflow.com/questions/1015402/chop-unused-decimals-with-javascript/1015430#10154300Answer by llimllib for chop unused decimals with javascriptllimllib2009-06-18T21:58:48Z2009-06-18T21:58:48Z<pre><code>String(4) // "4"
String(4.1) // "4.1"
String(4.10) // "4.1"
String(4.01) // "4.01"
</code></pre>
<p>parseFloat works, but you've got to cast it back to a string.</p>
http://stackoverflow.com/questions/926816/how-to-prevent-multiple-form-submit-from-client-side/926831#9268310Answer by llimllib for how to prevent multiple form submit from client side?llimllib2009-05-29T16:11:14Z2009-05-29T16:19:34Z<p>Hash the current time, make it a hidden input on the form. On the server side, check the hash of each form submission; if you've already received that hash then you've got a repeat submission.</p>
<p>edit: relying on javascript is not a good idea, so you all can keep upvoting those ideas but some users won't have it enabled. The correct answer is to not trust user input on the server side.</p>
http://stackoverflow.com/questions/799479/python-html-output-first-attempt-several-questions-code-included/799586#7995868Answer by llimllib for Python html output (first attempt), several questions (code included)llimllib2009-04-28T20:00:40Z2009-04-29T13:41:13Z<p>It would not be overkill to use a framework for something like this; python frameworks tend to be very light and easy to work with, and would make it much easier for you to add features to your tiny site. But neither is it required; I'll assume you're doing this for learning purposes and talk about how I would change the code.</p>
<p>You're doing templating without a template engine in your WebOutput function; there are all kinds of neat template languages for python, my favorite of which is <a href="http://www.makotemplates.org/" rel="nofollow">mako</a>. If the code in that function ever gets hairier than it is currently, I would break it out into a template; I'll show you what that would look like in a moment. But first, I'd use multiline strings to replace all those f.write's, and string substitution instead of adding strings:</p>
<pre><code>f.write("""<html>
<title>python newb's twitter search</title>
<head><meta http-equiv='refresh' content='60'></head>
<body>
<h1 style='font-size:150%'>Python Newb's Twitter Search</h1>
<h2 style='font-size:125%'>Searching Twitter for: %s</h2>
<h2 style='font-size:125%'>%s (updates every 60 seconds)</h2>""" % (query, time.ctime()))
for datum in reversed(data):
f.write("<p style='font-size:90%'>%s</p>" % (datum))
f.write("</body></html>")
</code></pre>
<p>Also note that I simplified your for loop a bit; I'll explain further if what I put doesn't make sense.</p>
<p>If you were to convert your WebOutput function to Mako, you would first import mako at the top of your file with:</p>
<pre><code>import mako
</code></pre>
<p>Then you would replace the whole body of WebOutput() with:</p>
<pre><code>f = file("outw.html", "w")
data = reversed(data)
t = Template(filename='/path/to/mytmpl.txt').render({"query":query, "time":time.ctime(), "data":data})
f.write(t)
</code></pre>
<p>Finally, you would make a file /path/to/mytmpl.txt that looks like this:</p>
<pre><code><html>
<title>python newb's twitter search</title>
<head><meta http-equiv='refresh' content='60'></head>
<body>
<h1 style='font-size:150%'>Python Newb's Twitter Search</h1>
<h2 style='font-size:125%'>Searching Twitter for: ${query}</h2>
<h2 style='font-size:125%'>${time} (updates every 60 seconds)</h2>
% for datum in data:
<p style'font-size:90%'>${datum}</p>
% endfor
</body>
</html>
</code></pre>
<p>And you can see that the nice thing you've accomplished is separating the output (or "view layer" in web terms) from the code that grabs and formats the data (the "model layer" and "controller layer"). This will make it much easier for you to change the output of your script in the future.</p>
<p>(Note: I didn't test the code I've presented here; apologies if it isn't quite right. It should basically work though)</p>
http://stackoverflow.com/questions/595868/is-it-possible-to-pass-a-type-as-a-variable-in-actionscript2Is it possible to pass a type as a variable in Actionscript?llimllib2009-02-27T17:58:59Z2009-02-27T19:14:12Z
<p>The actionscript I <em>want</em> to write looks like this:</p>
<pre><code>public function API(requestClass:Type=URLLoader) {
var req:URLLoader = new requestClass(new URLRequest("some url"));
req.load(url);
//etc
}
</code></pre>
<p>so that I can test the API class by passing in a mocked subclass of URLLoader. This doesn't appear to be possible in Actionscript's type system.</p>
<p>Alternatively, it could be sufficient to change the URLLoader's load() method at runtime. I had high hopes for this code in a test method:</p>
<pre><code>var b:Array = [];
URLLoader.prototype.load = function(u:URLRequest):void {
b.push(u);
}
(new URLLoader()).load(new URLRequest("http://localhost"));
assertEquals(b.length, 1);
</code></pre>
<p>but URLLoader does in fact call the url it's given, and b.length == 0.</p>
<p>So! Is there any way that I can write my API class to be testable without putting the testing logic within my API class? Have I missed something obvious?</p>
http://stackoverflow.com/questions/537196/python-funny-business-with-threads-and-ides/537480#5374802Answer by llimllib for python, funny business with threads and IDEs?llimllib2009-02-11T16:02:40Z2009-02-11T16:44:47Z<p>The problem here is that raw_input waits for an enter to flush the input stream; check out its <a href="http://docs.python.org/library/functions.html#raw_input" rel="nofollow">documentation</a>. PyScripter is probably seeing that the program is waiting for an input and giving you an input box (don't know for sure, never used it.)</p>
<p>The program works exactly as I expect it to from the command line; the secondary thread blocks on the raw_input until I hit "q[enter]", at which point the program ends.</p>
<p>It is not, AFAICS, easy to check and see if a character is available in the input stream before blocking on a read call. You probably should check out <a href="http://mail.python.org/pipermail/python-list/2005-January/303883.html" rel="nofollow">this thread</a> on how to read a character in a blocking fashion without requiring an [enter], and then <a href="http://mail.python.org/pipermail/python-list/2005-January/302469.html" rel="nofollow">this post</a> on the challenge of reading a character without blocking at all.</p>
<p>You can possibly use a combination of msvcrt.kbhit on windows and <a href="http://www.python.org/doc/faq/library/#how-do-i-get-a-single-keypress-at-a-time" rel="nofollow">this recipe</a> from the python FAQ to get the q character without requiring a keypress, but I'll leave it as an exercise to the reader.</p>
<p>Addendum: One thing you could do would be to use the select library to set a timeout on reads from the keyboard, which will make your program act more like you expect:</p>
<pre><code>import sys
import threading
import time
import select
def timeout_read(n_chars):
r, _, _ = select.select([sys.stdin], [], [], 1)
return r[0].read(n_chars) if r else ""
class MyThread (threading.Thread):
def run (self):
try:
self.wantQuit = 0
while not self.wantQuit:
print "want input"
button = timeout_read(1)
if button == "q":
self.wantQuit=1
except KeyboardInterrupt:
self.wantQuit = 1
print "abort with KeyboardInterrupt"
print "done mythread"
myThread = MyThread ()
myThread.start()
a=5
while not myThread.wantQuit:
print "hey"
if (a == 0):
break;
a = a-1;
time.sleep(1)
myThread.wantQuit=1
print "main thread done"
</code></pre>
<p>Note that you will still need to press "q[enter]" with this solution.</p>
http://stackoverflow.com/questions/484971/compc-actionscript-library-compiler-doesnt-fail-unless-i-delete-the-file-first0Compc (Actionscript Library Compiler) Doesn't Fail Unless I Delete the File First?llimllib2009-01-27T19:57:13Z2009-01-28T15:10:58Z
<p>Here's the scenario: I run compc on a source directory to recompile an already existing library after some changes, which completes successfully. Then I remove the library (the .swc file) and re-compile, which causes many errors to be thrown.</p>
<p>Nothing changed in the interim - clearly this should have either succeeded both times or failed both times.</p>
<pre><code>libs/pv3ddebug $ compc -library-path+=.. -source-path=./src -compiler.optimize -include-sources+=./src -output ../pv3ddebug.swc
Loading configuration file /Users/bill/flex_sdk_3/frameworks/flex-config.xml
/Users/bill/lg/vision/libs/pv3ddebug.swc (152944 bytes)
/libs/pv3ddebug $ rm ../pv3ddebug.swc
/libs/pv3ddebug $ compc -library-path+=.. -source-path=./src -compiler.optimize -include-sources+=./src -output ../pv3ddebug.swc
Loading configuration file /Users/bill/flex_sdk_3/frameworks/flex-config.xml
/Users/bill/lg/vision/libs/pv3ddebug/src/com/phenomblue/pv3ddebug/PV3DDebug.as(45): col: 34 Error: Type was not found or was not a compile-time constant: AdvancedView.
public function PV3DDebug(view:AdvancedView)
^
... more errors follow
</code></pre>
<p>I think I've found out why the errors are happening, and can correct them, but I'm disturbed that the first compile didn't fail.</p>
<p>I have a theory:</p>
<ol>
<li>Library A, which pv3ddebug depends on, was correct</li>
<li>pv3ddebug was compiled successfully (and it correctly)</li>
<li>Library A was brought into a state that would fail to compile with pv3ddebug</li>
<li>pv3ddebug was compiled successfully, incorrectly, because compc didn't notice that A was updated to a failing state</li>
<li>deleting pv3ddebug and then recompiling caused compc to try and compile with the new A, and so the compilation failed.</li>
</ol>
<p>My questions to you: is step 4 a bug? Is this caching behavior I should have expected, or can change with a compiler switch? Is there something going on that my theory doesn't explain?</p>
http://stackoverflow.com/questions/471190/how-do-i-remove-vss-hooks-from-a-vs-web-site/471655#4716551Answer by llimllib for How do I remove VSS hooks from a VS Web Site?llimllib2009-01-23T02:19:56Z2009-01-23T02:19:56Z<p>Those things are pernicious! Visual Studio sticks links to SourceSafe in everywhere, including into the XML that makes up your sln file.</p>
<p>I wrote an <a href="http://billmill.org/ss2svn.html" rel="nofollow">article</a> about my experiences converting sourcesafe to subversion, and included with it the python script that I used to clean out the junk. Please note:</p>
<p>1) This is VERY LIGHTLY TESTED. Make backups so you don't screw up your sln/*proj files. Run your test suite before and after to make sure it didn't screw up something (how could it? Who knows! but stranger things have happened.)</p>
<p>2) This may have been with a different version of sourcesafe and visual studio in mind, so you may need to tweak it. Anyway, without further ado:</p>
<pre><code>import os, re
PROJ_RE = re.compile(r"^\s+Scc")
SLN_RE = re.compile(r"GlobalSection\(SourceCodeControl\).*?EndGlobalSection",
re.DOTALL)
VDPROJ_RE = re.compile(r"^\"Scc")
for (dir, dirnames, filenames) in os.walk('.'):
for fname in filenames:
fullname = os.path.join(dir, fname)
if fname.endswith('scc'):
os.unlink(fullname)
elif fname.endswith('vdproj'):
#Installer project has a different format
fin = file(fullname)
text = fin.readlines()
fin.close()
fout = file(fullname, 'w')
for line in text:
if not VDPROJ_RE.match(line):
fout.write(line)
fout.close()
elif fname.endswith('csproj'):
fin = file(fullname)
text = fin.readlines()
fin.close()
fout = file(fullname, 'w')
for line in text:
if not PROJ_RE.match(line):
fout.write(line)
fout.close()
elif fname.endswith('sln'):
fin = file(fullname)
text = fin.read()
fin.close()
text = SLN_RE.sub("", text)
fout = file(fullname, 'w')
fout.write(text)
</code></pre>
http://stackoverflow.com/questions/469931/deleting-rows-of-a-numpy-array-based-on-uniqueness-of-a-value/470521#4705211Answer by llimllib for deleting rows of a numpy array based on uniqueness of a valuellimllib2009-01-22T19:41:26Z2009-01-23T00:55:24Z<p>My numpy is way out of practice, but this should work:</p>
<pre><code>#keepers is a dictionary of type int: (int, int)
#the key is the row's final value, and the tuple is (row index, row[2])
keepers = {}
deletions = []
for i, row in enumerate(n):
key = row[3]
if key not in keepers:
keepers[key] = (i, row[2])
else:
if row[2] > keepers[key][1]:
deletions.append(i)
else:
deletions.append(keepers[key][0])
keepers[key] = (i, row[2])
o = numpy.delete(n, deletions, axis=0)
</code></pre>
<p>I've greatly simplified it from my declarative solution, which was getting quite unwieldy. Hopefully this is easier to follow; all we do is maintain a dictionary of values that we want to keep and a list of indexes we want to delete.</p>
http://stackoverflow.com/questions/417286/javascript-in-flash/417592#4175921Answer by llimllib for JavaScript in Flashllimllib2009-01-06T18:15:55Z2009-01-06T18:15:55Z<p>Check out <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/external/ExternalInterface.html" rel="nofollow">ExternalInterface</a>, which lets you call javascript functions from actionscript, and vice versa. We use it without a problem at my work.</p>
http://stackoverflow.com/questions/410941/best-modules-to-develop-a-simple-windowed-3d-modeling-application/411163#4111633Answer by llimllib for Best modules to develop a simple windowed 3D modeling application?llimllib2009-01-04T15:44:54Z2009-01-04T15:44:54Z<p>Any reason you wouldn't use wx's <a href="http://wiki.wxpython.org/GLCanvas" rel="nofollow">GLCanvas</a>? <a href="http://code.activestate.com/recipes/325392/" rel="nofollow">Here's</a> an example that draws a sphere.</p>
http://stackoverflow.com/questions/410163/for-python-programmers-is-there-anything-equivalent-to-perls-cpan/410170#41017020Answer by llimllib for For Python programmers, is there anything equivalent to Perl's CPAN?llimllib2009-01-04T00:34:17Z2009-01-04T00:34:17Z<p>sammy, have a look at <a href="http://pip.openplans.org/" rel="nofollow">pip</a>, which will let you do "pip install foo", and will download and install its dependencies (as long as they're on <a href="http://pypi.python.org/" rel="nofollow">PyPI</a>). There's also <a href="http://peak.telecommunity.com/DevCenter/EasyInstall" rel="nofollow">EasyInstall</a>, but pip is intended to replace that.</p>
http://stackoverflow.com/questions/409370/sorting-and-grouping-nested-lists-in-python/409423#4094237Answer by llimllib for Sorting and Grouping Nested Lists in Pythonllimllib2009-01-03T17:29:07Z2009-01-03T18:33:48Z<p>For the first question, the first thing you should do is sort the list by the second field:</p>
<pre><code>x = [
['4', '21', '1', '14', '2008-10-24 15:42:58'],
['3', '22', '4', '2somename', '2008-10-24 15:22:03'],
['5', '21', '3', '19', '2008-10-24 15:45:45'],
['6', '21', '1', '1somename', '2008-10-24 15:45:49'],
['7', '22', '3', '2somename', '2008-10-24 15:45:51']
]
from operator import itemgetter
x.sort(key=itemgetter(1))
</code></pre>
<p>Then you can use itertools' groupby function:</p>
<pre><code>from itertools import groupby
y = groupby(x, itemgetter(1))
</code></pre>
<p>Now y is an iterator containing tuples of (element, item iterator). It's more confusing to explain these tuples than it is to show code:</p>
<pre><code>for elt, items in groupby(x, itemgetter(1)):
print elt, items
for i in items:
print i
</code></pre>
<p>Which prints:</p>
<pre><code>21 <itertools._grouper object at 0x511a0>
['4', '21', '1', '14', '2008-10-24 15:42:58']
['5', '21', '3', '19', '2008-10-24 15:45:45']
['6', '21', '1', '1somename', '2008-10-24 15:45:49']
22 <itertools._grouper object at 0x51170>
['3', '22', '4', '2somename', '2008-10-24 15:22:03']
['7', '22', '3', '2somename', '2008-10-24 15:45:51']
</code></pre>
<p>For the second part, you should use list comprehensions as mentioned already here:</p>
<pre><code>from pprint import pprint as pp
pp([y for y in x if y[3] == '2somename'])
</code></pre>
<p>Which prints:</p>
<pre><code>[['3', '22', '4', '2somename', '2008-10-24 15:22:03'],
['7', '22', '3', '2somename', '2008-10-24 15:45:51']]
</code></pre>
http://stackoverflow.com/questions/409056/top-rated-javascript-blogs/409497#4094972Answer by llimllib for Top-Rated JavaScript Blogsllimllib2009-01-03T18:07:35Z2009-01-03T18:07:35Z<p><a href="http://blog.nihilogic.dk/" rel="nofollow">nihilogic.dk</a>, by Jacob Seidelin</p>
http://stackoverflow.com/questions/409449/loop-function-parameters-for-sanity-check/409467#409467-1Answer by llimllib for Loop function parameters for sanity checkllimllib2009-01-03T17:51:38Z2009-01-03T17:51:38Z<pre><code>def func(x='', y='', z='hooray!'):
print x, y, z
In [2]: f('test')
test hooray!
In [3]: f('test', 'and')
test and hooray!
In [4]: f('test', 'and', 'done!')
test and done!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/379021#37902111Answer by llimllib for What is the best comment in source code you have ever encountered?llimllib2008-12-18T19:55:42Z2008-12-18T19:55:42Z<p>The favorite comment I ever wrote:</p>
<pre><code>//the XML returned from this request is *mind-bogglingly* bad. Terrifyingly bad.
//a completed batch looks like this:
//<Batch>batchid=363777811 status=Done dateandtime=09/18/2007 09:53:10 PDT activateditems=335 numberofwarnings=0 itemsnotacivated=17 </Batch>
//and an incomplete batch like:
//<Batch>batchid=363778361 status=In Progress </Batch>
//so we'll just parse each item as a regex. Thanks Amazon.
</code></pre>
<p>And yes, Amazon actually returns XML like this.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/378987#37898768Answer by llimllib for What is the best comment in source code you have ever encountered?llimllib2008-12-18T19:47:39Z2008-12-18T19:47:39Z<p>Somebody complained that the "best" comment was bringing up the worst comments. IMHO, they're funnier, and so "better", but here's the honest best comment I've ever <a href="http://svn.python.org/view/python/trunk/Objects/dictobject.c?rev=53656&view=markup" rel="nofollow">read</a>:</p>
<pre><code>/*
Major subtleties ahead: Most hash schemes depend on having a "good" hash
function, in the sense of simulating randomness. Python doesn't: its most
important hash functions (for strings and ints) are very regular in common
cases:
>>> map(hash, (0, 1, 2, 3))
[0, 1, 2, 3]
>>> map(hash, ("namea", "nameb", "namec", "named"))
[-1658398457, -1658398460, -1658398459, -1658398462]
>>>
This isn't necessarily bad! To the contrary, in a table of size 2**i, taking
the low-order i bits as the initial table index is extremely fast, and there
are no collisions at all for dicts indexed by a contiguous range of ints.
The same is approximately true when keys are "consecutive" strings. So this
gives better-than-random behavior in common cases, and that's very desirable.
OTOH, when collisions occur, the tendency to fill contiguous slices of the
hash table makes a good collision resolution strategy crucial. Taking only
the last i bits of the hash code is also vulnerable: for example, consider
[i << 16 for i in range(20000)] as a set of keys. Since ints are their own
hash codes, and this fits in a dict of size 2**15, the last 15 bits of every
hash code are all 0: they *all* map to the same table index.
But catering to unusual cases should not slow the usual ones, so we just take
the last i bits anyway. It's up to collision resolution to do the rest. If
we *usually* find the key we're looking for on the first try (and, it turns
out, we usually do -- the table load factor is kept under 2/3, so the odds
are solidly in our favor), then it makes best sense to keep the initial index
computation dirt cheap.
The first half of collision resolution is to visit table indices via this
recurrence:
j = ((5*j) + 1) mod 2**i
For any initial j in range(2**i), repeating that 2**i times generates each
int in range(2**i) exactly once (see any text on random-number generation for
proof). By itself, this doesn't help much: like linear probing (setting
j += 1, or j -= 1, on each loop trip), it scans the table entries in a fixed
order. This would be bad, except that's not the only thing we do, and it's
actually *good* in the common cases where hash keys are consecutive. In an
example that's really too small to make this entirely clear, for a table of
size 2**3 the order of indices is:
0 -> 1 -> 6 -> 7 -> 4 -> 5 -> 2 -> 3 -> 0 [and here it's repeating]
If two things come in at index 5, the first place we look after is index 2,
not 6, so if another comes in at index 6 the collision at 5 didn't hurt it.
Linear probing is deadly in this case because there the fixed probe order
is the *same* as the order consecutive keys are likely to arrive. But it's
extremely unlikely hash codes will follow a 5*j+1 recurrence by accident,
and certain that consecutive hash codes do not.
The other half of the strategy is to get the other bits of the hash code
into play. This is done by initializing a (unsigned) vrbl "perturb" to the
full hash code, and changing the recurrence to:
j = (5*j) + 1 + perturb;
perturb >>= PERTURB_SHIFT;
use j % 2**i as the next table index;
Now the probe sequence depends (eventually) on every bit in the hash code,
and the pseudo-scrambling property of recurring on 5*j+1 is more valuable,
because it quickly magnifies small differences in the bits that didn't affect
the initial index. Note that because perturb is unsigned, if the recurrence
is executed often enough perturb eventually becomes and remains 0. At that
point (very rarely reached) the recurrence is on (just) 5*j+1 again, and
that's certain to find an empty slot eventually (since it generates every int
in range(2**i), and we make sure there's always at least one empty slot).
Selecting a good value for PERTURB_SHIFT is a balancing act. You want it
small so that the high bits of the hash code continue to affect the probe
sequence across iterations; but you want it large so that in really bad cases
the high-order hash bits have an effect on early iterations. 5 was "the
best" in minimizing total collisions across experiments Tim Peters ran (on
both normal and pathological cases), but 4 and 6 weren't significantly worse.
Historical: Reimer Behrends contributed the idea of using a polynomial-based
approach, using repeated multiplication by x in GF(2**n) where an irreducible
polynomial for each table size was chosen such that x was a primitive root.
Christian Tismer later extended that to use division by x instead, as an
efficient way to get the high bits of the hash code into play. This scheme
also gave excellent collision statistics, but was more expensive: two
if-tests were required inside the loop; computing "the next" index took about
the same number of operations but without as much potential parallelism
(e.g., computing 5*j can go on at the same time as computing 1+perturb in the
above, and then shifting perturb can be done while the table index is being
masked); and the dictobject struct required a member to hold the table's
polynomial. In Tim's experiments the current scheme ran faster, produced
equally good collision statistics, needed less code & used less memory.
Theoretical Python 2.5 headache: hash codes are only C "long", but
sizeof(Py_ssize_t) > sizeof(long) may be possible. In that case, and if a
dict is genuinely huge, then only the slots directly reachable via indexing
by a C long can be the first slot in a probe sequence. The probe sequence
will still eventually reach every slot in the table, but the collision rate
on initial probes may be much higher than this scheme was designed for.
Getting a hash code as fat as Py_ssize_t is the only real cure. But in
practice, this probably won't make a lick of difference for many years (at
which point everyone will have terabytes of RAM on 64-bit boxes).
*/
</code></pre>
http://stackoverflow.com/questions/331385/actionscript-tdd-frameworks/363107#3631071Answer by llimllib for actionscript tdd frameworksllimllib2008-12-12T15:40:38Z2008-12-12T15:40:38Z<p>Also check out <a href="http://code.google.com/p/fluint/" rel="nofollow">fluint</a></p>
<blockquote>
<p>Based loosely on the concepts of FlexUnit and its ancestor JUnit, fluint provides enhanced asynchronous support, a graphical test runner, integration with continuous build systems and an optional Adobe AIR client for directory watching. </p>
</blockquote>
http://stackoverflow.com/questions/361889/python-canvas/363093#3630930Answer by llimllib for Python Canvasllimllib2008-12-12T15:34:09Z2008-12-12T15:34:09Z<blockquote>
<p>I believe the HTML canvas lets you modify elements</p>
</blockquote>
<p>It does not. You can check out my <a href="http://billmill.org/static/canvastutorial/" rel="nofollow">HTML canvas tutorial</a> to see how you draw a moving ball; you wipe the screen and draw a new circle at the spot you want.</p>
<p>You can draw simple shapes to a canvas in all of pyglet, pygame, QT, Tkinter, wxPython and cairo. </p>
<p>Generally, you will have objects called "sprites" or "shapes" that represent objects drawn to the screen, and you'll store them all in a container. Then the library or framework will, at every frame, render them all to the canvas. Thus it will seem to the user (you) that you can modify the objects on screen; you set a ball's x and y coordinates and in the next frame it's rendered there. However, at a low level, everything's being wiped and redrawn again.</p>
<p>For computationally intensive animation, a technique called <a href="http://en.wikipedia.org/wiki/Double_buffering" rel="nofollow">double-buffering</a> will be employed whereby a bitmap in memory will be modified instead of the one onscreen, and then the drawing process will simply be to copy that bitmap to the screen.</p>
<blockquote>
<p>alter the item in the list and then create a new canvas, which seems like it would have a significant overhead.</p>
</blockquote>
<p>All of the frameworks mentioned above will give you a nice abstraction for the list of objects to draw, so that you won't need to maintain it manually, and you can program as if the sprites/shapes you've drawn can be directly moved onscreen, even though they really aren't at a low level.</p>
http://stackoverflow.com/questions/334655/passing-a-dictionary-to-a-function-in-python-as-keyword-parameters/335626#3356262Answer by llimllib for Passing a dictionary to a function in python as keyword parametersllimllib2008-12-02T22:03:11Z2008-12-02T22:03:11Z<p>In python, this is called "unpacking", and you can find a bit about it in the <a href="http://www.python.org/doc/2.5.2/tut/node6.html#SECTION006740000000000000000" rel="nofollow">tutorial</a>. The documentation of it sucks, I agree, especially because of how fantasically useful it is.</p>
http://stackoverflow.com/questions/58711/how-would-you-design-a-very-pythonic-ui-framework/334938#3349382Answer by llimllib for How would you design a very "Pythonic" UI framework?llimllib2008-12-02T18:23:10Z2008-12-02T18:23:10Z<p>The only attempt to do this that I know of is <a href="http://zephyrfalcon.org/labs/dope_on_wax.html" rel="nofollow">Hans Nowak's Wax</a> (which is unfortunately dead).</p>
http://stackoverflow.com/questions/1255914/finding-functions-defined-in-a-with-block/1256018#1256018Comment by llimllib on Finding Functions Defined in a with: Blockllimllib2009-08-21T02:54:21Z2009-08-21T02:54:21ZI posted a blog entry on using the code you gave me, in case you're interested: <a href="http://billmill.org/multi_line_lambdas.html" rel="nofollow">billmill.org/multi_line_lambdas.html</a>http://stackoverflow.com/questions/1255914/finding-functions-defined-in-a-with-block/1256661#1256661Comment by llimllib on Finding Functions Defined in a with: Blockllimllib2009-08-10T19:49:09Z2009-08-10T19:49:09Zbut then why use "with gui.vertical"? It would need to do the same stack introspection to get access to the text, items, and button within it. I'm sure you do something like:
class MyLayout(gui.Vertical):
text = gui.label('hello!')
#etc
right?
Anyway, I'm well aware that this is a seriously non-standard abuse of the with block. I just wanted to know how he did it.
I hope you at least see that it's a cool abuse of the with block :)http://stackoverflow.com/questions/1255914/finding-functions-defined-in-a-with-block/1256018#1256018Comment by llimllib on Finding Functions Defined in a with: Blockllimllib2009-08-10T18:53:12Z2009-08-10T18:53:12ZLovely, thank you very much.http://stackoverflow.com/questions/1099985/algorithm-for-multiple-word-matching-in-text/1100010#1100010Comment by llimllib on Algorithm for multiple word matching in textllimllib2009-07-08T19:30:31Z2009-07-08T19:30:31Z@Polaris: Also assuming that the hash of words fits into memory (which, if it's 10k words, should be no problem. Just being pedantic)http://stackoverflow.com/questions/1083250/running-json-through-pythons-eval/1083262#1083262Comment by llimllib on Running JSON through Python's eval()?llimllib2009-07-05T02:04:50Z2009-07-05T02:04:50Zhere's a simplejson port in pure python, intended for a similar situation to yours: <a href="http://aaronland.info/python/s60-simplejson/s60-simplejson.py" rel="nofollow">aaronland.info/python/s60-simplejson/…</a> . I've never used it, but I suspect it's a better idea than eval()inghttp://stackoverflow.com/questions/550032/what-causes-python-socket-error/550034#550034Comment by llimllib on What causes Python socket error?llimllib2009-07-04T19:38:32Z2009-07-04T19:38:32Z@Oscar if the port is in use, that is what python says ("error: (48, 'Address already in use')"). Sometimes users don't have permission to access ports below some number, which I presume is the case here.http://stackoverflow.com/questions/1082413/sort-a-list-of-strings-based-on-regular-expression-match-or-something-similar/1082431#1082431Comment by llimllib on Sort a list of strings based on regular expression match or something similarllimllib2009-07-04T18:44:46Z2009-07-04T18:44:46ZI realized that if I simply include the % at the front of the returned string, the whole thing gets much simpler. & is chr(ord('%')+1), if you're wondering why I chose that. For compatibilty with all encodings, you should probably generate the character that way, but I left it as '&' for simplicity.http://stackoverflow.com/questions/1082413/sort-a-list-of-strings-based-on-regular-expression-match-or-something-similar/1082431#1082431Comment by llimllib on Sort a list of strings based on regular expression match or something similarllimllib2009-07-04T18:32:35Z2009-07-04T18:32:35Z@Tom I just copied from an ipython session (<a href="http://ipython.scipy.org/moin/" rel="nofollow">ipython.scipy.org/moin</a>) @Alex Because I've just been using groups()[i] for years now and didn't realize there was a group(i) function. (Also it would be group(1), not group(0), right?). Thanks for the note.http://stackoverflow.com/questions/1082413/sort-a-list-of-strings-based-on-regular-expression-match-or-something-similar/1082431#1082431Comment by llimllib on Sort a list of strings based on regular expression match or something similarllimllib2009-07-04T16:04:38Z2009-07-04T16:04:38Zat the cost of a good deal of complexity, I should add. I think I preferred the previous solution, he can probably use a [null, notnull] set just as easily as a [notnull, null] set.http://stackoverflow.com/questions/1082413/sort-a-list-of-strings-based-on-regular-expression-match-or-something-similar/1082431#1082431Comment by llimllib on Sort a list of strings based on regular expression match or something similarllimllib2009-07-04T16:03:23Z2009-07-04T16:03:23ZOK, you intrigued me, so I fixed it. Basically, if re.UNICODE is set, the 'z' + s solution may not work; the way I've done it should, I think.http://stackoverflow.com/questions/1082413/sort-a-list-of-strings-based-on-regular-expression-match-or-something-similar/1082431#1082431Comment by llimllib on Sort a list of strings based on regular expression match or something similarllimllib2009-07-04T15:49:10Z2009-07-04T15:49:10Zyup, I left the specific sort he wanted as an exercise for the reader - I figured the important bit was the sort(key=...) and grp functions.http://stackoverflow.com/questions/1045344/how-do-you-create-an-incremental-id-in-a-python-class/1045491#1045491Comment by llimllib on How do you create an incremental ID in a Python Classllimllib2009-06-30T16:46:40Z2009-06-30T16:46:40ZR. Pate: absolutely correct, and important to keep in mind; I just wanted to make sure he was aware of the id function's existence and evaluated it properly before choosing to do something manually.http://stackoverflow.com/questions/359877/are-there-famous-developers-using-stackoverflow/633783#633783Comment by llimllib on Are there famous developers using StackOverflow?llimllib2009-06-24T18:19:52Z2009-06-24T18:19:52Zpage not found?http://stackoverflow.com/questions/1015402/chop-unused-decimals-with-javascript/1015434#1015434Comment by llimllib on chop unused decimals with javascriptllimllib2009-06-18T22:04:20Z2009-06-18T22:04:20ZBetter to use 0+ instead of 0* so the regex doesn't match if there's no trailing zeros.http://stackoverflow.com/questions/1014444/jquery-function-calling/1014451#1014451Comment by llimllib on jQuery function callingllimllib2009-06-18T18:41:57Z2009-06-18T18:41:57Zthis has the same effect as simply omitting the "var" before "bar"