User wbowers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T12:56:37Zhttp://stackoverflow.com/feeds/user/10078http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1527617/how-do-i-attach-a-jquery-event-handler-to-a-youtube-movie/1527662#15276620Answer by wbowers for How do I attach a jQuery event handler to a YouTube movie?wbowers2009-10-06T19:40:19Z2009-10-06T19:40:19Z<p>What you're looking for is the flash <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/external/ExternalInterface.html" rel="nofollow">ExternalInterface</a> class, which is used for communication from flash to javascript and from javascript to flash.</p>
http://stackoverflow.com/questions/1518522/python-most-common-element-in-a-list/1518588#15185881Answer by wbowers for Python most common element in a listwbowers2009-10-05T07:04:24Z2009-10-05T07:04:24Z<p>A one-liner:</p>
<pre><code>def most_common (lst):
return max(((item, lst.count(item)) for item in set(lst)), key=lambda a: a[1])[0]</code></pre>
http://stackoverflow.com/questions/1511981/how-to-examine-list-of-defined-functions-from-common-lisp-repl-prompt/1512395#15123952Answer by wbowers for How to examine list of defined functions from Common Lisp REPL promptwbowers2009-10-03T00:24:38Z2009-10-03T01:14:30Z<p>If you don't know what symbols you're looking for, but do know what packages you want to search, you can drastically reduce the amount of searching you have to do by only listing the symbols from those specific packages:</p>
<pre><code>(defun get-all-symbols (&optional package)
(let ((lst ())
(package (find-package package)))
(do-all-symbols (s lst)
(when (fboundp s)
(if package
(when (eql (symbol-package s) package)
(push s lst))
(push s lst))))
lst))
(get-all-symbols 'sb-thread) ; returns all the symbols in the SB-THREAD package</code></pre>
<p>The line <code>(get-all-symbols 'sb-thread)</code> does just that.</p>
<p>If you have an idea about what type of symbols you're looking for, and want to take a guess at their names, you can do this</p>
<pre><code>(apropos-list "mapc-") ; returns (SB-KERNEL:MAPC-MEMBER-TYPE-MEMBERS SB-PROFILE::MAPC-ON-NAMED-FUNS)
(apropos-list "map" 'cl) ; returns (MAP MAP-INTO MAPC MAPCAN MAPCAR MAPCON MAPHASH MAPL MAPLIST)</code></pre>
<p><code>(apropos-list)</code> returns all symbols whose name contains the string you pass in, and takes an optional package to search.</p>
<p>As far as figuring out what all those symbols do, well, try this: <a href="http://www.psg.com/~dlamkins/sl/chapter10.html" rel="nofollow">http://www.psg.com/~dlamkins/sl/chapter10.html</a></p>
http://stackoverflow.com/questions/110433/are-there-any-common-lisp-implementations-for-net/1512462#15124622Answer by wbowers for Are there any Common Lisp implementations for .Net?wbowers2009-10-03T00:53:17Z2009-10-03T00:53:17Z<p><a href="http://www.lsharp.org/" rel="nofollow">L Sharp .NET</a></p>
http://stackoverflow.com/questions/144985/programming-on-a-nintendo-ds/145042#1450423Answer by wbowers for Programming on a Nintendo DSwbowers2008-09-28T02:36:03Z2009-04-27T20:23:35Z<p>I haven't done any programming on the DS, but I have done some development on the GBA (Game Boy Advanced). If what you're looking to do is learn how to program embedded devices, that might be a good option for you (and certainly a cheaper one). There's even a free book you can get online: <a href="http://theharbourfamily.com/jonathan/?page%5Fid=89" rel="nofollow">Programming the Nintendo Gameboy Advanced</a>. I suggest the GBA because, as I've seen, there are a lot more resources online for learning how to program for it. One drawback is that it doesn't have wifi, which means you won't be able to do as many cool things as you would for the DS, but it's certainly a start!</p>
http://stackoverflow.com/questions/753190/programmatically-generate-video-or-animated-gif-in-python/753979#7539792Answer by wbowers for Programmatically generate video or animated GIF in Python?wbowers2009-04-15T22:24:43Z2009-04-15T22:24:43Z<p>It's not a python library, but mencoder can do that: <a href="http://www.mplayerhq.hu/DOCS/HTML/en/menc-feat-enc-images.html" rel="nofollow">Encoding from multiple input image files</a>. You can execute mencoder from python like this:</p>
<pre><code>import os
os.system("mencoder ...")
</code></pre>
http://stackoverflow.com/questions/214734/some-x86-asm-reference-tutorials/214737#2147372Answer by wbowers for Some x86 ASM Reference/Tutorials?wbowers2008-10-18T08:06:18Z2008-10-18T08:06:18Z<ul>
<li><a href="http://download.savannah.gnu.org/releases/pgubook/ProgrammingGroundUp-1-0-booksize.pdf" rel="nofollow">Programming from the Ground Up</a> (free book, highly recommended)</li>
<li><a href="http://en.wikibooks.org/wiki/X86_Assembly" rel="nofollow">x86 Assembly</a> (wikibooks.org)</li>
<li><a href="http://learn86.awardspace.co.uk/" rel="nofollow">Essential Resources for x86 Programmers</a></li>
</ul>
http://stackoverflow.com/questions/212715/opening-a-handle-to-a-device-in-python-on-windows/214727#2147271Answer by wbowers for Opening a handle to a device in Python on Windowswbowers2008-10-18T07:54:21Z2008-10-18T07:54:21Z<p>I'm not sure if that's possible. As an alternative, you could write a C/C++ program that does all that kernel space work for you and interface with it in Python via <a href="http://www.python.org/doc/2.5.2/lib/module-subprocess.html" rel="nofollow">the subprocess module</a> or <a href="http://www.language-binding.net/" rel="nofollow">Python C/C++ bindings</a> (and <a href="http://wiki.cacr.caltech.edu/danse/index.php/Writing_C_extensions_for_Python" rel="nofollow">another link</a> for that).</p>
http://stackoverflow.com/questions/214714/mutable-vs-immutable-objects/214719#2147191Answer by wbowers for Mutable vs immutable objectswbowers2008-10-18T07:39:54Z2008-10-18T07:39:54Z<p>A mutable object is simply an object that can be modified after it's created/instantiated, vs an immutable object that cannot be modified (see <a href="http://en.wikipedia.org/wiki/Immutable_object" rel="nofollow">the Wikipedia page</a> on the subject). An example of this in a programming language is Pythons lists and tuples. Lists can be modified (e.g., new items can be added after it's created) whereas tuples cannot.</p>
<p>I don't really think there's a clearcut answer as to which one is better for all situations. They both have their places.</p>
http://stackoverflow.com/questions/192367/in-django-how-do-i-notify-a-parent-when-a-child-is-saved-in-a-foreign-key-relatio/192525#1925259Answer by wbowers for In Django how do I notify a parent when a child is saved in a foreign key relationship?wbowers2008-10-10T18:18:56Z2008-10-11T04:13:21Z<p>What you want to look into is <a href="http://docs.djangoproject.com/en/dev/ref/signals/" rel="nofollow">Django's signals</a> (check out <a href="http://docs.djangoproject.com/en/dev/topics/signals/" rel="nofollow">this page</a> too), specifically the model signals--more specifically, the <strong>post_save</strong> signal. Signals are Django's version of a plugin/hook system. The post_save signal gets sent every time a model is saved, whether it's updated or created (and it'll let you know if it was created). This is how you'd use signals to get notified when an Activity has a Cancellation</p>
<pre><code>from django.db.models.signals import post_save
class Activity(models.Model):
name = models.CharField(max_length=50, help_text='Some help.')
entity = models.ForeignKey(CancellationEntity)
@classmethod
def cancellation_occurred (sender, instance, created, raw):
# grab the current instance of Activity
self = instance.activity_set.all()[0]
# do something
...
class Cancellation(models.Model):
activity = models.ForeignKey(Activity)
date = models.DateField(default=datetime.now().date())
description = models.CharField(max_length=250)
...
post_save.connect(Activity.cancellation_occurred, sender=Cancellation)</code></pre>
http://stackoverflow.com/questions/177323/how-to-read-the-last-row-with-sql-server/177325#1773251Answer by wbowers for how to read the last row with SQL Serverwbowers2008-10-07T05:36:35Z2008-10-07T06:38:13Z<p>You'll need some sort of uniquely identifying column in your table, like an auto-filling primary key or a datetime column (preferably the primary key). Then you can do this:</p>
<pre><code>SELECT * FROM table_name ORDER BY unique_column DESC LIMIT 1</code></pre>
<p>The <code>ORDER BY column</code> tells it to rearange the results according to that column's data, and the <code>DESC</code> tells it to reverse the results (thus putting the last one first). After that, the <code>LIMIT 1</code> tells it to only pass back one row.</p>
http://stackoverflow.com/questions/165883/python-object-attributes-methodology-for-access/165911#16591110Answer by wbowers for Python object attributes - methodology for accesswbowers2008-10-03T06:35:37Z2008-10-03T06:35:37Z<p>The generally accepted way of doing things is just using simple attributes, like so</p>
<pre><code>>>> class MyClass:
... myAttribute = 0
...
>>> c = MyClass()
>>> c.myAttribute
0
>>> c.myAttribute = 1
>>> c.myAttribute
1
</code></pre>
<p>If you do find yourself needing to be able to write getters and setters, then what you want to look for is "python class properties" and <a href="http://tomayko.com/writings/getters-setters-fuxors" rel="nofollow">this article</a> is a great place to start (albeit a little long)</p>
http://stackoverflow.com/questions/137950/how-does-cherrypy-handle-user-threads1How does cherrypy handle user threads?wbowers2008-09-26T05:47:57Z2008-09-30T06:52:22Z
<p>I'm working on a django app right and I'm using cherrypy as the server. Cherrypy creates a new thread for every page view. I'd like to be able to access all of these threads (threads responsible for talking to django) from within any of them. More specifically I'd like to be able to access the thread_data for each of these threads from within any of them. Is this possible? If so, how do I do it?</p>
http://stackoverflow.com/questions/136012/comet-and-jquery16Comet and jQuerywbowers2008-09-25T20:53:48Z2008-09-26T00:17:07Z
<p>I've done some research into server push with javascript and have found the general consensus to be that what I'm looking for lies in the "Comet" design pattern. Are there any good implementations of this pattern built on top of jQuery? If not, are there any good implementations of this pattern at all? And regardless of the answer to those questions, is there any documentation on this pattern from an implementation stand-point?</p>
http://stackoverflow.com/questions/88800/how-do-i-restore-from-a-drop-database-command-using-a-mysql-binary-log/88813#888133Answer by wbowers for How do I restore from a drop database command using a mysql binary log? wbowers2008-09-18T00:02:48Z2008-09-18T00:02:48Z<p>If you don't have a backup of the database, you're out of luck. <em>Drop</em>ing a database is permanent.</p>
http://stackoverflow.com/questions/81212/lighttpd-and-webdav-for-serving-a-subversion-repo0Lighttpd and WebDAV for serving a Subversion repowbowers2008-09-17T08:45:56Z2008-09-17T08:48:27Z
<p>I've configured (at least I've tried to configure) Lighty to enable the WebDAV plugin when I go to a certain URL. I don't get any errors, so it seems to be working. How, then, do I configure it to serve my subversion repositories (of which I have many)?</p>
http://stackoverflow.com/questions/81132/read-firefox-3-bookmarks/81156#811564Answer by wbowers for Read Firefox 3 bookmarkswbowers2008-09-17T08:34:26Z2008-09-17T08:34:26Z<p>You need the <a href="http://www.zentus.com/sqlitejdbc/" rel="nofollow">SQLite JDBC driver</a> (this page explains how to run queries on a SQLite database using that driver from within Java).</p>
http://stackoverflow.com/questions/70528/why-are-pythons-private-methods-not-actually-private18Why are Python's 'private' methods not actually private?wbowers2008-09-16T08:59:32Z2008-09-17T04:29:45Z
<p>Python gives us the ability to create 'private' methods and variables within a class by prepending double underscores to the name, like so: *__myPrivateMethod()*. How, then, can one explain this</p>
<pre><code>>>> class MyClass:
... def myPublicMethod(self):
... print 'public method'
... def __myPrivateMethod(self):
... print 'this is private!!'
...
>>> obj = MyClass()
>>> obj.myPublicMethod()
public method
>>> obj.__myPrivateMethod()
Traceback (most recent call last):
File "", line 1, in
AttributeError: MyClass instance has no attribute '__myPrivateMethod'
>>> dir(obj)
['_MyClass__myPrivateMethod', '__doc__', '__module__', 'myPublicMethod']
>>> obj._MyClass__myPrivateMethod()
this is private!!
</code></pre>
<p>What's the deal?!</p>
<p>I'll explain this a little for those who didn't quite get that.</p>
<pre><code>>>> class MyClass:
... def myPublicMethod(self):
... print 'public method'
... def __myPrivateMethod(self):
... print 'this is private!!'
...
>>> obj = MyClass()
</code></pre>
<p>What I did there is create a class with a public method and a private method and instantiate it.</p>
<p>Next, I call its public method.</p>
<pre><code>>>> obj.myPublicMethod()
public method
</code></pre>
<p>Next, I try and call its private method.</p>
<pre><code>>>> obj.__myPrivateMethod()
Traceback (most recent call last):
File "", line 1, in
AttributeError: MyClass instance has no attribute '__myPrivateMethod'
</code></pre>
<p>Everything looks good here; we're unable to call it. It is, in fact, 'private'. Well, actually it isn't. Running <em>dir()</em> on the object reveals a new magical method that python creates magically for all of your 'private' methods.</p>
<pre><code>>>> dir(obj)
['_MyClass__myPrivateMethod', '__doc__', '__module__', 'myPublicMethod']
</code></pre>
<p>This new method's name is always an underscore, followed by the class name, followed by the method name.</p>
<pre><code>>>> obj._MyClass__myPrivateMethod()
this is private!!
</code></pre>
<p>So much for encapsulation, eh?</p>
<p>In any case, I'd always heard Python doesn't support encapsulation, so why even try? What gives?</p>
http://stackoverflow.com/questions/69982/writing-a-firefox-plugin-for-parsing-a-custom-client-side-language3Writing a Firefox plugin for parsing a custom client-side languagewbowers2008-09-16T07:08:05Z2008-09-17T00:35:03Z
<p>I had an idea for a client-side language other than JavaScript, and I'd like to look into developing a Firefox plugin that would treat includes of this new language in a page, like <script type="newscript" src="path/script.ns" />, just as if it were a natively supported language. The plugin would do all of the language parsing and ideally be able to perform every operation on the browser and the html and css within the web page just as JavaScript can.</p>
<p>I've done a bunch of Googling and have found some articles on writing basic Firefox plugins, but nothing as complicated as this.</p>
<p>Is this even possible?</p>
http://stackoverflow.com/questions/75311/what-does-it-take-to-get-you-in-the-zone2What does it take to get you in the zone?wbowers2008-09-16T18:14:47Z2008-09-16T20:32:30Z
<p>That's right, <a href="http://en.wikipedia.org/wiki/Flow_(psychology)" rel="nofollow">the zone</a>. You've all been there at least once or twice. So how do <em>you</em> get to that point? Do you need peace and quite? Loud music? Lights on? Lights off? 10 screens? Mozart? Redbull? Or are you in the zone the second you touch any computer? I'd love to know!</p>
http://stackoverflow.com/questions/69909/is-it-better-to-write-new-code-software-for-python-3-0-or-python-2-6/70016#700164Answer by wbowers for Is it better to write new code/software for Python 3.0 or Python 2.6?wbowers2008-09-16T07:16:57Z2008-09-16T08:05:13Z<p>I'd say it depends on what project you're working on. Is this a personal project or something for work? If it's something for work, use 2.5 as <a href="http://www.python.org/download/releases/2.5.2/" rel="nofollow">it's the current official release</a>. If you're starting a small personal project and your intentions are to play around with new 3.0 features, or if a feature new to 3.0 is absolutely necessary for your project to exist, then I'd say jump on the 3.0 wagon. Otherwise, there's no reason to deviate from the official releases.</p>
<p>I'm working in 2.5 on all of my projects, both personal and for work.</p>
http://stackoverflow.com/questions/68675/why-did-you-become-a-programmer/70244#702440Answer by wbowers for Why did you become a programmer?wbowers2008-09-16T08:03:06Z2008-09-16T08:03:06Z<p>I wanted to do something with computers. My senior year in high school I took a class where I learned HTML, and the rest is history.</p>
<p>I continue to be a programmer because I absolutely couldn't imagine doing anything else. I love it.</p>
http://stackoverflow.com/questions/55363/best-tools-for-creating-website-wireframes/69853#698533Answer by wbowers for Best tools for creating website wireframeswbowers2008-09-16T06:39:07Z2008-09-16T06:39:07Z<p><a href="http://www.omnigroup.com/applications/omnigraffle/" rel="nofollow">OmniGraffle</a> is an <em>incredible</em> piece of software, not to mention it has a <a href="http://graffletopia.com/" rel="nofollow">companion website</a> for downloading free stencils.</p>
http://stackoverflow.com/questions/7973/user-interface-design/69833#698330Answer by wbowers for User Interface Designwbowers2008-09-16T06:35:15Z2008-09-16T06:35:15Z<p>The best book I've ever read on Usability/Interaction Design, and one of the best books I've read period, is a book called <a href="http://rads.stackoverflow.com/amzn/click/0470084111" rel="nofollow">About Face 3: The Essentials of Interaction Design</a> by Alan Cooper.</p>
<p>It's a fantastic book because it talks about a lot of fundamental concepts behind interface design for any type of interface, not just on the web. Understanding these concepts will help you make better creative decisions, especially when designing something that hasn't been design yet (like a new product or type of social website), not just help you copy what's already been done.</p>
http://stackoverflow.com/questions/69711/how-to-infer-coercions/69770#697700Answer by wbowers for How to infer coercions?wbowers2008-09-16T06:19:49Z2008-09-16T06:19:49Z<p>Could you give a little more clarification as to what exactly it is you're asking?</p>
<p>I have a slight idea, and if my idea is right then this answer should suffice as my answer. I believe you're talking about this from the perspective of someone who's creating a language, in which case you can look at a language like ActionScript 3 for an example. In AS3 you can typecast two different ways: 1) <em>NewType(object)</em>, or 2) <em>object as NewType</em>.</p>
<p>From an implementation standpoint I imaging every class should define it's own ways of converting to whichever types it <em>can</em> convert to (an Array can't really convert to an integer...or can it?). For example, if you try <em>Integer(myArrayObject)</em>, and myArrayObject does not define a way of converting to and Integer, you can either throw an exception or let it be and simply pass in the original object, uncasted.</p>
<p>My entire answer could be totally off though :-D Let me know if this isn't what you're looking for</p>
http://stackoverflow.com/questions/69257/what-are-the-best-books-maximum-3-on-microsoft-visual-web-developer-2008-expr/69708#697080Answer by wbowers for What are the best books (maximum 3) on Microsoft 'Visual Web Developer 2008 (Express)'?wbowers2008-09-16T06:03:51Z2008-09-16T06:03:51Z<p><a href="http://rads.stackoverflow.com/amzn/click/0789736659" rel="nofollow">The Microsoft Expression Web Developer's Guide to ASP.NET 3.5: Learn to create ASP.NET applications using Visual Web Developer 2008</a></p>
<p>This book got rave reviews on Amazon</p>
http://stackoverflow.com/questions/69676/mysql-asterisk-dialplans-and-call-forwarding/69689#696891Answer by wbowers for MySQL, Asterisk Dialplans and call forwardingwbowers2008-09-16T05:58:51Z2008-09-16T05:58:51Z<p><a href="http://scottstuff.net/blog/articles/2004/08/09/database-driven-call-forwarding-with-asterisk" rel="nofollow">This article</a> should do the trick. It's about 3 lines of code and some simple queries to add and remove forwarding rules.</p>
http://stackoverflow.com/questions/68645/python-static-variable/68770#687700Answer by wbowers for python static variablewbowers2008-09-16T02:05:49Z2008-09-16T02:12:25Z<p>Static methods in python are called <a href="http://pyref.infogami.com/classmethod" rel="nofollow">classmethod</a>s. Take a look at the following code</p>
<pre><code>>>> class MyClass:
... def myInstanceMethod(self):
... print 'output from an instance method'
... @classmethod
... def myStaticMethod(cls):
... print 'output from a static method'
>>> MyClass.myInstanceMethod()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unbound method myInstanceMethod() must be called [...]
>>> MyClass.myStaticMethod()
output from a static method
</code></pre>
<p>Notice that when we call the method <em>myInstanceMethod</em> we get an error, this is because it requires that method be called on an instance of this class. The method <em>myStaticMethod</em> is set as a classmethod using the <a href="http://www.python.org/dev/peps/pep-0318/" rel="nofollow">decorator</a> <em>@classmethod</em>.</p>
<p>Just for kicks and giggles, we could call <em>myInstanceMethod</em> on the class by passing in an instance of the class, like so</p>
<pre><code>>>> MyClass.myInstanceMethod(MyClass())
output from an instance method
</code></pre>
http://stackoverflow.com/questions/68601/svn-hosting-and-defect-tracking/68636#686360Answer by wbowers for SVN hosting (and defect tracking)wbowers2008-09-16T01:45:33Z2008-09-16T01:45:33Z<p>I've never used any (I have my own server), but <a href="http://www.svnhostingcomparison.com/" rel="nofollow">this page</a> lists a bunch. I can't speak as to the 'goodness' of any of them though.</p>
<p>I could, however, suggest that you look into getting your own server. I use a <a href="http://en.wikipedia.org/wiki/Virtual_private_server" rel="nofollow">VPS (Virtual Private Server)</a> with <a href="http://www.slicehost.com/" rel="nofollow">SliceHost</a> and host my repositories on that 'box'. SitePoint has an <a href="http://www.sitepoint.com/article/virtual-private-server/" rel="nofollow">article about VPSs</a> too.</p>
http://stackoverflow.com/questions/67794/what-skills-are-worth-learning-for-a-programming-career-and-or-resume/68245#682450Answer by wbowers for What skills are worth learning for a programming career and/or resume?wbowers2008-09-16T00:30:18Z2008-09-16T00:30:18Z<p>Problem solving and analytical skills are the most important attributes a developer should have. With those skills, a developer could do anything, learn any language, learn any tool.</p>
http://stackoverflow.com/questions/1527617/how-do-i-attach-a-jquery-event-handler-to-a-youtube-movie/1527662#1527662Comment by wbowers on How do I attach a jQuery event handler to a YouTube movie?wbowers2009-10-07T18:31:18Z2009-10-07T18:31:18ZYea, you're right.http://stackoverflow.com/questions/1524126/how-to-print-a-list-more-nicely/1524153#1524153Comment by wbowers on How to print a list more nicely?wbowers2009-10-06T08:20:37Z2009-10-06T08:20:37ZThe question was about printing a list.http://stackoverflow.com/questions/1518522/python-most-common-element-in-a-list/1518632#1518632Comment by wbowers on Python most common element in a listwbowers2009-10-05T07:37:20Z2009-10-05T07:37:20ZYou win. Gorgeous.http://stackoverflow.com/questions/599519/which-tutorial-on-clojure-is-best/600177#600177Comment by wbowers on Which tutorial on Clojure is best?wbowers2009-03-13T03:00:22Z2009-03-13T03:00:22ZI second this one. It's been a great resource for me.http://stackoverflow.com/questions/3553/one-piece-of-advice/30636#30636Comment by wbowers on One piece of advicewbowers2008-11-17T20:12:30Z2008-11-17T20:12:30ZBut what if it is?http://stackoverflow.com/questions/5727/what-are-the-barriers-to-understanding-pointers-and-what-can-be-done-to-overcome/5754#5754Comment by wbowers on What are the barriers to understanding pointers and what can be done to overcome them?wbowers2008-11-17T19:56:31Z2008-11-17T19:56:31ZFantastic explanation. I already had a basic understanding on pointers, but this really brings it home. Thanks!http://stackoverflow.com/questions/27827/what-are-good-books-about-security-hacking-and-computer-forensics/27879#27879Comment by wbowers on What are good books about security, hacking, and computer forensics?wbowers2008-10-30T08:23:35Z2008-10-30T08:23:35ZThis should probably be a comment on lainMH's posthttp://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industry/214559#214559Comment by wbowers on What surprised you the most about the software industry?wbowers2008-10-18T08:00:57Z2008-10-18T08:00:57ZThis one's a killer. I wish I could give it more votes.http://stackoverflow.com/questions/137950/how-does-cherrypy-handle-user-threads/151585#151585Comment by wbowers on How does cherrypy handle user threads?wbowers2008-10-04T20:55:41Z2008-10-04T20:55:41ZCan you be more specific?http://stackoverflow.com/questions/75311/what-does-it-take-to-get-you-in-the-zoneComment by wbowers on What does it take to get you in the zone?wbowers2008-09-16T20:57:09Z2008-09-16T20:57:09Zhm, I guess I was just confused. I saw this question, <a href="http://stackoverflow.com/questions/54607/what-are-the-best-movies-about-geeksprogrammershackers-for-inspiration" rel="nofollow" title="what are the best movies about geeksprogrammershackers for inspiration">stackoverflow.com/questions/54607/…</a>, and figured it was ok, seeing as how it has a ton of up votes. Seems like the same type of question to me.http://stackoverflow.com/questions/70528/why-are-pythons-private-methods-not-actually-private/70900#70900Comment by wbowers on Why are Python's 'private' methods not actually private?wbowers2008-09-16T17:51:37Z2008-09-16T17:51:37ZVery cool. I had no idea you could do that.http://stackoverflow.com/questions/70528/why-are-pythons-private-methods-not-actually-private/70562#70562Comment by wbowers on Why are Python's 'private' methods not actually private?wbowers2008-09-16T09:11:41Z2008-09-16T09:11:41ZNot at all. I'm simply making the point that it's odd to give the developer an easy, and in my opinion way to magical, way of accessing 'private' properties.http://stackoverflow.com/questions/69982/writing-a-firefox-plugin-for-parsing-a-custom-client-side-language/70289#70289Comment by wbowers on Writing a Firefox plugin for parsing a custom client-side languagewbowers2008-09-16T08:25:25Z2008-09-16T08:25:25ZThis is a helpful insight and a good option for this project.http://stackoverflow.com/questions/69982/writing-a-firefox-plugin-for-parsing-a-custom-client-side-language/70239#70239Comment by wbowers on Writing a Firefox plugin for parsing a custom client-side languagewbowers2008-09-16T08:11:42Z2008-09-16T08:11:42ZFantastic! I don't want to go through JavaScript at all, but I do want to be able to manipulate the DOM. For things like alert boxes, once again, I'd want to go straight to Firefox and whatever API they provide for stuff like that.http://stackoverflow.com/questions/69982/writing-a-firefox-plugin-for-parsing-a-custom-client-side-language/70104#70104Comment by wbowers on Writing a Firefox plugin for parsing a custom client-side languagewbowers2008-09-16T08:08:27Z2008-09-16T08:08:27ZThis is more of a theoretical project. A "can it be done?", "ok, let's do it" kind of thing. I'm not looking to develop anything that's supposed to put food on the table in a language you need a plugin to render.