Tuesday, June 21, 2011

Full 100% height container

html {
height: 100%;
}

body {
height: 100%;
}

main-body {
height: 100%;
}

inner {
min-height: 100%;
}

Thursday, April 7, 2011

iphone update

http://www.blogsdna.com/10999/how-to-manually-update-ios-4-0-on-iphoneipod-touch-now.htm

Tuesday, February 15, 2011

Creating your own IPA file from appcelerator

Build the app using the distribution build mode of Titantium
Navigate to the project's build > iPhone > Release-iphonesos folder
If there is a *.ipa file as some get, just use it.
Otherwise create a new folder at that level called Payload
Move the project.app folder to inside the Payload folder
Zip the Payload folder
Rename project.zip to project.ipa

Creating your own IPA file from appcelerator

Build the app using the distribution build mode of Titantium
Navigate to the project's build > iPhone > Release-iphonesos folder
If there is a *.ipa file as some get, just use it.
Otherwise create a new folder at that level called Payload
Move the project.app folder to inside the Payload folder
Zip the Payload folder
Rename project.zip to project.ipa

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>