User Chris Jester-Young - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T19:41:09Z http://stackoverflow.com/feeds/user/13 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1685486/a-very-average-puzzle/1773190#1773190 0 Answer by Chris Jester-Young for A very average puzzle Chris Jester-Young 2009-11-20T20:56:22Z 2009-11-20T20:56:22Z <p>What's interesting about the <code>Iterable</code> solution is that you don't know, <em>à priori</em>, how many items you are averaging over.</p> <p>Also, ensuring that your total doesn't overflow is an interesting challenge, and not easy to solve (my solution is not perfect in solving that: try using 9000000000000000000 and 9000000000000000001 as numbers to average), although I will revise my answer when I come up with a better way.</p> <pre><code>public static long average(Iterable&lt;Long&gt; args) { int count = 0; Rational result = new Rational(0, 1); for (long arg : args) { int prev = count++; result = result.times(new Rational(prev, count)) .plus(new Rational(arg, count)); } return result.longValue(); } private static class Rational extends Number { private static final long serialVersionUID = 1L; private final long num, den; public Rational(long num, long den) { long gcd = gcd(num, den); this.num = num / gcd; this.den = den / gcd; } public Rational plus(Rational rhs) { long gcd = gcd(den, rhs.den); long lmult = rhs.den / gcd; long rmult = den / gcd; return new Rational(lmult * num + rmult * rhs.num, lmult * den); } public Rational times(Rational rhs) { Rational r1 = new Rational(num, rhs.den); Rational r2 = new Rational(rhs.num, den); return new Rational(r1.num * r2.num, r1.den * r2.den); } private static long gcd(long a, long b) { if (a &lt; 0) return gcd(-a, b); if (a &gt; b) return gcd(b, a); if (a == 0) return b; return gcd(b % a, a); } @Override public int intValue() {return (int) longValue();} @Override public long longValue() {return num / den;} @Override public float floatValue() {return (float) doubleValue();} @Override public double doubleValue() {return (double) num / den;} } </code></pre> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1 2 A little diversion into floating point (im)precision, part 1 Chris Jester-Young 2008-08-04T06:21:38Z 2009-11-20T20:37:54Z <p>Most mathematicians agree that e ** (πi) + 1 = 0. However, most floating point implementations disagree. How well can we settle this dispute?</p> <p>I'm keen to hear about different languages and implementations, and various methods to make the result as close to zero as possible. Be creative!</p> http://stackoverflow.com/questions/1745372/combstr-assignment/1745432#1745432 1 Answer by Chris Jester-Young for ComBSTR assignment Chris Jester-Young 2009-11-16T23:02:55Z 2009-11-16T23:02:55Z <p>Personally, I'd prefer option 1, because that doesn't require constructing a new <code>CComBSTR</code> object. (Whether their code does so behind the scenes is a different story, of course.)</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf 62 Stack overflow code golf Chris Jester-Young 2008-09-15T11:17:38Z 2009-11-15T21:26:32Z <p>To commemorate the public launch of Stack Overflow, what's the shortest code to cause a stack overflow? Any language welcome.</p> <p>ETA: Just to be clear on this question, seeing as I'm an occasional Scheme user: tail-call "recursion" is really iteration, and any solution which can be converted to an iterative solution relatively trivially by a decent compiler won't be counted. :-P</p> <p>ETA2: I've now selected a “best answer”; see <a href="http://stackoverflow.com/questions/62188/stack-overflow-code-golf/71833#71833">this post</a> for rationale. Thanks to everyone who contributed! :-)</p> http://stackoverflow.com/questions/1715844/changing-open-source-software-to-divert-donations/1715881#1715881 3 Answer by Chris Jester-Young for Changing Open Source Software to divert donations Chris Jester-Young 2009-11-11T15:22:15Z 2009-11-11T15:22:15Z <p>No, you can't put anything in the GPL to prohibit what you're describing. People are free to make their distribution request donations for them, but, you then have to ask whether that would net them any money.</p> <p>Remember that they are not allowed to take out copyright messages that say the software was written by you. So unless their version is significantly enhanced from yours, why would users pay them, and not you?</p> http://stackoverflow.com/questions/1693181/scheme-implementing-n-argument-compose-using-fold/1712058#1712058 1 Answer by Chris Jester-Young for Scheme: Implementing n-argument compose using fold Chris Jester-Young 2009-11-10T23:44:42Z 2009-11-10T23:44:42Z <p>The OP mentioned (in a comment to my answer) that his implementation of Scheme does not have <code>call-with-values</code>. Here's a way to fake it (if you can ensure that the <code>&lt;values&gt;</code> symbol is never otherwise used in your program: you can replace it with <code>(void)</code>, <code>(if #f #f)</code>, or whatever you like that's not used, and that's supported by your implementation):</p> <pre><code>(define (values . items) (cons '&lt;values&gt; items)) (define (call-with-values source sink) (let ((val (source))) (if (and (pair? val) (eq? (car val) '&lt;values&gt;)) (apply sink (cdr val)) (sink val)))) </code></pre> <p>What this does is that it fakes a multi-value object with a list that's headed by the <code>&lt;values&gt;</code> symbol. At the <code>call-with-values</code> site, it checks to see if this symbol is there, and if not, it treats it as a single value.</p> <p>If the leftmost function in your chain can possibly return a multi-value, your calling code has to be prepared to unpack the <code>&lt;values&gt;</code>-headed list. (Of course, if your implementation doesn't have multiple values, this probably won't be of much concern to you.)</p> http://stackoverflow.com/questions/1698856/iterate-over-functions/1698867#1698867 5 Answer by Chris Jester-Young for Iterate over functions Chris Jester-Young 2009-11-09T02:52:12Z 2009-11-09T03:17:55Z <p>You can't use the <code>f(g(o))</code> syntax, but you can use (with a suitable interface) <code>f.call(g.call(o))</code>.</p> <pre><code>public interface UnaryFunction&lt;Arg, Ret&gt; { Ret call(Arg arg); } </code></pre> <p>Example usage (this is as close as you can get to functors in Java, at least until closures make it into the language):</p> <pre><code>public class Exp implements UnaryFunction&lt;Double, Double&gt; { public Double call(Double arg) { return Math.exp(arg); } } </code></pre> <p><hr></p> <p>If you don't want to create a zillion classes, a reflection-based approach may work better (example for <code>double</code> -> <code>double</code> functions in <code>java.lang.Math</code>, but easily adaptable to other scenarios):</p> <pre><code>public class MathUnary implements UnaryFunction&lt;Double, Double&gt; { private final Method method; public MathUnary(String funName) { try { method = Math.class.getMethod(funName, double.class); } catch (NoSuchMethodException exc) { throw new IllegalArgumentException(exc); } if (method.getReturnType() != double.class) throw new IllegalArgumentException(); } public Double call(Double arg) { try { return (Double) method.invoke(null, arg); } catch (IllegalAccessException exc) { throw new AssertionError(exc); } catch (InvocationTargetException exc) { throw new AssertionError(exc); } } } </code></pre> <p>(Exception messages have been left out for brevity. Obviously, I'd put them in for production code.)</p> <p>Sample usage:</p> <pre><code>MathUnary[] ops = { new MathUnary("sin"), new MathUnary("cos"), new MathUnary("tan") }; for (UnaryFunction&lt;Double, Double&gt; op1 : ops) { for (UnaryFunction&lt;Double, Double&gt; op2 : ops) { op1.call(op2.call(arg)); } } </code></pre> http://stackoverflow.com/questions/1698838/what-is-wrong-with-this-c-typedef/1698857#1698857 2 Answer by Chris Jester-Young for What is wrong with this c++ typedef? Chris Jester-Young 2009-11-09T02:48:56Z 2009-11-09T02:48:56Z <p>Vectors store items by value, not by reference. If you want to be able to store <code>MathStudent</code>, <code>ArtStudent</code>, and the like, you should think about using a vector of (smart) pointers to <code>Student</code> instead:</p> <pre><code>typedef vector&lt;shared_ptr&lt;Student&gt; &gt; friends; </code></pre> <p>(where <code>shared_ptr</code> is either <code>std::tr1::shared_ptr</code> or <code>boost::shared_ptr</code>, depending on whether your C++ system supports TR1.)</p> http://stackoverflow.com/questions/1698660/when-i-change-a-parameter-inside-a-function-does-it-change-for-the-caller-too/1698714#1698714 3 Answer by Chris Jester-Young for When I change a parameter inside a function, does it change for the caller, too? Chris Jester-Young 2009-11-09T01:45:05Z 2009-11-09T01:45:05Z <p>Passing by reference is indeed a correct answer, however, C++ sort-of allows multi-values returns using <code>std::tr1::tuple</code> and (for two values) <code>std::pair</code>:</p> <pre><code>#include &lt;cmath&gt; #include &lt;tuple&gt; using std::cos; using std::sin; using std::tr1::make_tuple; using std::tr1::tuple; tuple&lt;double, double&gt; trans(double x, double y, double theta) { double m = cos(theta)*x + sin(theta)*y; double n = -sin(theta)*x + cos(theta)*y; return make_tuple(m, n); } </code></pre> <p>This way, you don't have to use out-parameters at all.</p> <p>On the caller side, you can use <code>std::tr1::tie</code> to unpack the tuple into other variables:</p> <pre><code>using std::tr1::tie; double xc, yc; tie(xc, yc) = trans(1, 1, M_PI); // Use xc and yc from here on </code></pre> <p>Hope this helps!</p> http://stackoverflow.com/questions/1690251/how-to-check-for-nan-in-scheme/1698463#1698463 0 Answer by Chris Jester-Young for How to check for NaN in Scheme? Chris Jester-Young 2009-11-09T00:19:06Z 2009-11-09T00:19:06Z <p>In most programming languages, you can determine NaN values by comparing a value with itself.</p> <pre><code>(define (nan? x) (not (= x x))) </code></pre> http://stackoverflow.com/questions/1693181/scheme-implementing-n-argument-compose-using-fold/1698417#1698417 1 Answer by Chris Jester-Young for Scheme: Implementing n-argument compose using fold Chris Jester-Young 2009-11-08T23:56:35Z 2009-11-08T23:56:35Z <p>You might want to try <a href="http://refactormycode.com/codes/836-generalised-compose" rel="nofollow">this version</a> (uses <code>reduce</code> from <a href="http://srfi.schemers.org/srfi-1/srfi-1.html" rel="nofollow">SRFI 1</a>):</p> <pre><code>(define (compose . fns) (define (make-chain fn chain) (lambda args (call-with-values (lambda () (apply fn args)) chain))) (reduce make-chain values fns)) </code></pre> <p>It's not rocket science: when I posted this on the #scheme IRC channel, <a href="http://stackoverflow.com/users/128595">Eli</a> noted that this is the standard implementation of <code>compose</code>. :-) (As a bonus, it also worked well with your examples.)</p> 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 89 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/1685486/a-very-average-puzzle/1773190#1773190 Comment by Chris Jester-Young on A very average puzzle Chris Jester-Young 2009-11-22T07:14:44Z 2009-11-22T07:14:44Z I created a version that used mixed fractions, which helps a little, but is still not perfect (still trips up if dealing with large numbers that are relatively prime (gcd == 1)). :-P So, I'll keep trying. :-) http://stackoverflow.com/questions/1685486/a-very-average-puzzle/1773190#1773190 Comment by Chris Jester-Young on A very average puzzle Chris Jester-Young 2009-11-22T02:23:50Z 2009-11-22T02:23:50Z Yes, it's one of those &quot;open secrets&quot; that's pretty well-known among Stack Overflow oldtimers. :-P BTW, I'm still working on a more robust solution---coming up soon! http://stackoverflow.com/questions/1750995/perl-script-fork-exec-system-claims-my-process-has-died-when-in-fact-only-my-ch Comment by Chris Jester-Young on Perl Script, Fork/Exec, System claims my process has died when in fact only my child process has died Chris Jester-Young 2009-11-17T19:08:41Z 2009-11-17T19:08:41Z Agree with Adam. Show me the code! (Apologies to Jerry Maguire.) http://stackoverflow.com/questions/1745723/how-can-i-use-my-multiple-cored-dedicated-server-to-run-my-java-application Comment by Chris Jester-Young on How can I use my multiple cored dedicated server to run my java application? Chris Jester-Young 2009-11-17T00:26:03Z 2009-11-17T00:26:03Z @steven: No, it doesn't. It's a programming question. http://stackoverflow.com/questions/1745681/is-there-any-mysql-driver-for-c-c-which-is-not-gpled/1745759#1745759 Comment by Chris Jester-Young on Is there any MySQL driver for C/C++ which is not GPLed? Chris Jester-Young 2009-11-17T00:24:01Z 2009-11-17T00:24:01Z There's a problem for the OP: their program is <i>not</i> under an open-source licence. (No shareware is, by definition.) So this exception doesn't apply. http://stackoverflow.com/questions/1712188/how-do-i-run-a-perl-script-on-multiple-input-files-with-the-same-extension/1712196#1712196 Comment by Chris Jester-Young on How do I run a Perl script on multiple input files with the same extension? Chris Jester-Young 2009-11-11T02:03:48Z 2009-11-11T02:03:48Z @Jonathan: It's likely that the OP is running on Windows, using the <code>cmd</code> shell. As far as I remember, <code>cmd</code> does not do wildcard expansion as Unix shells do. http://stackoverflow.com/questions/1693181/scheme-implementing-n-argument-compose-using-fold/1698417#1698417 Comment by Chris Jester-Young on Scheme: Implementing n-argument compose using fold Chris Jester-Young 2009-11-10T23:39:09Z 2009-11-10T23:39:09Z I've developed a way to sort-of fake <code>values</code> and <code>call-with-values</code>: new post coming up. :-) http://stackoverflow.com/questions/9/how-do-i-calculate-someones-age-in-c/35#35 Comment by Chris Jester-Young on How do I calculate someone's age in C#? Chris Jester-Young 2009-11-10T00:14:21Z 2009-11-10T00:14:21Z @Stefan: Back when this was written, comments were not a feature of the site. :-) http://stackoverflow.com/questions/1698856/iterate-over-functions/1698867#1698867 Comment by Chris Jester-Young on Iterate over functions Chris Jester-Young 2009-11-09T04:54:13Z 2009-11-09T04:54:13Z Wow. Functional Java was obviously designed with code golfing (or obfuscation :-P) in mind...package name <code>fj</code>, with functor type <code>F</code>, with method named <code>f</code>. I like the idea behind the library, but I'd not have chosen those names. :-P http://stackoverflow.com/questions/1698856/iterate-over-functions/1698893#1698893 Comment by Chris Jester-Young on Iterate over functions Chris Jester-Young 2009-11-09T03:14:17Z 2009-11-09T03:14:17Z Not a fan of generics? http://stackoverflow.com/questions/1698672/preventing-php-code-from-being-pirated Comment by Chris Jester-Young on Preventing PHP Code from being Pirated Chris Jester-Young 2009-11-09T01:49:34Z 2009-11-09T01:49:34Z Agree with Jason. It's impossible to rep-whore with a community wiki question; only badge-whoring is possible. But since badges confer no special privileges, it isn't as big of a deal. http://stackoverflow.com/questions/1693181/scheme-implementing-n-argument-compose-using-fold/1698417#1698417 Comment by Chris Jester-Young on Scheme: Implementing n-argument compose using fold Chris Jester-Young 2009-11-09T00:02:50Z 2009-11-09T00:02:50Z [Dirk's answer](<a href="http://stackoverflow.com/questions/1693181/scheme-implementing-n-argument-compose-using-fold/1693202#1693202" rel="nofollow" title="scheme implementing n argument compose using fold">stackoverflow.com/questions/1693181/&hellip;</a>) (since deleted) had the right idea: just use <code>values</code> instead of <code>identity</code>. This is actually the method my implementation of <code>compose</code> exploits: <code>(compose)</code> simply returns <code>values</code>. http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1743#1743 Comment by Chris Jester-Young on What is the single most influential book every programmer should read? Chris Jester-Young 2009-11-08T23:33:04Z 2009-11-08T23:33:04Z (In response to the actual question: I started my development career at 20, by which time I've already been coding with a number of programming languages for more than 5 years. I suspect that a large proportion of the SO readership is in a similar circumstance. They may be new to professional development, but they're definitely not programming newbies.) http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1743#1743 Comment by Chris Jester-Young on What is the single most influential book every programmer should read? Chris Jester-Young 2009-11-08T23:29:36Z 2009-11-08T23:29:36Z @jmucchiello: I don't know if you're responding to my post, or to the comments here, but my post was not written with beginners in mind (I try to avoid answering &quot;newbie&quot; questions on SO, because other people can answer them much more skilfully than I can). :-) If anything, I'm targeting people of a similar experience level to mine. 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? :-)