User Dre - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T14:32:29Z http://stackoverflow.com/feeds/user/23033 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow 2 Is there a better way to find midnight tomorrow? Dre 2008-10-08T05:26:10Z 2009-08-06T07:25:55Z <p>Is there a better way to do this?</p> <pre><code>-(NSDate *)getMidnightTommorow { NSCalendarDate *now = [NSCalendarDate date]; NSCalendarDate *tomorrow = [now dateByAddingYears:0 months:0 days:1 hours:0 minutes:0 seconds:0]; return [NSCalendarDate dateWithYear:[tomorrow yearOfCommonEra] month:[tomorrow monthOfYear] day:[tomorrow dayOfMonth] hour:0 minute:0 second:0 timeZone:[tomorrow timeZone]]; } </code></pre> <p>Note that I always want the next midnight, even if it happens to be midnight when I make that call, however if it happens to be 23:59:59, I of course want the midnight that is coming in one second.</p> <p>The natural language functions seem flaky, and I'm not sure what Cocoa would do if I pass 32 in the "day" field. (If that'd work I could drop the [now dateByAddingYears:...] call)</p> http://stackoverflow.com/questions/181442/can-any-of-the-iphone-collection-objects-hold-an-image/181475#181475 1 Answer by Dre for Can any of the iPhone collection objects hold an image? Dre 2008-10-08T05:37:51Z 2008-10-08T05:37:51Z <p>There should be no problem with that. Just make sure you are properly retaining it and what not in your class.</p> http://stackoverflow.com/questions/171301/whats-the-fastest-way-to-divide-an-integer-by-3/171312#171312 -4 Answer by Dre for What's the fastest way to divide an integer by 3? Dre 2008-10-05T01:21:42Z 2008-10-05T01:21:42Z <p>There's no way to do this that I can tell.</p> <p>However if you wanted to divide by a power of 2 (and didn't care about the remainder) you could do</p> <pre><code>int x = n &gt;&gt; 2; // divide by 4 </code></pre> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164742#164742 0 Answer by Dre for What real life bad habits has programming given you? Dre 2008-10-02T21:44:04Z 2008-10-02T21:44:04Z <p>Ending sentences with ";"s</p> http://stackoverflow.com/questions/160697/is-it-good-practice-to-use-the-xor-operator-in-java-for-boolean-checks/160701#160701 1 Answer by Dre for Is it good practice to use the XOR (^) operator in Java for boolean checks? Dre 2008-10-02T02:59:38Z 2008-10-02T02:59:38Z <p>I'd think it'd be okay if you commented it.</p> http://stackoverflow.com/questions/156774/distributed-corporate-collaboration-tools/160695#160695 0 Answer by Dre for Distributed corporate collaboration tools Dre 2008-10-02T02:57:36Z 2008-10-02T02:57:36Z <p>IRC? If you host it on your own server you can run it on port 80 if you damn well please.</p> <p>Just make sure it doesn't crash and burn when it gets stray web requests. :P</p> http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160160#160160 0 Answer by Dre for Divide by zero error, how do I fix this? Dre 2008-10-01T23:00:25Z 2008-10-01T23:00:25Z <p>If you are using this for a download, you'll probably want to show 0% as I assume max would == 0 in this case when you don't KNOW the file size yet.</p> <pre><code>int percent = 0; if (max != 0) ...; </code></pre> <p>If you are using this for some other long task, I'd want to assume 100%</p> <p>But also, since position can never be between 0 and -1, so you'll probably want to drop the 100 * </p> http://stackoverflow.com/questions/156941/capistrano-thin-nginx-with-user-not-allowed-to-sudo-howto/156957#156957 0 Answer by Dre for Capistrano + thin + nginx with user not allowed to sudo howto? Dre 2008-10-01T10:11:01Z 2008-10-01T10:11:01Z <p>This might not be what you want, but you can actually do something like this in your sudoers file:</p> <pre><code>someuser ALL=NOPASSWD: /etc/init.d/apache2 </code></pre> <p>that lets someuser run /etc/init.d/apache2</p> <p>If you try to do something else:</p> <pre><code>$ sudo ls [sudo] password for someuser: Sorry, user someuser is not allowed to execute '/bin/ls' as root on ... </code></pre> http://stackoverflow.com/questions/151746/iphone-tab-bar-item-image-resolution/151836#151836 3 Answer by Dre for iPhone tab bar Item image resolution? Dre 2008-09-30T05:11:17Z 2008-09-30T05:11:17Z <p>Check the "UITabBarItem Class Reference" in the SDK documentation</p> http://stackoverflow.com/questions/148857/what-is-the-opposite-of-parse/148862#148862 4 Answer by Dre for What is the opposite of 'parse'? Dre 2008-09-29T14:19:30Z 2008-09-29T14:19:30Z <p>generateQuery, possibly? createQuery?</p> http://stackoverflow.com/questions/146494/have-you-found-competitive-programming-to-be-useful/146533#146533 1 Answer by Dre for Have you found competitive programming to be useful? Dre 2008-09-28T19:22:38Z 2008-09-28T19:22:38Z <p>Yeah, I have to agree. Doing it for the competition, probably problematic and will just teach bad code habits.</p> <p>Doing the "competitions" after the fact to learn, perfectly fine.</p> http://stackoverflow.com/questions/145157/nintendo-ds-homebrew-with-ada/145165#145165 2 Answer by Dre for Nintendo DS homebrew with Ada? Dre 2008-09-28T03:46:42Z 2008-09-28T03:46:42Z <p>(Disclaimer: I don't know Ada)</p> <p>Possibly.</p> <p>You <em>might</em> be able to build devKitPro to use Ada, however, the pre-provided binaries (at least for OS X) do not have Ada support compiled in.</p> <p>However, you will probably find yourself writing tons of C "glue" code to interface with the various hardware registers and the like.</p> http://stackoverflow.com/questions/145027/192-168-0-71-what-is-this-special-address-used-for/145030#145030 1 Answer by Dre for 192.168.0.71... What is this special address used for? Dre 2008-09-28T02:34:18Z 2008-09-28T02:34:18Z <p>192.168.0.71 (Well the entire range 192.168.0.0 – 192.168.255.255) are for private (read. not internet accessible) network IP addresses, so that is from something inside your private network.</p> http://stackoverflow.com/questions/144985/programming-on-a-nintendo-ds/145020#145020 2 Answer by Dre for Programming on a Nintendo DS Dre 2008-09-28T02:29:56Z 2008-09-28T02:29:56Z <p>Can't say anything about 1,2, or 3. but the resource I use for GBA programming also has DS info:</p> <p><a href="http://nocash.emubase.de/gbatek.htm" rel="nofollow">http://nocash.emubase.de/gbatek.htm</a> (and this is a deep down technical spec document, but I like it for that)</p> <p>Also: <a href="http://www.devkitpro.org/" rel="nofollow">http://www.devkitpro.org/</a> for the compilers and stuff.</p> http://stackoverflow.com/questions/144873/can-i-browse-other-peoples-apple-bug-reports/144879#144879 2 Answer by Dre for Can I browse other people's (Apple) bug reports? Dre 2008-09-28T00:39:28Z 2008-09-28T00:39:28Z <p>Other people's bugs are internal to Apple only.</p> http://stackoverflow.com/questions/144868/how-to-distribute-and-administer-opensource-projects/144877#144877 0 Answer by Dre for How to distribute and administer opensource-projects? Dre 2008-09-28T00:38:25Z 2008-09-28T00:38:25Z <p>What are your needs?<br/> Do you need a specific type of version control (will you be happy with what they give you, or must you demand Obscure Satellite Powered Version Control System?)<br/> How do their bug trackers differ, can you live with them?<br/> <br/> It might help to know what you want from the site exactly.</p> http://stackoverflow.com/questions/139621/merit-of-screencasts-vs-text-based-documentation/144830#144830 3 Answer by Dre for Merit of screencasts vs text-based documentation? Dre 2008-09-28T00:13:59Z 2008-09-28T00:13:59Z <p>I actually prefer video tutorials, but yeah, I'd really like a transcript to go along with them.</p> http://stackoverflow.com/questions/144735/best-way-to-get-started-with-programming-other-things-than-your-computer/144754#144754 2 Answer by Dre for Best way to get started with programming other things than your computer? Dre 2008-09-27T23:39:27Z 2008-09-27T23:39:27Z <p>I'd look into stuff like (unofficial) GBA development or the like, sure there are "Libraries" but you can go digging and just stick bits into specific addresses and make stuff happen. You can't get more "No API" then raw memory-mapped hardware access.</p> http://stackoverflow.com/questions/144218/significant-figures-in-the-decimal-module/144225#144225 0 Answer by Dre for Significant figures in the decimal module Dre 2008-09-27T18:53:49Z 2008-09-27T18:53:49Z <p>Decimal defaults to 28 places of precision.<br/> The only way to limit the number of digits it returns is by altering the precision.</p> http://stackoverflow.com/questions/232678/malloc-error-incorrect-checksum-for-freed-object Comment by Dre on Malloc Error: incorrect checksum for freed object Dre 2008-10-24T07:10:09Z 2008-10-24T07:10:09Z is slot 0 or 1 based? slot never exceeds nlines-1, correct? http://stackoverflow.com/questions/231131/best-way-to-utilize-single-codebase-for-multiple-web-sites Comment by Dre on Best way to utilize single codebase for multiple web sites Dre 2008-10-23T19:41:53Z 2008-10-23T19:41:53Z does your SCM support externals? http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/181495#181495 Comment by Dre on Is there a better way to find midnight tomorrow? Dre 2008-10-08T18:07:31Z 2008-10-08T18:07:31Z And following from that pointer, it looks like I can cut out most of that as dateFromComponents <i>does</i> seem to tolerate days past the end of the month. http://stackoverflow.com/questions/169520/warning-when-using-mysqlfetchassoc-in-php Comment by Dre on Warning when using mysql_fetch_assoc in PHP Dre 2008-10-04T01:45:36Z 2008-10-04T01:45:36Z The whole code would most likely be usefil. http://stackoverflow.com/questions/160697/is-it-good-practice-to-use-the-xor-operator-in-java-for-boolean-checks/160700#160700 Comment by Dre on Is it good practice to use the XOR (^) operator in Java for boolean checks? Dre 2008-10-02T03:04:37Z 2008-10-02T03:04:37Z Heh, I guess that would produce the same result. http://stackoverflow.com/questions/154853/how-do-you-remove-subversion-control-for-a-folder/160662#160662 Comment by Dre on How do you remove subversion control for a folder? Dre 2008-10-02T02:45:03Z 2008-10-02T02:45:03Z Not exactly the same, same answer, different question. http://stackoverflow.com/questions/145154/what-does-your-objective-c-singleton-look-like Comment by Dre on What does your Objective-C singleton look like? Dre 2008-09-28T03:40:47Z 2008-09-28T03:40:47Z You probably want return(gInstance);