User KiwiBastard - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T16:55:30Zhttp://stackoverflow.com/feeds/user/1075http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/837964/icmp-and-the-iphone-sdk1ICMP and the iPhone SDKKiwiBastard2009-05-08T02:17:05Z2009-10-05T16:05:13Z
<p>I'm looking to implement a Ping class in Cocoa-Touch. From the googling I have done and old c code I have looked at, it seems using the ICMP protocol is the best way to go.</p>
<p>I guess my question is, is ICMP supported in the iPhone SDK, and if not, is there anything in the CoreFoundation Network classes I could use instead? I have had a look at CFHost and CFHostStartInfoResolution(host, kCFHostReachability, &error) but that is more to check if a host exists rather than get the time to respond etc.</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#904235Answer by KiwiBastard for Hidden Features of C#?KiwiBastard2008-08-12T16:45:22Z2009-09-27T19:31:34Z<ul>
<li>TransactionScope and <a href="http://msdn.microsoft.com/en-us/library/system.transactions.dependenttransaction.aspx" rel="nofollow">DependentTransaction</a> in System.Transactions is a lightweight way to use transaction processing in .NET - it's not just for <a href="http://msdn.microsoft.com/en-us/library/ms229973.aspx" rel="nofollow">Database transactions either</a></li>
<li>String.IsNullOrEmpty is one that I am surprised to learn a lot of developers don't know about</li>
<li>List.ForEach - iterate through your generic list using a delegate method</li>
</ul>
<p>There are more, but that is the three obvious ones of the top of my head...</p>
http://stackoverflow.com/questions/19682/so-iphone-app-anyone-else-doing-one25SO iPhone App - anyone else doing one?KiwiBastard2008-08-21T12:02:46Z2009-09-24T12:43:41Z
<p>I am planning to create a (native) frontend Cocoa Touch app for SO on the iPhone / iPod touch.</p>
<p>Has anyone else started this already so I don't reinvent the wheel. I would be keen on a collaborative effort if anyone else is interested.</p>
<p>The app will be Free BTW</p>
<p>EDIT:</p>
<p>BTW I have had an email exchange with Jeff about this.</p>
http://stackoverflow.com/questions/241994/which-is-more-efficient-way-to-assign-values-to-variables-in-net7Which is more efficient way to assign values to variables in .NET?KiwiBastard2008-10-28T01:46:36Z2009-09-19T23:07:58Z
<p>This is something that I have always wondered about, but never bothered to profile.</p>
<p>Is it more efficient to assign a value to a temp variable, than to keep using that value. An Example may be clearer:</p>
<pre><code>string s = reader.GetItem[0].ToString();
someClass.SomeField = s;
someOtherClass.someField = s;
</code></pre>
<p>OR</p>
<pre><code>someClass.SomeField = reader.GetItem[0].ToString();
someOtherClass.someField = reader.GetItem[0].ToString();
</code></pre>
<p>My initial thought would the top example would be more efficient as it doesn't have to access the Item collection or call ToString.</p>
<p>Would be interested to hear other peoples ideas, or definitive answer either way.</p>
http://stackoverflow.com/questions/241150/jquery-ui-filter-selectable-dates-on-datepicker1jQuery UI: Filter selectable dates on datepickerKiwiBastard2008-10-27T19:34:26Z2009-09-15T23:50:25Z
<p>I want to filter the selectable dates on a datepicker. I basically need to filter by work days - i.e. make holidays and weekends not selectable.</p>
<p>I know you can specify dates using a function in the beforeShowDate: and you can also use $.datepicker.noWeekends.</p>
<p>Question is: can you do both?</p>
http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna12Suggested gaming platform to learn - Direct X (C++), Open GL or XNA KiwiBastard2008-08-21T11:42:41Z2009-09-13T11:37:40Z
<p>My nephew is an aspiring game developer. I have taught him a bit of C/C++, and suggested he learn that for a start.</p>
<p>Once he has come to grips with that, which game/graphics API's do people suggest he learn?</p>
<p>I would think DirectX would be current industry standard, but with more games looking to go X-platform then maybe Open-GL would be a good starting point?</p>
<p>I have briefly looked at XNA, maybe that would be a nice easy step to take before jumping to a more complex framework?</p>
http://stackoverflow.com/questions/199876/setting-background-color-cmdiframewnd2Setting Background Color CMDIFrameWndKiwiBastard2008-10-14T03:00:03Z2009-06-22T23:08:28Z
<p>Is there a way to change the color of the background for a MDIParent windows in MFC (2005)?</p>
<p>I have tried intercepting ON_WM_CTLCOLOR AND ON_WM_ERASEBKGND but neither work. OnEraseBkgnd does work, but then it gets overwritten by the standard WM_CTL color.</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1029129/how-to-trigger-a-function-when-the-iphone-is-rotated-90-degrees/1029149#10291490Answer by KiwiBastard for How to trigger a function when the iPhone is rotated 90 degrees?KiwiBastard2009-06-22T20:09:18Z2009-06-22T20:09:18Z<p>You need to catch the events sent prior to ViewController rotation. Namely:</p>
<pre><code>- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
</code></pre>
<p>and post rotation</p>
<pre><code>- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
</code></pre>
http://stackoverflow.com/questions/1011996/comparing-a-string-to-an-array-in-objective-c/1012049#10120493Answer by KiwiBastard for Comparing a string to an array in objective-CKiwiBastard2009-06-18T10:57:21Z2009-06-18T10:57:21Z<p>I'm not sure why your code above isn't working, but have you tried:</p>
<pre><code>if ([ALPHA_ARRAY containsObject:aString])
</code></pre>
<p>which will return YES if aString exists otherwise NO</p>
http://stackoverflow.com/questions/8688/install-visual-studio-2008-sp1-on-d-drive0Install Visual Studio 2008 Sp1 on "D" DriveKiwiBastard2008-08-12T11:20:43Z2009-06-11T22:31:37Z
<p>I am trying to install VS2008 sp1 to my work machine - it has a pathetic 10Gb C drive. The SP1 bootstrapper doesn't give the option to install items to D, only C. It needs 3Gb free and the machine only has about 700Mb.</p>
<p>VS allowed me to install to D originally why not the SP. The only thing I can think of that it requires system files installed in Windows etc, but I can't believe there are 3Gb worth of system files?</p>
http://stackoverflow.com/questions/855456/compiler-warning-not-found-in-protocols-when-using-uiapplication-sharedapp/855907#8559070Answer by KiwiBastard for Compiler warning "not found in protocol(s)" when using [[[UIApplication sharedApplication] delegate] myClass Property]?KiwiBastard2009-05-13T03:23:51Z2009-05-13T03:23:51Z<p>I think at compile time Xcode can't make the leap from properties and normal Objective-C. It can't find the property so will just assume you know what you are doing and fill in the blanks. At run-time things are obviously ok. </p>
<p>Try this instead:</p>
<pre><code>[[[[UIApplication sharedApplication] delegate] myClass] property];
</code></pre>
<p>BTW so you don't have code like this littered throughout you own code I usually do a #define in the header of the app delegate:</p>
<pre><code>#define APPDELEGATE (myAppDelegate *)[[UIApplication sharedApplication] delegate]
</code></pre>
<p>So then in the code I can just go:</p>
<pre><code>[[APPDELEGATE myClass] property];
</code></pre>
http://stackoverflow.com/questions/855707/itunesartwork-and-xcode/855876#8558761Answer by KiwiBastard for iTunesArtwork and XCodeKiwiBastard2009-05-13T03:08:16Z2009-05-13T03:08:16Z<p>I'm pretty sure that file needs to be a .png not .jpg?</p>
<p>Try removing the file, doing a clean, then re adding the file as iTunesArtwork</p>
<p>BTW you don't need that file - it's just so that Adhoc distribution has the icon show up in iTunes - it's not needed for App Store apps. They get the icon from a combo of the 57x57 icon and the 512 image you upload to iTunesConnect.</p>
http://stackoverflow.com/questions/837867/2d-arrays-of-ints-in-objective-c/837930#8379301Answer by KiwiBastard for 2d arrays of ints in objective-cKiwiBastard2009-05-08T02:00:29Z2009-05-08T02:00:29Z<p>An interesting discussion here: <a href="http://www.idevapps.com/forum/archive/index.php/t-244.html" rel="nofollow">http://www.idevapps.com/forum/archive/index.php/t-244.html</a></p>
<p>Basically the suggestion was to turn your 2D array into multiple 1D arrays. For Example:</p>
<p>int array[20][8] becomes</p>
<pre><code>int** array = (int*)malloc(20 * sizeof(int*));
unsigned int i = 0;
for (i = 0; i < 20; ++i)
{
array[i] = (int)malloc(8 * sizeof(int));
}
and your method returns int** and variable is of type int**.
</code></pre>
<p>This has the advantage that normal 2D array indexing works as expected.</p>
<p>The other option that wasn't suggested in the link was to use a NSMutableArray of type NSMutableArray. This would be slower than standard C arrays, but easier to pass around and reference.</p>
http://stackoverflow.com/questions/51088/plugin-for-r-similar-to-coderush-statement-highlight2Plugin for R# similar to CodeRush "statement highlight"KiwiBastard2008-09-09T01:45:24Z2009-04-25T21:37:52Z
<p>See here <a href="http://www.hanselman.com/blog/InSearchOfThePerfectMonospacedProgrammersFontInconsolata.aspx" rel="nofollow">http://www.hanselman.com/blog/InSearchOfThePerfectMonospacedProgrammersFontInconsolata.aspx</a> - for want of a better description - the statement block highlighting - eg in the pics on the link the "statement blocks" are grouped with a vertical line. I understand this is a feature of CodeRush - does R# have either anything similar, or a plugin to do the same?</p>
http://stackoverflow.com/questions/655653/uinavigationcontroller-with-uitableview-and-uiview0UINavigationController with UITableView and UIViewKiwiBastard2009-03-17T19:20:08Z2009-03-17T19:36:48Z
<p>I want to be able to switch between a UITableView and a standard UIView in a Parent View. Basically I have a UITableView that shows on load displaying a log of information. I want to have a segment control in the header of the Window that when the user taps, transitions to a Graph View which is a standard UIView.</p>
<p>The UIViewController in question needs the ability to be pushed from a RootViewController stack. </p>
<p>I have tried a number of things, but I can't seem to get this to work. Does anyone have any code examples or suggestions on how this could be done?</p>
http://stackoverflow.com/questions/567805/responding-to-touchesbegan-in-uipickerview-instead-of-uiview0Responding to touchesBegan in UIPickerView instead of UIViewKiwiBastard2009-02-20T00:02:31Z2009-02-20T00:02:31Z
<p>I have a UIPickerView that gets faded out to 20% alpha when not in use. I want the user to be able to touch the picker and have it fade back in.</p>
<p>I can get it to work if I put a touchesBegan method on the main View, but this only works when the user touches the View. I tried sub-classing UIPickerView and having a touchesBegan in there, but it didn't work.</p>
<p>I'm guessing it's something to do with the Responder chain, but can't seem to work it out.</p>
http://stackoverflow.com/questions/276182/updating-sqlite3-api-for-objective-c0Updating sqlite3 API for Objective-CKiwiBastard2008-11-09T17:40:45Z2009-02-14T01:12:55Z
<p>I want to update/upgrade the standard Leopard install of Sqlite3 to >3.5 to use the new sqlite_xxx_v2 methods from a Cocoa project.</p>
<p>I can't seem to find any information on how to do this. Does anyone have any tips or a site that outlines the update procedure. </p>
<p>Also is 3.5+ supported on the iPhone. I understand it's embedded so shouldn't be an issue...</p>
http://stackoverflow.com/questions/535164/uipicker-sizing-in-landscape-mode/535179#5351790Answer by KiwiBastard for UIPicker sizing in landscape modeKiwiBastard2009-02-11T02:22:11Z2009-02-11T02:22:11Z<p>I'm fairly certain that the UIPicker comes in one size, which you can't change. Would be interested to hear different.</p>
http://stackoverflow.com/questions/351954/accessing-iphone-wifi-information-via-sdk2Accessing iPhone WiFi Information via SDKKiwiBastard2008-12-09T06:29:30Z2009-01-13T23:43:20Z
<p>Is there a way using the iPhone SDK to get WiFi information? Things like Signal Strength, WiFi Channel and SSID are the main things I'm looking for.</p>
<p>Only interested in Wifi info, not cellular.</p>
http://stackoverflow.com/questions/425845/talk-on-asp-net/425886#4258860Answer by KiwiBastard for Talk on ASP.NETKiwiBastard2009-01-08T20:52:31Z2009-01-08T20:52:31Z<p>Other than the other suggestions you are no doubt going to get, I'd explain to them that there is a Delphi for .NET which would ease the pain of change a little. So basically they are using Delphi as the language but the underpinnings of .NET.</p>
http://stackoverflow.com/questions/425837/how-do-you-motivate-peers-to-become-better-developers/425858#4258584Answer by KiwiBastard for How do you motivate peers to become better developers?KiwiBastard2009-01-08T20:48:31Z2009-01-08T20:48:31Z<p>In my experience you can't. You're either interested and engaged therefore up for learning new tech, or you aren't. No amount of coaxing will change that.</p>
http://stackoverflow.com/questions/55594/css-not-being-applied-on-non-authenticated-asp-net-page2CSS not being applied on non authenticated ASP.NET pageKiwiBastard2008-09-11T01:01:53Z2009-01-06T18:51:24Z
<p>When developing (works fine live) the pages for our website don't pick up the correct CSS until the user has authenticated (logged on).</p>
<p>So the Logon and Logoff forms look bad, but once inside the site, the CSS works again.</p>
<p>I'm guessing it's some kind of authentication issue? Haven't really looked into it too much because it's only when working on dev so not a huge issue, but would be nice to know how to fix it.</p>
http://stackoverflow.com/questions/414856/how-to-develop-distributable-ui-controls-for-iphone/414878#4148781Answer by KiwiBastard for How to develop distributable UI controls for iPhone?KiwiBastard2009-01-05T23:17:10Z2009-01-05T23:17:10Z<p>Well, the Xcode way would be to bundle your code into a Framework and link to that. However, under the iPhone you can't link to non Apple approved frameworks (even if they are your own) </p>
<p>So you would probably have to link in the source to the reusable code. <a href="http://blog.omnigroup.com/2008/10/01/using-frameworks-in-iphone-applications/" rel="nofollow">A good article here</a></p>
http://stackoverflow.com/questions/401389/releasing-objects-when-using-a-uinavigationcontroller/401468#4014681Answer by KiwiBastard for Releasing Objects when using a UINavigationControllerKiwiBastard2008-12-30T20:51:56Z2008-12-30T20:51:56Z<p>It might pay to read the <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html" rel="nofollow">Apple Memory Management Document</a>. The second item you don't need to release the pageObj as it only contains a reference to the actual item in the bookObj array. It's not the actual item if that makes sense. So what you are in effect doing is releasing the actual item from the array, so when you go back and try and access it, it isn't there.</p>
<p>The rule of thumb is: only release what you create. </p>
http://stackoverflow.com/questions/398806/custom-drawing-with-xib-file-present2Custom Drawing with Xib file presentKiwiBastard2008-12-29T21:55:44Z2008-12-30T02:32:51Z
<p>I have a view that I want to add some custom drawing to.</p>
<p>I know how to do this with a View that isn't connected to a Nib/Xib file - you write the drawing code in the <code>-drawRect:</code> method.</p>
<p>But if I init the view using</p>
<pre><code>[[MyView alloc] initWithNibName:@"MyView" bundle:[NSBundle mainBundle]];
</code></pre>
<p><code>-drawRect:</code> of course doesn't get called. I tried doing the below code in <code>-viewDidLoad</code> </p>
<pre><code>CGRect rect = [[self view] bounds];
CGContextRef ref = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(ref, 2.0);
CGContextSetRGBStrokeColor(ref, 1.0, 1.0, 1.0, 1.0);
CGContextSetRGBFillColor(ref, 0, 0, 0, 0);
CGContextAddRect(ref, CGRectMake(1, 1, rect.size.width - 10, rect.size.height - 10));
CGContextStrokePath(ref);
CGContextDrawPath(ref, kCGPathFillStroke);
</code></pre>
<p>but nothing get drawn. Any ideas?</p>
http://stackoverflow.com/questions/396817/protection-from-screen-scraping/396879#3968794Answer by KiwiBastard for Protection from screen scrapingKiwiBastard2008-12-28T23:54:35Z2008-12-28T23:54:35Z<p>It's pretty hard to prevent screen scraping but if you really, really wanted to you could
change your HTML frequently or change the HTML tag names frequently. Most screen scrapers work by using string comparisons with tag names, or regular expressions searching for particular strings etc. If you are changing the underlying HTML it will make them need to change their software.</p>
http://stackoverflow.com/questions/358091/vb-net-creating-classes-what-is-public-class-myclassof-type/358130#3581301Answer by KiwiBastard for VB.NET Creating Classes, What is Public Class MyClass(Of Type) ?KiwiBastard2008-12-11T00:42:31Z2008-12-25T02:02:15Z<p>To build on what @Jimmy said: It is also an Abstract Class, which means it acts as a base class - you can't use it directly, you must sub class it to use. That subclass must implement the 3 types in the class header.</p>
http://stackoverflow.com/questions/389971/how-to-cure-a-lazy-day/389987#3899870Answer by KiwiBastard for How to cure a lazy day?KiwiBastard2008-12-23T20:23:54Z2008-12-23T20:23:54Z<p>Go home and do something else. If it's an option - do it. I have days like that from time to time, that really I would be better off not working. The code I produce is usually counter productive.</p>
<p>I find that if I do something non coding it can help. Eg, write a spec, or test document or something like that. When I finish I usually feel like coding again.</p>
http://stackoverflow.com/questions/389737/databinding-with-a-datagridview-c/389782#3897821Answer by KiwiBastard for DataBinding with a DataGridView C#KiwiBastard2008-12-23T19:09:00Z2008-12-23T19:09:00Z<p>How are you populating the DataTable? You can specify custom SQL with the joins and appropriate columns to the .SelectCommand of a DataAdapter or specify the custom SQL in the .CommandText of a xxxCommand object.</p>
<p>Eg</p>
<pre><code>myAdapter.SelectCommand = "Select a.column1, a.column2, b.username from tablea a inner join tableb b on b.userid = a.userId"
</code></pre>
<p>Or</p>
<pre><code>myCommand.CommandType = Text;
myCommand.CommandText = ""Select a.column1, a.column2, b.username from tablea a inner join tableb b on b.userid = a.userId";
</code></pre>
<p>Or as has been mentioned, you could create a view or storedproc in your database and call that.</p>
http://stackoverflow.com/questions/387794/finger-scrollable-uiwebview-when-the-keyboard-is-up/387888#3878881Answer by KiwiBastard for Finger scrollable UIWebView when the keyboard is upKiwiBastard2008-12-23T00:56:32Z2008-12-23T00:56:32Z<p>No I believe the Keyboard is modal so you can't access the form underneath it.</p>
<p>You can respond to the </p>
<pre><code>- (void)keyboardWillShow:(NSNotification*)aNotification;
- (void)keyboardWillHidde:(NSNotification*)aNotification;
</code></pre>
<p>notifications and scroll the View up or down when the keyboard is shown...</p>
<p><a href="http://alanduncan.net/?q=node/13" rel="nofollow">Example here</a></p>
http://stackoverflow.com/questions/1150831/using-ib-to-add-a-uisegmentedcontrol-to-a-navigationbar/1151143#1151143Comment by KiwiBastard on Using IB to add a UISegmentedControl to a NavigationBarKiwiBastard2009-08-24T05:24:18Z2009-08-24T05:24:18ZHe means if you have a navigation based application, in the main window.nib you can drag a SegmentedControl into there, that will persist for the view stack.http://stackoverflow.com/questions/19682/so-iphone-app-anyone-else-doing-oneComment by KiwiBastard on SO iPhone App - anyone else doing one?KiwiBastard2009-07-24T23:27:28Z2009-07-24T23:27:28ZNot yet - there is an API imminent from what Jeff has said, so might as well what for that to be released.
http://stackoverflow.com/questions/433907/how-to-link-to-apps-on-the-app-store/434040#434040Comment by KiwiBastard on How to link to apps on the app storeKiwiBastard2009-07-20T21:28:28Z2009-07-20T21:28:28ZThis doesn't seem to work anymore with 3.0.http://stackoverflow.com/questions/1019365/objective-c-changes-between-os-2-2-1-and-os-3/1031325#1031325Comment by KiwiBastard on Objective-C changes between OS 2.2.1 and OS 3??KiwiBastard2009-06-28T01:50:40Z2009-06-28T01:50:40ZAnd BTW - trust me when I say, Chris knows what he is talking about.http://stackoverflow.com/questions/232567/best-cocoa-mac-os-x-programming-blogs/235925#235925Comment by KiwiBastard on Best Cocoa/Mac OS X programming blogs?KiwiBastard2009-06-04T02:17:17Z2009-06-04T02:17:17ZBut the point about the "Pimp My Code" is valid no matter when it was writtenhttp://stackoverflow.com/questions/355168/proper-way-to-exit-iphone-application/356342#356342Comment by KiwiBastard on Proper way to exit iPhone application?KiwiBastard2009-05-09T22:47:51Z2009-05-09T22:47:51ZWe have apps that helps people sleep. They want the app to terminate after a set period to reduce battery drain. I think this case is acceptable - as the user is hopefully asleep and can't exit the app manually.http://stackoverflow.com/questions/837964/icmp-and-the-iphone-sdk/837982#837982Comment by KiwiBastard on ICMP and the iPhone SDKKiwiBastard2009-05-08T02:32:40Z2009-05-08T02:32:40ZOn the iPhone too? Awesomehttp://stackoverflow.com/questions/414856/how-to-develop-distributable-ui-controls-for-iphone/414878#414878Comment by KiwiBastard on How to develop distributable UI controls for iPhone?KiwiBastard2009-01-05T23:47:59Z2009-01-05T23:47:59ZNO it should work. From the FAQ: The iPhone development terms do not disallow interpreted languages. They disallow interpreting code that has been downloaded independent of both Apple's official distributions channels (i.e. not contained in the app bundle) and Apple's own code.http://stackoverflow.com/questions/401389/releasing-objects-when-using-a-uinavigationcontroller/401468#401468Comment by KiwiBastard on Releasing Objects when using a UINavigationControllerKiwiBastard2008-12-30T21:34:00Z2008-12-30T21:34:00ZAs mentioned by @Kendall it looks ok. It could be to do with the bookObj or something else?http://stackoverflow.com/questions/398806/custom-drawing-with-xib-file-present/399236#399236Comment by KiwiBastard on Custom Drawing with Xib file presentKiwiBastard2008-12-30T04:42:11Z2008-12-30T04:42:11ZYeah you're right the class is a subclass of UIViewController. It's not called MyView just put that there as a placeholder. Anyway thanks for the suggestion. Thinking about what you have written, I understand what I am doing wrong...http://stackoverflow.com/questions/398806/custom-drawing-with-xib-file-present/399027#399027Comment by KiwiBastard on Custom Drawing with Xib file presentKiwiBastard2008-12-30T00:34:07Z2008-12-30T00:34:07ZHadn't thought of the subview. Will give it a go.http://stackoverflow.com/questions/379371/what-makes-a-good-spec/379402#379402Comment by KiwiBastard on What makes a good spec?KiwiBastard2008-12-18T23:23:29Z2008-12-18T23:23:29ZGive the diagram a useful title in text. If you have a lot of words instead it is going to make search no different as you will be searching on the keywords anywayhttp://stackoverflow.com/questions/376775/need-a-geeky-dog-name/376779#376779Comment by KiwiBastard on Need a geeky dog nameKiwiBastard2008-12-18T02:58:44Z2008-12-18T02:58:44ZI (half seriously) wanted to call my Daughter Ada. Luckily her in doors had power of vetohttp://stackoverflow.com/questions/367130/i-want-to-assign-a-record-to-tstringlist-objects/367156#367156Comment by KiwiBastard on I want to assign a record to TStringList.ObjectsKiwiBastard2008-12-17T21:42:40Z2008-12-17T21:42:40ZWhoops - well spottedhttp://stackoverflow.com/questions/373202/iphone-apps-for-fun-and-profitComment by KiwiBastard on iPhone Apps for fun and profit?KiwiBastard2008-12-16T23:59:44Z2008-12-16T23:59:44Zerm, iTunes is the only place you can (legitimately) release iPhone apps.