User Kristopher Johnson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:07:34Z http://stackoverflow.com/feeds/user/1175 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1802185/common-practice-for-template-function-defination-mix-with-function-declaration/1802205#1802205 2 Answer by Kristopher Johnson for Common Practice for Template Function Defination - Mix with Function Declaration? Kristopher Johnson 2009-11-26T08:06:14Z 2009-11-27T22:56:17Z <p>You can eliminate the LNK2005 error by declaring the definition of <code>a::fun()</code> as <code>inline</code>. For example:</p> <pre><code>// a.h // ... inline int a::fun() { int t; std::cout &lt;&lt; "a" &lt;&lt; std::endl; return t; } </code></pre> <p>With templates, the problem doesn't occur because the compiler/linker take care of ensuring that there is only one definition of each template instantiation.</p> <p>If, for some reason, you don't want the function to be <code>inline</code>, then you'll have to ensure that it only gets compiled once. For example, something like this:</p> <pre><code>// a.h // ... #ifdef DEFINE_CLASS_A_FUNCTIONS int a::fun() { int t; std::cout &lt;&lt; "a" &lt;&lt; std::endl; return t; } #endif </code></pre> <p>and then, somewhere, you'll need to do something like this (exactly once):</p> <pre><code>#define DEFINE_CLASS_A_FUNCTIONS #include "a.h" </code></pre> http://stackoverflow.com/questions/58833/hiring-a-freelance-graphics-person 8 Hiring a Freelance Graphics Person Kristopher Johnson 2008-09-12T12:38:05Z 2009-11-26T09:46:56Z <p>Say I'm a one-person programming shop, and I need to get some graphics for an application: icons, backgrounds, etc.</p> <p>What are some of the things I need to know before I hire someone to do that stuff for me? How have some of you been burned when doing something similar?</p> http://stackoverflow.com/questions/1783849/what-are-the-advantages-and-disadvantages-of-implementing-classes-in-header-files/1783905#1783905 10 Answer by Kristopher Johnson for What are the advantages and disadvantages of implementing classes in header files? Kristopher Johnson 2009-11-23T15:35:47Z 2009-11-24T18:30:49Z <p>Advantages:</p> <ul> <li>Less redundancy (which leads to easier changes, easier refactoring, etc.)</li> <li>May give compiler/linker better opportunities for optimization</li> <li>Often easier to incorporate into an existing project</li> </ul> <p>Disadvantages:</p> <ul> <li>Longer compile/link cycles</li> <li>Loss of separation of interface and implementation</li> <li>Sometimes leads to hard-to-resolve circular dependencies</li> <li>Lots of inlining could increase executable size</li> <li>Prevents binary compatibility of shared libraries/DLLs</li> <li>Pisses off many co-workers who prefer the traditional ways of using C++</li> </ul> http://stackoverflow.com/questions/1373090/does-it-make-sense-to-move-to-64-bit-for-a-typical-mac-os-x-application 2 Does It Make Sense to Move to 64-bit for a "Typical" Mac OS X Application? Kristopher Johnson 2009-09-03T12:24:07Z 2009-11-24T11:37:10Z <p>I understand the major benefits of being able to build a 64-bit application on Mac OS X: more memory available, better performance, etc.</p> <p>But what if I have an app with modest memory needs and no performance concerns. Let's assume that porting it to 64-bit is simply a matter of changing the build settings. Would making a 64-bit executable available provide any real benefit to my users on Leopard or Snow Leopard?</p> <p>I know the knee-jerk reaction of many programmers is "Of course you should support 64-bit!", and some power users will scoff and complain if they see your app is not 64-bit, but I am interested in the real benefits/costs.</p> <p>Some related issues:</p> <ul> <li>I could provide a combined Universal 32-and-64-bit application, but would the benefits (if any) justify the larger download size?</li> <li>I could provide separate 32-bit and 64-bit downloads, but would that just confuse users?</li> </ul> http://stackoverflow.com/questions/1784481/microsoft-internal-coding-guidelines-dont-use-tabs/1784496#1784496 14 Answer by Kristopher Johnson for Microsoft Internal Coding guidelines: don't use tabs. Kristopher Johnson 2009-11-23T16:58:02Z 2009-11-23T16:58:02Z <p>Compilers ignore it, but it matters when programmers with different tab settings for their editors view the file.</p> <p>Use of spaces for indentation ensures a consistent appearance for everyone who reads the file. Use of tabs leads to inconsistent appearance (but some think this can be desirable).</p> <p>For more about this issue, see <a href="http://www.jwz.org/doc/tabs-vs-spaces.html" rel="nofollow">Tabs vs. Spaces: An Eternal Holy War</a></p> http://stackoverflow.com/questions/938775/can-uncrustify-align-colons-in-objective-c-method-calls 1 Can Uncrustify align colons in Objective-C method calls? Kristopher Johnson 2009-06-02T10:04:36Z 2009-11-17T19:58:19Z <p>I am using <a href="http://uncrustify.sourceforge.net/" rel="nofollow">uncrustify</a> 0.52. When I run it against Objective-C files, it wants to convert method invocations like this:</p> <pre><code>[NSApp beginSheet:startTimerDialog modalForWindow:nil modalDelegate:nil didEndSelector:nil contextInfo:nil]; </code></pre> <p>to this:</p> <pre><code>[NSApp beginSheet:startTimerDialog modalForWindow:nil modalDelegate:nil didEndSelector:nil contextInfo:nil]; </code></pre> <p>I prefer the first version, with the colons aligned. Is there an option in the uncrustify config file that can support what I want, or does uncrustify just not support aligned colons?</p> <p>If uncrustify can't align the colons, is there a way to prevent it from de-aligning the colons that I've aligned myself?</p> <p><strong>Update:</strong></p> <p><a href="http://stackoverflow.com/users/85344/mmc">mmc</a> notes that this feature was available in the Uncrustify svn repository as of build 1581. It is in uncrustify 0.54. Set <code>align_oc_msg_colon = true</code> in your config file to enable it.</p> http://stackoverflow.com/questions/1748741/shark-was-unable-to-find-symbol-information-for-this-address-range-iphone/1748762#1748762 0 Answer by Kristopher Johnson for Shark was unable to find symbol information for this address range - iPhone Kristopher Johnson 2009-11-17T13:10:00Z 2009-11-17T13:10:00Z <p>Don't know if this applies to Shark on device, but I know that when running Instruments with the iPhone Simulator, one has to select the most recent SDK. If you run with a previous SDK, you see no debug info.</p> http://stackoverflow.com/questions/1748350/how-to-convert-uicolor-value-to-nsstring/1748458#1748458 1 Answer by Kristopher Johnson for How to convert UIColor value to NSString? Kristopher Johnson 2009-11-17T12:14:33Z 2009-11-17T12:14:33Z <p>How about this:</p> <pre><code>- (NSString *)stringForColor:(UIColor *)color { CGColorRef c = color.CGColor; const CGFloat *components = CGColorGetComponents(c); size_t numberOfComponents = CGColorGetNumberOfComponents(c); NSMutableString *s = [[[NSMutableString alloc] init] autorelease]; [s appendString:@"{"]; for (size_t i = 0; i &lt; numberOfComponents; ++i) { if (i &gt; 0) { [s appendString:@","]; } [s appendString:[NSString stringWithFormat:@"%f", components[i]]]; } [s appendString:@"}"]; return s; } </code></pre> <p>For example, <code>stringForColor:[UIColor greenColor]</code> has the result "{0.000000,1.000000,0.000000,1.000000}".</p> http://stackoverflow.com/questions/431119/on-your-very-first-program-which-construct-hooked-you-on-programming/431124#431124 16 Answer by Kristopher Johnson for On your very first program, which construct hooked you on programming? Kristopher Johnson 2009-01-10T15:33:00Z 2009-11-17T11:57:09Z <p>For many of us who were introduced to computers in the late 70's or early 80's, the first program we saw looked like this:</p> <pre><code>10 PRINT "Commodore sucks! " 20 GOTO 10 </code></pre> <p>("Commodore" could be replaced with "Apple", "Atari" or "TRS-80").</p> <p>GOTO is awesome.</p> http://stackoverflow.com/questions/1743673/most-efficient-way-to-do-22-different-builds/1743716#1743716 1 Answer by Kristopher Johnson for Most efficient way to do 22 different builds Kristopher Johnson 2009-11-16T17:43:11Z 2009-11-16T17:43:11Z <p>I'd probably write a script that used a .xcodeproj template and <code>sed</code> to generate all the necessary combinations.</p> http://stackoverflow.com/questions/25403/is-a-college-university-degree-still-relevant/25480#25480 5 Answer by Kristopher Johnson for Is a College/University Degree Still Relevant? Kristopher Johnson 2008-08-25T00:06:34Z 2009-11-15T03:44:38Z <p>In general, those who have college degrees think they are valuable, and those who don't, don't. So you need to think about who you will want to hire you.</p> <p>My personal advice would be to pursue a degree. I meet a lot of people who wish they'd gotten one; I don't think I've met anyone who wishes they hadn't. Or think of it this way: ten years from now, will it be better to have 10 years of experience, or 7 years of experience and a degree?</p> http://stackoverflow.com/questions/841075/best-c-code-formatter-beautifier 10 Best C++ Code Formatter/Beautifier Kristopher Johnson 2009-05-08T18:06:03Z 2009-11-14T07:31:02Z <p>There are lots of source-code formatting tools out there. Which ones work best for C++?</p> <p>I'm interested in command-line tools or other things that can be automatically run when checking code in/out, preferably without needing to launch an editor or IDE.</p> <p>(If you see the one you like already listed as an answer, vote it up. If it's not there, add it. Thanks.)</p> http://stackoverflow.com/questions/380062/iphone-device-vs-iphone-simulator/1715795#1715795 0 Answer by Kristopher Johnson for iPhone device vs. iPhone simulator Kristopher Johnson 2009-11-11T15:10:10Z 2009-11-11T15:10:10Z <p>Filenames are case-sensitive on the iPhone, but not in the simulator.</p> <p>So, for example, if you try to load an image with <code>UIImage *iconImage = [UIImage imageNamed:"MyIcon.png"]</code>, but your resource is actually named "myicon.png", then it will work on the simulator, but not on the device.</p> http://stackoverflow.com/questions/247421/best-programmer-calculator-for-iphone 4 Best Programmer Calculator for iPhone Kristopher Johnson 2008-10-29T16:12:41Z 2009-11-09T06:29:43Z <p>What is the best programmer's calculator application for the iPhone?</p> http://stackoverflow.com/questions/10872/how-to-encourage-someone-to-learn-programming/11339#11339 1 Answer by Kristopher Johnson for How to encourage someone to learn programming? Kristopher Johnson 2008-08-14T17:04:36Z 2009-11-06T17:49:35Z <p>I'll follow up on Carl Russmann's comments by suggesting that you shouldn't push too hard on your friend. </p> <p>Most readers of this site find programming to be interesting and fun, but we are really weird. </p> <p>For most people, learning programming would be very hard work, with little short-term benefit. Most people have no aptitude for programming, and would find it to be as much fun as doing their income taxes. That's a big Con.</p> http://stackoverflow.com/questions/1670478/uibutton-custom-image-in-alertviews/1670542#1670542 1 Answer by Kristopher Johnson for UIButton Custom Image in AlertViews Kristopher Johnson 2009-11-03T22:26:17Z 2009-11-06T01:08:09Z <p>Create a custom view with the buttons you want, then display it using <code>presentModalController:animated:</code>. </p> <p>You may find this article helpful for implementing your own view that looks like an alert view: <a href="http://starterstep.wordpress.com/2009/03/24/custom-uialertview-with-uitableview/" rel="nofollow">http://starterstep.wordpress.com/2009/03/24/custom-uialertview-with-uitableview/</a></p> http://stackoverflow.com/questions/1676297/c-const-void-conversion/1676361#1676361 1 Answer by Kristopher Johnson for C++ const void* conversion Kristopher Johnson 2009-11-04T20:20:12Z 2009-11-04T20:20:12Z <p>The <code>write()</code> function's second parameter is a pointer to a buffer (an array of bytes) and the third parameter is the size of that buffer. So, you need to somehow get an array of bytes that you want to write out to that file.</p> <p>Your "solution"</p> <pre><code>write(fd, &amp;N, 4); </code></pre> <p>will work if N is something that is 4 bytes long. However, it seems like that's not what you want.</p> <p>It's not clear from your question exactly what it is that you are trying to accomplish. Do you want to write a string? Then you need to convert N to a string, and pass the address of that string's first byte to <code>write</code>.</p> http://stackoverflow.com/questions/1672797/why-is-delegate-needed-when-to-use-it-and-how-to-apply-it/1672836#1672836 4 Answer by Kristopher Johnson for Why is "delegate" needed ? when to use it and how to apply it? Kristopher Johnson 2009-11-04T10:16:55Z 2009-11-04T18:08:49Z <p>"Delegate" is not a feature of Objective-C. Rather, it is a common pattern used by the Cocoa frameworks.</p> <p>The basic idea is that when events happen, the object that detects that event doesn't have to handle it. Instead, it notifies a delegate.</p> <p>To learn more, see the <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/CocoaFundamentals/CommunicatingWithObjects/CommunicateWithObjects.html#//apple%5Fref/doc/uid/TP40002974-CH7-SW18" rel="nofollow">Cocoa Fundamentals Guide</a></p> <p>Also see the Wikipedia "<a href="http://en.wikipedia.org/wiki/Delegation%5Fpattern" rel="nofollow">Delegation pattern</a>" article, which includes an Objective-C example.</p> http://stackoverflow.com/questions/1490762/iphone-private-distribution/1671218#1671218 1 Answer by Kristopher Johnson for iPhone Private distribution. Kristopher Johnson 2009-11-04T01:29:43Z 2009-11-04T01:29:43Z <p>Another possible solution is to make a web app instead of a native app.</p> http://stackoverflow.com/questions/1671113/do-i-need-to-re-deploy-to-existing-iphone-devices-if-the-mobileprovision-file-is/1671192#1671192 1 Answer by Kristopher Johnson for Do I need to re-deploy to existing iPhone devices if the mobileprovision file is changed? Kristopher Johnson 2009-11-04T01:21:00Z 2009-11-04T01:21:00Z <p>No, existing devices will be fine. They just use whatever provision information they have; they don't do any sort of remote check to see if anything has changed.</p> http://stackoverflow.com/questions/1666432/one-class-for-one-view/1666460#1666460 0 Answer by Kristopher Johnson for One class for one view Kristopher Johnson 2009-11-03T10:22:28Z 2009-11-03T10:22:28Z <p>Yes, it's OK to have it like that. If there is common code between the classes, it would be a good idea to extract common superclasses.</p> <p>As far as performance goes, you should try to "lazy load" the views; that is, don't load a NIB until you actually need to display that view. If you try to load all NIBs at app startup, then it will take longer for the app to launch.</p> http://stackoverflow.com/questions/1662900/web-application-on-an-iphone-styling-it-to-look-like-native-iphone-app/1662917#1662917 1 Answer by Kristopher Johnson for Web application on an iPhone - styling it to look like native iPhone app Kristopher Johnson 2009-11-02T18:42:27Z 2009-11-02T18:42:27Z <p>See here for info on Joe Hewitt's CSS and JavaScript for native-looking iPhone web apps: <a href="http://ajaxian.com/archives/iphone-native-looking-skin" rel="nofollow">http://ajaxian.com/archives/iphone-native-looking-skin</a></p> <p>To simulate the look and feel of a web page on iPhone, you can try this: <a href="http://www.testiphone.com/" rel="nofollow">http://www.testiphone.com/</a>. (But of course, if you are serious about this, use a real iPhone or iPod Touch.)</p> http://stackoverflow.com/questions/1652025/viewdidappear-not-firing-in-tabbarcontrollernavigationcontrolleruitableview/1652046#1652046 0 Answer by Kristopher Johnson for viewDidAppear Not Firing in Tabbarcontroller>NavigationController>UITableView Kristopher Johnson 2009-10-30T20:11:51Z 2009-10-30T20:11:51Z <p>You should not have to call <code>viewDidAppear</code> from your code. Cocoa Touch should do that for you.</p> <p>Call the table view's <code>reloadData</code> method to get it to refresh its contents.</p> http://stackoverflow.com/questions/1649461/iphone-submitting-a-web-form-handle-cookies/1649528#1649528 0 Answer by Kristopher Johnson for iPhone > Submitting a web form, handle cookies.. Kristopher Johnson 2009-10-30T12:29:14Z 2009-10-30T12:29:14Z <p>Start here: <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html" rel="nofollow">Using NSURLConnection</a></p> <p>Some related answers that might be helpful: </p> <ul> <li><a href="http://stackoverflow.com/questions/1204224/upload-and-download-data-from-server-with-cocoa-touch">http://stackoverflow.com/questions/1204224/upload-and-download-data-from-server-with-cocoa-touch</a></li> <li><a href="http://stackoverflow.com/questions/761445/httpbasicauthentication-in-iphone">http://stackoverflow.com/questions/761445/httpbasicauthentication-in-iphone</a></li> <li><a href="http://stackoverflow.com/questions/787582/nsrequest-encode-url-for-nsrequest-post-body-iphone-objective-c">http://stackoverflow.com/questions/787582/nsrequest-encode-url-for-nsrequest-post-body-iphone-objective-c</a></li> <li><a href="http://stackoverflow.com/questions/471898/google-app-engine-with-clientlogin-interface-for-objective-c">http://stackoverflow.com/questions/471898/google-app-engine-with-clientlogin-interface-for-objective-c</a></li> </ul> http://stackoverflow.com/questions/1649139/searching-a-c-vectorcustomclass-for-the-first-last-occurence-of-a-value/1649185#1649185 4 Answer by Kristopher Johnson for Searching a C++ Vector<custom_class> for the first/last occurence of a value Kristopher Johnson 2009-10-30T11:04:01Z 2009-10-30T11:39:36Z <p>I'd just use <a href="http://www.cplusplus.com/reference/algorithm/find/" rel="nofollow"><code>find</code></a> and <a href="http://www.cplusplus.com/reference/algorithm/find%5Fend" rel="nofollow"><code>find_end</code></a>, and then do something more complicated only if testing showed it to be too slow.</p> <p>If you're really concerned about lookup performance, you might consider a different data structure, like a <code>map</code> with timestamp as the key and a <code>vector</code> or <code>list</code> of elements as the value.</p> http://stackoverflow.com/questions/1645511/is-it-possible-to-programatically-set-a-uitableviewcontrollers-datasource/1645525#1645525 0 Answer by Kristopher Johnson for Is it possible to programatically set a UITableViewController's dataSource? Kristopher Johnson 2009-10-29T18:03:10Z 2009-10-29T18:03:10Z <p>After setting the dataSource, did you call <code>reloadData</code> to make the table view use the new data source?</p> http://stackoverflow.com/questions/1644293/how-to-push-viewcontroller-view-controller/1644309#1644309 1 Answer by Kristopher Johnson for How to push viewcontroller (view controller)? Kristopher Johnson 2009-10-29T14:57:41Z 2009-10-29T14:57:41Z <p>Way 1 is simpler.</p> <p>Way 2 lets the first controller keep a reference to the pushed view controller. If you need that reference, then this would be useful.</p> <p>There is no clear answer here. It depends upon your needs. The general rule, of course, is to make the code as simple as possible, but no simpler.</p> http://stackoverflow.com/questions/1644160/uiactionview-display-wrongly/1644185#1644185 0 Answer by Kristopher Johnson for UIActionView display wrongly Kristopher Johnson 2009-10-29T14:36:44Z 2009-10-29T14:36:44Z <p>For the <code>showInView:</code> call, try using the navigation view or tab bar view instead of your controller's view.</p> http://stackoverflow.com/questions/1644062/resetting-nsmutablearray/1644081#1644081 3 Answer by Kristopher Johnson for Resetting NSMutableArray Kristopher Johnson 2009-10-29T14:21:01Z 2009-10-29T14:21:01Z <p><code>removeAllObjects</code></p> http://stackoverflow.com/questions/213121/c-use-class-or-typename-for-template-parameters 16 C++: Use 'class' or 'typename' for template parameters? Kristopher Johnson 2008-10-17T17:43:59Z 2009-10-28T12:37:56Z <p>When defining a function template or class template in C++, one can write this:</p> <pre><code>template &lt;class T&gt; ... </code></pre> <p>or one can write this:</p> <pre><code>template &lt;typename T&gt; ... </code></pre> <p>Is there a good reason to prefer one over the other?</p> <p><hr /></p> <p>I accepted the most popular (and interesting) answer, but the real answer seems to be "No, there is no good reason to prefer one over the other."</p> <ul> <li>They are equivalent.</li> <li>Some people have reasons to always use <code>typename</code>.</li> <li>Some people have reasons to always use <code>class</code>.</li> <li>Some people have reasons to use both.</li> <li>Some people don't care which one they use.</li> </ul> http://stackoverflow.com/questions/1802135/detecting-swipe-in-uinavigationbar Comment by Kristopher Johnson on Detecting Swipe In UINavigationBar Kristopher Johnson 2009-11-26T08:07:45Z 2009-11-26T08:07:45Z How are you trying to detect swipes? http://stackoverflow.com/questions/1783849/what-are-the-advantages-and-disadvantages-of-implementing-classes-in-header-files/1785317#1785317 Comment by Kristopher Johnson on What are the advantages and disadvantages of implementing classes in header files? Kristopher Johnson 2009-11-24T18:29:42Z 2009-11-24T18:29:42Z Unfortunately, a C++ header file usually does contain a lot of implementation details, so it's not really that clean. (And before anyone else says it: Yeah, yeah, pimpl idiom, bla-bla-blah). http://stackoverflow.com/questions/1784481/microsoft-internal-coding-guidelines-dont-use-tabs/1784527#1784527 Comment by Kristopher Johnson on Microsoft Internal Coding guidelines: don't use tabs. Kristopher Johnson 2009-11-23T17:07:02Z 2009-11-23T17:07:02Z The common counterargument to this is that code should be run through some sort of reformatter before being committed to the repository, to ensure consistent whitespace. However, I've never personally seen anyone actually do this. Better to have a standard for everyone to follow. http://stackoverflow.com/questions/12023/how-do-i-attract-developers-to-an-open-source-project/12733#12733 Comment by Kristopher Johnson on How do I attract developers to an Open Source project? Kristopher Johnson 2009-11-23T15:48:34Z 2009-11-23T15:48:34Z The project was <a href="http://remoting-corba.sourceforge.net/" rel="nofollow">remoting-corba.sourceforge.net</a>, which provided CORBA bindings for .NET. At the time, it was useful, but eventually, Visibroker and other CORBA vendors had .NET products. And of course, interest in CORBA waned in favor of Web Services. http://stackoverflow.com/questions/24109/c-ide-for-linux/24160#24160 Comment by Kristopher Johnson on C++ IDE for Linux? Kristopher Johnson 2009-11-23T15:31:15Z 2009-11-23T15:31:15Z &quot;not very useful yet&quot;: autocomplete often doesn't work, navigating to declarations or uses of functions doesn't work, syntax highlighting doesn't always work, refactoring doesn't work, etc. It's little better than using vi. The GDB frontend UI is the only thing that makes it worth using at all, IMHO. http://stackoverflow.com/questions/1755402/is-there-a-solution-to-the-0-25-sec-touch-delay-problem-on-iphone-os Comment by Kristopher Johnson on Is there a solution to the 0.25 sec touch delay problem on iPhone OS? Kristopher Johnson 2009-11-18T12:13:47Z 2009-11-18T12:13:47Z Also dupe of <a href="http://stackoverflow.com/questions/1239828/is-it-possible-to-pull-for-touch-points-immediately-after-touchesbegan-gets-call" rel="nofollow" title="is it possible to pull for touch points immediately after touchesbegan gets call">stackoverflow.com/questions/1239828/&hellip;</a> http://stackoverflow.com/questions/1755402/is-there-a-solution-to-the-0-25-sec-touch-delay-problem-on-iphone-os Comment by Kristopher Johnson on Is there a solution to the 0.25 sec touch delay problem on iPhone OS? Kristopher Johnson 2009-11-18T12:11:53Z 2009-11-18T12:11:53Z This may be a dupe of <a href="http://stackoverflow.com/questions/1755197/is-there-a-way-to-fake-a-real-touch-into-iphone-os" rel="nofollow" title="is there a way to fake a real touch into iphone os">stackoverflow.com/questions/1755197/&hellip;</a> http://stackoverflow.com/questions/1750374/measure-cpu-ram-usage-of-a-program Comment by Kristopher Johnson on Measure CPU / RAM usage of a program Kristopher Johnson 2009-11-17T17:22:17Z 2009-11-17T17:22:17Z What are you going to use the performance data for? http://stackoverflow.com/questions/1746795/how-to-access-a-local-host-url-in-objective-c-for-iphone-os Comment by Kristopher Johnson on How to access a local host url in Objective-C for iPhone OS Kristopher Johnson 2009-11-17T17:20:03Z 2009-11-17T17:20:03Z Are you trying to launch another app, or trying to access another apps data? You can't do the latter. http://stackoverflow.com/questions/1748698/bat-file-executing-commands-sequentially-one-after-another Comment by Kristopher Johnson on .bat file - executing commands sequentially one after another Kristopher Johnson 2009-11-17T13:00:19Z 2009-11-17T13:00:19Z Is the problem that msbuild returns immediately, rather than waiting for the build to complete? http://stackoverflow.com/questions/1748350/how-to-convert-uicolor-value-to-nsstring/1748458#1748458 Comment by Kristopher Johnson on How to convert UIColor value to NSString? Kristopher Johnson 2009-11-17T12:35:44Z 2009-11-17T12:35:44Z Yes, but -description also includes the class name, which may or may not be desirable (questioner doesn't say what he wants the string to look like). http://stackoverflow.com/questions/1748350/how-to-convert-uicolor-value-to-nsstring Comment by Kristopher Johnson on How to convert UIColor value to NSString? Kristopher Johnson 2009-11-17T12:17:45Z 2009-11-17T12:17:45Z What format do you want the resulting NSString to have? What are you going to do with that string? (Display to user, save to file, ...) http://stackoverflow.com/questions/380062/iphone-device-vs-iphone-simulator/380117#380117 Comment by Kristopher Johnson on iPhone device vs. iPhone simulator Kristopher Johnson 2009-11-11T15:12:53Z 2009-11-11T15:12:53Z No threads, and not using OpenGL. But the point is that performance can be radically different between the two platforms. http://stackoverflow.com/questions/1700859/did-java-steal-away-the-fun-from-programming/1700964#1700964 Comment by Kristopher Johnson on Did Java steal away the fun from programming? Kristopher Johnson 2009-11-10T15:31:50Z 2009-11-10T15:31:50Z Agreed. Most Java stuff sucks because it is being used to solve real-world problems, which are usually very complicated (not in a fun way). It's not the fault of the language. http://stackoverflow.com/questions/1704892/are-class-variables-included-in-the-7-2-guideline/1704999#1704999 Comment by Kristopher Johnson on Are class variables included in the 7 +- 2 guideline? Kristopher Johnson 2009-11-10T01:05:02Z 2009-11-10T01:05:02Z On the other hand, if you can split your class members into groups, that's often a good sign that you should split the class.