User Mark Bessey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T02:48:27Zhttp://stackoverflow.com/feeds/user/17826http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1889623/performance-loading-js-files/1889819#18898190Answer by Mark Bessey for performance loading js filesMark Bessey2009-12-11T18:01:56Z2009-12-11T18:01:56Z<p>If you really only use each function on a single page, you won't gain much by combining them into a single file. It'll take longer to load whatever page a visitor hits first, but subsequent pages will load faster.</p>
<p>If most scripts are only used on a few pages, then it might make sense to figure out which pages visitors are likely to hit first (main page, plus whatever's bookmark-worthy) and produce combined js files for those pages, so they load as quickly as possible. Then just load the less-used scripts on whatever page they're used.</p>
http://stackoverflow.com/questions/1884768/example-of-code-generator-you-made-from-scratch/1885723#18857234Answer by Mark Bessey for Example of code generator you made from scratch?Mark Bessey2009-12-11T04:08:32Z2009-12-11T04:08:32Z<p>They're extremely helpful in White Box testing. You can write a simple Perl (or whatever) script that spits out literally thousands of test cases for some piece of code. For example, suppose you want the answer to this question:</p>
<blockquote>
<p>Does your source-code debugger properly
handle every type of variable
declaration that GCC allows?</p>
</blockquote>
<p>Testing that by hand would really be a drag. Re-testing it after every change in the debugger is likely to lead to insanity.</p>
http://stackoverflow.com/questions/1884699/android-compass-noise-algorithm/1885706#18857061Answer by Mark Bessey for Android compass noise algorithmMark Bessey2009-12-11T04:04:10Z2009-12-11T04:04:10Z<p>If you do get a significant number of completely-wrong values, you probably don't want to just average them. You could try applying a median filter first - take N samples, calculate the median, and throw out anything more than +- some threshold value. You can apply a smoothing filter after that.</p>
http://stackoverflow.com/questions/947577/what-is-a-qbit-and-how-soon-can-i-get-a-quantum-computer/947892#9478923Answer by Mark Bessey for What is a QBit and how soon can I get a quantum computer?Mark Bessey2009-06-03T23:51:51Z2009-12-10T19:41:36Z<p>There's been a good deal of hype about quantum computers over the last decade or two, but there a number of problems that will need to be resolved before they'll become practical. </p>
<p>Some of these are "just" engineering problems, like shrinking the size down from room-sized 6-qbit systems to something more like the density of an integrated circuit. Or figuring out a way to prevent thermal noise from scrambling the system, without requiring the customer to keep large stocks of liquid Nitrogen (or Helium!) on hand.</p>
<p>On the other hand, there appear to be some more fundamental problems with constructing quantum computers with large numbers of qbits.</p>
<p>Primary among these is error-correction. Part of the inherent nature of the entangled systems used for quantum computing is that they can lose "coherence" spontaneously. Great strides have been made in increasing the entangled lifetime, but you're still very limited in the number of operations that you can perform reliably. </p>
<p>Some techniques for error correction in quantum computations have been developed, but the last article I read on quantum EC indicated that the number of error-correcting qbits required goes up <strike>exponentially </strike> more-or-less logarithmically with the number of active qbits. Note that the initial constant factor may be quite large - it can take 5 physical qbits to represent 1 logical qbit.</p>
<p>To some extent (it remains to be seen how much), this <strike>exponential</strike> growth in size is going to mitigate against the exponential advantage in speed that quantum computation is supposed to have over conventional computation.</p>
<p>Okay, so you can get a 6 qbit system today, which is way too small to tackle "interesting" problems with. Something like factoring a 2048-digit number is going to require systems with millions or billions of qbits. Sure, you'll get the answer "instantly", but there's no clear path to get anywhere near that level of performance using current techniques. Just loading the problem into the system would probably exceed the coherence lifetime.</p>
<p>Oh, to answer your other questions:
I think that most folks are working with quantum storage systems with a single pair of states. In principle, most of these systems could store multiple non-overlapping states per storage unit, but I think a lot more effort is going into making the equipment work reliably at all, rather than maximizing efficiency.</p>
<p>Quantum algorithms are weird in the same way that quantum physics is. Rather than trying to explain how they work, here's an article on Shor's algorithm for factoring integers.
<a href="http://en.wikipedia.org/wiki/Shor%27s%5Falgorithm" rel="nofollow">http://en.wikipedia.org/wiki/Shor's_algorithm</a></p>
<p>And here's a reference on the error-correction issue:
<a href="http://en.wikipedia.org/wiki/Quantum%5Ferror%5Fcorrection" rel="nofollow">http://en.wikipedia.org/wiki/Quantum_error_correction</a></p>
http://stackoverflow.com/questions/1860970/what-should-a-tester-report/1861158#18611581Answer by Mark Bessey for What should a tester report?Mark Bessey2009-12-07T16:35:48Z2009-12-07T18:50:17Z<p>You and the tester will never exactly agree on what "needs" to be reported. Just set the priority on issues correctly, and get on with fixing the high-priority stuff first. </p>
<p>One thing you absolutely do not want to do is to discourage the tester from filing bugs. That'll come back to bite you when something ships totally broken, and they say "I thought that was just how it worked".</p>
<p>Do make sure that you're communicating the development schedule and status properly, so they don't waste time testing features that aren't sufficiently complete. </p>
http://stackoverflow.com/questions/1853243/c-do-you-really-write-exception-safe-code/1853300#18533004Answer by Mark Bessey for C++: do you (really) write exception safe code?Mark Bessey2009-12-05T20:10:42Z2009-12-05T20:10:42Z<p>Leaving aside the confusion between SEH and C++ exceptions, you need to be aware that exceptions can be thrown at any time, and write your code with that in mind. The need for exception-safety is largely what drives the use of RAII, smart pointers, and other modern C++ techniques. </p>
<p>If you follow the well-established patterns, writing exception-safe code is not particularly hard, and in fact it's easier than writing code that handles error returns properly in all cases. </p>
http://stackoverflow.com/questions/1851458/how-to-play-audio-object-in-webos/1851493#18514931Answer by Mark Bessey for how to play audio object in webOSMark Bessey2009-12-05T07:37:35Z2009-12-05T07:37:35Z<p>Have you read <a href="http://developer.palm.com/index.php?option=com%5Fcontent&view=article&id=1741" rel="nofollow">the documentation</a>, or looked at the sample code? What sort of problem are you having?</p>
http://stackoverflow.com/questions/1850595/detecting-if-integer-can-be-written-as-sum-of-given-integers/1850616#18506160Answer by Mark Bessey for Detecting if integer can be written as sum of given integersMark Bessey2009-12-05T00:42:51Z2009-12-05T00:42:51Z<p>Two obvious approaches suggest themselves:</p>
<ol>
<li>Write a series of linear equations,
and solve to find various solutions.
Choose one with the least number of
terms. </li>
<li>Trial and error, starting
with the largest terms first.</li>
</ol>
http://stackoverflow.com/questions/1848826/why-do-i-not-get-strcpy-errors-on-the-mac-while-i-do-on-windows/1849029#18490292Answer by Mark Bessey for Why do I not get strcpy errors on the Mac while I do on Windows?Mark Bessey2009-12-04T19:07:14Z2009-12-04T19:07:14Z<pre><code>char acctNum[];
char acctFN[];
char acctLN[];
</code></pre>
<p>There's your problem right there. You never seem to allocate any space for these strings anywhere. The strcpy() in setAcctNum() is overflowing the bounds of that unsized array, and overwriting something else. It's pretty amazing that this compiles at all, actually.</p>
<p>You probably ought to be using std::string, instead - that'll make the memory management easier, at least.</p>
http://stackoverflow.com/questions/1792496/what-are-the-minimal-quantity-of-testers-per-programmers/1848561#18485610Answer by Mark Bessey for What are the minimal quantity of testers per programmers?Mark Bessey2009-12-04T17:47:37Z2009-12-04T17:47:37Z<p>The minimal number is 0 testers, of course. That's far too few for most organizations, I'd think. Most places I've worked have been in the range of one tester per ten developers to about one tester per 5 developers. We could always have used more <em>good</em> testers, though. </p>
http://stackoverflow.com/questions/1830238/how-much-should-i-add-when-resizing-an-array/1830266#18302660Answer by Mark Bessey for How much should I add when resizing an array?Mark Bessey2009-12-02T02:17:56Z2009-12-02T02:34:01Z<p>For maximum performance, you're going to want to resize as rarely as possible. Set the initial size to be as large as you'll typically need, rather than starting with N elements. The value you choose for N will matter less in that case.</p>
<p><hr></p>
<p>If you are going to create a large number of these list objects, of varying sizes, then you'll want to use a pool-based allocator, and not free the memory until you exit.</p>
<p>And to eliminate the copy operation altogether, you can use a list of arrays</p>
http://stackoverflow.com/questions/1808979/access-nsmutablearray-to-an-index-with-no-value/1827686#18276861Answer by Mark Bessey for Access NSMutableArray to an index with no valueMark Bessey2009-12-01T17:27:52Z2009-12-01T17:27:52Z<p>You have two options: Use the <code>count</code> method to ensure you're within the bounds of the array, or catch the exception when you try to use <code>objectAtIndex:</code> Checking the range with count will be much lower overhead than catching the exception.</p>
<p>In case you didn't know - there are no "holes" allowed in an NSArray - the objects from index 0 to the end of the array ([<code>array count]-1</code>) will all be accessible.</p>
http://stackoverflow.com/questions/1823523/continuous-output-in-neural-networks/1823579#18235793Answer by Mark Bessey for Continuous output in Neural NetworksMark Bessey2009-12-01T02:03:19Z2009-12-01T02:03:19Z<p>You will typically need to do some filtering (level conversion, etc) on both the input and the output. Obviously, filtering the input will change the internal state, so some consideration needs to be given to not losing the signal you're trying to train on.</p>
http://stackoverflow.com/questions/1823346/whats-the-limit-to-the-number-of-members-you-can-have-in-a-java-enum/1823382#1823382-2Answer by Mark Bessey for What's the limit to the number of members you can have in a java enum?Mark Bessey2009-12-01T00:50:38Z2009-12-01T01:50:39Z<p>If you have to ask, you're probably doing something wrong. The actual limit is probably fairly high, but an enum with more than 10 or so values would be highly suspect, I think. Break that up into related collections, or a type hierarchy, or something.</p>
http://stackoverflow.com/questions/1823424/does-apples-iphone-app-review-process-use-a-business-or-calendar-day/1823446#18234461Answer by Mark Bessey for Does Apple's iPhone App Review Process use a business or calendar day?Mark Bessey2009-12-01T01:13:33Z2009-12-01T01:13:33Z<p>Only someone from Apple could tell you how they calculated that statistic, and it wouldn't matter anyway. There's no way for you to know whether your application will be approved in typical time, faster than typical, or lost in a tangle of bureaucratic red-tape for months (rare, but it does happen).</p>
http://stackoverflow.com/questions/1812765/whats-the-most-challenging-algorithm-you-ever-implemented/1813276#18132761Answer by Mark Bessey for What's the most challenging algorithm you ever implemented?Mark Bessey2009-11-28T18:20:46Z2009-11-28T18:20:46Z<p>Least-squares fit of geometric shapes onto noisy data. As others have mentioned, it wasn't so much implementing the algorithm itself that was the problem, rather figuring out what went wrong when it failed miserably. </p>
http://stackoverflow.com/questions/1800974/window-beforeunload-called-twice-in-firefox-how-to-get-around-this/1801816#18018160Answer by Mark Bessey for window.beforeunload called twice in Firefox - how to get around this?Mark Bessey2009-11-26T06:07:46Z2009-11-26T06:07:46Z<p>Set a variable in the handler to prevent the dialog coming up the second time. Use setTimeout to reset it afterwards. </p>
http://stackoverflow.com/questions/1800594/in-javascript-why-is-preferred-over-new-array/1800810#180081013Answer by Mark Bessey for In JavaScript, why is [ ] preferred over new Array(); ?Mark Bessey2009-11-26T00:04:40Z2009-11-26T00:40:50Z<p>One good reason is because the Array constructor has completely non-intuitive behavior. For example:</p>
<pre><code>var a = new Array(5);
console.log(a.length); //prints "5"
console.log(a[0]); //prints "undefined"
var b = new Array(1,2);
console.log(b.length); //prints "2"
console.log(b[0]); //prints "1"
</code></pre>
<p>In this case, a ends up being an array of size 5 with all elements undefined, and b ends up being an array of size 2, with the values [1,2].</p>
<pre><code>var c = new Array("5");
console.log(c.length); //prints "1"
console.log(c[0]); //prints "5"
</code></pre>
<p>And here, you end up with a single-element array, containing "5"</p>
<p>In general, you should probably <strong>never</strong> use the constructors on built-in types in Javascript. They all have weird edge cases like this. For example:</p>
<pre><code>var s = new String("Hello");
var l = "Hello";
console.log(typeof(s)); // prints "object"
console.log(typeof(l)); // prints "string"
</code></pre>
http://stackoverflow.com/questions/1799484/when-should-and-shouldnt-you-break-away-from-oop-for-speed-performance/1799607#17996071Answer by Mark Bessey for When should and shouldn't you break away from OOP for speed/performance?Mark Bessey2009-11-25T20:03:03Z2009-11-25T20:03:03Z<p>For the specific environment and applications they're talking about, that is good advice. I don't think it makes sense to generalize that to other situations, though. Android applications are by and large going to be small projects with little in the way of inter-dependencies. So, using public variables as the interface to some state is no big deal. </p>
<p>In particular, if you're choosing between trivial pass-through getter/setter methods and public variables, you're already most of the way down the "breaking encapsulation" road, so you might as well not pay the extra performance hit for no gain in flexibility. Given that it's Java, "build the world" is more-or-less the usual state of affairs when anything changes, anyway.</p>
<p>For a larger system, in a language like C++, you'd potentially have more benefit to a thin layter of abstraction like this.</p>
http://stackoverflow.com/questions/1785467/can-i-write-custom-assertions-in-cxxtest/1785651#17856510Answer by Mark Bessey for Can I write custom assertions in CxxTest?Mark Bessey2009-11-23T20:15:18Z2009-11-23T20:15:18Z<p>Well, the assertions are just preprocessor macros, so you could probably implement them however you want, and then #define a macro for them. I'd think it'd be better to use a name that doesn't start with <code>TS_ASSERT_</code>, so that you don't confuse later readers of the code.</p>
<p>The predicate version doesn't look all that clumsy to me - I'd probably go with that, or possibly implement a check_ method on the class you're testing, and call that from the test. I often end up needing methods that validate the internal structure of the class for run-time debugging & logging, anyway...</p>
http://stackoverflow.com/questions/1777486/function-pointers-in-objective-c/1777598#17775980Answer by Mark Bessey for Function Pointers in Objective CMark Bessey2009-11-22T02:18:28Z2009-11-22T02:18:28Z<p>You can do this with <code>instanceMethodForSelector:</code> See the Apple <a href="http://developer.apple.com/mac/library/documentation/cocoa/reference/Foundation/Classes/NSObject%5FClass/Reference/Reference.html#//apple%5Fref/doc/uid/20000050-482446" rel="nofollow">NSObject documentation</a> for more info.</p>
http://stackoverflow.com/questions/1777461/best-case-running-time-to-solve-an-np-complete-problem/1777558#17775583Answer by Mark Bessey for Best-case Running-time to solve an NP-Complete problem?Mark Bessey2009-11-22T02:05:42Z2009-11-22T02:05:42Z<p>A characteristic of the NP-Complete problems is that any of the problems in NP can be mechanically transformed into any of the NP-Complete problems in, at most, polynomial time. </p>
<p>Therefore, whatever the best solution for any given NP-Complete problem is, it is automatically a similarly-good solution for any other NP problem.</p>
<p>Given that dynamic programming can solve Traveling Salesman Problem in 2^n time and 2^n space, the same must be true of all other NP problems [well, plus the time to apply the transformation, I guess - so it could be 2^(n+1)].</p>
http://stackoverflow.com/questions/1772672/are-there-compiler-flags-to-get-malloc-to-return-pointers-above-the-4g-limit-for/1777494#17774940Answer by Mark Bessey for Are there compiler flags to get malloc to return pointers above the 4G limit for 64bit testing (various platforms)?Mark Bessey2009-11-22T01:43:16Z2009-11-22T01:43:16Z<p>Not that you asked specifically, but for others that might be curious, gcc on Mac OS X seems to allocate from the area above 4GB for 64-bit programs by default.</p>
<p>Here's a C program to verify this on whatever compiler/OS combination you might have:</p>
<pre><code>#include <stdlib.h>
#include <stdio.h>
int main() {
void *p = malloc(1000);
printf("%p\n", p);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1407354/is-there-a-c-unit-testing-library-that-is-similar-to-nunit/1777475#17774751Answer by Mark Bessey for Is there a C++ unit testing library that is similar to NUnit?Mark Bessey2009-11-22T01:35:23Z2009-11-22T01:35:23Z<p>You won't find anything very much like NUnit, unfortunately. Since C++ doesn't have the same strong reflection ability, the process for defining tests needs to be somewhat more explicit, rather than using attributes, as in NUnit.</p>
<p>I like <a href="http://cxxtest.tigris.org/" rel="nofollow">cxxtest</a> because it's easy to set up, and doesn't require manual test registration.</p>
http://stackoverflow.com/questions/1773437/the-right-way-to-kill-off-near-dead-hosted-applications/1773495#17734950Answer by Mark Bessey for The right way to kill off near-dead hosted applications?Mark Bessey2009-11-20T21:56:32Z2009-11-20T21:56:32Z<p>If you can do a combination of #1 and #4, that might work - announce that the service is going away on date X, and offer the code to anyone that wants to take it over. There might be someone out there that values the service enough to support it for free.</p>
<p>I suppose you've already determined the amount that each user would have to pay in order to make it worth your while to keep supporting them? You could offer that as option #5, I suppose.</p>
http://stackoverflow.com/questions/1754431/system-architecture/1765228#17652281Answer by Mark Bessey for System ArchitectureMark Bessey2009-11-19T17:51:57Z2009-11-19T17:51:57Z<p>It depends on what you mean by "64 bit machine". There are broadly three categories depending on processor family:</p>
<ol>
<li>Supports some 64-bit math operations</li>
<li>Can run programs in X-64 mode (64-bit addressing)</li>
<li>Has 64-bit kernel support</li>
</ol>
<p>I assume that you mean sense "2" here, since that's the most relevant for application code. You don't have to worry about sense "1" unless you need to run on older PowerPC Macs, I believe.</p>
<p>You specifically mentioned doing this in C code, which doesn't actually make much sense. If you're compiling C code, you can just build your application "fat", with 32- and 64- bit variants, and therefore do the check at compile-time with:</p>
<pre><code>#if _LP64
//64-bit stuff
#else
//32-bit stuff
#endif
</code></pre>
http://stackoverflow.com/questions/1763749/accessing-internal-memory-of-the-arm-from-a-user-process-on-gnu-linux/1764210#17642101Answer by Mark Bessey for accessing internal memory of the ARM from a user process on GNU/LinuxMark Bessey2009-11-19T15:43:22Z2009-11-19T15:43:22Z<p>I'd think that this would require sone level of kernel and/or driver support. If you're using a Linux distribution that's specific to your platform, there may be something already provided. Check whatever documentation or sample code you might have. </p>
<p>I did find an article on how to actually do the mapping here:</p>
<p><a href="http://www.simtec.co.uk/appnotes/AN0014/" rel="nofollow">http://www.simtec.co.uk/appnotes/AN0014/</a></p>
<p>this is for accessing GPIO registers, but the code should be the same for on-chip memory, with a different address. Of course, if something else is already using that space, you're going to crash if you just map it and start modifying it,so some more documentation digging is probably warranted. Do you have a kernel memory map for your system? </p>
http://stackoverflow.com/questions/1760838/how-to-avoid-debugger-only-variables/1763732#17637321Answer by Mark Bessey for How to avoid debugger-only variables?Mark Bessey2009-11-19T14:39:09Z2009-11-19T14:39:09Z<p>I'd argue that it's not worth worrying about. Given that there's no runtime overhead in the typical case, go nuts. I think that breaking down complex statements into multiple simple statements usually increases readability. </p>
http://stackoverflow.com/questions/1747016/sorting-alphabets-numerals/1747060#17470602Answer by Mark Bessey for Sorting alphabets & numeralsMark Bessey2009-11-17T06:57:25Z2009-11-17T06:57:25Z<p>You will probably want to use the<br>
<a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSArray%5FClass/NSArray.html#//apple%5Fref/occ/instm/NSArray/sortedArrayUsingSelector%3A" rel="nofollow">sortedArrayUsingSelector:</a>
method. </p>
http://stackoverflow.com/questions/1726996/can-i-get-around-the-launch-timeout-when-running-scripts-from-springboard/1727298#17272980Answer by Mark Bessey for Can I get around the launch timeout when running scripts from SpringBoard?Mark Bessey2009-11-13T05:28:37Z2009-11-13T05:28:37Z<p>I think you might have more luck asking on a discussion forum for jail-broken iPhones. At a guess, Springboard is killing your "apps" because they're not starting an event-processing loop. As far as I know, there's no way to do that from a shell script.</p>
<p>Perhaps someone has made a Cocoa Touch app that'll execute your scripts for you, while keeping Springboard happy.</p>
http://stackoverflow.com/questions/947577/what-is-a-qbit-and-how-soon-can-i-get-a-quantum-computer/947892#947892Comment by Mark Bessey on What is a QBit and how soon can I get a quantum computer?Mark Bessey2009-12-10T19:37:19Z2009-12-10T19:37:19ZYep, you're right. I guess my information is out of date. I'll update my answer...http://stackoverflow.com/questions/1848826/why-do-i-not-get-strcpy-errors-on-the-mac-while-i-do-on-windows/1849029#1849029Comment by Mark Bessey on Why do I not get strcpy errors on the Mac while I do on Windows?Mark Bessey2009-12-05T22:21:28Z2009-12-05T22:21:28ZWith appropriate options, GCC at least warns that variable-length arrays are not supported in standard C++. It's weird that you can define more than one variable-length array in a single struct/class, though - you'd never be able to use more than one of them.
Of course, the original question was edited to remove the variable-lenght arrays, so this comment probably doesn't make sense anymore...http://stackoverflow.com/questions/1847189/how-to-delay-application-quit-time-in-iphone-sdk/1848990#1848990Comment by Mark Bessey on how to delay application quit time in iphone sdk?Mark Bessey2009-12-04T19:13:37Z2009-12-04T19:13:37ZYour application will terminate approximately 5 seconds after you get the termination notification.http://stackoverflow.com/questions/1848826/why-do-i-not-get-strcpy-errors-on-the-mac-while-i-do-on-windowsComment by Mark Bessey on Why do I not get strcpy errors on the Mac while I do on Windows?Mark Bessey2009-12-04T19:09:27Z2009-12-04T19:09:27ZSorry. Missed that the first time - your first version has strcpy() all over main() as well. In any case, check the answer below - you're not allocating any space for the strings in the Cust object.http://stackoverflow.com/questions/1847524/can-i-sell-goods-in-my-iphone-app/1847550#1847550Comment by Mark Bessey on Can I sell goods in my iPhone app?Mark Bessey2009-12-04T18:03:34Z2009-12-04T18:03:34ZThe developer agreement requires that any additional content for your app must be provided through in-app purchase. I don't remember whether it disallows using another method for unrelated purchases.http://stackoverflow.com/questions/1792496/what-are-the-minimal-quantity-of-testers-per-programmers/1848491#1848491Comment by Mark Bessey on What are the minimal quantity of testers per programmers?Mark Bessey2009-12-04T17:42:34Z2009-12-04T17:42:34ZIf you don't think it's possible to have a negative number of testers, you obviously haven't met some of the testers I've worked with. Like a bad coder, a bad tester can be worse than useless. http://stackoverflow.com/questions/1734015/what-to-do-when-co-workers-code-badlyComment by Mark Bessey on What to do when co-workers code badly?Mark Bessey2009-12-04T17:29:09Z2009-12-04T17:29:09ZAlso many good answers here:<a href="http://stackoverflow.com/questions/193141/tips-on-how-to-inoffensively-help-an-older-co-worker-to-become-a-developer-instea/193545#193545" rel="nofollow" title="tips on how to inoffensively help an older co worker to become a developer instea">stackoverflow.com/questions/193141/…</a>http://stackoverflow.com/questions/1808979/access-nsmutablearray-to-an-index-with-no-value/1809139#1809139Comment by Mark Bessey on Access NSMutableArray to an index with no valueMark Bessey2009-12-01T17:22:52Z2009-12-01T17:22:52ZYou should never get a nil value from objectAtIndex: All elements of an NSArray are required to be non-nil.http://stackoverflow.com/questions/1823346/whats-the-limit-to-the-number-of-members-you-can-have-in-a-java-enum/1823382#1823382Comment by Mark Bessey on What's the limit to the number of members you can have in a java enum?Mark Bessey2009-12-01T16:12:14Z2009-12-01T16:12:14ZThanks for the clarification. You should probably include that in the question. http://stackoverflow.com/questions/1823523/continuous-output-in-neural-networks/1823579#1823579Comment by Mark Bessey on Continuous output in Neural NetworksMark Bessey2009-12-01T02:14:55Z2009-12-01T02:14:55ZAnd since I'm sure someone will mention it - you can define the network such that you don't <i>have to</i> do any conversion on input or output, of course. It's often easier to have generic nodes, and do some explicit filtering, however.http://stackoverflow.com/questions/1823346/whats-the-limit-to-the-number-of-members-you-can-have-in-a-java-enum/1823382#1823382Comment by Mark Bessey on What's the limit to the number of members you can have in a java enum?Mark Bessey2009-12-01T01:51:28Z2009-12-01T01:51:28ZEdited to remove my previous mention of integer constants, since Java Enums are a thing unto themselves.http://stackoverflow.com/questions/1823346/whats-the-limit-to-the-number-of-members-you-can-have-in-a-java-enum/1823382#1823382Comment by Mark Bessey on What's the limit to the number of members you can have in a java enum?Mark Bessey2009-12-01T01:06:12Z2009-12-01T01:06:12ZOops. I suppose I could try to weasel out of this by claiming that <i>in the common usage case</i> the JIT compiler will translate them to integer constants, but the truth is I was thinking of C/C++/C# enumerated types.http://stackoverflow.com/questions/1368773/is-mac-experience-important-for-a-future-developer/1368838#1368838Comment by Mark Bessey on Is Mac experience important for a future developer?Mark Bessey2009-12-01T00:58:41Z2009-12-01T00:58:41ZThe Cocoa design is quite different from what you see in other platforms. The focus on delegation and composition over subclassing, is a very different way to develop software. Well worth learning for that reason alone.http://stackoverflow.com/questions/1368773/is-mac-experience-important-for-a-future-developer/1368831#1368831Comment by Mark Bessey on Is Mac experience important for a future developer?Mark Bessey2009-12-01T00:56:03Z2009-12-01T00:56:03Z"it's a terrible mix of Mach and FreeBSD" is biased, and not technically true, in any case. I'm not going to down-vote this answer, because it actually does have some useful information, but it sure doesn't start out well. http://stackoverflow.com/questions/1800974/window-beforeunload-called-twice-in-firefox-how-to-get-around-this/1801816#1801816Comment by Mark Bessey on window.beforeunload called twice in Firefox - how to get around this?Mark Bessey2009-11-27T03:35:41Z2009-11-27T03:35:41ZYou can probably make it really short. I assume that the two calls to beforeunload are a few milliseconds apart. Set the timeout to 100ms or so, and Boone will know it's there.