User akdom - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T08:36:28Zhttp://stackoverflow.com/feeds/user/145http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1823/writing-a-conways-game-of-life-program15Writing A "Conway's Game of Life" Programakdom2008-08-05T02:17:45Z2009-12-02T17:03:32Z
<p>Alright, so I've always wanted to write myself a nice little <strong>Game of Life</strong> program where you could play with the rules and adjust the number of cells and such; I've just never really had the time to mess around to do this (until recently). I understand the basic algorithm and such (if you don't, go to the <a href="http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life" rel="nofollow">Game of Life</a> Wikipedia page to check it out.) but only have a little experience with GUI programming. I'm considering doing this in python, but I was really wanting to figure out how to go about doing this in general, so feel free to give code snippets in your language of choice.</p>
<p>To summarise:</p>
<ul>
<li><strong>How would you go about programming a "Conway's Game of Life" simulation in your language of choice?</strong></li>
</ul>
http://stackoverflow.com/questions/94875/image-processing-in-python1Image Processing, In Python?akdom2008-09-18T17:47:04Z2009-11-29T08:53:51Z
<p>I've recently come across a problem which requires at least a basic degree of image processing, can I do this in Python, and if so, with what?</p>
http://stackoverflow.com/questions/972/adding-a-method-to-an-existing-object17Adding a Method to an Existing Objectakdom2008-08-04T02:17:51Z2009-09-01T23:55:53Z
<p>I've read that it is possible to add a method to an existing object (e.g. not in the class definition) in <strong>python</strong>, I think this is called Monkey Patching (or in some cases Duck Punching). I understand that it's not always a good decision to do so. But, how might one do this?</p>
<p>And if you don't know python, can your language of choice do this? If so, how?</p>
<p><strong>UPDATE 8/04/2008 00:21:01 EST:</strong></p>
<p>That looks like a good answer John Downey, I tried it but it appears that it ends up being not a <em>true</em> method. Your example defines the new patch function with an argument of <strong>self</strong>, but if you write actual code that way, the now patched class method asks for an argument named self (it doesn't automagically recognize it as the identity class, which is what would happen if defined within the class definition), meaning you have to call <strong>class.patch(class)</strong> instead of just <strong>class.patch()</strong> if you want the same functionality as a <em>true</em> method. <strong>It looks like python isn't really treating it as a method, but more just as a variable which happens to be a function</strong> (and as such is callable). Is there any way to attach an actual method to a class?</p>
<p>Oh, and Ryan, that isn't exactly what I was looking for (it isn't builtin functionality), but it is quite cool nonetheless.</p>
<p><strong>UPDATE 8/05/2008 22:24:01 EST:</strong></p>
<p>Thank you for the well presented answer Jason Pratt, that was exactly what I was looking for.</p>
http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without14What Language Feature Can You Just Not Live Without?akdom2008-09-20T20:09:16Z2009-08-20T21:16:29Z
<p>I always miss python's built-in doc strings when working in other languages. I know this may seem odd, but it allows me to cut down significantly on excess comments while still providing a clean description of my code and any interfaces therein.</p>
<ul>
<li><em>What Language Feature Can <strong>You</strong> Just Not Live Without?</em></li>
</ul>
<p>If someone were building a new language and they asked you what one feature they absolutely must include, what would it be?</p>
<h3>This is getting kind of long, so I figured I'd do my best to summarize:</h3>
<p>Paraphrased to be language agnostic. If you know of a language which uses something mentioned, please at it in the parenthesis to the right of the feature. And if you have a better format for this list, by all means try it out (if it doesn't seem to work, I'll just roll back).</p>
<p>Regular Expressions ~ <a href="http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without#109203">torial</a> (Perl)</p>
<p>Garbage Collection ~ <a href="http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without#109250">SaaS Developer</a> (Python, Perl, Ruby, Java, .NET)</p>
<p>Anonymous Functions ~ <a href="http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without#109200">Vinko Vrsalovic</a> (Lisp, Python)</p>
<p>Arithmetic Operators ~ <a href="http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without#109392">Jeremy Ross</a> (Python, Perl, Ruby, Java, C#, Visual Basic, C, C++, Pascal, Smalltalk, etc.)</p>
<p>Exception Handling ~ <a href="http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without#109225">torial</a> (Python, Java, .NET)</p>
<p>Pass By Reference ~ <a href="http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without#109225">Chris</a> (Python)</p>
<p>Unified String Format <a href="http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without#109225">WalloWizard</a> (C#)</p>
<p>Generics ~ <a href="http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without#109209">torial</a> (Python, Java, C#)</p>
<p>Integrated Query Equivalent to LINQ ~ <a href="http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without#109209">Vyrotek</a> (C#)</p>
<p>Namespacing ~ <a href="http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without#109202">Garry Shutler</a> ()</p>
<p>Short Circuit Logic ~ <a href="http://stackoverflow.com/questions/109193/what-language-feature-can-you-just-not-live-without/109554#109554">Adam Bellaire</a> ()</p>
http://stackoverflow.com/questions/384759/pil-and-numpy2PIL and numpyakdom2008-12-21T18:21:32Z2009-08-15T19:54:28Z
<p>Alright, I'm toying around with converting a PIL image object back and forth to a numpy array so I can do some faster pixel by pixel transformations than PIL's PixelAccess object would allow. I've figured out how to place the pixel information in a useful 3D numpy array by way of:</p>
<pre><code>pic = Image.open("foo.jpg")
pix = numpy.array(pic.getdata()).reshape(pic.size[0], pic.size[1], 3)
</code></pre>
<p>But I can't seem to figure out how to load it back into the PIL object after I've done all my awesome transforms. I'm aware of the <strong>putdata()</strong> method, but can't quite seem to get it to behave.</p>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/987669/tying-in-to-django-admins-model-history4Tying in to Django Admin's Model Historyakdom2009-06-12T16:32:47Z2009-07-31T00:16:21Z
<p><strong>The Setup:</strong></p>
<blockquote>
<ul>
<li>I'm working on a Django application which allows users to create an object in the database and then go back and edit it as much as they desire.</li>
<li>Django's admin site keeps a history of the changes made to objects through the admin site.</li>
</ul>
</blockquote>
<p><strong>The Question:</strong></p>
<blockquote>
<ul>
<li><strong>How do I hook my application in to the admin site's change history so that I can see the history of changes users make to their "content" ?</strong></li>
</ul>
</blockquote>
http://stackoverflow.com/questions/19151/build-a-basic-python-iterator9Build a Basic Python Iteratorakdom2008-08-21T00:36:11Z2009-07-09T08:23:53Z
<p>How would one create an iterative function (or iterator object) in python?</p>
http://stackoverflow.com/questions/988282/admin-form-integration-for-custom-model-fields-in-django0Admin Form Integration for Custom Model Fields in Djangoakdom2009-06-12T18:37:10Z2009-06-28T06:00:02Z
<p>I need a model field composed of a numeric string for a Django app I'm working on and since one doesn't exist I need to roll my own. Now I understand how "get_db_prep_value" and such work, and how to extend the Model itself (the django documentation on <a href="http://docs.djangoproject.com/en/1.0/howto/custom-model-fields/" rel="nofollow">custom model fields</a> is an invaluable resource.), but for the life of me I can't seem to figure out how to make the admin interface error properly based on input constraints.</p>
<blockquote>
<p><strong>How do I make the associated form field in the admin error on incorrect input?</strong></p>
</blockquote>
http://stackoverflow.com/questions/179745/speeding-up-java10Speeding Up Javaakdom2008-10-07T18:28:03Z2009-06-23T03:46:29Z
<p>This is really two questions, but they are so similar, and to keep it simple, I figured I'd just roll them together:</p>
<ul>
<li><p><strong>Firstly</strong>: Given an established Java project, what are some decent ways to speed it up beyond just plain in-code optimization?</p></li>
<li><p><strong>Secondly</strong>: When writing a program from scratch in Java, what are some good ways to greatly improve performance?</p></li>
</ul>
<p><strong>Please stay away from general optimization techniques unless they are <em>Java specific</em>.</strong></p>
<p>I asked this about <a href="http://stackoverflow.com/questions/172720/speeding-up-python">Python</a> and <a href="http://stackoverflow.com/questions/177122/speeding-up-perl">Perl</a> earlier. For Java I'm wondering what good tips/tricks are out there to improve performance and if there are any particularly good Java profilers.</p>
http://stackoverflow.com/questions/41785/learning-resources-on-parsers-interpreters-and-compilers7Learning Resources on Parsers, Interpreters, and Compilersakdom2008-09-03T14:25:57Z2009-06-17T07:58:49Z
<p>I've been wanting to play around with writing my own language for a while now (ostensibly for the learning experience) and as such need to be relatively grounded in the construction of Parsers, Interpreters, and Compilers. So:</p>
<ul>
<li><strong>Does anyone know of any good resources on constructing Parsers, Interpreters, and Compilers?</strong></li>
</ul>
<p>EDIT: I'm not looking for compiler-compilers/parser-compilers such as Lex, Yacc and Bison...</p>
http://stackoverflow.com/questions/965082/option-level-control-of-select-inputs-using-django-forms-api0<option> Level control of Select inputs using Django Forms APIakdom2009-06-08T14:07:53Z2009-06-09T10:31:58Z
<p>I'm wanting to add a label= attribute to an option element of a Select form input using the Django Forms API without overwriting the Select widget's render_options method. Is this possible, if so, how?</p>
<p>Note: I'm wanting to add a label directly to the option (this <em>is</em> valid in the XHTML Strict standard) not an optgroup.</p>
http://stackoverflow.com/questions/1831/what-can-someone-do-to-get-organized-around-here20What Can Someone Do to Get Organized Around Here?akdom2008-08-05T02:43:58Z2009-05-20T19:55:43Z
<p>For years I have been trying to find an organizational scheme which works for me. </p>
<p>I've tried digital calendars (<a href="http://calendar.google.com" rel="nofollow">Google Calendar</a>, My WebCal at work, <a href="http://chandlerproject.org/" rel="nofollow">Chandler</a>, <a href="http://www.mozilla.org/projects/calendar/sunbird/" rel="nofollow">Sunbird</a>) to no avail as of yet. I've played around with <a href="http://www.rememberthemilk.com/" rel="nofollow">Remember the Milk</a> (which is a pretty cool app in and of itself...) but I never quite got in the groove of actually using it and checking it. I've even done the _**physical**_ calendar thing (the horror). Maybe the best scheme I've found (which during the summer has gone to rot) is a wall of color-coded sticky notes... organized colorful chaos if you will. Oh I do get things done (appointments, projects, etc.)... but it would be nice to actually have things layed out in a cleaner fashion. Then I wouldn't have to worry so much about if I've forgotten something.</p>
<p>The Question:</p>
<ul>
<li><strong>How do people organize their life, their work, their software projects? Do you use software, some physical scheme, or what? Are people <em>actually</em> organized?</strong></li>
</ul>
<p>I guess the tie-in to software development is: I think I'd have more brain cycles available to get things coded if I had to spend less keeping everything else in order. I do think this is as, or even more important than, having a good monitor, keyboard, and chair. So what say you the people?</p>
http://stackoverflow.com/questions/172720/speeding-up-python16Speeding Up Pythonakdom2008-10-05T21:46:00Z2009-05-14T15:15:48Z
<p>This is really two questions, but they are so similar, and to keep it simple, I figured I'd just roll them together:</p>
<ul>
<li><p><strong>Firstly</strong>: Given an established python project, what are some decent ways to speed it up beyond just plain in-code optimization?</p></li>
<li><p><strong>Secondly</strong>: When writing a program from scratch in python, what are some good ways to greatly improve performance?</p></li>
</ul>
<p>For the first question, imagine you are handed a decently written project and you need to improve performance, but you can't seem to get much of a gain through refactoring/optimization. What would you do to speed it up in this case short of rewriting it in something like C?</p>
http://stackoverflow.com/questions/163236/where-can-i-find-a-list-of-standard-http-header-values2Where can I find a List of Standard HTTP Header Values?akdom2008-10-02T16:11:24Z2009-05-01T08:41:01Z
<p>I'm looking for all the current standard header values a web server would generally receive. An example would be things like "what will the header look like when coming from a Mac running OS X Leopard and Camino installed?" or "what will the header look like when coming from Fedora 9 running Firefox 3.0.1 versus SuSe running Konqueror?"</p>
<p><a href="http://stackoverflow.com/questions/163236/where-can-i-find-a-list-of-standard-http-header-values#163306">PConroy</a> gave an <a href="http://jquery.thewikies.com/browser/test.html" rel="nofollow">example from JQuery</a> tending towards what I'm looking for. <strong>What I want though are the actual example headers.</strong></p>
http://stackoverflow.com/questions/92249/how-do-you-come-up-with-new-ideas2How do You Come Up With New Ideas?akdom2008-09-18T12:54:01Z2009-03-18T19:10:59Z
<p>Whenever I've come up with a new idea of something interesting to code, it has always been the "Eureka!" moment type deal. <strong>How do you come up with great programming ideas</strong>, and if you are having trouble coming up with something, how do you get past that block?</p>
http://stackoverflow.com/questions/183033/speeding-up-c11Speeding Up C#akdom2008-10-08T14:22:59Z2009-02-06T21:54:14Z
<p>This is really two questions, but they are so similar, and to keep it simple, I figured I'd just roll them together:</p>
<ul>
<li><p><strong>Firstly</strong>: Given an established C# project, what are some decent ways to speed it up beyond just plain in-code optimization?</p></li>
<li><p><strong>Secondly</strong>: When writing a program from scratch in C#, what are some good ways to greatly improve performance?</p></li>
</ul>
<p><strong>Please stay away from general optimization techniques unless they are <em>C# specific</em>.</strong></p>
<p>This has previously been asked for <a href="http://stackoverflow.com/questions/172720/speeding-up-python">Python</a>, <a href="http://stackoverflow.com/questions/177122/speeding-up-perl">Perl</a>, and <a href="http://stackoverflow.com/questions/179745/speeding-up-java">Java</a>.</p>
http://stackoverflow.com/questions/359706/how-do-you-draw-transparent-polygons-with-python/433638#4336382Answer by akdom for How do you draw transparent polygons with Python?akdom2009-01-11T20:35:37Z2009-02-03T21:14:54Z<p>What I've had to do when using PIL to draw transparent images is create a color layer, an opacity layer with the polygon drawn on it, and composited them with the base layer as so:</p>
<pre><code>color_layer = Image.new('RGBA', base_layer.size, fill_rgb)
alpha_mask = Image.new('L', base_layer.size, 0)
alpha_mask_draw = ImageDraw.Draw(alpha_mask)
alpha_mask_draw.polygon(self.outline, fill=fill_alpha)
base_layer = Image.composite(color_layer, base_layer, alpha_mask)
</code></pre>
<p>When using Image.Blend I had issues with strange outlining behaviors on the drawn polygons.</p>
<p>The only issue with this approach is that the performance is abysmal when drawing a large number of reasonably sized polygons. A much faster solution would be something like "manually" drawing the polygon on a numpy array representation of the image.</p>
http://stackoverflow.com/questions/8948/accessing-mp3-meta-data-with-python8Accessing mp3 Meta-Data with Pythonakdom2008-08-12T15:16:00Z2009-01-28T17:55:38Z
<p>What is the best way to retrieve mp3 metadata in python? I've seen a couple frameworks out there, but I'm unsure as to which would be the best to use.... Any ideas?</p>
http://stackoverflow.com/questions/177122/how-can-i-speed-up-my-perl-program10How can I speed up my Perl program?akdom2008-10-07T03:23:24Z2009-01-12T12:39:11Z
<p>This is really two questions, but they are so similar, and to keep it simple, I figured I'd just roll them together:</p>
<ul>
<li><p><strong>Firstly</strong>: Given an established Perl project, what are some decent ways to speed it up beyond just plain in-code optimization?</p></li>
<li><p><strong>Secondly</strong>: When writing a program from scratch in Perl, what are some good ways to greatly improve performance?</p></li>
</ul>
<p>For the first question, imagine you are handed a decently written project and you need to improve performance, but you can't seem to get much of a gain through refactoring/optimization. What would you do to speed it up in this case short of rewriting it in something like C?</p>
<p><strong>Please stay away from general optimization techniques unless they are <em>Perl specific</em>.</strong></p>
<p>I asked this about <a href="http://stackoverflow.com/questions/172720/speeding-up-python">Python</a> earlier, and I figured it might be good to do it for other languages (I'm especially curious if there are corollaries to <a href="http://psyco.sourceforge.net/" rel="nofollow">psycho</a> and <a href="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/" rel="nofollow">pyrex</a> for Perl).</p>
http://stackoverflow.com/questions/98205/what-cross-browser-javascript-libraries-are-out-there9What Cross-Browser Javascript Libraries Are Out There?akdom2008-09-19T00:06:11Z2008-11-20T08:57:51Z
<p>I'm gearing up to do some AJAX style client side Javascript in the near future and I've heard rave reviews of JQuery when it comes to this realm. What I'm wondering is:</p>
<ul>
<li><strong>What are all the cross browser Javascript libraries out there?</strong></li>
</ul>
<p>If you've used something, please share your experiences. And do your best to avoid bringing religion into the subject.</p>
http://stackoverflow.com/questions/7272/of-ways-to-count-the-limitless-primes2Of Ways to Count the Limitless Primesakdom2008-08-10T18:11:08Z2008-10-28T06:30:04Z
<p>Alright, so maybe I shouldn't have shrunk this question sooo much... I have seen the post on <a href="http://beta.stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers" rel="nofollow">the most efficient way to find the first 10000 primes</a>. I'm looking for <strong>all possible ways</strong>. The goal is to have a one stop shop for primality tests. Any and all tests people know for finding prime numbers are welcome.</p>
<p>And so:</p>
<ul>
<li><strong>What are all the different ways of finding primes?</strong></li>
</ul>
http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn/235840#2358400Answer by akdom for What's the next thing on your list to learn?akdom2008-10-25T03:27:59Z2008-10-25T03:27:59Z<p>Writing a basic language. The primary goal of being to better understand compiler theory and to gain insight into how to write many of the constructs I use every day. Also, it would just be really cool to play around with my own language.</p>
http://stackoverflow.com/questions/220609/what-got-you-started-in-programming/220790#2207900Answer by akdom for What got you started in programming?akdom2008-10-21T04:51:11Z2008-10-21T04:51:11Z<p>I wanted to capture the magic smoke.</p>
<p>Still trying, but I'm getting closer I swear!</p>
<p>Unleashing it is easy, capturing it is hard.</p>
http://stackoverflow.com/questions/217379/best-resources-for-moving-from-web-development-with-rails-to-desktop-applications/217487#2174873Answer by akdom for Best resources for moving from web development with Rails to desktop applications with Python?akdom2008-10-20T03:57:34Z2008-10-20T14:24:26Z<p>My first question is whether you have done much work in python before. Are you already familiar with standard python idioms as well as the module library? If not, take a look a couple of the <a href="http://stackoverflow.com/questions/92230/python-beyond-the-basics#92269">threads</a> out <a href="http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python">there</a> on SO. They have invaluable resources on learning python standard practice (and all the cool things you can do).</p>
<p>In terms of good GUI APIs for Python, there is a <a href="http://stackoverflow.com/questions/93930/what-python-gui-apis-are-out-there">nice little thread</a> on this very topic.</p>
<p>If you would like to get a look at a well used python program's source code, I might recommend the original <a href="http://download.bittorrent.com/dl/" rel="nofollow">BitTorrent client</a> (<strong>note:</strong> link is to the linux source), as it is both written in python <em>and</em> used by a massive user base.</p>
<p>You might also take a look at this thread regarding a <a href="http://stackoverflow.com/questions/2933/an-executable-python-app">single python executable on each of Windows/Mac/Linux</a>.</p>
http://stackoverflow.com/questions/214536/python-templates-for-web-designers/214666#2146663Answer by akdom for Python templates for web designersakdom2008-10-18T06:14:36Z2008-10-18T17:12:39Z<p><a href="http://docs.djangoproject.com/en/dev/topics/templates/#topics-templates" rel="nofollow">Django's templating engine</a> is quite decent. It's pretty robust while not stepping on too many toes. If you're working with Python I would recommend it. I don't know how to divorce it from Django, but I doubt it would be very difficult seeing as Django is quite modular.</p>
<p><strong>EDIT:</strong> Apparently the <a href="http://docs.djangoproject.com/en/dev/ref/templates/api/#configuring-the-template-system-in-standalone-mode" rel="nofollow">mini-guide to using Django's templating engine standalone</a> was sitting in front of me already, thanks <a href="http://stackoverflow.com/users/6760/insin">insin</a>.</p>
http://stackoverflow.com/questions/213973/what-kind-of-strange-funny-setups-have-you-seen-to-make-something-work/214671#2146710Answer by akdom for What kind of strange/funny setups have you seen to make something work.akdom2008-10-18T06:20:32Z2008-10-18T06:20:32Z<p>Where I worked our server room had one door. When the temperature got above a comfortable level we used to jam a 2.5x2.5 foot fan in the door to cool it down.</p>
<p>Though this may be standard, we retired our file server to being the office timeclock.</p>
<p>Old laptops (with bad batteries) work wonderfully as desktops.</p>
http://stackoverflow.com/questions/214615/will-google-android-ever-support-net/214662#2146621Answer by akdom for Will Google Android ever support .NET?akdom2008-10-18T06:09:17Z2008-10-18T06:09:17Z<p>A modified port of <a href="http://www.mono-project.com/Main_Page" rel="nofollow">Mono</a> is also entirely possible.</p>
http://stackoverflow.com/questions/68327/change-command-method-for-tkinter-button-in-python/68524#685243Answer by akdom for Change command Method for Tkinter Button in Pythonakdom2008-09-16T01:24:37Z2008-10-16T00:44:03Z<p>Though <a href="http://stackoverflow.com/questions/68327/change-command-method-for-tkinter-button-in-python#68455">Eli Courtwright's</a> program will work fine¹, what you really seem to want though is just a way to reconfigure after instantiation any attribute which you could have set when you instantiated². How you do so is by way of the configure() method.</p>
<pre><code>from Tkinter import Tk, Button
def goodbye_world():
print "Goodbye World!\nWait, I changed my mind!"
button.configure(text = "Hello World!", command=hello_world)
def hello_world():
print "Hello World!\nWait, I changed my mind!"
button.configure(text = "Goodbye World!", command=goodbye_world)
root = Tk()
button = Button(root, text="Hello World!", command=hello_world)
button.pack()
root.mainloop()
</code></pre>
<p>¹ "fine" if you use only the mouse; if you care about tabbing and using [Space] or [Enter] on buttons, then you will have to implement (duplicating existing code) keypress events too. Setting the <code>command</code> option through <code>.configure</code> is much easier.</p>
<p>² the only attribute that can't change after instantiation is <code>name</code>.</p>
http://stackoverflow.com/questions/192957/efficiently-querying-one-string-against-multiple-regexes/193000#1930005Answer by akdom for Efficiently querying one string against multiple regexes.akdom2008-10-10T21:00:59Z2008-10-11T21:36:32Z<p>10,000 regexen eh? <a href="http://stackoverflow.com/questions/192957/efficiently-querying-one-string-against-multiple-regexes#192975">Eric Wendelin's</a> suggestion of a hierarchy seems to be a good idea. Have you thought of reducing the enormity of these regexen to something like a tree structure?</p>
<p>As a simple example: All regexen requiring a number could branch off of one regex checking for such, all regexen not requiring one down another branch. In this fashion you could reduce the number of actual comparisons down to a path along the tree instead of doing every single comparison in 10,000.</p>
<p>This would require decomposing the regexen provided into genres, each genre having a shared test which would rule them out if it fails. In this way you could theoretically reduce the number of actual comparisons dramatically.</p>
<p>If you had to do this at run time you could parse through your given regular expressions and "file" them into either predefined genres (easiest to do) or comparative genres generated at that moment (not as easy to do).</p>
<p>Your example of comparing "hello" to "[H|h]ello" and ".{0,20}ello" won't really be helped by this solution. A simple case where this could be useful would be: if you had 1000 tests that would only return true if "ello" exists somewhere in the string and your test string is "goodbye;" you would only have to do the one test on "ello" and know that the 1000 tests requiring it won't work, and because of this, you won't have to do them.</p>
http://stackoverflow.com/questions/610/gui-programming-apis8GUI Programming APIsakdom2008-08-03T03:01:47Z2008-10-09T16:01:33Z
<p>Alright, this is a rather odd question that doesn't have one true answer:</p>
<blockquote>
<p>What is the <strong>* Best || Easiest to Use || Most Powerful || Cleanest *</strong> GUI API or library (tk, SWING, Qt, etc.) you have had the privilege to use?</p>
</blockquote>
<p>I've had conversations with friends about how annoying <em>XYZ API</em> was to deal with and how someone could build a better one, and I was curious what other's thoughts were on the subject. Is there a good and straightforward way to implement a GUI from the programmer's standpoint, and has someone done it yet?</p>
http://stackoverflow.com/questions/988282/admin-form-integration-for-custom-model-fields-in-django/988304#988304Comment by akdom on Admin Form Integration for Custom Model Fields in Djangoakdom2009-06-12T19:06:57Z2009-06-12T19:06:57ZBut how do you integrate this with the admin interface?http://stackoverflow.com/questions/384759/pil-and-numpy/384926#384926Comment by akdom on PIL and numpyakdom2008-12-23T19:10:38Z2008-12-23T19:10:38ZFirst, shouldn't it be pic.putdata(data)? And numpy.asarray(pic) produces a readonly array, so you need to call numpy.array(pic), and you didn't answer the question... from the link you provided it appears to be pic = Image.fromarray(pix). Fix your answer and I'll accept it.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234535#234535Comment by akdom on What is your best programmer joke?akdom2008-10-25T04:10:53Z2008-10-25T04:10:53ZThe second paragraph is a little off, but the final punchline is so incredibly true....http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234924#234924Comment by akdom on What is your best programmer joke?akdom2008-10-25T04:07:37Z2008-10-25T04:07:37ZI heard the joke as sheep, and the punchline was:
The programmer said: Oh no, AN EDGE CASE!http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234732#234732Comment by akdom on What is your best programmer joke?akdom2008-10-25T04:03:20Z2008-10-25T04:03:20ZPython: There is only one type of gun, it is gold plated, very comfortable to hold, and has instructions engraved on it, but for some reason when you pull the trigger it acts exactly like the C gun.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234152#234152Comment by akdom on What is your best programmer joke?akdom2008-10-25T03:35:47Z2008-10-25T03:35:47ZThat punch line fits a related, but not the same, joke. The engine wasn't the issue, the brakes were.http://stackoverflow.com/questions/235839/how-do-i-indent-multiple-lines-quickly-in-vi/235841#235841Comment by akdom on How do I indent multiple lines quickly in vi?akdom2008-10-25T03:31:06Z2008-10-25T03:31:06Z<shift>-v also works to select a line in Vim.http://stackoverflow.com/questions/214615/will-google-android-ever-support-net/214662#214662Comment by akdom on Will Google Android ever support .NET?akdom2008-10-18T18:14:37Z2008-10-18T18:14:37Z@ddmitrov: The question was whether the android platform with EVER support .NET, not whether it will within the next three years. I was merely positing that since Mono is an open source implementation of .NET it would be easier to construct an android version of Mono than to start from scratch.http://stackoverflow.com/questions/213757/why-do-people-use-java/213764#213764Comment by akdom on Why do people use Java?akdom2008-10-17T21:47:13Z2008-10-17T21:47:13ZThe team working on C# (and I assume the breadth of .NET) actually talks with Mono developers. There are reasons Microsoft put the .NET spec out there for people to see even if they won't share their source. One of which is, that it makes the "cross-platform" argument plausible.http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185712#185712Comment by akdom on What is the best comment in source code you have ever encountered?akdom2008-10-11T22:18:08Z2008-10-11T22:18:08ZAnd on Monday you can count on it only being worth 8.http://stackoverflow.com/questions/192957/efficiently-querying-one-string-against-multiple-regexes/193000#193000Comment by akdom on Efficiently querying one string against multiple regexes.akdom2008-10-11T21:24:40Z2008-10-11T21:24:40ZI don't know of any libraries that do this, but you could write something to parse the regexen and "file" those you have under testable cases. Even if you can only do this very broadly, you could possibly cut the time to execute significantly by ruling out large swaths of what doesn't fit.http://stackoverflow.com/questions/192761/where-do-you-go-for-inspiration-outside-of-technical-arenasComment by akdom on Where do you go for inspiration outside of technical arenas?akdom2008-10-10T20:21:38Z2008-10-10T20:21:38ZThis isn't exactly the same, but since it's along similar lines I thought I might post the link <a href="http://stackoverflow.com/questions/92249/how-do-you-come-up-with-new-ideas" rel="nofollow" title="how do you come up with new ideas">stackoverflow.com/questions/92249/…</a>.http://stackoverflow.com/questions/179858/hidden-features-of-stackoverflow/179864#179864Comment by akdom on Hidden features of Stackoverflowakdom2008-10-08T13:39:57Z2008-10-08T13:39:57ZI very much agree.http://stackoverflow.com/questions/179858/hidden-features-of-stackoverflow/179864#179864Comment by akdom on Hidden features of Stackoverflowakdom2008-10-07T19:33:57Z2008-10-07T19:33:57ZTake a look a the originating post <a href="http://stackoverflow.com/questions/20830/firefox-and-ie7-users-here-is-your-stackoverflow-search-plugin" rel="nofollow" title="firefox and ie7 users here is your stackoverflow search plugin">stackoverflow.com/questions/20830/…</a> . You will need to adjust it since that was for beta.stackoverflow.com (if it doesn't still work). But you can manually add it with that.http://stackoverflow.com/questions/179858/hidden-features-of-stackoverflow/179864#179864Comment by akdom on Hidden features of Stackoverflowakdom2008-10-07T19:31:11Z2008-10-07T19:31:11ZIt has to support the "manage search plugins" option, and have discovery working. I'm using Firefox 3.0.2 on Fedora 9, so it definitely works under linux. It may just be that your version of firefox doesn't autodiscover.