Kendall Helmstetter Gelner

9,679
reputation
670 views

Registered User

name Kendall Helmstetter Gelner
member for 1 year
seen 20 mins ago
website
location Denver, CO
age 40
Currently an iPhone developer but have used a broad range of languages in the past, particularly Java, C and Scheme.
1d
answered How to “PERFORM” or call something, repeatedly?
1d
comment Any success using Apache Thrift on iPhone?
Is Thrift that popular? I have not heard of a lot of people using it... but even so I can see people using things like it because of a certain initial convenience. I just think it kind of binds you later down the road and that's why I avoid it if I can.
1d
comment how to Swing the stack object ?
Well if people don't ask questions there it never will be! I have no involvement with the site beyond the fact I think it's a really good idea to have that specialization.
1d
comment Any success using Apache Thrift on iPhone?
I wanted to add a little more (I saw your last question first). I think it makes a ton of sense to worry about scalability early on with so many devices potentially hitting you - but the great thing about using HTTP and web services is so many people have thought out scalability carefully before. That's why I suggest using RESTful web services over SOAP, because there are so many levers you have to help your system deal with large scale quickly... That said your question about frequent non-critical non-ordered updates are a great way to use UDP exactly the way it was intended.
1d
comment Any success using Apache Thrift on iPhone?
Now that actually sounds like a good use that may not be nearly as easy to do otherwise. I stand corrected.
Dec
12
accepted iPhone reachability checking
Dec
11
comment iPhone SDK - NSDateFormatter day + month
Read the response by nicoko, it refers to a method of removing the year from the locale specific formatting string, not the output formatted date string.
Dec
11
answered get NSDate today, yesterday, this Week, last Week, this Month, last Month… variables
Dec
11
comment get NSDate today, yesterday, this Week, last Week, this Month, last Month… variables
Fixed constants for time are BAD BAD BAD. What about leap days or leap seconds? Use NSDateComponents or you WILL suffer some very nasty and hard to debug issues when your date stamps start mismatching.
Dec
11
answered Any success using Apache Thrift on iPhone?
Dec
11
comment Custom init method in Objective-C, how to avoid recursion?
Why are you trying to do this, what is it you are trying to do via subclassing (unrelated to the downvote)?
Dec
11
accepted How can I run many CAAnimations at once without a slowdown?
Dec
10
comment Has anyone used Buzz Andersen’s Simple iPhone Keychain code?
No clue since I didn't use them in the project where I used that library. Probably some kind of default login page. Again if you work through a few tutorials you can easily scan the project and see what parts make sense for you to use. If you can't figure out how to use the code from what I posted the chances of making a working app are slim, you must understand more of how the parts of the iPhone SDK relate.
Dec
10
comment [iPhone and Web Services]: REST vs SOAP
But that's just another layer, that does not eliminate the inherant wrapping nature of SOAP. The real issue with SOAP is that you end up using it on top of a protocol (HTTP) that already has features to do anything you can with SOAP (especially so with the subset of SOAP supported by most libraries). The equivalent of Fast Infoset for rest is to simply turn on GZIP compression on the server and both sides do nothing else. Yes SOAP can also be used on other protocols but in practice, it almost ever is and certainly is not in 99% of small devices accessing web services.
Dec
9
answered How can we clear the cached images when we clos the app?
Dec
9
comment How can we clear the cached images when we clos the app?
The simulator will never delete files in the temporary path because it does not need to. The device will, eventually, if it is needed.
Dec
9
comment Has anyone used Buzz Andersen’s Simple iPhone Keychain code?
I think you need to work through the tutorials on creating iPhone apps, you seem to be trying to run before you can walk... there's no nib at all involved in using this library, if you can't use it from the sample above you need to study how projects and XCode work more generally.
Dec
9
comment Has anyone used Buzz Andersen’s Simple iPhone Keychain code?
The example I posted stores a password for fred, and then retrieves it...
Dec
8
answered Has anyone used Buzz Andersen’s Simple iPhone Keychain code?
Dec
8
comment How to get older SDK and do I need to?
Note that you can set the base SDK lower, you just can't test it in the simulator - only the device.
Dec
8
revised iPhone reachability checking
Added more code to solve issue.
Dec
8
comment iPhone reachability checking
Updated with new data, please re-read answer
Dec
7
answered iPhone reachability checking
Dec
7
comment Y/N: UitableView Question
Search on StackOverflow, there are a number of examples.
Dec
7
comment iPhone reachability checking
Also, I have not used [reachability startNotifier] in my code but I do see Reachability updates (from Apple's code).
Dec
7
comment iPhone reachability checking
You CANNOT query immediate status. Reachability works by you attempting to make a connection, and then Reachability starts issuing notifications as to state. The closest you can do is to try some small URL result you know you exists and then wait for notifications. Apple was very explicit at WWDC that this is the way to do reachability.
Dec
7
comment Two macs. One iPhone Developer License. Possible?
One big reason would be to increase the number of people who can do ad-hoc builds, since only the primary account holder can do them.
Dec
7
answered XCode falsely claims CFBundleExecutable to be (null)
Dec
7
comment iPhone - why only one application at a time
Tim, you are being rather obnoxious here. I'm pretty sure Frank "is familiar with it" (multithreaded programming), that was rather insulting. Your original post basically implied that if other apps were running your app would have to be written to handle multithreading, which is simply not true. That may not have been your intent, but that was how it read.
Dec
7
comment iPhone - why only one application at a time
And Mail, and I think sometimes Safari.
Dec
7
comment What is the best way to organize a group of groups in Obj-c?
Then store the objects in NSMutableSets, and instead of adding a new set with the same price check to see if a set exists with that price already, and add objects into it if so.
Dec
7
comment Ipod Touch 3G vs Iphone for app development.
Note that even though the Touch has no GPS, you can use CoreLocation - it uses WiFi triangulation. Also, you can use the image picker with the photo library to simulate taking images, and the Touch DOES have an accelerometer (but no compass)
Dec
7
answered [iPhone and Web Services]: REST vs SOAP
Dec
7
comment Dependency Injection framework for the iPhone
What about a testing category that overrode a method to get a service with a method that returned a mock service instead?
Dec
7
answered iphone sqlite NSDate bug
Dec
7
comment iphone sqlite NSDate bug
No, it doesn't. It may look like it is working but I am 100% sure you have a float version of the pointer to your NSDate object!!!
Dec
7
comment UIImage memory usage with png and jpg
The PNGRepresentation method does not use that compression technique though, or nothing else would be able to read the files!
Dec
7
comment UIImage memory usage with png and jpg
But you can do the decompression more or less "in place". With JPG you pretty much have to load the whole thing into memory and computationally it's not really practical to do that on the fly.
Dec
6
awarded  Mortarboard
Dec
6
comment Does Android provide widget like the iPhone UIPickerView
Can you have multiple columns in the spinner though? That's what makes the UIPickerView so powerful and is often used (date picking for example)... how do Android apps do date picking?
Dec
6
answered New image taken with camera different than same image loaded from camera roll?
Dec
6
comment Converting between unique NSIndexPath and unique NSUInteger (or int)
Why do you not use cellForRowAtIndexPath: to get the cell you need, and tell it to update its progress bar? Tags can be useful as a shortcut but they are never the only path.
Dec
6
answered Converting between unique NSIndexPath and unique NSUInteger (or int)
Dec
5
answered UIImage memory usage with png and jpg
Dec
5
comment Parsing a RFC 822 date with NSDateFormatter
This seems like the most practical solution to me, given the month and day names are of fixed length and all other values are fixed-length numeric. Far cheaper than trying formats out until one works!
Dec
5
answered Can I sell goods in my iPhone app?
Dec
5
answered When is a Cocoa callback given controll?
Dec
5
answered getting the specific ip location for iphone application.
Dec
4
answered Is there a good application for managing a SQLite 3 database with BLOB data type?
Dec
4
answered How do i anchor subviews of a UIScrollView like the URL bar in mobile safari?