User chromakode - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T06:47:44Zhttp://stackoverflow.com/feeds/user/40508http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/319696/boolean-operations-with-integers/319708#3197082Answer by chromakode for boolean operations with integerschromakode2008-11-26T03:54:05Z2008-11-26T03:54:05Z<p>You are getting the first result because you are performing a boolean <code>and</code> between the bit strings of the two numbers:</p>
<pre><code>2 & 1 => 010 & 001 = 000 = 0
3 & 1 => 011 & 001 = 001 = 1
4 & 1 => 100 & 001 = 000 = 0
5 & 1 => 101 & 001 = 001 = 1
</code></pre>
<p>In effect, you are testing whether the '1' bit is set, which will only be true for odd numbers. </p>
<p>When performing <code>or</code> operations:</p>
<pre><code>0 | 1 => 000 | 001 = 001 = 1
1 | 1 => 001 | 001 = 001 = 1
2 | 1 => 010 | 001 = 011 = 3
3 | 1 => 011 | 001 = 011 = 3
4 | 1 => 100 | 001 = 101 = 5
5 | 1 => 101 | 001 = 101 = 5
</code></pre>
<p>Since in this case the effect or the <code>or</code> is to always set the <code>1</code> bit, even numbers will be incremented by one to their nearest greater odd number.</p>
http://stackoverflow.com/questions/316590/how-do-you-use-cat-recursively/316602#31660210Answer by chromakode for How do you use cat recursively?chromakode2008-11-25T07:41:51Z2008-11-25T07:41:51Z<p>Try using the <code>find</code> command, which recurses directories by default:</p>
<p><code>find . -type f -execdir cat {} \; | wc -l</code></p>
http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/316470#3164707Answer by chromakode for What are the best programming articles?chromakode2008-11-25T05:54:28Z2008-11-25T05:54:28Z<p><a href="http://www.norvig.com/spell-correct.html" rel="nofollow">"How to Write a Spelling Corrector"</a> in Python by Peter Norvig</p>
http://stackoverflow.com/questions/316265/tricks-to-speed-up-eclipse/316435#3164356Answer by chromakode for Tricks to speed up Eclipsechromakode2008-11-25T05:28:44Z2008-11-25T05:28:44Z<p>Make sure that you're using the Sun JVM to run Eclipse.</p>
<p>On Linux, particularly Ubuntu, Eclipse is installed by default to use the open source GCJ, which has drastically poorer performance. Use <code>update-alternatives --config java</code> to switch to the Sun JVM to greatly improve UI snappiness in Eclipse.</p>
http://stackoverflow.com/questions/316390/how-safe-is-greasemonkey/316430#3164302Answer by chromakode for How safe is Greasemonkey?chromakode2008-11-25T05:23:05Z2008-11-25T05:23:05Z<p>When used with discretion, Greasemonkey should be perfectly safe to install and use. While it is definitely possible to do all manners of mischief with carte-blanche Javascript access to pages, Greasemonkey scripts are restricted to specific URLs, and will not run on sites that are not specified by the URL patterns in their headers. </p>
<p>That being said, a basic rule of thumb is to consider most information on pages with Greasemonkey scripts active to be accessible to those scripts. It is technically feasible to play games like replacing input boxes (in which you might enter passwords or personal info), read any data on the pages, and send data collected to a third party. Greasemonkey scripts do run in an effective sandbox within the browser, and shouldn't be able to affect your computer outside of Firefox.</p>
<p>That being said, in some respects, the risk is comparable to or less than that of installing any other small pieces of open source software. Since Greasemonkey scripts are simple open source Javascript files, it's relatively easy for a programmer to take a look inside and make sure it does what it says it does. As always, run strangers' code (of any form) with care, and take the time to skim the source code if the software is important to you.</p>
<p>In general though, Greasemonkey scripts should be pretty safe. Try to use scripts with a large number of reviews and users, since these are likely to be more thoroughly vetted and analyzed by the community.</p>
<p>Happy userscripting!</p>
http://stackoverflow.com/questions/316590/how-do-you-use-cat-recursively/316602#316602Comment by chromakode on How do you use cat recursively?chromakode2008-11-25T07:55:35Z2008-11-25T07:55:35ZI believe it :) I try to do as little shell scripting as possible, so the more clever <code>xargs</code> approach escaped me. Thanks for teaching me something!http://stackoverflow.com/questions/316590/how-do-you-use-cat-recursively/316613#316613Comment by chromakode on How do you use cat recursively?chromakode2008-11-25T07:49:32Z2008-11-25T07:49:32ZI think that the particular challenge is to get the <i>total</i> line count for an entire tree of files. Is there a way to do that simply using the find command?