If your website is rendered wrong in IE8, you can force it to render in IE7 compatibility mode.
Use a simple meta tag:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
Do you remember BTL? Beyond The Limitz? No? Too bad. – Oh, and I don't tweet.
If your website is rendered wrong in IE8, you can force it to render in IE7 compatibility mode.
Use a simple meta tag:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
Just a few minutes ago a new update was submitted to Apple.
It will contain three very exciting new features:
1) The often requested row-selection
You are now able to select the number of rows to display. Choose between 10, 25, 50, 100, 250 and 500 rows.
But remember, the more you select, the longer you will need to wait!
2) Sub-Categories for the Traffic Sources
Do you want to see how your campaigns perform? Which goals or what revenue you get from a single source?
These are the reports you have waited for!
3) Page filter for Content reporting
Do you want to analyze just a small portion of your content?
Use the page filter to search for them. Only matching results will be included in the report!
For a better screen overview, the new reportings options will only be visible when available.
The release also includes a small improvement:
The compare switch is now independently saved.
And an important bugfix:
Special characters in website names caused the App to crash.
2010/07/23 – Today the update hit the store, watch out for update notices in iTunes or the App Store to get it on your iPad!
I stumbled on that by accident. One of my javascript-variables was called orientation and was not correctly used on the iPad’s Safari.
After looking at its content, I found out that you can detect the device orientation. I knew you can handle many cool things on the iOS, like swipes in javascript, but this one was new to me.
So, what are you going to do with this? It’s obvious: Style your website or re-order your content to match exactly your iPad’s orientation ;-)
You can use javascript in an event handler, loop, or whatever by accessing window.orientation (or only orientation).
Here’s an example on how to detect the current orientation of the iPad device either by pressing a button or when the orientation changes, using an event called onOrientationChange:
You can also use CSS Stylesheets using the media definition:
The detection is not restricted to the iPad, it should work on all iOS devices.
If you want to set your App to stop working at a specific date, you are thinking about a time-based Kill-Switch.
You will want to do something like that if you worry about illegal copies of your Apps, you have sent out for testing purpose.
Realizing such switch is very easy, here’s an example:
NSDate *killDate = [NSDate dateWithTimeIntervalSinceNow:0];
int killDateTs = [killDate timeIntervalSince1970];
if ( killDateTs > 1280624461 ) { // 2010-08-01
exit(0);
}
Replace the timestamp with your own expire time and your App will stop working at that day.
I received a newsletter from amazon some hours ago with some news about S3:
[..]
We are pleased to announce beta support for Amazon S3 bucket policies, which gives customers the ability to create conditional rules for managing access to their buckets and objects. Amazon S3 customers now have the following options for restricting access to their resources:
- Authenticated requests: Allow or deny access based on AWS account
- Query string authentication with expiring URLs: Allow temporary access to resources
- Request-based restrictions: Allow or deny access based on request attributes, such as HTTP referrer and IP address
With bucket policies, customers can also now define security rules that apply to more than one object, including all objects or a subset of objects within a bucket. This makes updating and managing permissions easier.
[..]
This makes S3 much more fun! You can create temporary access to resources based on a query string like session id’s.
You can restrict content to be used only within your website without external linking (HTTP referrer).
And simple group editing using security rules, just change the rules for a folder with one command instead of executing it for every file!
I like that!
More control over your own data and easier editing!
Apple delivers Apps via iTunes using .ipa files. If you want to deliver some Apps to your testers, you can either sync your App to their device or send them an .ipa too.
An .ipa is nothing more than a simple ZIP archive you can create yourself in three easy steps.
This step is optional. If you don’t care about an icon in iTunes, ignore it.
Compress both, the Payload folder and the iTunesArtwork file into one ZIP archive
Rename the .zip extension into .ipa and voila, you got your ipa for distribution to your testers!
Your testers can double-click the .ipa and sync it to their devices via iTunes.
Btw. ipa stands for iPhone/iPod Touch Application
Independence Day as nationwide US holiday should affect your sales in the US. Why not take a look at the numbers and see what exactly happens?
Here is how it affected my sales, first graph is US only and the second is all stores including US. Both are for the past two weeks.
As you can see, the 4th was a overall normal day, in the US a bit lower, but on the 5th I felt it by -35% on that day :-)
I made similar observations on some soccer nations the last days, while the soccer world championships.
Very involved nations had low sales while playing (and a day after that). I wonder if someone had the time and access to numbers to analyse this further?
This post continues my analysis of some App Store conditions.
The first post can be found here: App Sales, What’s Hot – What’s Not – #1: Category Featured
When you release a new App you get a chance of getting listed in the New & Noteworthy section on the iTunes within your category.
These aren’t hand picked and so it is very easy to get in there if your first day downloads are high enough. I had two App releases where I could watch what happens if you get into that list.
Here are two screenshots, showing both Apps on top of their categories in iTunes in two different countries:
The Apps are Analytics for iPad (iPad only) and Webshot (Universal).
The duration of the listing is very short and depends very much on how many new releases are published into that category. From what I have seen, you get listed for about 1-2 days.
I will compare them with two other releases which were iPad only and Universal – both never listed in this prominent spot.
Because these are new releases, there are no previous sale statistics that could increase. Therefor I will compare the first four weeks of sales after release.
The sales will be compared with sales made in the same country they were listed New & Noteworthy.
First the one that was New & Noteworthy:
The graph is not exactly four weeks because the App is not that old yet, but the trend is visible.
You can see a spike on the first day and sales going down very fast to a constant level.
And one that wasn’t New & Noteworthy:
No spike in the beginning but a slowly growing number of sales over time.
Again, first the New & Noteworthy one:
Again: You can see a spike on the first day and sales going down very fast. Later they start growing again, very slowly.
And the one which was not:
No spike in the beginning. No growth visible in that country.
On a side note: Most sales for Universal Apps seem to be iPhone based, iPad users still seem to have problems finding Apps.
Originally these Universal Apps were meant for the iPad and made iPhone compatible to reach a bigger audience.
These numbers are very tough to read because the event is so short and the numbers are not that high.
But a trend can be found and looks promising. If you get listed in the New & Noteworthy listing on iTunes you seem to get a good and very visible spot to kick off your new App.
In contrast to not being listed, you will find the sales trends going down instead of up in the following weeks because there is a huge spike in the beginning that you can not repeat without other marketing or promotions.
Thats why this seems to be a worthy spot to claim.
But how can you improve your chances?
I will try to use promo codes. Getting all available promo codes into user hands and get them to purchase my App within the first hours after its release may be worth a try.