Wednesday, December 29, 2010

iPhone SDK: Application failed codesign verification

Check the following:

1. We are using release | device - during compilation, if you cannot select release then chances are configuration for arvm6 was not selected (we need to use standard)

2. check that the codesign has distribution selected and not any other certs

3. the release shoudl be at: Release-iphoneos

4. if there is no popup that asks for permissions to do codesign, then chances are the setup is wrong some where.. for example the active executable is towards that of the iOS simulator and not for release.

Aaron

Sunday, December 26, 2010

Get today's date mysql

"SELECT * FROM netl_hiscores WHERE DATE(scoreDateTime) = DATE(NOW())";

Tuesday, December 14, 2010

Weird floating DIVs

If you run into problems with div floating on the side of another div despite having clear seperators, then you need to inform the browser to 'stop' floating.. using the following command.

<div style="clear: both;"> </div>