User Miles - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T22:02:12Zhttp://stackoverflow.com/feeds/user/64474http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1642167/do-javascript-prototypes-have-something-equivalent-to-luas-index-newindex/1648777#16487772Answer by Miles for Do Javascript prototypes have something equivalent to Lua's __index & __newindex?Miles2009-10-30T09:22:02Z2009-10-30T09:22:02Z<p>Just FYI: Firefox supports a non-standard <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FObjects/Object/noSuchMethod" rel="nofollow"><code>__noSuchMethod__</code></a> extension.</p>
http://stackoverflow.com/questions/1195440/ajax-back-button-and-dom-updates/1195934#11959348Answer by Miles for Ajax, back button and DOM updatesMiles2009-07-28T18:37:06Z2009-10-16T08:30:52Z<p>One answer: Among other things, <strong>unload events cause the back/forward cache to be invalidated</strong>.</p>
<p>Some browsers store the current state of the entire web page in the so-called "bfcache". This allows them to re-render the page very quickly when navigating via the back and forward buttons, and preserves the state of the DOM and all JavaScript variables. However, when a page contains onunload events, those events could potentially put the page into a non-functional state, and so the page is not stored in the bfcache and must be reloaded (but may be loaded from the standard cache) and re-rendered from scratch, including running all onload handlers. When returning to a page via the bfcache, the DOM is kept in its previous state, without needing to fire onload handlers (because the page is already loaded).</p>
<p>Note that the behavior of the bfcache is different from the standard browser cache with regards to Cache-Control and other HTTP headers. In many cases, browsers will cache a page in the bfcache even if it would not otherwise store it in the standard cache.</p>
<p>jQuery automatically attaches an unload event to the window, so unfortunately using jQuery will disqualify your page from being stored in the bfcache for DOM preservation and quick back/forward.</p>
<ul>
<li><a href="https://developer.mozilla.org/En/Using%5FFirefox%5F1.5%5Fcaching" rel="nofollow">Information about the Firefox bfcache</a></li>
<li><a href="http://webkit.org/blog/427/webkit-page-cache-i-the-basics/" rel="nofollow">Information about the Safari Page Cache</a> and <a href="http://webkit.org/blog/516/webkit-page-cache-ii-the-unload-event/" rel="nofollow">possible future changes to how unload events work</a></li>
<li>Pages for playing with DOM manipulations and the bfcache:
<ul>
<li><a href="http://www.twmagic.com/misc/cache.html" rel="nofollow">This page will be stored in the regular cache</a></li>
<li><a href="http://www.twmagic.com/misc/cache-nocache.html" rel="nofollow">This page will not, but will still be bfcached</a></li>
</ul></li>
</ul>
http://stackoverflow.com/questions/1470343/python-ctypes-copying-structures-contents/1470554#14705543Answer by Miles for Python ctypes: copying Structure's contentsMiles2009-09-24T09:10:35Z2009-09-24T09:57:40Z<p>You can use sequence assignment to copy the pointed-to objects (rather than assigning to <code>p.contents</code>, which changes the pointer value):</p>
<pre><code>def copy(dst, src):
"""Copies the contents of src to dst"""
pointer(dst)[0] = src
# alternately
def new_copy(src):
"""Returns a new ctypes object which is a bitwise copy of an existing one"""
dst = type(src)()
pointer(dst)[0] = src
return dst
# or if using pointers
def ptr_copy(dst_ptr, src_ptr):
dst_ptr[0] = src_ptr[0]
</code></pre>
<p><code>ctypes</code> will do type checking for you (which isn't fool-proof, but it's better than nothing).</p>
<p>Example of use, with verification that it does in fact work ;):</p>
<pre><code>>>> o1 = Point(1, 1)
>>> o2 = Point(2, 2)
>>> print (o1.x, o1.y, addressof(o1)), (o2.x, o2.y, addressof(o2))
(1, 1, 6474004) (2, 2, 6473524)
>>> copy(o2, o1)
>>> pprint (o1.x, o1.y, addressof(o1)), (o2.x, o2.y, addressof(o2))
(1, 1, 6474004) (1, 1, 6473524)
>>> o1 = Point(1, 1), o2 = Point(2, 2)
>>> print (o1.x, o1.y, addressof(o1)), (o2.x, o2.y, addressof(o2))
(1, 1, 6473844) (2, 2, 6473684)
>>> p1, p2 = pointer(o1), pointer(o2)
>>> addressof(p1.contents), addressof(p2.contents)
(6473844, 6473684)
>>> ptr_copy(p1, p2)
>>> print (o1.x, o1.y, addressof(o1)), (o2.x, o2.y, addressof(o2))
(2, 2, 6473844) (2, 2, 6473684)
>>> addressof(p1.contents), addressof(p2.contents)
(6473844, 6473684)
</code></pre>
http://stackoverflow.com/questions/1352587/code-golf-morse-code/1352976#13529762Answer by Miles for Code Golf: Morse codeMiles2009-08-30T03:02:03Z2009-09-01T18:59:16Z<h3>Python 2; 171 characters</h3>
<p>Basically the same as <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1353898#1353898">Andrea's solution</a>, but as a complete program, and using stupid tricks to make it shorter.</p>
<pre><code>for c in raw_input().lower():print"".join(".-"[int(d)]for d in bin(
(' etianmsurwdkgohvf_l_pjbxcyzq__54_3___2%7s16%7s7___8_90%12s?%8s.%29s,'
%(('',)*5)).find(c))[3:])or'/',
</code></pre>
<p>(the added newlines can all be removed)</p>
<p>Or, if you prefer not to use the <code>bin()</code> function in 2.6, we can get do it in 176:</p>
<pre><code>for c in raw_input():C=lambda q:q>0and C(~-q/2)+'-.'[q%2]or'';print C(
(' etianmsurwdkgohvf_l_pjbxcyzq__54_3___2%7s16%7s7___8_90%12s?%8s.%29s,'%
(('',)*5)).find(c.lower()))or'/',
</code></pre>
<p>(again, the added newlines can all be removed)</p>
http://stackoverflow.com/questions/1326374/are-regex-literals-always-regexp-objects/1326401#13264016Answer by Miles for Are /regex/ Literals always RegExp Objects?Miles2009-08-25T06:37:00Z2009-08-25T07:05:50Z<p>Here's what <a href="http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf" rel="nofollow">the spec</a> has to say:</p>
<blockquote>
<p>A regular expression literal is an input element that is converted to a RegExp object when it is scanned. The object is created before evaluation of the containing program or function begins. Evaluation of the literal produces a reference to that object; it does not create a new object. Two regular expression literals in a program evaluate to regular expression objects that never compare as <code>===</code> to each other even if the two literals' contents are identical.</p>
</blockquote>
<p>There is no primitive regex type that autoboxes to an object in the same way as <code>string</code> or <code>number</code>.</p>
<p>Note, however, that not all browsers implement the "instantiate-once-per-literal" behavior, including <a href="https://bugs.webkit.org/show%5Fbug.cgi?id=23418" rel="nofollow">Safari</a> and IE6 (and possibly later), so portable code shouldn't depend on it. The abortive ECMAScript 4 draft <a href="http://www.ecmascript.org/es4/spec/incompatibilities.pdf" rel="nofollow">would have changed the behavior</a> to match those browsers:</p>
<blockquote>
<p>In ES3 a regular expression literal like <code>/a*b/mg</code> denotes a single unique RegExp object that is created the first time the literal is encountered during evaluation. In ES4 a new RegExp object is created every time the literal is encountered during evaluation.</p>
</blockquote>
<p>Also, some browsers (<a href="https://bugzilla.mozilla.org/show%5Fbug.cgi?id=61911" rel="nofollow">Firefox <3</a>, <a href="https://bugs.webkit.org/show%5Fbug.cgi?id=24716" rel="nofollow">Safari</a>) report <code>typeof /regex/</code> as <code>"function"</code>, so portable code should avoid <code>typeof</code> on RegExp instances—stick with <code>instanceof</code>.</p>
http://stackoverflow.com/questions/1242589/subclassing-int-to-attain-a-hex-representation/1242598#12425980Answer by Miles for subclassing int to attain a Hex representationMiles2009-08-07T02:29:09Z2009-08-07T05:28:42Z<p>Override <code>__str__</code> as well.</p>
<p><code>__repr__</code> is used when repr(o) is called, and to display a value at the interactive prompt. <code>__str__</code> is called for most instances of stringifying an object, including when it is printed.</p>
<p>The default <code>__str__</code> behavior for an object is to fall back to the <code>repr</code>, but <code>int</code> provides its own <code>__str__</code> method (which is identical to <code>__repr__</code> (before Python 3), but does not <em>fall back</em> to <code>__repr__</code>).</p>
http://stackoverflow.com/questions/1242572/how-do-you-construct-a-read-write-pipe-with-lua/1242639#12426392Answer by Miles for How do you construct a read-write pipe with lua?Miles2009-08-07T02:47:54Z2009-08-07T02:47:54Z<p>There is nothing in the Lua standard library to allow this.</p>
<p><a href="http://lua-users.org/lists/lua-l/2007-10/msg00189.html" rel="nofollow">Here is an in-depth exploration of the difficulties of doing bidirectional communication properly</a>, and a proposed solution:</p>
<blockquote>
<p>if possible, redirect one end of the stream (input or output) to a file. I.e.:</p>
<pre><code>fp = io.popen("foo >/tmp/unique", "w")
fp:write(anything)
fp:close()
fp = io.open("/tmp/unique")
x = read("*a")
fp:close()
</code></pre>
</blockquote>
<p>You may be interested in <a href="http://lua-ex.luaforge.net/" rel="nofollow">this extension</a> which adds functions to the <code>os</code> and <code>io</code> namespaces to make bidirectional communication with a subprocess possible.</p>
http://stackoverflow.com/questions/1212025/moving-values-in-a-list-in-python/1212035#121203510Answer by Miles for moving values in a list in pythonMiles2009-07-31T11:28:41Z2009-07-31T11:35:49Z<pre><code>>>> a = [1,2,3,4,5]
>>> a.append(a.pop(0))
>>> a
[2, 3, 4, 5, 1]
</code></pre>
<p>This is expensive, though, as it has to shift the contents of the entire list, which is O(n). A better choice may be to use <a href="http://docs.python.org/library/collections.html#collections.deque" rel="nofollow"><code>collections.deque</code></a> if it is available in your version of Python, which allow objects to be inserted and removed from either end in approximately O(1) time:</p>
<pre><code>>>> a = collections.deque([1,2,3,4,5])
>>> a
deque([1, 2, 3, 4, 5])
>>> a.rotate(-1)
>>> a
deque([2, 3, 4, 5, 1])
</code></pre>
<p>Note also that both these solutions involve changing the original sequence object, whereas yours creates a new list and assigns it to <code>a</code>. So if we did:</p>
<pre><code>>>> c = a
>>> # rotate a
</code></pre>
<p>With your method, <code>c</code> would continue to refer to the original, unrotated list, and with my methods, it will refer to the updated, <em>rotated</em> list/deque.</p>
http://stackoverflow.com/questions/1205584/how-to-run-a-excutable-file-from-a-web-page/1205640#12056407Answer by Miles for How to run a excutable file from a web page?Miles2009-07-30T10:04:12Z2009-07-30T10:04:12Z<p>You can register a protocol to your application so that navigating to a URL beginning with that scheme will launch your application and run a command.</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/aa767914%28VS.85).aspx" rel="nofollow">Windows</a></li>
<li><a href="http://developer.apple.com/documentation/Carbon/Conceptual/LaunchServicesConcepts/LSCIntro/LSCIntro.html" rel="nofollow">Mac OS X</a></li>
<li><a href="http://people.w3.org/~dom/archives/2005/09/integrating-a-new-uris-scheme-handler-to-gnome-and-firefox/" rel="nofollow">Gnome</a></li>
</ul>
http://stackoverflow.com/questions/1205385/inheritance-in-javascript-protoyping-not-in-definition-part/1205496#12054961Answer by Miles for Inheritance in Javascript - protoyping not in definition-part?Miles2009-07-30T09:31:00Z2009-07-30T09:43:57Z<p><code>prototype</code> is only a meaningful property of constructors. The object's actual prototype (which is accessible in some environments as the property <code>__proto__</code>, but this is not portable) is set to be the constructor's <code>prototype</code> attribute at the time the object is constructed. Changes to the constructor's prototype (adding properties to the prototype) will be reflected in live objects, but not if you set <code>Constructor.prototype</code> to be a completely different object.</p>
<p>In your constructor, you're setting the <code>prototype</code> attribute <em>of the constructed object</em> (<code>this</code>). This attribute has no special meaning on something that's not a constructor function. When you set it outside of the function, you set it on the constructor function.</p>
http://stackoverflow.com/questions/1204744/typeerror-cant-multiply-sequence-by-non-int-of-type-str/1204759#12047595Answer by Miles for TypeError: can't multiply sequence by non-int of type 'str'Miles2009-07-30T06:20:53Z2009-07-30T06:25:54Z<pre><code>>>> '60' * '60'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: can't multiply sequence by non-int of type 'str'
</code></pre>
<p>You are trying to multiply two strings together. You must convert the string input from the user to a number using <code>int()</code> or <code>float()</code>.</p>
<p>Also, I'm not sure what you're doing with <code>decimal</code>; it looks like you're trying to call the module (the type is <em>in</em> the module, <code>decimal.Decimal</code>) but there's not much point in converting to a Decimal <em>after</em> doing some floating point math and <em>then</em> converting back to a <code>float</code>.</p>
<p>In the future, post the code that causes the problem (and keep the interaction and traceback). But first try and shrink the code as much as possible while making sure it still causes the error. This is an important step in debugging.</p>
http://stackoverflow.com/questions/1163848/trying-to-grab-integer-from-pre-defined-p-list-objc-cocoa/1163862#11638622Answer by Miles for Trying to grab integer from pre-defined p-list? ObjC/CocoaMiles2009-07-22T08:32:11Z2009-07-22T08:32:11Z<p>The value is an <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSNumber%5FClass/Reference/Reference.html" rel="nofollow"><code>NSNumber</code></a> object. You can get it as an <code>int</code> using the <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSNumber%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSNumber/intValue" rel="nofollow"><code>-intValue</code> method</a></p>
<ul>
<li><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/PropertyLists/AboutPropertyLists/AboutPropertyLists.html#//apple%5Fref/doc/uid/10000048i-CH3-54303" rel="nofollow">More details about Property List types</a></li>
</ul>
http://stackoverflow.com/questions/1162998/how-can-i-add-an-object-property-to-the-global-object-in-rhino-javascript/1163033#11630332Answer by Miles for How can I add an object property to the global object in rhino javascriptMiles2009-07-22T04:14:37Z2009-07-22T04:14:37Z<p>You could use <code>this</code>, which refers to the global object if the current function is not called as a method of an object.</p>
http://stackoverflow.com/questions/1146942/explain-java-unary-operator/1146951#11469515Answer by Miles for Explain Java Unary operatorMiles2009-07-18T07:38:04Z2009-07-18T07:38:04Z<p>In the statement <code>i = i++</code>:</p>
<blockquote>
<p>This is guarenteed behaviour. The value of <code>i</code> is read for the purposes of evaluating the righthand side of the assignment. <code>i</code> is then incremented. statement end results in the evaluation result being assigned to <code>i</code>.</p>
<p>There are two assignments in <code>i = i++;</code> and the last one to be executed will determine the result. The last to be executed will always be the statement level assignment and not the incrementer/decrementer.</p>
<p>Terrible way to write code, but there you have it a deterministic result at least.</p>
</blockquote>
<p><a href="http://forums.sun.com/thread.jspa?threadID=318496" rel="nofollow">http://forums.sun.com/thread.jspa?threadID=318496</a></p>
http://stackoverflow.com/questions/1128951/is-it-possible-to-encode-emasdf-em-in-python-textile/1129730#11297301Answer by Miles for Is it possible to encode (<em>asdf</em>) in python Textile?Miles2009-07-15T06:31:42Z2009-07-15T13:56:25Z<p>It's hard to say if this is a bug or not; in the form on the <a href="http://textile.thresholdstate.com/" rel="nofollow">Textile website</a>, <code>(_foo_)</code> works as you want, but in the downloadable PHP implementation, it doesn't.</p>
<p>You should be able to do this:</p>
<pre><code>([_asdf_]) -> <p>(<em>asdf</em>)</p>
</code></pre>
<p>However, this doesn't work, which <strong>is</strong> a bug in py-textile. You either need to use this:</p>
<pre><code>(]_asdf_])
</code></pre>
<p>or patch textile.py by changing line 918 (in the <code>Textile.span()</code> method) to:</p>
<pre><code> (?:^|(?<=[\s>%(pnct)s])|([{[]))
</code></pre>
<p>(the difference is in the final group; the brackets are incorrectly reversed.)</p>
<p>You could also change the line to:</p>
<pre><code> (?:^|(?<=[\s>(%(pnct)s])|([{[]))
</code></pre>
<p>(note the added parenthesis) to get the behavior you desire for <code>(_foo_)</code>, <s>but I'm not sure if that would break anything else.</s></p>
<p><hr /></p>
<p>Follow up: the <a href="http://code.google.com/p/textpattern/source/browse/development/4.x/textpattern/lib/classTextile.php?r=3250#688" rel="nofollow">latest version of the PHP Textile class</a> does indeed make a similar change to the one I suggested.</p>
http://stackoverflow.com/questions/1120927/which-is-better-in-python-del-or-delattr/1121068#112106812Answer by Miles for Which is better in python, del or delattr?Miles2009-07-13T17:58:51Z2009-07-13T18:12:18Z<p>The first is more efficient than the second. <code>del foo.bar</code> compiles to two bytecode instructions:</p>
<pre><code> 2 0 LOAD_FAST 0 (foo)
3 DELETE_ATTR 0 (bar)
</code></pre>
<p>whereas <code>delattr(foo, "bar")</code> takes five:</p>
<pre><code> 2 0 LOAD_GLOBAL 0 (delattr)
3 LOAD_FAST 0 (foo)
6 LOAD_CONST 1 ('bar')
9 CALL_FUNCTION 2
12 POP_TOP
</code></pre>
<p>This translates into the first running <em>slightly</em> faster (but it's not a huge difference – .15 μs on my machine).</p>
<p>Like the others have said, you should really only use the second form when the attribute that you're deleting is determined dynamically.</p>
<p>[Edited to show the bytecode instructions generated inside a function, where the compiler can use <code>LOAD_FAST</code> and <code>LOAD_GLOBAL</code>]</p>
http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac/1115074#11150745Answer by Miles for How can I get the behavior of GNU's readlink -f on a Mac?Miles2009-07-12T01:11:34Z2009-07-12T20:02:15Z<p>You may be interested in <a href="http://developer.apple.com/documentation/Darwin/Reference/ManPages/man3/realpath.3.html" rel="nofollow"><code>realpath(3)</code></a>, or Python's <a href="http://docs.python.org/library/os.path.html#os.path.realpath" rel="nofollow"><code>os.path.realpath</code></a>. The two aren't exactly the same; the C library call requires that intermediary path components exist, while the Python version does not.</p>
<pre><code>$ pwd
/tmp/foo
$ ls -l
total 16
-rw-r--r-- 1 miles wheel 0 Jul 11 21:08 a
lrwxr-xr-x 1 miles wheel 1 Jul 11 20:49 b -> a
lrwxr-xr-x 1 miles wheel 1 Jul 11 20:49 c -> b
$ python -c 'import os,sys;print os.path.realpath(sys.argv[1])' c
/private/tmp/foo/a
</code></pre>
<p>I know you said you'd prefer something more lightweight than another scripting language, but just in case compiling a binary is insufferable, you can use Python and ctypes (available on Mac OS X 10.5) to wrap the library call:</p>
<pre><code>#!/usr/bin/python
import ctypes, sys
libc = ctypes.CDLL('libc.dylib')
libc.realpath.restype = ctypes.c_char_p
libc.__error.restype = ctypes.POINTER(ctypes.c_int)
libc.strerror.restype = ctypes.c_char_p
def realpath(path):
buffer = ctypes.create_string_buffer(1024) # PATH_MAX
if libc.realpath(path, buffer):
return buffer.value
else:
errno = libc.__error().contents.value
raise OSError(errno, "%s: %s" % (libc.strerror(errno), buffer.value))
if __name__ == '__main__':
print realpath(sys.argv[1])
</code></pre>
<p>Ironically, the C version of this script ought to be shorter. :)</p>
http://stackoverflow.com/questions/1113040/list-of-installed-fonts-os-x-c/1113150#11131504Answer by Miles for List of installed fonts OS X / CMiles2009-07-11T07:23:45Z2009-07-11T07:33:00Z<p>Python with PyObjC installed (which is the case for Mac OS X 10.5+, so this code will work without having to install anything):</p>
<pre><code>import Cocoa
manager = Cocoa.NSFontManager.sharedFontManager()
font_families = list(manager.availableFontFamilies())
</code></pre>
<p>(based on <a href="#1113072" rel="nofollow">htw's answer</a>)</p>
http://stackoverflow.com/questions/1096218/javascript-object-oriented-function-invoke-beginner-question/1096223#10962232Answer by Miles for javascript object oriented function invoke beginner questionMiles2009-07-08T05:23:54Z2009-07-08T05:29:26Z<p>In this situation, yes. This is because you assign the anonymous function to be a property of the newly constructed object, which is the only way to access it.</p>
<p>It is possible to make it so that <code>this</code> is not required in <code>this.function_two</code>:</p>
<pre><code>// Inside the MyObject constructor:
function function_one(param) {
return param + param;
}
// Optional, if you don't care about being able to call
// function_one from outside the closure
this.function_one = function_one;
</code></pre>
<p>This makes it so that <code>function_one</code> is available as a variable inside the closure created by calling the constructor; making functions available to call two different ways (via free variable and object property) isn't a very common idiom, though.</p>
<p>I suggest you read <a href="http://www.crockford.com/javascript/private.html" rel="nofollow">this article by Crockford</a> for a better understanding of the different ways you can attach methods to objects.</p>
http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-python/1080514#10805142Answer by Miles for Preventing invoking C types from PythonMiles2009-07-03T19:12:16Z2009-07-03T19:12:16Z<p>Simple: leave the tp_new slot of the type empty.</p>
<pre><code>>>> Foo()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: cannot create 'foo.Foo' instances
>>> Foo.__new__(Foo)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: object.__new__(foo.Foo) is not safe, use foo.Foo.__new__()
</code></pre>
<p>If you inherit from a type other than the base object type, you will have to set tp_new to NULL after calling PyType_Ready().</p>
http://stackoverflow.com/questions/369764/ipv6-decoder-for-pcapy-impacket/1076725#10767250Answer by Miles for IPv6 decoder for pcapy/impacketMiles2009-07-02T21:15:57Z2009-07-02T21:15:57Z<p>You may want to look into <a href="http://code.google.com/p/dpkt/" rel="nofollow"><code>dpkt</code></a>, yet another packet parsing/building library. It was written by the author of <a href="http://code.google.com/p/pypcap/" rel="nofollow"><code>pypcap</code></a>, a different libpcap wrapper, but it shouldn't be too difficult to get it working with pcapy to see if it's faster for your purposes than Scapy.</p>
http://stackoverflow.com/questions/1066109/what-is-the-difference-between-this-click-and-this-click/1066230#10662301Answer by Miles for What is the difference between this.click() and $(this).click() ?Miles2009-06-30T21:41:21Z2009-06-30T21:41:21Z<p><code>this.click()</code> calls the browser DOM method <a href="http://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-2651361" rel="nofollow"><code>click()</code></a>.</p>
<p><code>$(this).click()</code> calls the jQuery method <a href="http://docs.jquery.com/Events/click#click.28%5F.29" rel="nofollow"><code>click()</code></a>, which does more than just call the browser method: see the implementation of the function <a href="http://dev.jquery.com/browser/trunk/jquery/src/event.js#L192" rel="nofollow"><code>trigger</code></a> for details.</p>
http://stackoverflow.com/questions/1060796/callable-modules/1060862#10608622Answer by Miles for Callable modulesMiles2009-06-29T22:18:56Z2009-06-29T22:18:56Z<p>Special methods are only guaranteed to be called implicitly when they are defined on the type, not on the instance. (<code>__call__</code> is an attribute of the module instance <code>mod_call</code>, not of <code><type 'module'></code>.) You can't add methods to built-in types.</p>
<p><a href="http://docs.python.org/reference/datamodel.html#special-method-lookup-for-new-style-classes" rel="nofollow">http://docs.python.org/reference/datamodel.html#special-method-lookup-for-new-style-classes</a></p>
http://stackoverflow.com/questions/1056593/python-2-4-plistlib-on-linux/1056644#10566441Answer by Miles for Python 2.4 plistlib on LinuxMiles2009-06-29T05:05:20Z2009-06-29T05:05:20Z<p>Download it and give it a try:</p>
<p><a href="http://svn.python.org/projects/python/trunk/Lib/plistlib.py" rel="nofollow">http://svn.python.org/projects/python/trunk/Lib/plistlib.py</a></p>
<p>(If that doesn't work, you may have more luck with the <a href="http://svn.python.org/projects/python/branches/release24-maint/Lib/plat-mac/plistlib.py" rel="nofollow">2.4 version</a>.)</p>
http://stackoverflow.com/questions/1052135/some-help-understanding-async-usb-operations-with-libusb-1-0-and-ctypes/1052319#10523191Answer by Miles for Some help understanding async USB operations with libusb-1.0 and ctypesMiles2009-06-27T07:39:17Z2009-06-27T07:39:17Z<ul>
<li>Have you checked to make sure the return values of <code>libusb_alloc_transfer</code> and <code>libusb_open_device_with_vid_pid</code> are valid?</li>
<li>Have you tried annotating the library functions with the appropriate <a href="http://python.net/crew/theller/ctypes/reference.html#foreign-functions" rel="nofollow">argtypes</a>?</li>
<li>You may run in to trouble with <code>transfer[0].callback = LIBUSB_TRANSFER_CB_FN(callback)</code>—you're not keeping any references to the <code>CFunctionType</code> object returned from <code>LIBUSB_TRANSFER_CB_FN()</code>, and so that object might be getting released and overwritten.</li>
</ul>
<p>The next step, I suppose, would be to install a version of libusb with debugging symbols, boot up GDB, set a breakpoint at <code>libusb_submit_transfer()</code>, make sure the passed-in <code>libusb_transfer</code> is sane, and see what's triggering the error to be returned.</p>
http://stackoverflow.com/questions/1051666/why-does-it-say-xxx-is-not-a-function/1051691#10516914Answer by Miles for Why does it say xxx is not a functionMiles2009-06-26T23:22:33Z2009-06-26T23:22:33Z<p>At the time this is evaluated:</p>
<pre><code> aContract.prototype = { ... }
</code></pre>
<p>this has not yet been evaluated:</p>
<pre><code>var some$Other$Function = function() { ... }
</code></pre>
<p>Thus <code>aContract.prototype.someOtherFunction</code> is set to <code>undefined</code>.</p>
<p>The reason the second works is because function <strong>declarations</strong> (which the second is, the first is an expression) are evaluated before any other statements. There are more details here: <a href="http://yura.thinkweb2.com/named-function-expressions/" rel="nofollow">Named function expressions demystified</a></p>
http://stackoverflow.com/questions/1047318/easiest-way-to-persist-a-data-structure-to-a-file-in-python/1047338#10473387Answer by Miles for Easiest way to persist a data structure to a file in python?Miles2009-06-26T04:28:03Z2009-06-26T04:34:46Z<p>Take your pick: <a href="http://docs.python.org/library/persistence.html" rel="nofollow">Python Standard Library - Data Persistance</a>. Which one is most appropriate can vary by what your specific needs are.</p>
<p><a href="http://docs.python.org/library/pickle.html" rel="nofollow"><code>pickle</code></a> is probably the simplest and most capable as far as "write an arbitrary object to a file and recover it" goes—it can automatically handle custom classes and circular references.</p>
<p>For the best pickling performance (speed and space), use <code>cPickle</code> at <code>HIGHEST_PROTOCOL</code>.</p>
http://stackoverflow.com/questions/1047093/how-do-i-make-a-regex-not-swallow-a-character/1047101#10471017Answer by Miles for How do I make a regex not 'swallow' a character?Miles2009-06-26T02:42:12Z2009-06-26T02:42:12Z<p>For this specific case, you could do:</p>
<pre><code>$regex = '/\{([a-z]+?)\}([^\{]+)/i';
</code></pre>
<p><code>[^\{]</code> means "match any character that is not a left brace". This also has the advantage of not requiring a <code>{</code> at the end of your input.</p>
<p>More generally, you can also use lookahead assertions as others have mentioned.</p>
http://stackoverflow.com/questions/1046873/can-a-slow-network-cause-a-python-app-to-use-more-cpu/1047044#10470441Answer by Miles for Can a slow network cause a Python app to use *more* CPU?Miles2009-06-26T02:12:37Z2009-06-26T02:12:37Z<blockquote>
<p>Something about the Global Interpreter Lock and the multiple threads supposedly causes Python to spend all its time switching between threads, checking to see if any of them have an answer yet from the database. </p>
</blockquote>
<p>That is completely baseless. If all threads are blocked on I/O, Python should use 0% CPU. If there is one unblocked thread, it will be able to run without GIL contention; it will periodically release and reacquire the GIL, but it doesn't do any work "checking up" on the other threads.</p>
<p>However, it is possible on multicore systems for a thread to have to wait a while to reacquire the GIL if there is a CPU-bound thread, and for response times to drop (see <a href="http://www.dabeaz.com/python/GIL.pdf" rel="nofollow">this presentation</a> for details). This shouldn't be an issue for most servers, though.</p>
http://stackoverflow.com/questions/1029756/how-to-refuse-a-recipient-in-smtpd-smtpserver-processmessage/1029836#10298360Answer by Miles for How to refuse a recipient in smtpd.SMTPServer.process_message?Miles2009-06-22T23:07:46Z2009-06-22T23:07:46Z<p>The way to reject a message is to return a string with the error code from your <code>process_message</code> method; e.g.</p>
<pre><code>return '550 No such user here'
</code></pre>
<p>However, RFC 821 doesn't allow error code 550 to be returned after the message data has been transfered (it should be returned after the <code>RCPT</code> command), and the smtpd module unfortunately doesn't provide an easy way to return an error code at that stage. Furthermore, smtpd.py makes it difficult to subclass its classes by using auto-mangling "private" double-underscore attributes.</p>
<p>You may be able to use the following custom subclasses of smtpd classes, but I haven't tested this code:</p>
<pre><code>class RecipientValidatingSMTPChannel(smtpd.SMTPChannel):
def smtp_RCPT(self, arg):
print >> smtpd.DEBUGSTREAM, '===> RCPT', arg
if not self._SMTPChannel__mailfrom:
self.push('503 Error: need MAIL command')
return
address = self._SMTPChannel__getaddr('TO:', arg)
if not address:
self.push('501 Syntax: RCPT TO: <address>')
return
if self._SMTPChannel__server.is_valid_recipient(address):
self._SMTPChannel__rcpttos.append(address)
print >> smtpd.DEBUGSTREAM, 'recips:', self._SMTPChannel__rcpttos
self.push('250 Ok')
else:
self.push('550 No such user here')
class MailProcessorServer(smtpd.SMTPServer):
def handle_accept(self):
conn, addr = self.accept()
print >> smtpd.DEBUGSTREAM, 'Incoming connection from %s' % repr(addr)
channel = RecipientValidatingSMTPChannel(self, conn, addr)
def is_valid_recipient(self, address):
# insert your own tests here, return True if it's valid
return False
</code></pre>
http://stackoverflow.com/questions/1747713/more-efficient-method-for-this-calculationComment by Miles on More efficient method for this calculation?Miles2009-11-17T09:57:45Z2009-11-17T09:57:45Zi, r = divmod(a, d)http://stackoverflow.com/questions/1557546/what-separates-a-ruby-dsl-from-an-ordinary-apiComment by Miles on What separates a Ruby DSL from an ordinary APIMiles2009-10-19T09:47:43Z2009-10-19T09:47:43Z<a href="http://www.oreillynet.com/onlamp/blog/2007/05/the_is_it_a_dsl_or_an_api_ten.html" rel="nofollow">oreillynet.com/onlamp/blog/…</a>http://stackoverflow.com/questions/1564700/fastest-way-to-detect-if-duplicate-entry-exists-in-javascript-arrayComment by Miles on fastest way to detect if duplicate entry exists in javascript array?Miles2009-10-14T07:41:15Z2009-10-14T07:41:15ZMask: post a new question, instead of changing this one to a completely different question.http://stackoverflow.com/questions/1508675/breaking-a-string-into-an-array-based-on-a-character-eg-without-loosing-whitesComment by Miles on Breaking a string into an array based on a character eg. % without loosing whitespaces in C?Miles2009-10-02T10:03:51Z2009-10-02T10:03:51Z"it ignores all the white spaces": no it doesn't. Using the solution from the previous question with your new string prints three lines, "My", "very healthy", and "dog".http://stackoverflow.com/questions/1480559/changing-environment-variable-in-unix/1480579#1480579Comment by Miles on Changing environment variable in UNIXMiles2009-09-26T06:31:01Z2009-09-26T06:31:01Z... because it's not a subprocess, it's being interpreted by the shell in the same process.http://stackoverflow.com/questions/1470343/python-ctypes-copying-structures-contents/1470554#1470554Comment by Miles on Python ctypes: copying Structure's contentsMiles2009-09-24T10:02:57Z2009-09-24T10:02:57ZIt shouldn't; it's pretty easy to make mistakes or accidentally use old variables in an interactive session though.http://stackoverflow.com/questions/1470343/python-ctypes-copying-structures-contents/1470554#1470554Comment by Miles on Python ctypes: copying Structure's contentsMiles2009-09-24T09:24:59Z2009-09-24T09:24:59ZThose functions aren't supposed to be passed pointers, they're supposed to be the <code>ctypes</code> structure objects. If you want a function analogous to your C <code>copy_point</code>, do <code>dst[0] = src[0]</code>.http://stackoverflow.com/questions/1414325/is-headercontent-typetext-plain-necessary-at-all/1414345#1414345Comment by Miles on Is header('Content-Type:text/plain'); necessary at all?Miles2009-09-12T05:10:04Z2009-09-12T05:10:04ZYour <i>browser</i> doesn't use text/html as default: PHP does.http://stackoverflow.com/questions/1409295/set-function-signature-in-python/1409336#1409336Comment by Miles on Set function signature in PythonMiles2009-09-11T07:12:35Z2009-09-11T07:12:35ZNo, it's still not clear. What do you mean by "create a function"? What is that function supposed to do?http://stackoverflow.com/questions/1352587/code-golf-morse-code/1353898#1353898Comment by Miles on Code Golf: Morse codeMiles2009-08-30T22:13:47Z2009-08-30T22:13:47Z+1: nice solution to the problem of making the data long enough to handle punctuationhttp://stackoverflow.com/questions/1326374/are-regex-literals-always-regexp-objects/1326379#1326379Comment by Miles on Are /regex/ Literals always RegExp Objects?Miles2009-08-25T06:30:56Z2009-08-25T06:30:56ZNot exactly, with regards to special characters and escaping. With a regex literal, to match a single backspace, you do <code>/\\/</code>; with the constructor, you need <code>"\\\\"</code>.http://stackoverflow.com/questions/1320067/attempt-to-index-field-a-nil-value-error-when-it-isnt-in-luaComment by Miles on attempt to index field (a nil value) error when it isn't in luaMiles2009-08-24T03:21:21Z2009-08-24T03:21:21ZIf you want to get this question answered, I'd recommend stripping this code down a <i>lot</i> so that it's <i>only</i> as long as necessary to illustrate whatever you're trying to do, as well as posting code that doesn't have any external dependencies (and can simply be run via the <code>lua</code> command). <a href="http://catb.org/esr/faqs/smart-questions.html#volume" rel="nofollow">catb.org/esr/faqs/…</a>http://stackoverflow.com/questions/1319338/combining-two-lists-and-removing-duplicates-without-removing-duplicates-in-origiComment by Miles on Combining two lists and removing duplicates, without removing duplicates in original listMiles2009-08-23T20:13:16Z2009-08-23T20:13:16Z"its" is possessive, and does not use an apostrophe, like all possessive pronouns ("his" and "her"). Stefano's edit is grammatically correct.http://stackoverflow.com/questions/1309995/concrete-example-breaking-xor-encryption-with-five-bitsComment by Miles on concrete example breaking xor encryption with five bitsMiles2009-08-21T03:55:56Z2009-08-21T03:55:56ZHow about a concrete problem?http://stackoverflow.com/questions/1249531/how-to-get-a-javascript-objects-class/1249554#1249554Comment by Miles on How to get a JavaScript Object's Class?Miles2009-08-08T18:37:09Z2009-08-08T18:37:09ZThat should probably be <code>func.prototype</code> (yes, functions are objects, but the <code>prototype</code> property is only relevant on function objects).