User Brendan Berg - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T09:05:29Zhttp://stackoverflow.com/feeds/user/39053http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1631413/computer-science-degrees/1631515#16315152Answer by Brendan Berg for Computer Science Degrees?Brendan Berg2009-10-27T15:16:31Z2009-10-27T15:16:31Z<p>Many of my computer science courses used Java as the primary language. (But we didn't exclusively use Java.) You know how many times I've used Java in my professional career? Exactly zero. I got far more value out of having experience with languages like C, Prolog, and SML.</p>
<p>If you learn C# now, you may not be using it five years from now. It is far more valuable to have a theoretical understanding of computation that can be applied to learning any new language your job may require.</p>
<p>That said, I would recommend staying on for the fourth year without getting too carried away gaining experience only with C#. By all means, learn it. Just learn some other languages too.</p>
http://stackoverflow.com/questions/1623919/ajax-postback-in-jquery/1625971#16259710Answer by Brendan Berg for ajax postback in jqueryBrendan Berg2009-10-26T17:02:37Z2009-10-26T17:02:37Z<p>You can bind a function to a JQuery object to be completed when any AJAX call completes.</p>
<pre><code>$('#status').ajaxComplete(function(event, request, settings) {
// Do stuff here...
});
</code></pre>
<p>See <a href="http://docs.jquery.com/Ajax/ajaxComplete#callback" rel="nofollow">the documentation</a>.</p>
<p>If you want to set a complete function for a single AJAX call, use the low-level <code>$.ajax()</code> function and setting a function for the <code>complete</code> attribute.</p>
<pre><code>$.ajax({
// ...
complete: function(request, settings) {
// Do stuff here...
},
// ...
});
</code></pre>
<p>Note: the documentation seems to contradict itself in specifying the number of arguments to the <code>complete()</code> function. It may take some fiddling.</p>
http://stackoverflow.com/questions/1623245/cpu-bound-applications-vs-io-bound/1623371#16233712Answer by Brendan Berg for CPU bound applications vs. IO boundBrendan Berg2009-10-26T06:35:11Z2009-10-26T06:58:54Z<p>I would guess that choosing the right data storage method will have more effect than whether you read from disk all at once or as needed.</p>
<p>Most database tables have regular offsets for fields in each row. For example, a <code>customer</code> record may be 50 bytes long and have a <code>pants_size</code> column start at the 12th byte. Selecting all pants sizes is as easy as getting values at offsets 12, 62, 112, 162, <em>ad nauseum</em>.</p>
<p>XML, however, is a lousy format for fast data access. You'll need to slog through a bunch of variable-length tags and attributes in order to get your data, and you won't be able to jump instantly from one record to the next. Unless you parse the file into a data structure like the one mentioned above. In which case you'd have something very much like an RDMS, so there you go.</p>
http://stackoverflow.com/questions/1616277/ajax-authentication-without-letting-browser-pop-up-login-dialog/1618135#16181351Answer by Brendan Berg for Ajax authentication without letting browser pop up login dialogBrendan Berg2009-10-24T14:22:18Z2009-10-24T14:22:18Z<p>The browser won't present the password dialog if it doesn't recognize the authentication scheme in the WWW-Authenticate header. Your best bet may be to continue using basic auth on the server while setting the header manually to something like "Basic/MyApp" for 401 responses.</p>
http://stackoverflow.com/questions/531561/iphone-unit-tests-hang-fail-to-call-applicationdidfinishlaunching/1323629#13236291Answer by Brendan Berg for iPhone Unit Tests Hang; Fail to Call -applicationDidFinishLaunching:Brendan Berg2009-08-24T17:14:46Z2009-08-24T17:14:46Z<p>If Xcode hangs during the build (the build results window shows 'Running custom shell script' but stalls there), select the unit test target and click 'Get Info'. Then select the Properties tab and clear the text field for 'Main Nib File' and clean the target.</p>
<p>Clicking 'Build and Go' should now successfully run the tests.</p>
http://stackoverflow.com/questions/165539/iphone-proximity-sensor/302906#30290615Answer by Brendan Berg for iPhone Proximity SensorBrendan Berg2008-11-19T18:38:34Z2008-11-19T18:56:36Z<p>There <em>is</em> a public API for this. -[UIApplication setProximitySensingEnabled:(BOOL)] will turn the feature on. BTW, it doesn't seem to be using the light sensor, because proximity sensing would tweak out in a dark room.</p>
<p>However, the API call basically blanks the screen when you hold the phone up to your face. Not useful for interaction, sadly.</p>
http://stackoverflow.com/questions/1631413/computer-science-degrees/1631515#1631515Comment by Brendan Berg on Computer Science Degrees?Brendan Berg2009-10-27T18:05:55Z2009-10-27T18:05:55ZYeah, I see your point. Another reason to consider the extra year if you can afford it is if graduating with honors equates to a higher starting salary. However, I'm not sure that it's necessarily any better than the extra year of experience you'd get from getting a job sooner.http://stackoverflow.com/questions/1625951/javascript-string-match-regular-expression-helpComment by Brendan Berg on JavaScript: string.match regular expression helpBrendan Berg2009-10-26T17:26:00Z2009-10-26T17:26:00ZFor the regex you posted to match the element names you listed, you'd need to change the <code>\d{3}</code> to <code>\d{1,3}</code>. See @Macarse's answer for a good explanation of what's going on.http://stackoverflow.com/questions/165539/iphone-proximity-sensor/1227705#1227705Comment by Brendan Berg on iPhone Proximity SensorBrendan Berg2009-10-26T14:39:15Z2009-10-26T14:39:15ZI'd guess it's more likely that perspiration on the screen is screwing with touch detection.http://stackoverflow.com/questions/165539/iphone-proximity-sensor/168561#168561Comment by Brendan Berg on iPhone Proximity SensorBrendan Berg2009-10-26T14:35:48Z2009-10-26T14:35:48ZThis is technically untrue. There is a light sensor to automatically adjust screen brightness and a second infrared LED / sensor pair to detect the proximity of your face. (Holding a white sheet of paper an inch or two above the speaker end of the phone will trigger the proximity sensor, yet the display still works in a dark room.)http://stackoverflow.com/questions/1623245/cpu-bound-applications-vs-io-boundComment by Brendan Berg on CPU bound applications vs. IO boundBrendan Berg2009-10-26T06:13:23Z2009-10-26T06:13:23ZYeah, totally read that wrong. I thought it said "instead of loading them from RAM." My bad.http://stackoverflow.com/questions/1616277/ajax-authentication-without-letting-browser-pop-up-login-dialog/1618135#1618135Comment by Brendan Berg on Ajax authentication without letting browser pop up login dialogBrendan Berg2009-10-26T05:41:58Z2009-10-26T05:41:58ZHmm... I was assuming you had control over authentication at the script level on the server, and the header would be set after the authentication was handled but before you returned a response. I'm not too familiar with JBoss, but if you can filter and rewrite requests before the auth happens it sounds like it would be your best bet. And by setting the Authorization header in the web app, normal clients won't be affected. Nice.http://stackoverflow.com/questions/1618101/how-to-find-colour-depth-and-locale-for-iphone-through-codeComment by Brendan Berg on how to find colour depth and locale for iphone through code?Brendan Berg2009-10-24T14:27:27Z2009-10-24T14:27:27ZCan you be more specific? Is this for a native application, or an iPhone-optimized web site? It would be helpful if you explained the situation a bit more.