- get the URL of your subscriber “iron_worker webhook name” NOTE: this is case sensitive and the same name you use when you go “ironworker queue name”.
- In whatever worker you are adding to the mq add
@queue.add_subscriber({:url => “subscriber_url”}) NOTE: subscriber_url is from step 1. - You don’t have 2 step authentication on the account (if you do you have no hope of continuing).
- If you receive and email from google saying there was suspicious activity just click here and then run the worker again from iron.io. This should be accepted now.
- Under Keychain > My Certificates find your certificate e.g. iPhone Developer : Your Name (weird code e.g. VX1234567H)
- Double click your certificate and find the field called Organizational Unit this is your team id
- Under Xcode > Organizer - Devices > Provisioning Profiles you will see you have apps e.g. [team id].com.yourcompany.appname
- po [$eax class]
- po [$eax name]
You may not find info about how to do this quickly, these are cliffnotes:
If you are using ActionMailer and are getting username / password rejected check the following:
How do you link up you Certificates from the Keychain you ask?
That’s how you can link them up.
NOTE: sometimes the weird code from step 1 is actually your team id, but this isn’t always so. Generally this is only the case if Xcode automatically generated your CSR (certificate signing request) for you.
Under project Targets > Build Phases > Compile Sources add the -w Compiler Flags to the file(s) you want to stop showing you warnings.
To view metadata on Mac in objective c use the following code:
NOTE: you may not see any geo data and may have seen it in say iPhoto, iPhone etc. Apple strip out any of this info when you export the image. You have to manually tell the apps at export time to keep the geo data.
When right clicking on project in Eclipse and selecting Android Tool > Export … Eclipse crashed.
Try turning off Build Automatically.
More info here here.
A quick overview of rounding and borders for UIVIews.
Under Breakpoint Navigator add (+ button bottom left) an Exception Breakpoint. I use the following:
Exception: All
Break: On Throw
Action: Sound - Sosumi
Action: Debugger Command - po $eax
You can also do the following
NOTE: $eax only works on the simulator. For a device you need to use $ro.
If you use the format “dd MMM yyyy h:mm a” don’t expect it to you the time in non 24 hour format if you have the iOS device to 24 hour format. It will be forced to show in 24 hour format.
If you use Log.d(“”, “”) make sure both fields have something entered, otherwise it won’t appear in LogCat.