User Edmundito - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T04:37:06Z http://stackoverflow.com/feeds/user/20494 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1213690/what-is-the-most-compatible-way-to-install-python-modules-on-a-mac/1283224#1283224 0 Answer by Edmundito for What is the most compatible way to install python modules on a Mac? Edmundito 2009-08-16T00:44:05Z 2009-08-16T00:44:05Z <p>For MacPython installations, I found an effective solution to fixing the problem with setuptools (easy_install) in this blog post:</p> <p><a href="http://droidism.com/getting-running-with-django-and-macpython-26-on-leopard" rel="nofollow">http://droidism.com/getting-running-with-django-and-macpython-26-on-leopard</a></p> <p>One handy tip includes finding out which version of python is active in the terminal:</p> <pre><code>which python </code></pre> http://stackoverflow.com/questions/226465/should-i-use-multiplication-or-division 6 Should I use multiplication or division? Edmundito 2008-10-22T16:01:23Z 2009-06-24T22:34:10Z <p>Here's a silly fun question:</p> <p>Let's say we have to perform a simple operation where we need half of the value of a variable. There are <em>typically</em> two ways of doing this:</p> <pre><code>y = x / 2.0; // or... y = x * 0.5; </code></pre> <p>Assuming we're using the standard operators provided with the language, which one has better performance?</p> <p>I'm guessing multiplication is typically better so I try to stick to that when I code, but I would like to confirm this. </p> <p>Although personally I'm interested in the answer for <strong>Python</strong> 2.4-2.5, feel free to also post an answer for other languages! And if you'd like, feel free to post other fancier ways (like using bitwise shift operators) as well.</p> http://stackoverflow.com/questions/86562/what-is-missing-in-the-visual-studio-express-editions/244762#244762 2 Answer by Edmundito for What is "missing" in the Visual Studio Express Editions? Edmundito 2008-10-28T20:34:08Z 2008-10-28T20:34:08Z <p>One that is missing (which is nice to have) is:</p> <blockquote> <p><strong>Source Control Integration</strong> enables two options: source control solution based on the Source Control Plug-in API (formerly known as the MSSCCI API), or a source control VSPackage</p> </blockquote> <p>This is particularly important especially if you're working with systems like <a href="http://kb.perforce.com/AllPerforceApplications/IntegrationsPerforce/P4sccVisualStudio" rel="nofollow">Perforce</a> where you must check out files before changing with them, particularly changing project settings for all team members.</p> http://stackoverflow.com/questions/205877/combining-resources-into-a-single-binary-file 2 Combining resources into a single binary file Edmundito 2008-10-15T18:33:19Z 2008-10-16T14:17:52Z <p>How does one combine several resources for an application (images, sounds, scripts, xmls, etc.) into a single/multiple binary file so that they're protected from user's hands? What are the typical steps (organizing, loading, encryption, etc...)?</p> <p>This is particularly common in game development, yet a lot of the game frameworks and engines out there don't provide an easy way to do this, nor describe a general approach. I've been meaning to learn how to do it, but I don't know where to begin. Could anyone point me in the right direction?</p> http://stackoverflow.com/questions/205642/good-job-boards-for-developers/205816#205816 2 Answer by Edmundito for Good job boards for developers? Edmundito 2008-10-15T18:13:36Z 2008-10-15T18:13:36Z <p>37Signals' Job Board (<a href="http://jobs.37signals.com/" rel="nofollow">http://jobs.37signals.com/</a>) seems to have some pretty good positions, primarily in web development. A lot of those positions are not in the West Coast of the United States, either, which is sometimes a good thing.</p> <p>They also have a gig board (<a href="http://gigs.37signals.com/" rel="nofollow">http://gigs.37signals.com/</a>) for more contract-type positions.</p> http://stackoverflow.com/questions/163600/when-not-to-comment-code/164251#164251 5 Answer by Edmundito for When NOT to comment code Edmundito 2008-10-02T19:53:03Z 2008-10-02T19:53:03Z <p>Don't ask a question in comments for some other hypothetical person to answer:</p> <pre><code>// Crap, why is this here? // Well, just in case it happens somehow. if (i &lt; 0.0) { printf("Uh oh!\n"); i = 175; } </code></pre> <p>It's better just explain why something is there in the first place, and if you're doubtful, make sure you resolve the problem yourself, find the answer, or ask someone (your colleagues, stackoverflow, etc.)</p> http://stackoverflow.com/questions/493304/in-django-how-do-you-retrieve-data-from-extra-fields-on-many-to-many-relationshi/493454#493454 Comment by Edmundito on In Django, how do you retrieve data from extra fields on many-to-many relationships without an explicit query for it? Edmundito 2009-07-08T22:15:50Z 2009-07-08T22:15:50Z I'm in the exact same situation (django noob with ManyToMany situations) and I was wondering if there's a good way to display this data under a template. For example, if I wanted to display every exiting team and under every team display just the captain. Do I have to cycle through every team first and then through every teamplayer_set entry? http://stackoverflow.com/questions/163600/when-not-to-comment-code/164251#164251 Comment by Edmundito on When NOT to comment code Edmundito 2009-06-24T23:03:12Z 2009-06-24T23:03:12Z My comment was based on a true story. :) http://stackoverflow.com/questions/446026/django-how-do-you-serve-media-stylesheets-and-link-to-them-within-templates/479391#479391 Comment by Edmundito on Django: how do you serve media / stylesheets and link to them within templates Edmundito 2009-06-04T21:52:42Z 2009-06-04T21:52:42Z For Example: &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;{{ MEDIA_URL }}styles.css&quot; /&gt; You can also follow this bit to ease your development locally: <a href="http://docs.djangoproject.com/en/1.0/howto/static-files/" rel="nofollow">docs.djangoproject.com/en/1.0/&hellip;</a> http://stackoverflow.com/questions/226465/should-i-use-multiplication-or-division/226563#226563 Comment by Edmundito on Should I use multiplication or division? Edmundito 2008-10-22T17:11:19Z 2008-10-22T17:11:19Z Thanks for the tip on using the time command for benchmarking!