User Chris Jester-Young - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T18:35:30Z http://stackoverflow.com/feeds/user/13 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1433263/decision-tree-code-golf 10 Decision Tree code golf Chris Jester-Young 2009-09-16T14:17:39Z 2009-11-04T14:01:31Z <p>In Google Code Jam 2009, <a href="http://code.google.com/codejam/contest/dashboard?c=186264" rel="nofollow">Round 1B</a>, there is a problem called Decision Tree that lent itself to rather creative solutions.</p> <p>Post your shortest solution; I'll update the Accepted Answer to the current shortest entry on a semi-frequent basis, assuming you didn't just create a new language just to solve this problem. :-P</p> <p>Current rankings:</p> <ul> <li>107 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1442392#1442392">Perl</a></li> <li>136 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1440691#1440691">Ruby</a></li> <li>154 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1540845#1540845">Arc</a></li> <li>176 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1433324#1433324">PostScript</a></li> <li>192 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1436664#1436664">Python</a></li> <li>199 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1433604#1433604">Common Lisp</a></li> <li>222 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1517954#1517954">JavaScript</a></li> <li>223 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1584216#1584216">LilyPond</a></li> <li>273 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1433288#1433288">Scheme</a></li> <li>280 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1586491#1586491">R</a></li> <li>312 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1517398#1517398">Haskell</a></li> <li>314 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1512609#1512609">PHP</a> </li> <li>346 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1500953#1500953">C</a></li> <li>417 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1528396#1528396">Fortran</a></li> <li>462 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1602399#1602399">Java</a></li> <li>507 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1484620#1484620">Java</a> (well, kind of)</li> <li>718 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1546477#1546477">OCaml</a></li> <li>1746 <a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1512403#1512403">sed</a></li> <li><a href="http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1514405#1514405">C++</a> not qualified for now</li> </ul> http://stackoverflow.com/questions/1566726/at-a-programming-crossroads-php-net-generalise-or-specialise/1566836#1566836 3 Answer by Chris Jester-Young for At a Programming crossroads, PHP, .NET, generalise or specialise? Chris Jester-Young 2009-10-14T14:53:55Z 2009-10-14T14:53:55Z <p>The best way to motivate programming, in my experience, is to find a personal itch and scratch it. For example, if you think writing standards-compliant websites (or validating such, for cross-browser compatibility) is too labour-intensive, make a tool that makes it easier. Find an open-source project that scratches that itch, or start one. Then spend your spare time improving it.</p> <p>You'll gain lots of experience that way, and it will help you better understand where you want to go next. It'll give you "direction and focus", as you are seeking.</p> http://stackoverflow.com/questions/1563967/generate-sql-statements-with-python/1563981#1563981 1 Answer by Chris Jester-Young for Generate SQL statements with python Chris Jester-Young 2009-10-14T02:35:09Z 2009-10-14T02:35:09Z <p>For robustness, I recommend using prepared statements to send user-entered values, no matter what language you use. :-)</p> http://stackoverflow.com/questions/14/whats-the-difference-between-math-floor-and-math-truncate-in-net/33#33 87 Answer by Chris Jester-Young for What's the difference between Math.Floor() and Math.Truncate() in .Net Chris Jester-Young 2008-08-01T12:26:39Z 2009-10-14T02:09:03Z <p><code>Math.Floor</code> rounds down, <code>Math.Ceiling</code> rounds up, and <code>Math.Truncate</code> rounds towards zero. Thus, <code>Math.Truncate</code> is like <code>Math.Floor</code> for positive numbers, and like <code>Math.Ceiling</code> for negative numbers. Here's the <a href="http://msdn.microsoft.com/en-us/library/system.math.truncate.aspx" rel="nofollow">reference</a>.</p> <p>For completeness, <code>Math.Round</code> rounds to the nearest integer. If the number is exactly midway between two integers, then it rounds towards the even one. <a href="http://msdn.microsoft.com/en-us/library/system.math.round.aspx" rel="nofollow">Reference.</a></p> <p>See also: <a href="http://stackoverflow.com/questions/14/whats-the-difference-between-math-floor-and-math-truncate-in-c/580252#580252">Pax Diablo's answer</a>. Highly recommended!</p> http://stackoverflow.com/questions/1560297/an-unidentified-program-wants-to-access-your-computer-in-vista/1560333#1560333 4 Answer by Chris Jester-Young for "An unidentified program wants to access your computer" in vista Chris Jester-Young 2009-10-13T13:39:53Z 2009-10-13T13:39:53Z <p>You need to obtain a code-signing certificate (which is different from an SSL server certificate) from a certificate authority, and sign your programs with it. There are certain requirements for obtaining such a certificate; for example, some certificate authorities will require your company documentation, etc.</p> http://stackoverflow.com/questions/1558221/diassemble-managed-code-issue/1558242#1558242 1 Answer by Chris Jester-Young for diassemble managed code issue Chris Jester-Young 2009-10-13T04:49:10Z 2009-10-13T04:49:10Z <p>I don't think WinDbg works at the IL level. You'd probably have to use <code>ildasm</code> to get an IL disassembly.</p> http://stackoverflow.com/questions/1557791/help-needed-to-write-a-comparator-for-my-job-interview-code-sample/1557821#1557821 0 Answer by Chris Jester-Young for Help needed to write a comparator for my job interview code sample Chris Jester-Young 2009-10-13T01:31:56Z 2009-10-13T01:31:56Z <p>As a complement to cletus's answer, here's a version using a <a href="http://commons.apache.org/lang/apidocs/org/apache/commons/lang/builder/CompareToBuilder.html" rel="nofollow"><code>CompareToBuilder</code></a> (from Apache Commons Lang):</p> <pre><code>public int compare(Person lhs, Person rhs) { return new CompareToBuilder() .append(lhs.getGender(), rhs.getGender()) .append(lhs.getLastName(), rhs.getLastName()) .toComparison(); } </code></pre> http://stackoverflow.com/questions/1556237/using-backquote-backticks-for-mysql-queries/1556257#1556257 1 Answer by Chris Jester-Young for Using backquote/backticks for mysql queries Chris Jester-Young 2009-10-12T18:50:02Z 2009-10-12T18:50:02Z <p>Well, if you ensure that you never accidentally use a keyword as an identifier, you don't need the backticks. :-)</p> http://stackoverflow.com/questions/1555862/how-can-i-get-php-to-return-500-upon-a-fatal-exception/1555877#1555877 2 Answer by Chris Jester-Young for how can i get php to return 500 upon a fatal exception? Chris Jester-Young 2009-10-12T17:28:13Z 2009-10-12T17:28:13Z <pre><code>header("HTTP/1.1 500 Internal Server Error"); </code></pre> http://stackoverflow.com/questions/1555368/c-char-vectorstring-string-char-parsing-problem/1555404#1555404 4 Answer by Chris Jester-Young for C++ char** -> vector<string> -> string -> char** parsing problem Chris Jester-Young 2009-10-12T16:01:08Z 2009-10-12T16:01:08Z <p>C-style strings (<code>char*</code>) are meant to be zero-terminated. So instead of <code>new char[tokens[i].size()]</code>, you need to add 1 to the allocation: <code>new char[token[i].size() + 1]</code>. Also, you need to set <code>new_args[i][tokens[i].size()] = 0</code> to zero-terminate the string.</p> <p>Without the zero-terminator, programs would not know when to stop printing, as <code>char*</code> does not hold a string length, unlike <code>std::string</code>.</p> http://stackoverflow.com/questions/1555101/how-can-i-use-perl-to-do-datetime-comparisons-and-calculate-deltas/1555122#1555122 1 Answer by Chris Jester-Young for How can I use Perl to do datetime comparisons and calculate deltas? Chris Jester-Young 2009-10-12T15:05:00Z 2009-10-12T15:05:00Z <p>You can use <code>POSIX::mktime</code> to turn broken-up time into a timestamp. Be aware that the month is 0-based, and the year is 1900-based, so adjust accordingly. :-)</p> <pre><code>use POSIX qw(mktime); $timestamp = mktime($sec, $min, $hour, $day, $month - 1, $year - 1900); </code></pre> http://stackoverflow.com/questions/1554970/not-yet-commons-ssl-and-open-ssl-java-and-c-common-ground/1555063#1555063 0 Answer by Chris Jester-Young for not-yet-commons SSL and Open SSL, Java and C++, Common Ground? Chris Jester-Young 2009-10-12T14:57:10Z 2009-10-12T14:57:10Z <p>The <a href="http://www.openssl.org/docs/crypto/EVP%5FEncryptInit.html" rel="nofollow">EVP cipher functions</a> look like the closest parallel.</p> http://stackoverflow.com/questions/1552495/in-c-how-do-i-push-an-object-to-a-vector-while-maintaining-a-pointer-to-the-ob/1552513#1552513 4 Answer by Chris Jester-Young for In C++, how do I push an object to a vector while maintaining a pointer to the object? Chris Jester-Young 2009-10-12T03:11:42Z 2009-10-12T03:16:58Z <p>STL containers copy the objects they contain. There is no way to work around this.</p> <p>You can, however, have a <code>std::vector&lt;std::tr1::shared_ptr&lt;Student&gt; &gt;</code>, which allow you to have a container of smart pointers. For this to work, though, your objects must all be attached to the <code>shared_ptr</code> at the time of construction.</p> <p>So, something like:</p> <pre><code>std::vector&lt;std::tr1::shared_ptr&lt;Student&gt; &gt; m_students; std::tr1::shared_ptr&lt;Student&gt; targetStudent; for each (std::tr1::shared_ptr&lt;Student&gt; student in m_students) { if (student-&gt;Name() == strName) { targetStudent = student; break; } } // If the Student didn't exist, add it. if (!targetStudent) { // creates a new Student and attaches it to smart pointer targetStudent.reset(new Student(strName)); m_students.push_back(targetStudent); } </code></pre> <p>If you don't have <code>std::tr1::shared_ptr</code>, you can use <code>boost::shared_ptr</code> too; download from <a href="http://www.boost.org/" rel="nofollow">Boost</a>.</p> http://stackoverflow.com/questions/1552446/java-trouble-with-treeset-and-linkedlist/1552460#1552460 1 Answer by Chris Jester-Young for Java: Trouble with TreeSet and LinkedList Chris Jester-Young 2009-10-12T02:44:41Z 2009-10-12T02:44:41Z <p>This doesn't answer your question directly, but you may find it easier to just use <code>Collections.sort</code>, passing in your list and comparator. Saves using a <code>TreeSet</code>.</p> http://stackoverflow.com/questions/1552426/java-file-construction-why-am-i-getting-different-results/1552431#1552431 4 Answer by Chris Jester-Young for Java file construction - why am I getting different results? Chris Jester-Young 2009-10-12T02:32:08Z 2009-10-12T02:32:08Z <p>If you used <code>new File(".")</code>, you should get the correct results for the current directory.</p> http://stackoverflow.com/questions/1552403/java-data-structure-for-caching-computation-result/1552416#1552416 2 Answer by Chris Jester-Young for Java: Data structure for caching computation result? Chris Jester-Young 2009-10-12T02:25:12Z 2009-10-12T02:25:12Z <p>If you use <a href="http://code.google.com/p/google-collections/" rel="nofollow">Google Collections</a>, its <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/MapMaker.html" rel="nofollow"><code>MapMaker</code></a> class has a <code>makeComputingMap</code> method that does exactly what you described. As a free bonus, it's also thread-safe (implements <code>ConcurrentMap</code>).</p> <p>As for the two-keys thing, you will have to make a class that contains the two keys, and implement a suitable implementation of <code>equals</code>, <code>hashCode</code>, and (if applicable) <code>compareTo</code> that does the key comparison the way you want it.</p> http://stackoverflow.com/questions/1549941/perfect-square-and-perfect-cube/1549960#1549960 1 Answer by Chris Jester-Young for Perfect square and perfect cube Chris Jester-Young 2009-10-11T05:43:38Z 2009-10-11T18:54:03Z <p>No, but it's easy to write one:</p> <pre><code>bool is_perfect_square(int n) { if (n &lt; 0) return false; int root(round(sqrt(n))); return n == root * root; } bool is_perfect_cube(int n) { int root(round(cbrt(n))); return n == root * root * root; } </code></pre> http://stackoverflow.com/questions/1542006/can-i-atomically-increment-a-16-bit-counter-on-x86-x8664/1542095#1542095 3 Answer by Chris Jester-Young for Can I atomically increment a 16 bit counter on x86/x86_64? Chris Jester-Young 2009-10-09T06:25:27Z 2009-10-09T06:46:53Z <p>Here's one that uses GCC assembly extensions, as an alternative to Steve's Delphi answer:</p> <pre><code>uint16_t atomic_inc(uint16_t volatile* ptr) { uint16_t value(1); __asm__("lock xadd %w0, %w1" : "+r" (value) : "m" (*ptr)); return ++value; } </code></pre> <p>Change the 1 with -1, and the <code>++</code> with <code>--</code>, for decrement.</p> http://stackoverflow.com/questions/1541426/computing-high-64-bits-of-a-64x64-int-product-in-c/1541571#1541571 2 Answer by Chris Jester-Young for Computing high 64 bits of a 64x64 int product in C Chris Jester-Young 2009-10-09T02:52:46Z 2009-10-09T02:52:46Z <p>With regard to your assembly solution, don't hard-code the <code>mov</code> instructions! Let the compiler do it for you. Here's a modified version of your code:</p> <pre><code>static long mull_hi(long inp1, long inp2) { long output; __asm__("imulq %2" : "=d" (output) : "a" (inp1), "r" (inp2)); return output; } </code></pre> <p>Helpful reference: <a href="http://gcc.gnu.org/onlinedocs/gcc/Machine-Constraints.html" rel="nofollow">Machine Constraints</a></p> http://stackoverflow.com/questions/1535207/memory-leak-caused-by-a-wrong-usage-of-scopedlock/1535248#1535248 0 Answer by Chris Jester-Young for Memory leak caused by a wrong usage of scoped_lock ? Chris Jester-Young 2009-10-08T02:07:51Z 2009-10-08T02:07:51Z <p>I suggest that, instead of using a "raw" pointer to <code>std::string</code>, you use a <code>boost::shared_ptr&lt;std::string&gt;</code>, and pass that around. When you're done, call its <code>reset()</code> function; it will decrement the usage count, and free the string automatically when the count is 0.</p> <p>As a bonus, you can attach <code>boost::weak_ptr</code> objects to those strings (you can stick them into a <code>vector</code> maybe), and monitor how many of them are still "live". This way you'll know if something's causing the strings to not be decremented to 0 for any reason.</p> <p>To be clear:</p> <pre><code>if (_tickersQueue.size() &gt; 0) { boost::shared_ptr&lt;std::string&gt; ticker(new std::string(PopNextTicker())); if (!ticker-&gt;empty()) _threads.create_thread(boost::bind(&amp;TAFYahooFinanceParadigm::ExecuteNextRequest, this, ticker)); else ticker.reset(); // optional; ticker will drop out of scope anyway } </code></pre> <p>Yes, you have to adjust the function type of <code>ExecuteNextRequest</code> appropriately. :-)</p> http://stackoverflow.com/questions/1534527/infinite-loop-at-compile-time/1534538#1534538 6 Answer by Chris Jester-Young for Infinite loop at compile time? Chris Jester-Young 2009-10-07T22:12:44Z 2009-10-07T22:12:44Z <p>Some languages do allow the compiler to enter an infinite loop. Java isn't one of those languages. :-)</p> http://stackoverflow.com/questions/1534455/can-i-use-perls-unpack-to-break-up-a-string-into-vars/1534472#1534472 7 Answer by Chris Jester-Young for Can I use Perl's unpack to break up a string into vars? Chris Jester-Young 2009-10-07T21:57:58Z 2009-10-07T21:57:58Z <p>I'd just use a regex for that:</p> <pre><code>my ($dir, $name, $file, $ext) = $path =~ m:(.*)/(.*)/(.*)\.(.*):; </code></pre> <p>Or, to match your specific example:</p> <pre><code>my ($dir, $name, $file, $ext) = $example =~ m:^(\d{4})(\d{4})(\d{4})\.(.{3})$:; </code></pre> http://stackoverflow.com/questions/1534388/job-requirement/1534405#1534405 0 Answer by Chris Jester-Young for Job Requirement Chris Jester-Young 2009-10-07T21:45:05Z 2009-10-07T21:45:05Z <p>My comment aside, a serious answer is this: they want to know that you are able to use the package manager to rebuild those packages, so that (probably) if they find bugs in those packages, you can deploy fixes easily. I think the <code>rpmbuild</code> command may be helpful, but I don't use an RPM-based distribution, so don't quote me on this.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1743#1743 120 Answer by Chris Jester-Young for What is the single most influential book every programmer should read? Chris Jester-Young 2008-08-05T00:33:29Z 2009-10-07T21:37:34Z <p>I personally think <em><a href="http://c2.com/cgi/wiki?DesignPatternsBook" rel="nofollow">Design Patterns</a></em> by the Gang of Four is a very useful book. It's not about the "meta" aspects of programming like so many of the other suggestions, but it emphasises encapsulating good programming techniques as patterns, and has since encouraged others to come up with new patterns and antipatterns to use in programming dialogue.</p> <p><img src="http://images.amazon.com/images/P/0201633612.01.LZZZZZZZ.jpg" width="200"></p> <p>Now for a rider....</p> <p>@kevin, @modesty: Great answers! If I could place a 3-vote like on uservoice, I'd gladly use it here.</p> <p>To the naysayers who downmodded them, I say: please, grow a sense of humour! :-)</p> http://stackoverflow.com/questions/1433263/decision-tree-code-golf/1433288#1433288 1 Answer by Chris Jester-Young for Decision Tree code golf Chris Jester-Young 2009-09-16T14:21:39Z 2009-10-06T03:32:19Z <p>Here's my version at 278 bytes (with improvements from <a href="http://stackoverflow.com/users/174376">KirarinSnow</a> to bring it down to 273), after stripping off all the newlines (except ones in string literals, of course). It only works on Guile (since in standard Scheme, <code>define</code> is a syntax, not an object, but Guile represents it as an object anyway).</p> <pre><code>(define ! define) (!(c f p w . r)(if(null? r)(* p w)(apply c f(* p w)((if(memq(car r)f)cadr caddr)r)))) (!(d . l)(map display l)) (!(r . x)(read)) (! n(r)) (do((i 1(1+ i)))((&gt; i n))(r)(let((t(r)))(d"Case #"i": ")(do((a(r)(1- a)))((= a 0))(r)(d(apply c(map r(iota(r)))1 t)" ")))) </code></pre> http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi 33 Fastest way to get value of pi Chris Jester-Young 2008-08-01T05:21:22Z 2009-09-17T16:30:44Z <p>Solutions welcome in any language. :-) I'm looking for the fastest way to obtain the value of pi, as a personal challenge. More specifically I'm using ways that don't involve using <code>#define</code>d constants like <code>M_PI</code>, or hard-coding the number in.</p> <p>The program below tests the various ways I know of. The inline assembly version is, in theory, the fastest option, though clearly not portable; I've included it as a baseline to compare the other versions against. In my tests, with built-ins, the <code>4 * atan(1)</code> version is fastest on GCC 4.2, because it auto-folds the <code>atan(1)</code> into a constant. With <code>-fno-builtin</code> specified, the <code>atan2(0, -1)</code> version is fastest.</p> <p>Here's the main testing program (<code>pitimes.c</code>):</p> <pre><code>#include &lt;math.h&gt; #include &lt;stdio.h&gt; #include &lt;time.h&gt; #define ITERS 10000000 #define TESTWITH(x) { \ diff = 0.0; \ time1 = clock(); \ for (i = 0; i &lt; ITERS; ++i) \ diff += (x) - M_PI; \ time2 = clock(); \ printf("%s\t=&gt; %e, time =&gt; %f\n", #x, diff, diffclock(time2, time1)); \ } static inline double diffclock(clock_t time1, clock_t time0) { return (double) (time1 - time0) / CLOCKS_PER_SEC; } int main() { int i; clock_t time1, time2; double diff; /* Warmup. The atan2 case catches GCC's atan folding (which would * optimise the ``4 * atan(1) - M_PI'' to a no-op), if -fno-builtin * is not used. */ TESTWITH(4 * atan(1)) TESTWITH(4 * atan2(1, 1)) #if defined(__GNUC__) &amp;&amp; (defined(__i386__) || defined(__amd64__)) extern double fldpi(); TESTWITH(fldpi()) #endif /* Actual tests start here. */ TESTWITH(atan2(0, -1)) TESTWITH(acos(-1)) TESTWITH(2 * asin(1)) TESTWITH(4 * atan2(1, 1)) TESTWITH(4 * atan(1)) return 0; } </code></pre> <p>And the inline assembly stuff (<code>fldpi.c</code>), noting that it will only work for x86 and x64 systems:</p> <pre><code>double fldpi() { double pi; asm("fldpi" : "=t" (pi)); return pi; } </code></pre> <p>And a build script that builds all the configurations I'm testing (<code>build.sh</code>):</p> <pre><code>#!/bin/sh gcc -O3 -Wall -c -m32 -o fldpi-32.o fldpi.c gcc -O3 -Wall -c -m64 -o fldpi-64.o fldpi.c gcc -O3 -Wall -ffast-math -m32 -o pitimes1-32 pitimes.c fldpi-32.o gcc -O3 -Wall -m32 -o pitimes2-32 pitimes.c fldpi-32.o -lm gcc -O3 -Wall -fno-builtin -m32 -o pitimes3-32 pitimes.c fldpi-32.o -lm gcc -O3 -Wall -ffast-math -m64 -o pitimes1-64 pitimes.c fldpi-64.o -lm gcc -O3 -Wall -m64 -o pitimes2-64 pitimes.c fldpi-64.o -lm gcc -O3 -Wall -fno-builtin -m64 -o pitimes3-64 pitimes.c fldpi-64.o -lm </code></pre> <p>Apart from testing between various compiler flags (I've compared 32-bit against 64-bit too, because the optimisations are different), I've also tried switching the order of the tests around. The <code>atan2(0, -1)</code> version still comes out top every time, though.</p> <p>I'm keen to hear what results you have, as well as improvements to the testing process. :-)</p> http://stackoverflow.com/questions/1434511/how-do-i-convert-double-to-string-using-only-math-h/1434539#1434539 5 Answer by Chris Jester-Young for How do I convert double to string using only math.h? Chris Jester-Young 2009-09-16T17:55:37Z 2009-09-16T17:55:37Z <p>Double-precision numbers do not have more than 15 significant (decimal) figures of precision. There is absolutely no way you can get "an arbitrary number of digits correctly"; <code>double</code>s are not bignums.</p> <p>Since you say you're happy with 17 significant figures, use <code>long double</code>; on Windows, I think, that will give you 19 significant figures.</p> http://stackoverflow.com/questions/1380209/java-syntax-byte-f-vs-byte-f/1380232#1380232 3 Answer by Chris Jester-Young for Java Syntax: byte f()[] vs. byte[] f() Chris Jester-Young 2009-09-04T16:17:55Z 2009-09-04T16:17:55Z <p>In this case, none.</p> <p>If you had declarations:</p> <pre><code>byte[] a, b; byte c[], d; </code></pre> <p>then <code>a</code>, <code>b</code>, and <code>c</code> are <code>byte[]</code>, and <code>d</code> is <code>byte</code>.</p> http://stackoverflow.com/questions/861257/for-kernel-os-is-c-still-it/861286#861286 2 Answer by Chris Jester-Young for For kernel/OS is C still it Chris Jester-Young 2009-05-14T02:30:42Z 2009-09-02T00:27:49Z <p>Cody didn't want to be bothered answering this, so I'm passing this on on his behalf. :-P For some examples of OSs written in managed languages, as opposed to C or assembly, look at:</p> <ul> <li><a href="http://research.microsoft.com/en-us/groups/os/singularity/" rel="nofollow">Singularity</a></li> <li><a href="http://www.sharpos.org/doku.php" rel="nofollow">SharpOS</a></li> <li><a href="http://www.gocosmos.org/" rel="nofollow">Cosmos</a></li> <li><a href="http://www.codeplex.com/mosa/" rel="nofollow">MOSA</a></li> <li><a href="http://www.dz.ru/en/solutions/phantom/" rel="nofollow">Phantom</a></li> </ul> <p>Of course, Cody also didn't want to mention this:</p> <ul> <li><a href="http://daeken.com/renraku-it-lives" rel="nofollow">Renraku</a></li> </ul> http://stackoverflow.com/questions/1338877/unix-seeing-file-handles-like-with-lsof-l/1338883#1338883 3 Answer by Chris Jester-Young for Unix: seeing file handles like with "lsof -l" Chris Jester-Young 2009-08-27T04:42:45Z 2009-08-27T04:42:45Z <p>On Linux, you can do something like <code>ls -l /proc/$$/fd</code>, which will show you what file descriptors are open in your shell.</p> <p>Of course, substitute <code>$$</code> with other numbers to inspect other processes (at least, the ones you own).</p> http://stackoverflow.com/questions/1680760/jaxb-generating-classes-from-xsd-converting-enums-to-strings Comment by Chris Jester-Young on JAXB - generating classes from XSD - converting enums to strings Chris Jester-Young 2009-11-05T14:21:53Z 2009-11-05T14:21:53Z You can always use the <code>toString</code> or the <code>name</code> methods of the enum, surely? :-) http://stackoverflow.com/questions/1658922/converting-a-scheme-expression-to-a-string/1659036#1659036 Comment by Chris Jester-Young on Converting a Scheme expression to a string Chris Jester-Young 2009-11-02T07:19:31Z 2009-11-02T07:19:31Z That answer is correct, though with implementations supporting SRFI 6, you can just make an output string port, and <code>write</code> to it. http://stackoverflow.com/questions/1570349/which-stl-container/1570453#1570453 Comment by Chris Jester-Young on Which STL Container? Chris Jester-Young 2009-10-15T05:32:55Z 2009-10-15T05:32:55Z <code>vector&lt;bool&gt;</code> is generally seen to be broken, so beware in choosing it: <a href="http://www.gotw.ca/publications/mill09.htm" rel="nofollow">gotw.ca/publications/mill09.htm</a> http://stackoverflow.com/questions/1570349/which-stl-container/1570374#1570374 Comment by Chris Jester-Young on Which STL Container? Chris Jester-Young 2009-10-15T05:25:33Z 2009-10-15T05:25:33Z +1 Very ingenious answer. :-) I was gonna say it doesn't provide indexed access, but if you use the index as the key, that actually could work and be decent. http://stackoverflow.com/questions/1569688/an-efficient-equalsobject-o-implementation/1569747#1569747 Comment by Chris Jester-Young on An efficient equals(Object o) implementation Chris Jester-Young 2009-10-15T00:56:25Z 2009-10-15T00:56:25Z <code>EqualsBuilder</code>, at least for the version I have, doesn't do <code>getClass</code> comparison unless two arrays are being compared, which is actually fair game (in most cases). http://stackoverflow.com/questions/1569688/an-efficient-equalsobject-o-implementation/1569718#1569718 Comment by Chris Jester-Young on An efficient equals(Object o) implementation Chris Jester-Young 2009-10-15T00:48:01Z 2009-10-15T00:48:01Z @silky: Thanks for correcting the spelling of my name. :-P http://stackoverflow.com/questions/1569688/an-efficient-equalsobject-o-implementation/1569700#1569700 Comment by Chris Jester-Young on An efficient equals(Object o) implementation Chris Jester-Young 2009-10-15T00:46:36Z 2009-10-15T00:46:36Z I prefer to use Apache Commons EqualsBuilder for this reason: it is less maintenance to use when you're adding new fields. However, you <i>can</i> argue that you'd simply get IDEA to regenerate <code>equals</code> each time you add fields, and that'd be a fair point too. To each their own. :-P http://stackoverflow.com/questions/1569688/an-efficient-equalsobject-o-implementation/1569718#1569718 Comment by Chris Jester-Young on An efficient equals(Object o) implementation Chris Jester-Young 2009-10-15T00:43:40Z 2009-10-15T00:43:40Z @silky: Incidentally I agree that using Apache Commons EqualsBuilder is the best approach too, so have a +1 for that. :-P http://stackoverflow.com/questions/1569688/an-efficient-equalsobject-o-implementation/1569718#1569718 Comment by Chris Jester-Young on An efficient equals(Object o) implementation Chris Jester-Young 2009-10-15T00:42:30Z 2009-10-15T00:42:30Z @silky: <i>lol</i> I normally never kick up a fuss about it, but given that my conclusion is the opposite of Steve's (namely, that substitutability is more important to uphold than symmetry), I felt that my point should be heard too. :-P http://stackoverflow.com/questions/1569688/an-efficient-equalsobject-o-implementation/1569718#1569718 Comment by Chris Jester-Young on An efficient equals(Object o) implementation Chris Jester-Young 2009-10-15T00:38:14Z 2009-10-15T00:38:14Z @silky: I brought it up first and you didn't acknowledge me? That's it, eat another -1. (Just kidding; not wasting my rep point over this.) :-P http://stackoverflow.com/questions/1569688/an-efficient-equalsobject-o-implementation/1569718#1569718 Comment by Chris Jester-Young on An efficient equals(Object o) implementation Chris Jester-Young 2009-10-15T00:35:44Z 2009-10-15T00:35:44Z The trouble with using <code>instanceof</code> is it's asymmetric if you're comparing an object one class A with an object of class B, where B subclasses A. But to do &quot;class equality&quot; comparison is even worse; then subclasses are never considered equal to superclass instances, even when substitutability says that they should be equal. i.e., <code>instanceof</code> is the lesser of two evils. http://stackoverflow.com/questions/1566726/at-a-programming-crossroads-php-net-generalise-or-specialise Comment by Chris Jester-Young on At a Programming crossroads, PHP, .NET, generalise or specialise? Chris Jester-Young 2009-10-14T15:02:35Z 2009-10-14T15:02:35Z @Alex: Don't mind the others; some people just look at the title and already decided that your post is a duplicate, judging a book by its cover and all that. :-P http://stackoverflow.com/questions/1566726/at-a-programming-crossroads-php-net-generalise-or-specialise/1566812#1566812 Comment by Chris Jester-Young on At a Programming crossroads, PHP, .NET, generalise or specialise? Chris Jester-Young 2009-10-14T14:59:58Z 2009-10-14T14:59:58Z To clarify my last point, that level of passion will, in some cases, start the next market. I think that's where &quot;market leaders/innovators&quot; come from. http://stackoverflow.com/questions/1566726/at-a-programming-crossroads-php-net-generalise-or-specialise/1566812#1566812 Comment by Chris Jester-Young on At a Programming crossroads, PHP, .NET, generalise or specialise? Chris Jester-Young 2009-10-14T14:56:43Z 2009-10-14T14:56:43Z I think all this talk about chasing the market sort of misses the point. Really great programmers program because they love it, not because it's a goldmine. Yes, I agree with riding the upcoming wave. But the foremost priority is to find one's passion, and run with it. YMMV. http://stackoverflow.com/questions/1563768/compound-conditional-in-lisp/1563814#1563814 Comment by Chris Jester-Young on Compound Conditional in Lisp Chris Jester-Young 2009-10-14T02:16:22Z 2009-10-14T02:16:22Z But but but...<code>cond</code> provides an implicit <code>progn</code> in every branch, so the use of <code>progn</code> here is superfluous. Well, I'm talking about Common Lisp, anyway. Who knows about other dialects of Lisp. :-P