Monthly Archives: June 2008

IPhone simulator breakpoints problem

Sometimes I got problem settings breakpoints. I found this solution in apple discussions: x As saggymac said: “The default setting for debugging libraries and frameworks is Load Symbols Lazily. On occasion this causes breakpoints to not be hit. Turning off this setting makes it take longer to start debugging, but hits breakpoints more reliably.” may [...]

Posted in idea / rant | 5 Comments

Objective-C simple command line program and compilation

I am trying to compile a simple command line for experiment, and it is somehow not as obvious as I thought. Here is a the very simple program I copied somewhere from internet and here is how to compile it : setting “-framework Foundation” is the one that threw me off. I couldn’t find it [...]

Posted in idea / rant | 8 Comments

My os x nginx configuration

First, to install nginx do this : sudo port install nginx then use this configuration – this is only for testing, with setting for my os x (for access log / pids). It also use proxy to merb # nginx using macports installation # for my local testing user kusno staff; worker_processes 1; pid /opt/local/var/run/nginx.pid; [...]

Posted in idea / rant | 2 Comments

DivX decoder problem during iPhone development

I got a strange problem, and unable to play any kind of movies in my iPhone simulator. iPhone just gave a very unhelpful error messages – “The movie could not be played” if I try to play it from internet. Fortunately, if I play the movie locally, I can see some error message from the [...]

Posted in internet | 14 Comments