Ideas on how to make things easier.
For many projects, you create your own development folder structure. One key task is making sure you have what I call the deploy folder.
Get the XT Prepaid Mobile Broadband 500MB - you don’t have to pay monthly - Confirmed By Telecom ^JL.
If you use your iPad now and again outside of your wifi zone. You could get 500MB of data from Vodafone or 2º but it’s going to cost you $20/month. You must also pay every month. On XT Prepaid Mobile Broadband 500MB, you pay for what you use and have 6 months to top up.
You need to tell them at the Telecom Store that you want the 500MB Mobile Broadband prepaid rate on the sim when you buy it. (they will probably look at you confused).
The cheapest is $29.95
(it says per month, but it should say, “500MB of data capped at 29.95”).
http://www.telecom.co.nz/mobile/mobilebroadband/plansandpricing/prepaid
This 500MB prepaid rate basically means you pay 10c/Mb up to $29.95 which is 300MB. Then you get a free 200MB if use that in a single calendar month.
“If you use less than your data allowance you’ll only be charged for what you use, and your credit balance will roll over to the next calendar month.”
Which means if you use only 100MB in a month, you only pay $10. If you use 300MB in one month you are billed $30 and if you use 500MB of data in 1 month you will be still be billed $30. You can add another 500MB though by topping and getting 1GB for $60 (I am rounding my values up to make my example clearer).
You must top up every 6 months.
“Any top-up credit needs to be used within six months otherwise it will expire and you need to make sure you top up at least once every six months to avoid your Prepaid account being deactivated.”
http://www.telecom.co.nz/mobile/yourmobile/topup ("By the way, just so you know…")
This means if you use you iPad now and again on 3G it’s pretty good, if you need heaps of data, eg 500MB to 1GB this plan is good.
You can see lots more options here if you have more data requirements.
http://www.whiteandblack.co.nz/2010/07/ipad-data-plans-comparision-xt-vodafone-and-2-degrees/
Thanks to Matthew Buchanan for his assistance with pulling the correct data together for this post.
Creating RSA keys for OSX / Linux
Photoshop - iPhone App Icon Export for iPhone 4/3 Touch and iPad.
Creates all 6 icons sizes that are required for these devices from homescreen, retina display, spotlight search
1. To use this script, double click the script file, photoshop will launch and ask you for a 512x512 icon file of any
image format (jpeg, psd, gif, png etc.)
2. Select the file and photos shop will create 6 icon files and save these with the correct names in the save folder as
the 512 image.
3. Add these images into your iPhone project and update you app plist.
Read Apples Q&Q 1686 on how to add this icons to your info plist
http://developer.apple.com/iphone/library/qa/qa2010/qa1686.html
HTML5 video player, fallback support for IE, Opera, works with iPhone and supports, h.264, ogg and webm
More details on all the commands to make your own.
http://www.erasetotheleft.com/post/mac-os-x-key-bindings/
In Terminal navigate to the correct folder first.
To see what this command is going to remove run
find . -name .svn
Then when you want to remove these files. Note the traling slash semi colon.
find . -name .svn -exec rm -rf {} \;
A pretty simple way to send an app for another developer to re-sign and install on their machine. Watch 2min Vimeo video to see how easy this is.
Quickest way to generate and share SSH keys.
1. Generate key (if you haven’t done this before).
ssh-keygen -t rsa -C “tekkub@gmail.com”
2. Upload key.
cat ~/.ssh/id_dsa.pub | ssh user@host ‘cat - » ~/.ssh/authorized_keys’
You may have to login to the server and mkdir .ssh
If you get permission denied, delete this servers .ssh folder and recreate it again.