User Mike Akers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:47:55Z http://stackoverflow.com/feeds/user/17188 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1700266/can-i-use-git-to-move-files-between-svn-repos-with-the-history 2 Can I use Git to move files between svn repos with the history? Mike Akers 2009-11-09T10:40:49Z 2009-11-09T10:52:50Z <p>I've been using git-svn to work with svn repository A, and now I need to move the project over to repository B. I could just use svn to import the lastest HEAD from A. But I'd like to preserve the history if there's a way. Is there a way to do this? Can I add repos b as a remote branch and dcommit to it or something? Not sure.</p> http://stackoverflow.com/questions/1673874/how-can-i-get-the-full-list-of-running-processes-on-a-mac-from-a-python-app/1673985#1673985 3 Answer by Mike Akers for How can I get the full list of running processes on a Mac from a python app. Mike Akers 2009-11-04T14:11:55Z 2009-11-04T14:11:55Z <p><code>os.popen('ps aux')</code> looks like it's listing all processes for me.</p> http://stackoverflow.com/questions/769749/is-there-a-good-charting-library-for-iphone 9 Is there a good charting library for iPhone? Mike Akers 2009-04-20T19:23:24Z 2009-10-22T21:41:07Z <p>I have a need to render and display charts (bar charts for now, but more types may be needed later) in an iPhone app I'm working on. I've done some looking around and it doesn't look like there are any really good, mature charting libraries for iPhone yet. I've also looked for something written for Cocoa on the Mac that can be adapted, but haven't found anything great yet.</p> <p>Anybody dealt with this before? Any recommendations? </p> <p>I did find <a href="http://code.google.com/p/core-plot" rel="nofollow">Core Plot</a>, but it seems to be in the early stages of development.</p> <p>Edit to add some details of requirements (as they currently stand ;) )</p> <ul> <li>Bar Charts</li> <li>Horizontal bar charts</li> <li>Double stacked bar charts</li> <li>Axis labels (including rotated 90 degrees on the y axis)</li> <li>Labels above each bar on the chart</li> <li>Shaded or custom backgrounds</li> </ul> http://stackoverflow.com/questions/212999/continuous-integration-for-xcode-projects 7 Continuous Integration for Xcode projects? Mike Akers 2008-10-17T17:10:44Z 2009-10-10T00:17:45Z <p>After using Hudson for continuous integration with a prior project, I want to set up a continuous integration server for the iPhone projects I'm working on now. After doing some research it looks like there aren't any CI engines designed specifically for Xcode, but one guy has had success <a href="http://www.pragmaticautomation.com/cgi-bin/pragauto.cgi/Build/XcodeOnCC.rdoc" rel="nofollow">using Cruise Control combined with the xcodebuild CLI tool</a>. Has anyone here tried this? Are there any CI engines that work well with Xcode projects?</p> <p>I'm probably going to give Cruise Control a try. I'll post an answer with my findings.</p> http://stackoverflow.com/questions/400965/how-to-customize-the-background-border-colors-of-a-grouped-table-view/401271#401271 28 Answer by Mike Akers for How to customize the background/border colors of a grouped table view? Mike Akers 2008-12-30T19:46:36Z 2009-09-28T14:59:36Z <p><strong>UPDATE:</strong> In iPhone OS 3.0 and later UITableViewCell now has a backgroundColor property that makes this really easy. But I'll leave the 2.0 version of the answer here for anyone that needs it...</p> <p><hr /></p> <p>It's harder than it really should be. Here's how I did this when I had to do it:</p> <p>You need to set the UITableViewCell's backgroundView property to a custom UIView that draws the border and background itself in the appropriate colors. This view needs to be able to draw the borders in 4 different modes, rounded on the top for the first cell in a section, rounded on the bottom for the last cell in a section, no rounded corners for cells in the middle of a section, and rounded on all 4 corners for sections that contain one cell.</p> <p>Unfortunately I couldn't figure out how to have this mode set automatically, so I had to set it in the UITableViewDataSource's -cellForRowAtIndexPath method.</p> <p>It's a real PITA but I've confirmed with Apple engineers that this is currently the only way.</p> <p><strong>Update</strong> Here's the code for that custom bg view. There's a drawing bug that makes the rounded corners look a little funny, but we moved to a different design and scrapped the custom backgrounds before I had a chance to fix it. Still this will probably be very helpful for you:</p> <pre><code>// // CustomCellBackgroundView.h // // Created by Mike Akers on 11/21/08. // Copyright 2008 __MyCompanyName__. All rights reserved. // #import &lt;UIKit/UIKit.h&gt; typedef enum { CustomCellBackgroundViewPositionTop, CustomCellBackgroundViewPositionMiddle, CustomCellBackgroundViewPositionBottom, CustomCellBackgroundViewPositionSingle } CustomCellBackgroundViewPosition; @interface CustomCellBackgroundView : UIView { UIColor *borderColor; UIColor *fillColor; CustomCellBackgroundViewPosition position; } @property(nonatomic, retain) UIColor *borderColor, *fillColor; @property(nonatomic) CustomCellBackgroundViewPosition position; @end // // CustomCellBackgroundView.m // // Created by Mike Akers on 11/21/08. // Copyright 2008 __MyCompanyName__. All rights reserved. // #import "CustomCellBackgroundView.h" static void addRoundedRectToPath(CGContextRef context, CGRect rect, float ovalWidth,float ovalHeight); @implementation CustomCellBackgroundView @synthesize borderColor, fillColor, position; - (BOOL) isOpaque { return NO; } - (id)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { // Initialization code } return self; } - (void)drawRect:(CGRect)rect { // Drawing code CGContextRef c = UIGraphicsGetCurrentContext(); CGContextSetFillColorWithColor(c, [fillColor CGColor]); CGContextSetStrokeColorWithColor(c, [borderColor CGColor]); if (position == CustomCellBackgroundViewPositionTop) { CGContextFillRect(c, CGRectMake(0.0f, rect.size.height - 10.0f, rect.size.width, 10.0f)); CGContextBeginPath(c); CGContextMoveToPoint(c, 0.0f, rect.size.height - 10.0f); CGContextAddLineToPoint(c, 0.0f, rect.size.height); CGContextAddLineToPoint(c, rect.size.width, rect.size.height); CGContextAddLineToPoint(c, rect.size.width, rect.size.height - 10.0f); CGContextStrokePath(c); CGContextClipToRect(c, CGRectMake(0.0f, 0.0f, rect.size.width, rect.size.height - 10.0f)); } else if (position == CustomCellBackgroundViewPositionBottom) { CGContextFillRect(c, CGRectMake(0.0f, 0.0f, rect.size.width, 10.0f)); CGContextBeginPath(c); CGContextMoveToPoint(c, 0.0f, 10.0f); CGContextAddLineToPoint(c, 0.0f, 0.0f); CGContextStrokePath(c); CGContextBeginPath(c); CGContextMoveToPoint(c, rect.size.width, 0.0f); CGContextAddLineToPoint(c, rect.size.width, 10.0f); CGContextStrokePath(c); CGContextClipToRect(c, CGRectMake(0.0f, 10.0f, rect.size.width, rect.size.height)); } else if (position == CustomCellBackgroundViewPositionMiddle) { CGContextFillRect(c, rect); CGContextBeginPath(c); CGContextMoveToPoint(c, 0.0f, 0.0f); CGContextAddLineToPoint(c, 0.0f, rect.size.height); CGContextAddLineToPoint(c, rect.size.width, rect.size.height); CGContextAddLineToPoint(c, rect.size.width, 0.0f); CGContextStrokePath(c); return; // no need to bother drawing rounded corners, so we return } // At this point the clip rect is set to only draw the appropriate // corners, so we fill and stroke a rounded rect taking the entire rect CGContextBeginPath(c); addRoundedRectToPath(c, rect, 10.0f, 10.0f); CGContextFillPath(c); CGContextSetLineWidth(c, 1); CGContextBeginPath(c); addRoundedRectToPath(c, rect, 10.0f, 10.0f); CGContextStrokePath(c); } - (void)dealloc { [borderColor release]; [fillColor release]; [super dealloc]; } @end static void addRoundedRectToPath(CGContextRef context, CGRect rect, float ovalWidth,float ovalHeight) { float fw, fh; if (ovalWidth == 0 || ovalHeight == 0) {// 1 CGContextAddRect(context, rect); return; } CGContextSaveGState(context);// 2 CGContextTranslateCTM (context, CGRectGetMinX(rect),// 3 CGRectGetMinY(rect)); CGContextScaleCTM (context, ovalWidth, ovalHeight);// 4 fw = CGRectGetWidth (rect) / ovalWidth;// 5 fh = CGRectGetHeight (rect) / ovalHeight;// 6 CGContextMoveToPoint(context, fw, fh/2); // 7 CGContextAddArcToPoint(context, fw, fh, fw/2, fh, 1);// 8 CGContextAddArcToPoint(context, 0, fh, 0, fh/2, 1);// 9 CGContextAddArcToPoint(context, 0, 0, fw/2, 0, 1);// 10 CGContextAddArcToPoint(context, fw, 0, fw, fh/2, 1); // 11 CGContextClosePath(context);// 12 CGContextRestoreGState(context);// 13 } </code></pre> http://stackoverflow.com/questions/314844/localization-do-all-locales-put-the-weekday-before-the-date 2 Localization: Do all locales put the weekday before the date? Mike Akers 2008-11-24T17:27:04Z 2009-09-04T08:10:59Z <p>Here's a simple (hopefully) L10N question:</p> <p>Do all locales want this format: </p> <p><em>Sunday, Nov 23, 2008</em></p> <p>with the weekday before the date, or do some locales want it after the date like this?</p> <p><em>Nov 23, 2008, Sunday</em></p> http://stackoverflow.com/questions/1371190/in-objective-c-how-does-alloc-know-how-much-memory-to-allocate/1371298#1371298 2 Answer by Mike Akers for In Objective-C, how does +alloc know how much memory to allocate? Mike Akers 2009-09-03T03:28:16Z 2009-09-03T03:28:16Z <p>Mike Ash wrote an article describing how some of this works:</p> <p><a href="http://www.mikeash.com/?page=pyblog/friday-qa-2009-03-13-intro-to-the-objective-c-runtime.html" rel="nofollow">Friday Q&amp;A 2009-03-13: Intro to the Objective-C Runtime</a></p> http://stackoverflow.com/questions/1368507/why-does-xcode-warn-me-about-title-shadow-offsets-in-xib-files-even-though-im-ta 1 Why does Xcode warn me about title shadow offsets in xib files even though I'm targeting iPhone OS 3.0? Mike Akers 2009-09-02T15:48:17Z 2009-09-02T16:42:46Z <p>When I build my iPhone project, I get warnings from xcode about a few of my xibs saying:</p> <blockquote> <p><code>Specifying a title shadow offset in Interface Builder is not supported by the iPhone SDK for iPhone OS versions prior to 3.0.</code></p> </blockquote> <p>Thing is, I'm building for 3.0, and the base SDK is set to 3.0. I've done some poking around and can't find anything that looks like it would solve the problem.</p> <p>I've done some Googling and searched Apple's dev forums and haven't found anything. Does anyone here have any ideas?</p> http://stackoverflow.com/questions/1263766/encrypt-decrypt-with-sha256-using-java/1263776#1263776 3 Answer by Mike Akers for encrypt- decrypt with SHA256 using java Mike Akers 2009-08-12T01:10:40Z 2009-08-12T01:10:40Z <p>I think you're confused about what SHA is. SHA is a <a href="http://en.wikipedia.org/wiki/Cryptographic%5Fhash%5Ffunction" rel="nofollow">Cryptographic Hash Function</a>, not an encryption algorithm. You can't reverse the operation to determine the message that was used to generate a particular hash.</p> http://stackoverflow.com/questions/1230131/objective-c-which-syntax/1230144#1230144 7 Answer by Mike Akers for Objective C - Which syntax? Mike Akers 2009-08-04T22:00:56Z 2009-08-04T22:00:56Z <p>I use the second form because the intention is more clear that way.</p> http://stackoverflow.com/questions/159821/how-do-i-scroll-a-uitableview-to-a-section-that-contains-no-rows/351109#351109 1 Answer by Mike Akers for How do I scroll a UITableView to a section that contains no rows? Mike Akers 2008-12-08T22:07:18Z 2009-07-14T01:13:10Z <p>UPDATE: Looks like this bug is fixed in 3.0. You can use the following <code>NSIndexPath</code> to scroll to a section containing 0 rows:</p> <pre><code>[NSIndexPath indexPathForRow:NSNotFound inSection:section] </code></pre> <p>I'll leave my original workaround here for anyone still maintaining a project using the 2.x SDK.</p> <p><hr /></p> <p>Found a decent workaround:</p> <pre><code>CGRect sectionRect = [tableView rectForSection:indexOfSectionToScrollTo]; [tableView scrollRectToVisible:sectionRect animated:YES]; </code></pre> <p>The code above will scroll the tableview so the desired section is visible but not necessarily at the top or bottom of the visible area. If you want to scroll so the section is at the top do this:</p> <pre><code>CGRect sectionRect = [tableView rectForSection:indexOfSectionToScrollTo]; sectionRect.size.height = tableView.frame.size.height; [tableView scrollRectToVisible:sectionRect animated:YES]; </code></pre> <p>Modify sectionRect as desired to scroll the desired section to the bottom or middle of the visible area.</p> http://stackoverflow.com/questions/159821/how-do-i-scroll-a-uitableview-to-a-section-that-contains-no-rows 0 How do I scroll a UITableView to a section that contains no rows? Mike Akers 2008-10-01T21:21:57Z 2009-07-14T01:13:10Z <p>In an app I'm working on, I have a plain style UITableView that can contain a section containing zero rows. I want to be able to scroll to this section using scrollToRowAtIndexPath:atScrollPosition:animated: but I get an error when I try to scroll to this section due to the lack of child rows.</p> <p>Apple's calendar application is able to do this, if you look at your calendar in list view, and there are no events in your calendar for today, an empty section is inserted for today and you can scroll to it using the Today button in the toolbar at the bottom of the screen. As far as I can tell Apple may be using a customized UITableView, or they're using a private API...</p> <p>The only workaround I can think of is to insert an empty UITableCell in that's 0 pixels high and scroll to that. But it's my understanding that having cells of varying heights is really bad for scrolling performance. Still I'll try it anyway, maybe the performance hit won't be too bad.</p> <p><strong>Update</strong></p> <p>Since there seems to be no solution to this, I've filed a bug report with apple. If this affects you too, file a duplicate of rdar://problem/6263339 (<a href="http://openradar.appspot.com/radar?id=283" rel="nofollow">Open Radar link)</a> if you want this to get this fixed faster.</p> <p><strong>Update #2</strong></p> <p>I have a decent workaround to this issue, take a look at my answer below.</p> http://stackoverflow.com/questions/1114844/trouble-firing-a-tableview-reloaddata/1114855#1114855 1 Answer by Mike Akers for Trouble firing a [tableView reloadData] Mike Akers 2009-07-11T22:49:12Z 2009-07-11T22:49:12Z <p>The way I would approach this would be to make the first controller a delegate of the second controller. Add a method like <code>-secondController:didFinishEnteringName:</code> to the first controller that reloads the tableview when called. Then add a delegate property (with assign semantics) to the second controller, set the first controller to be the second's delegate, and finally, after the user enters his name in the second controller, call the first controller's <code>-secondController:didFinishEnteringName:</code> method before removing the second controller from the screen.</p> <p>Another approach might be to use notifications. But that's more applicable in situations where there may be many views or other objects that have to be updated.</p> http://stackoverflow.com/questions/1055666/using-nsmethodsignature-on-iphone-with-obj-c-2-0-properties/1055718#1055718 4 Answer by Mike Akers for Using NSMethodSignature on iPhone (with Obj-C 2.0 properties) Mike Akers 2009-06-28T20:44:59Z 2009-06-28T21:01:19Z <p>Try something like this:</p> <pre><code>NSLog(@"Object: %@", object); NSLog(@"Color: %@", [object color]); SEL sel = @selector(color); NSMethodSignature *signature = [[object class] instanceMethodSignatureForSelector:sel]; NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature]; [invocation setSelector:sel]; [invocation setTarget:object]; [invocation invoke]; </code></pre> <p>You were missing a call to <code>NSInvocation</code>'s <code>setSelector:</code> method.</p> <p><code>NSMethodSignature</code> records type information for the arguments and return value of a method, but doesn't contain the selector itself. So if you want to use it with an <code>NSInvocation</code> you need to set the invocation's selector as well.</p> http://stackoverflow.com/questions/923486/what-are-the-best-google-tech-talks/927713#927713 4 Answer by Mike Akers for What are the best Google Tech Talks? Mike Akers 2009-05-29T19:26:08Z 2009-05-29T19:32:03Z <p>Linus's talk about Git is good for learning what Git isn't but <a href="http://www.youtube.com/watch?v=8dhZ9BXQgc4&amp;feature=channel%5Fpage" rel="nofollow">this talk</a> by Randal Schwartz is much more useful for learning what Git is....</p> <p>Here are some others I liked:</p> <ul> <li><a href="http://www.youtube.com/watch?v=9NqLljaHc80&amp;feature=channel%5Fpage" rel="nofollow">Deconstructing The Xbox Security System</a></li> <li><a href="http://www.youtube.com/watch?v=uxjpmc8ZIxM&amp;feature=channel%5Fpage" rel="nofollow">The Xbox 360 Security System and its Weaknesses</a></li> <li><a href="http://www.youtube.com/watch?v=j8zj5lBpFTY&amp;feature=channel%5Fpage" rel="nofollow">Winning The DARPA Grand Challenge</a></li> <li><a href="http://www.youtube.com/watch?v=nFr2pv2bXXc&amp;feature=channel%5Fpage" rel="nofollow">Working in space</a></li> <li><a href="http://www.youtube.com/watch?v=giAMt8Tj-84&amp;feature=channel%5Fpage" rel="nofollow">An introduction to Sqlite</a></li> <li><a href="http://www.youtube.com/watch?v=QJPq%5F8ULpRg&amp;feature=channel%5Fpage" rel="nofollow">Inside VMware Fusion</a></li> <li><a href="http://www.youtube.com/watch?v=VeRaLPupGks&amp;feature=channel%5Fpage" rel="nofollow">LLVM 2.0</a></li> <li><a href="http://www.youtube.com/watch?v=1FX4zco0ziY&amp;feature=channel%5Fpage" rel="nofollow">Advanced Topics in Programming Languages: The Java Memory Model</a> (this one's really about concurrency, and it's very interesting).</li> <li><a href="http://www.youtube.com/watch?v=IyNPeTn8fpo&amp;feature=channel%5Fpage" rel="nofollow">Scrum Et Al.</a></li> </ul> http://stackoverflow.com/questions/837964/icmp-and-the-iphone-sdk/837982#837982 0 Answer by Mike Akers for ICMP and the iPhone SDK Mike Akers 2009-05-08T02:24:39Z 2009-05-08T02:24:39Z <p>Not sure about the CFNetwork stuff, but don't forget that you still have all the usual BSD networking stuff at your disposal too.</p> http://stackoverflow.com/questions/827326/whats-a-good-hex-editor-viewer-for-the-mac 1 What's a good hex editor/viewer for the Mac? Mike Akers 2009-05-05T23:05:58Z 2009-05-06T00:22:09Z <p>What's a good hex editor/viewer for the Mac? I've used xxd for viewing hexdumps, and I think it can be used in reverse to make edits. But what I really want is a real hex editor.</p> http://stackoverflow.com/questions/13449/is-there-a-good-gui-svn-app-for-mac-better-than-xcode/827334#827334 0 Answer by Mike Akers for Is there a good GUI SVN app for Mac (better than XCode) Mike Akers 2009-05-05T23:09:18Z 2009-05-05T23:09:18Z <p>I like cornerstone a lot, the only problem I've had is that it can get kind of slow dealing with working copies with many files (~95,000 files).</p> http://stackoverflow.com/questions/827326/whats-a-good-hex-editor-viewer-for-the-mac/827330#827330 4 Answer by Mike Akers for What's a good hex editor/viewer for the Mac? Mike Akers 2009-05-05T23:07:53Z 2009-05-05T23:07:53Z <p>One recommendation I've gotten is <a href="http://ridiculousfish.com/hexfiend/" rel="nofollow">Hex Fiend</a>.</p> http://stackoverflow.com/questions/822417/why-cant-i-correctly-parse-this-date-string-with-nsdateformatter 2 Why can't I correctly parse this date string with NSDateFormatter? Mike Akers 2009-05-04T22:32:14Z 2009-05-05T00:25:14Z <p>I'm trying to parse a string that was generated by an NSDateFormatter using another NSDateFormatter with the same format.</p> <p>Rather than trying to make that previous sentence make sense, here's some code:</p> <pre><code>NSDateFormatter *format = [[NSDateFormatter alloc] init]; [format setDateFormat:@"MMM dd, YYYY HH:mm"]; NSDate *now = [[NSDate alloc] init]; NSString *dateString = [format stringFromDate:now]; NSDateFormatter *inFormat = [[NSDateFormatter alloc] init]; [inFormat setDateFormat:@"MMM dd, YYYY HH:mm"]; NSDate *parsed = [inFormat dateFromString:dateString]; NSLog(@"\n" "now: |%@| \n" "dateString: |%@| \n" "parsed: |%@|", now, dateString, parsed); </code></pre> <p>When I run this code, I expect that <em>parsed</em> would contain the same date as <em>now</em> but instead I get the following output:</p> <pre> now: |2009-05-04 18:23:35 -0400| dateString: |May 04, 2009 18:23| parsed: |2008-12-21 18:23:00 -0500| </pre> <p>Anybody have any ideas why this is happening?</p> http://stackoverflow.com/questions/822419/what-is-surfacing/822476#822476 3 Answer by Mike Akers for What is Surfacing? Mike Akers 2009-05-04T22:45:33Z 2009-05-04T22:45:33Z <p>Here's a quote from the transcript wiki of <a href="https://stackoverflow.fogbugz.com/default.asp?W29044" rel="nofollow">podcast 51</a> where they mention "surfacing." I think they've mentioned it a couple of other times too.</p> <blockquote> <p>Atwood: That's right. Well one thing we just rolled out was, we're surfacing some of the comments on the question page now, one thing I didn't like about comments was that they were essentially unsearchable, because they were loaded through Javascript, and through Ajax</p> </blockquote> <p>I think it's basically making sure some content is visible to search engines rather than being loaded by ajax or something. Or making them visible by default.</p> http://stackoverflow.com/questions/798207/flowchart-app-for-osx/798224#798224 2 Answer by Mike Akers for Flowchart app for OSX? Mike Akers 2009-04-28T14:21:27Z 2009-04-28T14:21:27Z <p>I've used <a href="http://www.omnigroup.com/applications/OmniGraffle/" rel="nofollow">OmniGraffle</a> for doing flowcharts and many other types of diagrams in the past. I love it.</p> http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/744805#744805 37 Answer by Mike Akers for What are the worst working conditions you have written code in? Mike Akers 2009-04-13T17:59:04Z 2009-04-13T17:59:04Z <p>I once worked on a team with Jon Skeet. Try impressing your boss with him as your competition!</p> http://stackoverflow.com/questions/744488/whats-the-one-thing-you-would-go-back-and-tell-yourself-when-first-learning-to-d/744544#744544 11 Answer by Mike Akers for What's the one thing you would go back and tell yourself when first learning to develop software? Mike Akers 2009-04-13T16:48:01Z 2009-04-13T16:48:01Z <p>Read lots of code. No matter how good you are, you'll always learn something by reading other people's code. You'll see the solutions they've found, and you'll also see the pitfalls they've fallen into.</p> <p>Being able to read code helps when you need to work with other team members, work with new codebases, and do code reviews.</p> <p>Also, learn more than one language. I've found that every time I learn a new language it makes me a better programmer in the other languages I already know. A good programmer shouldn't think of learning a language as a big deal, and no matter what language you decide to learn now, you will have to learn others later in your career as technology changes.</p> <p>My suggestion? One of the languages should be C, the other should be Lisp :) C is as low level as you can get without writing assembler, and Lisp is as high level as you can get. Master them both, and you'll be in awesome shape.</p> http://stackoverflow.com/questions/597459/how-mature-is-sdl-for-iphone 4 How mature is SDL for iPhone? Mike Akers 2009-02-28T03:44:42Z 2009-03-26T14:02:54Z <p>For a while I've been thinking of trying to do a port of one of my favorite classic PC games, <a href="http://sc2.sourceforge.net" rel="nofollow">The Ur-Quan Masters</a> (aka <a href="http://en.wikipedia.org/wiki/Star%5Fcontrol%5F2" rel="nofollow">Star Control 2</a>) to the iPhone. UQM uses SDL for all its graphics, sound, input and other gamey stuff and there does seem to be a port of SDL to iPhone but it doesn't look very mature at this point.</p> <p>Has anyone put the iPhone SDL port through its paces? How well does it work? What kinds of issues can I expect taking this project, which is already cross platform code to iPhone?</p> <p>If SDL isn't an option can anyone reccomend an alternative framework to look at that will bridge the gap between SDL and the native libraries like OpenGL ES and Core Audio? Or is coding to those frameworks the best option?</p> <p><strong>Edit to add:</strong> Here's a link to a <a href="http://forum.uqm.stack.nl/index.php?topic=4254.0" rel="nofollow">forum thread</a> on the UQM forum about doing an iPhone port.</p> http://stackoverflow.com/questions/300048/why-does-xcode-keep-changing-its-active-executable 0 Why does Xcode keep changing its active executable? Mike Akers 2008-11-18T20:35:22Z 2009-03-25T09:34:52Z <p>Something really weird is going on with Xcode and an iPhone project I'm working on, when I'm building for the simulator, the project has 2 active executables (MyApp - iPhone Simulator (2.0) and MyApp - iPhone Simulator (2.1)) Almost all of the time, I want to use the the 2.1 active executable, but Xcode will occasionally silently change to the 2.0 one.</p> <p>There doesn't seem to be any pattern to this or any trigger that I can notice. Googling has found a couple of people out there who are having the same problem, but no solutions.</p> <p>Help me stackoverflow-kenobi! You're my only hope!</p> http://stackoverflow.com/questions/651396/how-can-i-transliterate-chinese-text-to-pinyin-on-iphone 1 How can I transliterate chinese text to pinyin on iPhone? Mike Akers 2009-03-16T17:36:06Z 2009-03-16T19:27:25Z <p>The localization saga continues...</p> <p>So I'm trying to support collation of chinese text in my iPhone app, and after talking to a native chinese speaker, I think I understand how the chinese do it...</p> <p>Lets say you had the string 巴拉克·奥巴马 and you wanted to figure out which section of the chinese phonebook to put it in (in this example I'm ignoring firstname/lastname and just using the first character of the string)...</p> <p>First you transliterate it into pinyin, which gives you "balake aobama" Then you collate based on the first character of that string: "b"</p> <p>So the question is, how can I go from 巴拉克·奥巴马 to balake aobama using the iPhone SDK? It looks like the <a href="http://site.icu-project.org/" rel="nofollow">ICU</a> library, which ships on the phone, can do this kind of transliteration, but I'm not sure if I can use it easily from my code, and even if I can, I don't know if the transliteration stuff is included in the build of ICU that comes on the phone.</p> <p>If ICU is a no-go, does anyone have any better ideas?</p> http://stackoverflow.com/questions/639041/how-do-i-localize-multiple-files-at-once-in-xcode 2 How do I localize multiple files at once in Xcode? Mike Akers 2009-03-12T15:02:30Z 2009-03-16T04:40:14Z <p>In the process of localizing my app, I have about 50 resources (mostly xibs) that need to be localized. I know how to add a localization for each file, but it's a pretty time consuming process to open the info panel and add the localization for each file.</p> <p>Is there any way to select multiple files and add a localization to each of them in one shot?</p> <p>Edit to add: Is this a place where AppleGlot or iLocalize can help? I haven't yet looked at those tools.</p> http://stackoverflow.com/questions/634674/cocoa-iphone-how-do-i-create-a-simplified-chinese-localization-of-my-app 1 Cocoa/iPhone: How do I create a Simplified Chinese localization of my app? Mike Akers 2009-03-11T14:13:25Z 2009-03-11T14:52:52Z <p>I'm in the middle of localizing my iPhone app, and I've gotten English, French, German and Japanese localizations working without any problems. Now I'm trying to get a simplified chinese localization working, and no matter what I try, the chinese .lproj bundle just won't be used when I have the phone set to simplified chinese.</p> <p>One problem is that I'm not sure what the localization should be called. I've tried "Chinese", zh-Hans, zh-CN, zh_Hans, zh_CN and none of them work. I've even gone as far as digging around inside Remember The Milk's app bundle to see what they used. They're using zh_CN but that doesn't work for me.</p> <p>Am I missing something obvious here? Do I need to update some plist somewhere? As far as I can see from reading the I18N documentation and looking at the relevant WWDC session video, all I should need to do is make sure I have the right .lproj bundle in my app bundle and I should be good to go... right?</p> <p>If you think it would help, I can provide a test xcode project that demonstrates the problem...</p> <p>Thanks</p> http://stackoverflow.com/questions/616410/cocoa-iphone-how-to-i-keep-ibtool-from-outputing-non-localizable-strings-in-a-xi 0 Cocoa/iPhone: How to I keep ibtool from outputing non-localizable strings in a xib file? Mike Akers 2009-03-05T20:08:06Z 2009-03-08T15:27:41Z <p>I'm working on internationalizing an iPhone application, and I'm using ibtool to extract the string from my xib files so they can be translated by a localization house like so:</p> <pre><code>ibtool --generate-strings-file BlahBlahView.strings English.lproj/BlahBlahView.xib </code></pre> <p>The problem with this is that the .strings file I end up with contains <em>all</em> the strings contained in the xib when I really want the subset that I actually care about for i18n. Is there any best best practice for dealing with this? Ideally I'd like to be able to add some kind of annotation in interface builder to say either "This is localizable" or "This is not localizable" and have ibtool only output the localizable strings when I run it.</p> <p>Thanks!</p> <p>Edit: OK, let me expand the parameters a bit. The solution doesn't need to use ibtool only. Ibtool + some data in the xib + a shell script is fine. As long as it works!</p> http://stackoverflow.com/questions/1135163/how-do-i-use-uiscrollview-in-interface-builder/1135181#1135181 Comment by Mike Akers on how do I use UIScrollView in Interface Builder? Mike Akers 2009-11-25T14:54:49Z 2009-11-25T14:54:49Z +1 to St3fan's suggestion http://stackoverflow.com/questions/1700266/can-i-use-git-to-move-files-between-svn-repos-with-the-history/1700330#1700330 Comment by Mike Akers on Can I use Git to move files between svn repos with the history? Mike Akers 2009-11-09T10:54:40Z 2009-11-09T10:54:40Z Yeah, the issue is that i don't have admin rights to use dump/load. I was hoping this way I could avoid having to get a sysadmin involved. http://stackoverflow.com/questions/1700266/can-i-use-git-to-move-files-between-svn-repos-with-the-history/1700310#1700310 Comment by Mike Akers on Can I use Git to move files between svn repos with the history? Mike Akers 2009-11-09T10:53:40Z 2009-11-09T10:53:40Z Lol... How can the expect me to not try it when they put it what way? http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/744805#744805 Comment by Mike Akers on What are the worst working conditions you have written code in? Mike Akers 2009-10-23T14:06:47Z 2009-10-23T14:06:47Z lol @Ryan Eccles http://stackoverflow.com/questions/400965/how-to-customize-the-background-border-colors-of-a-grouped-table-view/1336586#1336586 Comment by Mike Akers on How to customize the background/border colors of a grouped table view? Mike Akers 2009-09-06T06:16:35Z 2009-09-06T06:16:35Z Good idea about overriding -setPosition http://stackoverflow.com/questions/1368507/why-does-xcode-warn-me-about-title-shadow-offsets-in-xib-files-even-though-im-ta/1368816#1368816 Comment by Mike Akers on Why does Xcode warn me about title shadow offsets in xib files even though I'm targeting iPhone OS 3.0? Mike Akers 2009-09-02T17:19:32Z 2009-09-02T17:19:32Z Now I'm wondering, is there any way to change the deployment target in all my xibs at once? or do i have to go through all my xibs one by one? http://stackoverflow.com/questions/1368507/why-does-xcode-warn-me-about-title-shadow-offsets-in-xib-files-even-though-im-ta/1368816#1368816 Comment by Mike Akers on Why does Xcode warn me about title shadow offsets in xib files even though I'm targeting iPhone OS 3.0? Mike Akers 2009-09-02T17:17:56Z 2009-09-02T17:17:56Z That did it! Thank you sir :) http://stackoverflow.com/questions/278526/what-was-your-biggest-nix-blooper/278683#278683 Comment by Mike Akers on What was your biggest *nix blooper? Mike Akers 2009-06-30T21:59:26Z 2009-06-30T21:59:26Z And lo! He was enlightened! http://stackoverflow.com/questions/822417/why-cant-i-correctly-parse-this-date-string-with-nsdateformatter/822595#822595 Comment by Mike Akers on Why can't I correctly parse this date string with NSDateFormatter? Mike Akers 2009-05-05T01:40:00Z 2009-05-05T01:40:00Z Bingo! That fixed it. http://stackoverflow.com/questions/822417/why-cant-i-correctly-parse-this-date-string-with-nsdateformatter/822475#822475 Comment by Mike Akers on Why can't I correctly parse this date string with NSDateFormatter? Mike Akers 2009-05-04T22:54:32Z 2009-05-04T22:54:32Z I tried this, and it doesn't seem to make a difference. I get the same output. http://stackoverflow.com/questions/769749/is-there-a-good-charting-library-for-iphone/770027#770027 Comment by Mike Akers on Is there a good charting library for iPhone? Mike Akers 2009-04-20T23:27:07Z 2009-04-20T23:27:07Z I've looked into Core Plot and it looks like bar charts are completely unimplemented. Still I'll keep an eye on this project. http://stackoverflow.com/questions/769749/is-there-a-good-charting-library-for-iphone/770310#770310 Comment by Mike Akers on Is there a good charting library for iPhone? Mike Akers 2009-04-20T23:26:08Z 2009-04-20T23:26:08Z I did consider this, but Google Charts won't work without an internet connection. http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185106#185106 Comment by Mike Akers on What is the best comment in source code you have ever encountered? Mike Akers 2009-04-20T21:36:57Z 2009-04-20T21:36:57Z I bet every file in the windows source tree has this comment in a header http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/741613#741613 Comment by Mike Akers on What are the worst working conditions you have written code in? Mike Akers 2009-04-13T17:38:27Z 2009-04-13T17:38:27Z Also, was your old boss named William Adama? http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/741613#741613 Comment by Mike Akers on What are the worst working conditions you have written code in? Mike Akers 2009-04-13T17:36:55Z 2009-04-13T17:36:55Z You need to send this one into thedailywtf