User Jonathan - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T23:45:44Zhttp://stackoverflow.com/feeds/user/14850http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/803625/oauth-alternative/805261#8052610Answer by Jonathan for OAuth alternative?Jonathan2009-04-30T03:41:45Z2009-04-30T03:41:45Z<p>OAuth was built because there weren't any existing standards that solved the same problem. A fixed OAuth spec is forthcoming soon. It will be a pretty small change to the existing protocol.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/293611#2936110Answer by Jonathan for Are memory leaks ever ok?Jonathan2008-11-16T07:08:03Z2009-03-06T17:11:31Z<p>As long as your memory utilization doesn't increase over time, it depends. If you're doing lots of complex synchronization in server software, say starting background threads that block on system calls, doing clean shutdown may be too complex to justify. In this situation the alternatives may be:</p>
<ol>
<li>Your library that doesn't clean up its memory until the process exits.</li>
<li>You write an extra 500 lines of code and add another mutex and condition variable to your class so that it can shut down cleanly from your tests – but this code is never used in production, where the server only terminates by crashing.</li>
</ol>
http://stackoverflow.com/questions/359472/how-can-i-verify-a-google-authentication-api-access-token/589432#5894320Answer by Jonathan for How can I verify a Google authentication API access token?Jonathan2009-02-26T06:51:51Z2009-02-26T06:51:51Z<p>Try making an OAuth-authenticated request using your token to https://www.google.com/accounts/AuthSubTokenInfo. This is only documented to work for AuthSub, but it works for OAuth too. It won't tell you which user the token is for, but it will tell you which services it's valid for, and the request will fail if the token is invalid or has been revoked.</p>
http://stackoverflow.com/questions/308277/what-are-the-consequences-of-ignoring-warning-unused-parameter/308284#3082841Answer by Jonathan for What are the consequences of ignoring: warning: unused parameterJonathan2008-11-21T09:47:45Z2008-11-21T09:47:45Z<p>It means you wrote a function that takes a parameter but doesn't use the parameter. It's harmless but it might indicate bugs in some cases.</p>
<p>Generally you can silence this warning by removing the parameter name, leaving it anonymous, but that may not be desirable depending on why the parameter is not being used.</p>
<p>I'd suggest you turn off the warning if it is making it harder to find the real problems.</p>
http://stackoverflow.com/questions/294585/most-elegant-looping-construct/294803#2948036Answer by Jonathan for Most elegant looping construct?Jonathan2008-11-17T03:15:52Z2008-11-17T03:15:52Z<pre><code>for (int n = get_data(); n != -1; n = get_data()) {
send(n);
}
</code></pre>
http://stackoverflow.com/questions/187761/recursive-lock-mutex-vs-non-recursive-lock-mutex/293646#2936464Answer by Jonathan for Recursive Lock (Mutex) vs Non-Recursive Lock (Mutex)Jonathan2008-11-16T07:44:44Z2008-11-16T07:44:44Z<p>The answer is <em>not</em> efficiency. Non-reentrant mutexes lead to better code.</p>
<p>Example: A::foo() acquires the lock. It then calls B::bar(). This worked fine when you wrote it. But sometime later someone changes B::bar() to call A::baz(), which also acquires the lock. </p>
<p>Well, if you don't have recursive mutexes, this deadlocks. If you do have them, it runs, but it may break. A::foo() may have left the object in an inconsistent state before calling bar(), on the assumption that baz() couldn't get run because it also acquires the mutex. But it probably shouldn't run! The person who wrote A::foo() assumed that nobody could call A::baz() at the same time - that's the entire reason that both of those methods acquired the lock.</p>
<p>The right mental model for using mutexes: The mutex protects an invariant. When the mutex is held, the invariant may not change, but before releasing the mutex, the invariant is re-established. Reentrant locks are dangerous because the second time you acquire the lock you can't be sure the invariant is true any more.</p>
<p>If you are happy with reentrant locks, it is only because you have not had to debug a problem like this before. Java has non-reentrant locks these days in java.util.concurrent.locks, by the way.</p>
http://stackoverflow.com/questions/92452/distributed-concurrency-control/293629#2936290Answer by Jonathan for Distributed Concurrency ControlJonathan2008-11-16T07:27:11Z2008-11-16T07:27:11Z<p>If you can set up your load balancing so that requests for a single customer always get mapped to the same server then you can handle this via local synchronization. For example, take your customer ID mod 10 to find which of the 10 nodes to use.</p>
<p>Even if you don't want to do this in the general case your nodes could proxy to each other for this specific type of request.</p>
<p>Assuming your users are uniform enough (i.e. if you have a ton of them) that you don't expect hot spots to pop up where one node gets overloaded, this should still scale pretty well.</p>
http://stackoverflow.com/questions/292893/cause-of-a-memory-leak-in-c-when-using-the-boehm-gc/293603#2936030Answer by Jonathan for Cause of a memory leak in C++ when using the Boehm GCJonathan2008-11-16T06:59:26Z2008-11-16T06:59:26Z<p>The allocator is deleting your pairs. But deleting a pair doesn't delete members of the pair that happen to be pointers.</p>
http://stackoverflow.com/questions/256511/skip-list-vs-binary-tree/293588#2935881Answer by Jonathan for Skip List vs. Binary TreeJonathan2008-11-16T06:45:31Z2008-11-16T06:45:31Z<p>In practice I've found that B-tree performance on my projects has worked out to be better than skip-lists. Skip lists do seem easier to understand but implementing a B-tree is not <em>that</em> hard.</p>
<p>The one advantage that I know of is that some clever people have worked out how to implement a lock-free concurrent skip list that only uses atomic operations. For example, Java 6 contains the ConcurrentSkipListMap class, and you can read the source code to it if you are crazy.</p>
<p>But it's not too hard to write a concurrent B-tree variant either - I've seen it done by someone else - if you preemptively split and merge nodes "just in case" as you walk down the tree then you won't have to worry about deadlocks and only ever need to hold a lock on two levels of the tree at a time. The synchronization overhead will be a bit higher but the B-tree is probably faster.</p>
http://stackoverflow.com/questions/255557/is-1-to-n-multicast-on-the-open-internet-reliable/255604#2556041Answer by Jonathan for Is 1-to-n multicast on the open internet reliable?Jonathan2008-11-01T07:06:49Z2008-11-01T07:06:49Z<p>Yeah, internet-scale multicast routing isn't really a solved problem, nor is there much progress from what I can tell.</p>
http://stackoverflow.com/questions/249132/java-memory-consumption-top-and-hp-ux/249267#2492670Answer by Jonathan for Java memory consumption, "top" and HP-UxJonathan2008-10-30T04:23:22Z2008-10-30T04:23:22Z<p>The JVMs might just have different default parameters. The heap will grow to the size that you have configured to let it. The default on the Sun VM is a certain percentage of the RAM in the machine - that's to say that Java will, by default, use more memory if you use a machine with more memory on it.</p>
<p>I'd be really surprised if the HP-UX VM hadn't had lots of tuning for this sort of thing by HP. I'd suggest you fiddle with the parameters on both - figure out what the smallest max heap size you can use without hurting performance or throughput.</p>
http://stackoverflow.com/questions/172720/speeding-up-python/247622#247622-3Answer by Jonathan for Speeding Up PythonJonathan2008-10-29T17:09:59Z2008-10-29T17:09:59Z<p>The fact that you are concerned about performance suggests that maybe Python wasn't the best tool for the job. Python is slow.</p>
http://stackoverflow.com/questions/163552/jdk-jre-source-code-with-matching-jsse-ssl-source-code-and-matching-runnable-jd/190209#1902091Answer by Jonathan for JDK/JRE source code with matching JSSE (SSL) source code and matching runnable JDK / JRE?Jonathan2008-10-10T05:20:49Z2008-10-10T05:20:49Z<p>The Sun implementation is not open source as far as I know. You can download an open source JCE here:</p>
<p><a href="http://www.bouncycastle.org/java.html" rel="nofollow">http://www.bouncycastle.org/java.html</a></p>
http://stackoverflow.com/questions/190184/execv-and-const-ness/190197#1901971Answer by Jonathan for execv() and const-nessJonathan2008-10-10T05:16:08Z2008-10-10T05:16:08Z<p>const is a C++ thing - execv has taken char * arguments since before C++ existed.</p>
<p>You can use const_cast instead of copying, because execv doesn't actually modify its arguments. You might consider writing a wrapper to save yourself the typing.</p>
<p>Actually, a bigger problem with your code is that you declared an array of characters instead of an array of strings.</p>
<p>Try:
const char* args[4];</p>
http://stackoverflow.com/questions/189562/what-is-the-proper-name-for-doing-debugging-by-adding-print-statements/190187#1901871Answer by Jonathan for What is the proper name for doing debugging by adding 'print' statementsJonathan2008-10-10T05:09:47Z2008-10-10T05:09:47Z<p>(Good logging is incredibly valuable for debugging problems in running production systems. Lots of useless verbose print statements aren't, but logging something interesting when something important or unexpected occurred is incredibly important. If the only way you know how to debug problems is with a debugger, you're going to find yourself in quite the tight spot when the service you've built is broken for some of your users but you can't reproduce the problem locally.)</p>
http://stackoverflow.com/questions/188437/programmer-vs-architect/190161#1901610Answer by Jonathan for Programmer vs Architect?Jonathan2008-10-10T04:49:38Z2008-10-10T04:49:38Z<p>Doing all the design work and expecting others to do the implementation is unrealistic. I'm sure you can do it, but you'll get bad software out of it.</p>
<p>It goes both ways. You cannot design things without building them and you cannot build things without designing them. Building good software is an iterative process. Your first design will be bad and you won't realize how bad it is until you try to implement it.</p>
<p>Also, do you really want to design the system and then hand off the implementation to someone who isn't a good enough programmer to have been able to design it themselves? I hope not.</p>
http://stackoverflow.com/questions/190010/daemon-threads-explanation/190131#1901314Answer by Jonathan for Daemon Threads ExplanationJonathan2008-10-10T04:34:28Z2008-10-10T04:34:28Z<p>A simpler way to think about it, perhaps: when main returns, your process will not exit if there are non-daemon threads still running.</p>
<p>A bit of advice: Clean shutdown is easy to get wrong when threads and synchronization are involved - if you can avoid it, do so. Use daemon threads whenever possible.</p>
http://stackoverflow.com/questions/77718/java-operator-overload/81187#811870Answer by Jonathan for Java operator overloadJonathan2008-09-17T08:40:21Z2008-09-17T08:40:21Z<p>Why is it that you think the version with overloading is more reasonable?</p>
<p>How often do programmers need to implement new fundamental integer data types?</p>
<p>Can you think of an example other than complex numbers where overloading actually improves readability?</p>
http://stackoverflow.com/questions/76796/memory-management-in-c/81146#811462Answer by Jonathan for Memory management in C++Jonathan2008-09-17T08:32:19Z2008-09-17T08:32:19Z<p>A frequent source of these bugs is when you have a method that accepts a reference or pointer to an object but leaves ownership unclear. Style and commenting conventions can make this less likely.</p>
<p>Let the case where the function takes ownership of the object be the special case. In all situations where this happens, be sure to write a comment next to the function in the header file indicating this. You should strive to make sure that in most cases the module or class which allocates an object is also responsible for deallocating it.</p>
<p>Using const can help a lot in some cases. If a function will not modify an object, and does not store a reference to it that persists after it returns, accept a const reference. From reading the caller's code it will be obvious that your function has not accepted ownership of the object. You could have had the same function accept a non-const pointer, and the caller may or may not have assumed that the callee accepted ownership, but with a const reference there's no question.</p>
<p>Do not use non-const references in argument lists. It is very unclear when reading the caller code that the callee may have kept a reference to the parameter.</p>
<p>I disagree with the comments recommending reference counted pointers. This usually works fine, but when you have a bug and it doesn't work, especially if your destructor does something non-trivial, such as in a multithreaded program. Definitely try to adjust your design to not need reference counting if it's not too hard.</p>
http://stackoverflow.com/questions/58107/how-to-find-that-rock-star-junior-developer/81084#810840Answer by Jonathan for How to Find that Rock Star Junior Developer?Jonathan2008-09-17T08:20:45Z2008-09-17T08:20:45Z<p>In my experience, rock stars don't have light resumes. They have to learn somehow.</p>
http://stackoverflow.com/questions/803625/oauth-alternative/805289#805289Comment by Jonathan on OAuth alternative?Jonathan2009-05-01T07:49:31Z2009-05-01T07:49:31ZCollecting credentials for foreign sites creates a lot of security problems that are more serious than the bug in OAuth 1.0.http://stackoverflow.com/questions/308292/using-scrum-on-a-personal-time-projectComment by Jonathan on Using Scrum on a "Personal Time" ProjectJonathan2008-11-21T09:55:31Z2008-11-21T09:55:31ZDoesn't sound like a hobby to me!http://stackoverflow.com/questions/308276/c-call-constructor-from-constructor/308287#308287Comment by Jonathan on c++ call constructor from constructorJonathan2008-11-21T09:50:31Z2008-11-21T09:50:31ZHe's asking if one constructor can call another one. Java and C# allow this.http://stackoverflow.com/questions/294585/most-elegant-looping-construct/294803#294803Comment by Jonathan on Most elegant looping construct?Jonathan2008-11-21T09:45:19Z2008-11-21T09:45:19ZTake out the curly braces if you want to save a line :)http://stackoverflow.com/questions/294382/java-charbuffer-vs-char/294720#294720Comment by Jonathan on Java: CharBuffer vs. char[]Jonathan2008-11-17T03:19:57Z2008-11-17T03:19:57ZYou can reuse arrays.http://stackoverflow.com/questions/293421/c-using-operator-of-two-intrinsic-types-as-a-function-objectComment by Jonathan on C++: Using operator of two intrinsic types as a function objectJonathan2008-11-16T06:55:53Z2008-11-16T06:55:53ZQuestions like this are why friends don't let friends overload operatorshttp://stackoverflow.com/questions/293499/what-happens-if-you-dont-return-a-value-in-c/293520#293520Comment by Jonathan on What happens if you don't return a value in C++?Jonathan2008-11-16T06:55:18Z2008-11-16T06:55:18ZIt was legal to not return anything in C. It was still undefined, but at least it was legal.http://stackoverflow.com/questions/256511/skip-list-vs-binary-tree/256521#256521Comment by Jonathan on Skip List vs. Binary TreeJonathan2008-11-16T06:46:26Z2008-11-16T06:46:26ZWhy would you say that they use less memory?http://stackoverflow.com/questions/172720/speeding-up-python/247622#247622Comment by Jonathan on Speeding Up PythonJonathan2008-10-30T04:20:21Z2008-10-30T04:20:21ZIf you are doing the thing thousands of times a second it makes a difference.http://stackoverflow.com/questions/247538/which-standard-c-classes-cannot-be-reimplemented-in-c/247580#247580Comment by Jonathan on Which standard c++ classes cannot be reimplemented in c++?Jonathan2008-10-29T17:03:30Z2008-10-29T17:03:30ZIf the code relies on compiler constructs that are not part of the standard, it is not C++.