Tyler

4,137
reputation
186 views

Registered User

name Tyler
member for 1 year
seen Dec 9 at 23:35
website
location Mountian View, CA
age 30
     I run an iPhone app consultancy called Bynomial. Please let me know if you're interested in app development! I'm always looking for good coders and good clients.

     My background: I love math -- I got a PhD in it from the Courant Institute at NYU in 2006. After that I was a coder at Google for a few years, and in 2009 started Bynomial.

Dec
8
comment Adding pins for nearby places (e.g. pizzerias) in MapKit
No, I didn't - still interested, though. The link I gave is my best knowledge of how to approach this.
Dec
8
comment Html5 cache manifest in a UIWebView?
Yes I have. It does not cause the cache manifest to work, although you can use that technique to try to create your own cache -- but this is trickier than it sounds like, because the NSURL framework rejects some cached responses for unknown reasons.
Dec
6
awarded  Mortarboard
Nov
18
comment Validate iPhone device Ids?
This statement is based on a misunderstanding of how modern crypto works. Modern crypto is based on the idea that there are functions which are easy to compute but are hard to invert. For example, in public key crypto, anyone can encrypt a message, but only the recipient can decrypt it. If a only a small fraction of all UDID's are valid, then it would be time-consuming to produce fake ones.
Nov
10
awarded  Popular Question
Nov
4
comment Html5 cache manifest in a UIWebView?
This doesn't work. Here is how I know: I built a sample file with a cache manifest, and I loaded this file in 3 browsers: (1) Firefox (2) mobile Safari, (3) a UIWebView using NSURLRequestReturnCacheElseLoad (if I use DontLoad then it never loads). Then I modify a cached image on the server. Firefox and Safari both correctly display the old image; my UIWebView gets the new image.
Nov
4
awarded  Popular Question
Nov
4
accepted Detecting horizontal swipes in a UIScrollView with a vertical scroll.
Nov
4
accepted UIButton Background Images appear lighter in Simulator than in IB
Oct
15
comment Need content in UIWebView to display quickly
Hi leftspin - I've spent a lot of time going through similar trials and tribulations. In some previous code, I believe it actually accepted the cached responses, but now I'm having the same results as you (it is getting my cached response but ignoring it). Any luck since you posted this?
Oct
11
comment Segmentation fault only when I redirect stdout to /dev/null ?
Thanks, Jonathan!
Oct
11
revised Segmentation fault only when I redirect stdout to /dev/null ?
Add post mortem
Oct
11
comment Segmentation fault only when I redirect stdout to /dev/null ?
Not multithreaded. How do I start gdb on a process with its output redirected? "gdb ./mybinary > /dev/null" also redirects the stdout of gdb.
Oct
11
comment Segmentation fault only when I redirect stdout to /dev/null ?
Good idea - I've used it a little before. When I run "gdb ./my_binary > /dev/null", though, I also lose the interface for gdb - how can I start gdb on my process with its stdout redirected?
Oct
11
asked Segmentation fault only when I redirect stdout to /dev/null ?
Oct
8
asked Html5 cache manifest in a UIWebView?
Sep
30
accepted IPhone SDK Sending/Receiving Data with Server
Sep
29
accepted Centered images are blurry
Sep
28
answered UIButton Background Images appear lighter in Simulator than in IB
Sep
28
comment How to remove all the view along with rootView from UINavigationController in iPhone
If the superview is the only thing retaining the navigation controller, then removeFromSuperView will actually release it (and everything it recursively retains).
Sep
28
answered How to remove all the view along with rootView from UINavigationController in iPhone
Sep
28
answered Centered images are blurry
Sep
28
comment Overlapping animations help!
Do you know which function of yours the code is executing when it crashes? One idea is to comment out the performSelector line to check if that is the culprit (that would be my first guess).
Sep
28
accepted My app closes without any warning or error message.
Sep
28
answered My app closes without any warning or error message.
Sep
28
answered UIScrollView bug? float foo = scrollview.zoomScale crashes the app.
Sep
26
answered Overlapping animations help!
Sep
26
revised Overlapping animations help!
Update whitespace in code for readability
Sep
26
answered Dragging an UIView inside UIScrollView
Sep
25
accepted -viewDidLoad not called in subclassed UIViewController
Sep
25
answered -viewDidLoad not called in subclassed UIViewController
Sep
24
answered Detecting horizontal swipes in a UIScrollView with a vertical scroll.
Sep
22
comment C++ multiple inheritance and Objective-C. Is this is a bug in GCC?
No worries, mr. tango! I appreciate a good problem like this. Thanks for posting more details.
Sep
22
comment C++ multiple inheritance and Objective-C. Is this is a bug in GCC?
Using variant 1, I can't see a problem any more in my own version of your code (which does not make the calls in the ctor). If you still want further help on variant 1, it would be nice to see what the problem is beyond making virtual calls in the ctor.
Sep
22
comment C++ multiple inheritance and Objective-C. Is this is a bug in GCC?
Psyche. (same answer same time). Good problem-solving, Martin.
Sep
22
revised C++ multiple inheritance and Objective-C. Is this is a bug in GCC?
Added reference to Effective C++
Sep
22
answered C++ multiple inheritance and Objective-C. Is this is a bug in GCC?
Sep
22
comment What is the fastest int to float conversion on the iPhone?
Why do you need to do the conversions? You might get a better answer if you explain more about your end goal. For example, in many situations, you can just leave them as floats the whole time.
Sep
20
accepted Confusion with header and Implementation files in Objective-C
Sep
20
comment Confusion with header and Implementation files in Objective-C
good comments; I added a note about NSString properties and moved the .h/.m thoughts to the end
Sep
20
revised Confusion with header and Implementation files in Objective-C
Updates suggested in comments.
Sep
20
answered Confusion with header and Implementation files in Objective-C
Sep
19
revised Need help with many-to-many relationships in core data for iPhone
man -> many in title
Sep
19
revised Hi ,I want to know about which method determines the rotation of device from Portrait to Landscape mode
Whitespace changes in the code for readability
Sep
19
answered How to load an XIB?
Sep
19
answered IPhone SDK Sending/Receiving Data with Server
Sep
19
comment NSLocale is mostly empty - where are the attributes?
cool, glad that was helpful
Sep
19
accepted NSLocale is mostly empty - where are the attributes?
Sep
19
answered NSLocale is mostly empty - where are the attributes?
Sep
18
accepted NSURLConnection timeout?