User Dre - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T14:32:29Zhttp://stackoverflow.com/feeds/user/23033http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow2Is there a better way to find midnight tomorrow?Dre2008-10-08T05:26:10Z2009-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#1814751Answer by Dre for Can any of the iPhone collection objects hold an image?Dre2008-10-08T05:37:51Z2008-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-4Answer by Dre for What's the fastest way to divide an integer by 3?Dre2008-10-05T01:21:42Z2008-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 >> 2; // divide by 4
</code></pre>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164742#1647420Answer by Dre for What real life bad habits has programming given you?Dre2008-10-02T21:44:04Z2008-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#1607011Answer by Dre for Is it good practice to use the XOR (^) operator in Java for boolean checks?Dre2008-10-02T02:59:38Z2008-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#1606950Answer by Dre for Distributed corporate collaboration toolsDre2008-10-02T02:57:36Z2008-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#1601600Answer by Dre for Divide by zero error, how do I fix this?Dre2008-10-01T23:00:25Z2008-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#1569570Answer by Dre for Capistrano + thin + nginx with user not allowed to sudo howto?Dre2008-10-01T10:11:01Z2008-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#1518363Answer by Dre for iPhone tab bar Item image resolution?Dre2008-09-30T05:11:17Z2008-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#1488624Answer by Dre for What is the opposite of 'parse'?Dre2008-09-29T14:19:30Z2008-09-29T14:19:30Z<p>generateQuery, possibly? createQuery?</p>
http://stackoverflow.com/questions/146494/have-you-found-competitive-programming-to-be-useful/146533#1465331Answer by Dre for Have you found competitive programming to be useful?Dre2008-09-28T19:22:38Z2008-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#1451652Answer by Dre for Nintendo DS homebrew with Ada?Dre2008-09-28T03:46:42Z2008-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#1450301Answer by Dre for 192.168.0.71... What is this special address used for?Dre2008-09-28T02:34:18Z2008-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#1450202Answer by Dre for Programming on a Nintendo DSDre2008-09-28T02:29:56Z2008-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#1448792Answer by Dre for Can I browse other people's (Apple) bug reports?Dre2008-09-28T00:39:28Z2008-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#1448770Answer by Dre for How to distribute and administer opensource-projects?Dre2008-09-28T00:38:25Z2008-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#1448303Answer by Dre for Merit of screencasts vs text-based documentation?Dre2008-09-28T00:13:59Z2008-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#1447542Answer by Dre for Best way to get started with programming other things than your computer?Dre2008-09-27T23:39:27Z2008-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#1442250Answer by Dre for Significant figures in the decimal moduleDre2008-09-27T18:53:49Z2008-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-objectComment by Dre on Malloc Error: incorrect checksum for freed objectDre2008-10-24T07:10:09Z2008-10-24T07:10:09Zis 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-sitesComment by Dre on Best way to utilize single codebase for multiple web sitesDre2008-10-23T19:41:53Z2008-10-23T19:41:53Zdoes your SCM support externals?http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/181495#181495Comment by Dre on Is there a better way to find midnight tomorrow?Dre2008-10-08T18:07:31Z2008-10-08T18:07:31ZAnd 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-phpComment by Dre on Warning when using mysql_fetch_assoc in PHPDre2008-10-04T01:45:36Z2008-10-04T01:45:36ZThe 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#160700Comment by Dre on Is it good practice to use the XOR (^) operator in Java for boolean checks?Dre2008-10-02T03:04:37Z2008-10-02T03:04:37ZHeh, I guess that would produce the same result.http://stackoverflow.com/questions/154853/how-do-you-remove-subversion-control-for-a-folder/160662#160662Comment by Dre on How do you remove subversion control for a folder?Dre2008-10-02T02:45:03Z2008-10-02T02:45:03ZNot exactly the same, same answer, different question.http://stackoverflow.com/questions/145154/what-does-your-objective-c-singleton-look-likeComment by Dre on What does your Objective-C singleton look like?Dre2008-09-28T03:40:47Z2008-09-28T03:40:47ZYou probably want return(gInstance);