benzado

2,830
reputation
314 views

Registered User

name benzado
member for 1 year
seen 2 hours ago
website
location New York, NY
age 29

Freelance software engineer in New York City. Currently focused on native iPhone app development, but could make you a website or a Mac OS X app if you ask real nice.

Among other things, I've written FatWatch, the best Hacker's Diet tool for iPhone, and MetroCost, a tool to save you money on public transit.

I have a blog.

1d
comment What is the fastest way to test if a double number is integer (in modern intel X86 processors)
I don't see that it's necessarily slower; floor and (int)n are masking a lot of complexity.
1d
awarded  
2d
answered MySQL DROP DATABASE equivalent w/o root access or DROP privileges
Dec
18
comment Ojective C: How to kill a thread while in another thread in Ojective-C?
Don't call exit(), that will kill the whole process. Just let the main function of the thread end naturally, by calling return. If you need it to respond to a terminate request more quickly, the worker thread must check the flag more often.
Dec
18
accepted iPhone maximum capacity
Dec
18
answered iPhone maximum capacity
Dec
18
comment NSMutableDictionary setobject giving “message sent to deallocated instance” error
What's unique about this copy of the DB that isn't true about the other ones? Is it larger? Contain duplicates?
Dec
18
answered Ojective C: How to kill a thread while in another thread in Ojective-C?
Dec
17
answered Breaking public member functions into lots of private member functions
Dec
15
revised How do you synchronize server-side and client-side code?
added best-practices tag, since question is more general than GWT
Dec
15
comment error with the declaration of enum
@mawia: in enum boolean {yes, no} the name boolean is being used as a tag identifier. In typedef enum {true, false} boolean, the name boolean is being used as an ordinary identifier. It's a tag identifier if it comes right after enum or struct or union.
Dec
15
comment What’s an easy way to have terminal use a different color based on ssh host name?
Neil, you're killing me! You know, if you want to be nitpicky, your question isn't really about programming in the first place. :-)
Dec
15
comment Parsing and Writing XML in MAC 10.3.9 Cocoa?
Good point! I updated my answer just in case somebody reads it years from now and doesn't look at the comments. :-)
Dec
15
revised Parsing and Writing XML in MAC 10.3.9 Cocoa?
added note that CFXMLParser is headed to deprecation
Dec
15
answered What’s an easy way to have terminal use a different color based on ssh host name?
Dec
15
comment What’s an easy way to have terminal use a different color based on ssh host name?
This is great! And to think I almost suggested a mess of AppleScript and/or shell scripting and ANSI escape codes.
Dec
15
comment How do I get all the columns of a table besides one
@Myles: It's not the same. If you list the column names and the schema changes, your query fails right away and you know the reason why. If you SELECT * and the schema changes, your query will succeed and maybe your code will execute but get weird-but-non-obvious bugs because the data isn't what it is supposed to be. It's not simply about the schema changing, but what happens when it does.
Dec
15
comment Detecting the type of iPhone interrupt
You might want to reconsider C: if you simply assume that any alert being displayed over your app is reason to pause the music, you won't be doing anything undocumented. It's only poking around the view hierarchy to read the alert text that would be hacky.
Dec
15
comment How to edit a JavaScript alert box title?
The reason you can't change the title, by the way, is to prevent malicious web sites from tricking the user into thinking the alert is from their OS or something else.
Dec
14
accepted [iPhone] tabBar viewControllers in IB: send custom init?
Dec
14
answered Parsing and Writing XML in MAC 10.3.9 Cocoa?
Dec
14
answered Saving UITabBar Layout
Dec
13
revised How can I get only a partial rectangle from a CALayer ?
editing question to include code incorrectly posted as an answer
Dec
13
answered Detecting the type of iPhone interrupt
Dec
13
comment iPhone Proximity Sensor
I updated my answer to take your comments into account.
Dec
13
comment iPhone Proximity Sensor
There was no public API at the time this question was asked; I've updated my answer (the accepted one) to reflect the change.
Dec
13
revised iPhone Proximity Sensor
changed "light sensor" to "infrared sensor"; updated for SDK changes
Dec
13
answered UIPickerView, cannot get data from array
Dec
13
answered Porting C code; need help with bitwise operation and pointer syntax
Dec
12
answered How can I change the main display via AppleScript?
Dec
12
accepted ObjC delegate methods never gets called
Dec
12
comment SQLITE update fails with error code 1 (SQLITE_ERROR)
It's not so much that you didn't need it; sqlite3_exec itself calls prepare, step, and finalize. By calling those functions yourself, you get more control over the situation and can use bind, which solves your quoting problem.
Dec
11
comment How portable is the output of pcap_compile?
Thanks, this is very helpful. To clarify: what about different interfaces/devices on the same machine?
Dec
11
answered SQLITE update fails with error code 1 (SQLITE_ERROR)
Dec
11
comment Edit UITableViewCells while being dragged around
I think you need to share more of your code. Does your willDisplayCell: method set the button background color always? Are you overriding setSelected: or setHighlighted: or prepareForReuse?
Dec
11
accepted How do we clear out contents in NSMutatableData
Dec
11
answered How do we clear out contents in NSMutatableData
Dec
11
comment Changing an NSImage in XCode - this line of code not working
No, it is not necessary.
Dec
11
comment ObjC delegate methods never gets called
This is a valid solution, but if the requesting and parsing all happens via the run loop there's no need to have it on a separate thread in the first place.
Dec
11
answered ObjC delegate methods never gets called
Dec
11
comment ObjC delegate methods never gets called
You should remove the extra retain call in your for-loop. The array does retain its members, so you are basically creating a memory leak.
Dec
11
revised How do you read a file line by line in your language of choice?
now makes no assumptions about text encoding
Dec
11
comment iPhone table cell label misaligned
What's the layout bug? If you were using the Subtitle style, then the text was being laid out correctly.
Dec
11
accepted iPhone table cell label misaligned
Dec
11
awarded  Popular Question
Dec
11
answered iPhone table cell label misaligned
Dec
10
awarded  Self-Learner
Dec
10
answered Why can’t code inside unit tests find bundle resources?
Dec
10
asked Why can’t code inside unit tests find bundle resources?
Dec
9
comment Using the netinet functions on iPhone causes the UI to not refresh
@Frank: you don't need set waitUntilDone:YES to release the results object. The performSelectorOnMainThread: method will retain the object, the thread may release it and terminate before context returns to the main thread.