<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>From Legacy to Web 2.0</title>
	
	<link>http://blog.weatherangel.com</link>
	<description>The adventures in bringing sites into the present</description>
	<lastBuildDate>Wed, 28 Jul 2010 20:40:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ilenejones" /><feedburner:info uri="ilenejones" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Fun with transitions…</title>
		<link>http://feedproxy.google.com/~r/ilenejones/~3/HnSfVE3wI78/</link>
		<comments>http://blog.weatherangel.com/2010/07/fun-with-transitions/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 19:39:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.weatherangel.com/?p=173</guid>
		<description><![CDATA[a.polaroid { z-index: 2; -webkit-box-shadow: 2px 2px 4px rgba(0,0, 0, 0.3); -moz-box-shadow: 2px 2px 4px rgba(0,0, 0, 0.3); box-shadow: 2px 2px 4px rgba(0,0, 0, 0.3); -webkit-transform: rotate(10deg); -moz-transform: rotate(10deg); transform: rotate(10deg); -webkit-transition: all 0.5s ease-in; } a.polaroid:hover, a.polaroid:focus, a.polaroid:active { z-index: 999; border-color: #6A6A6A; -webkit-box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4); -moz-box-shadow: 15px 15px 20px [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css">     
a.polaroid {
  z-index: 2;
  -webkit-box-shadow: 2px 2px 4px rgba(0,0, 0, 0.3);
  -moz-box-shadow: 2px 2px 4px rgba(0,0, 0, 0.3);
  box-shadow: 2px 2px 4px rgba(0,0, 0, 0.3);
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  transform: rotate(10deg);
  -webkit-transition: all 0.5s ease-in;
  }
  a.polaroid:hover,
  a.polaroid:focus,
  a.polaroid:active {
  z-index: 999;
  border-color: #6A6A6A;
  -webkit-box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);
 -moz-box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);
 box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);
 -webkit-transform: rotate(0deg) scale(1.05);
 -moz-transform: rotate(0deg) scale(1.05);
transform: rotate(0deg) scale(1.05);
} 
	.polaroid img {
		margin: 0 0 15px;
		width: 150px;
		height: 150px;
	}</p>
<p>	a img {
		border: none;
		display: block;
	}
/*
a.polaroid.one img{
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  transform: rotate(20deg);
}
a.polaroid.three img {
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
*/</p>
</style>
<p>For quite some time I&#8217;ve wanted to play with transitions, but haven&#8217;t really had much time to do so.  Today I&#8217;m taking a few minutes go go through samples found on other sites, put them together and show them off here&#8230; I&#8217;m not going to go into much of an explanation due to time constraints, and because this is more for me to learn how it works than as a teaching tool.  Nothing says you can&#8217;t learn with me though <img src='http://blog.weatherangel.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>It amazes me how easy transitions really are.  The following transition was found on <a href="http://24ways.org/2009/going-nuts-with-css-transitions">24Ways.org</a> in an article titled <a href="http://24ways.org/2009/going-nuts-with-css-transitions">Going Nuts With CSS Transitions</a>  The code is pretty straight forward if you&#8217;ve played with the newer CSS before.  In my blog, I&#8217;ve already talked about text and box shadows, however this article is going to go into rotation and movement &#8211; really making your page sing without the need for JavaScript.<br />
<br/><br/><br />
<a class="polaroid one"><img src="http://blog.weatherangel.com/wp-content/uploads/2009/03/hankito1.png"></a> <a class="polaroid two"><img src="http://blog.weatherangel.com/wp-content/uploads/2009/03/hankito1.png"></a> <a class="polaroid three"><img src="http://blog.weatherangel.com/wp-content/uploads/2009/03/hankito1.png"></a></p>
<p><code>    a.polaroid {<br />
  /* ... */<br />
  z-index: 2;<br />
  -webkit-box-shadow: 2px 2px 4px rgba(0,0, 0, 0.3);<br />
  -moz-box-shadow: 2px 2px 4px rgba(0,0, 0, 0.3);<br />
  box-shadow: 2px 2px 4px rgba(0,0, 0, 0.3);<br />
  -webkit-transform: rotate(10deg);<br />
  -moz-transform: rotate(10deg);<br />
  transform: rotate(10deg);<br />
  -webkit-transition: all 0.5s ease-in;<br />
  }<br />
  a.polaroid:hover,<br />
  a.polaroid:focus,<br />
  a.polaroid:active {<br />
  z-index: 999;<br />
  border-color: #6A6A6A;<br />
  -webkit-box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);<br />
 -moz-box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);<br />
 box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);<br />
 -webkit-transform: rotate(0deg) scale(1.05);<br />
 -moz-transform: rotate(0deg) scale(1.05);<br />
transform: rotate(0deg) scale(1.05);<br />
}<br />
</code></p>
<p><map name='google_ad_map_173_c78c6414ffdbcb05'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/173?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_173_c78c6414ffdbcb05' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=173&amp;url= http%3A%2F%2Fblog.weatherangel.com%2F2010%2F07%2Ffun-with-transitions%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/KhIPDQcf_Puwg4122M3hsOhk4d8/0/da"><img src="http://feedads.g.doubleclick.net/~a/KhIPDQcf_Puwg4122M3hsOhk4d8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/KhIPDQcf_Puwg4122M3hsOhk4d8/1/da"><img src="http://feedads.g.doubleclick.net/~a/KhIPDQcf_Puwg4122M3hsOhk4d8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/ilenejones/~4/HnSfVE3wI78" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.weatherangel.com/2010/07/fun-with-transitions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.weatherangel.com/2010/07/fun-with-transitions/</feedburner:origLink></item>
		<item>
		<title>Dock – for the cased iPhone and iPod!</title>
		<link>http://feedproxy.google.com/~r/ilenejones/~3/GXsKxeI8AXA/</link>
		<comments>http://blog.weatherangel.com/2010/06/dock-for-the-cased-iphone-and-ipod/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 17:41:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.weatherangel.com/?p=171</guid>
		<description><![CDATA[I have decided that Apple is preventing me from purchasing more of their products by not allowing their iPhone and iPad docks to to work with their cases.  ]]></description>
			<content:encoded><![CDATA[<p>I have decided that Apple is preventing me from purchasing more of their products by not allowing their iPhone and iPad docks to to work with their cases.  </p>
<p>When I bought my iPad, I was extremely happy that I had the opportunity to also purchase their case.  it&#8217;s a glorious, wonderful case that does everything I need, and more.  My aim was to also purchase the iPad Keyboard Dock, which I did buy, but had to immediately take back and exchange for a bluetooth keyboard.  The simple reason is that taking the iPad out of the case to put it into the dock was just too much of a bother.  The iPad case is designed in such a way that you should never have to remove the iPad from it, and my thought was that I should be able to just drop my iPad into the dock and it would just work.  Well, the snug fit of the iPad dock is great when you only have the iPad, but even putting the thin iPad case on the iPad is enough to make it too thick to fit the device.</p>
<p>While I wasn&#8217;t real happy with the situation, I understood and I moved on.  That was 3 months ago.  Now that I have my shiny new iPhone 4, and the ever awesome bumper case, I find myself upset that even though our 1st gen iPhone dock will fit the iPhone 4, (as reported by TUAW) I find that I do not want to remove the case just to put the device into a dock.  I asked at the store if the dock that they had in stock would fit the iPhone 4 with a case on it and was told no, it was a snug fit to the device.  I understand why, and the simple answer is that it keeps the connector pins from bending and breaking.</p>
<p>So now we come back to the question.  If Apple took the time to create this awesome device, with a cool bumper case, then why did they not create a dock with a removable insert, something like those provided by iHome so that the iPods fit?  Granted, those inserts are also made for the device itself, and in general cannot be used with a case, but making it work with an apple case (the only one sold) seems like it should be a given!</p>
<p>I love what Apple has done with their devices, but a little more thought to this minor detail for the next product would allow me to both have what I want, as well as fund the company that little bit more.  In short, Apple should not prevent me from spending the money I want to spend on their products <img src='http://blog.weatherangel.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><map name='google_ad_map_171_c78c6414ffdbcb05'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/171?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_171_c78c6414ffdbcb05' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=171&amp;url= http%3A%2F%2Fblog.weatherangel.com%2F2010%2F06%2Fdock-for-the-cased-iphone-and-ipod%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/DSIDEdIbHEsjsM4bFrT3mKHNl5Y/0/da"><img src="http://feedads.g.doubleclick.net/~a/DSIDEdIbHEsjsM4bFrT3mKHNl5Y/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/DSIDEdIbHEsjsM4bFrT3mKHNl5Y/1/da"><img src="http://feedads.g.doubleclick.net/~a/DSIDEdIbHEsjsM4bFrT3mKHNl5Y/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/ilenejones/~4/GXsKxeI8AXA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.weatherangel.com/2010/06/dock-for-the-cased-iphone-and-ipod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.weatherangel.com/2010/06/dock-for-the-cased-iphone-and-ipod/</feedburner:origLink></item>
		<item>
		<title>CSS3 calc() coming to Firefox</title>
		<link>http://feedproxy.google.com/~r/ilenejones/~3/HTXqfsbXf2w/</link>
		<comments>http://blog.weatherangel.com/2010/06/css3-calc-coming-to-firefox/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 20:29:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.weatherangel.com/?p=168</guid>
		<description><![CDATA[This article explains it all. Take a look and see what CSS3 calc() can do. Pretty nifty stuff! Firefox 4: CSS3 calc()]]></description>
			<content:encoded><![CDATA[<p>This article explains it all.  Take a look and see what CSS3 calc() can do.  Pretty nifty stuff!</p>
<p><a href="http://hacks.mozilla.org/2010/06/css3-calc/">Firefox 4: CSS3 calc()</a></p>
<p><map name='google_ad_map_168_c78c6414ffdbcb05'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/168?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_168_c78c6414ffdbcb05' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=168&amp;url= http%3A%2F%2Fblog.weatherangel.com%2F2010%2F06%2Fcss3-calc-coming-to-firefox%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/wtIbsyecKvadPeWUE5thGy1i9WU/0/da"><img src="http://feedads.g.doubleclick.net/~a/wtIbsyecKvadPeWUE5thGy1i9WU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/wtIbsyecKvadPeWUE5thGy1i9WU/1/da"><img src="http://feedads.g.doubleclick.net/~a/wtIbsyecKvadPeWUE5thGy1i9WU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/ilenejones/~4/HTXqfsbXf2w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.weatherangel.com/2010/06/css3-calc-coming-to-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.weatherangel.com/2010/06/css3-calc-coming-to-firefox/</feedburner:origLink></item>
		<item>
		<title>Ease of use is key!</title>
		<link>http://feedproxy.google.com/~r/ilenejones/~3/ugyqYLDjIv0/</link>
		<comments>http://blog.weatherangel.com/2010/04/ease-of-use-is-key/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 04:47:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.weatherangel.com/?p=166</guid>
		<description><![CDATA[LiveStream and UStream - ease of use and h.264 compatibility, one has it, the other wants it.]]></description>
			<content:encoded><![CDATA[<p>When writing an API for people outside of your company, ease of use is key!  The simple fact of the matter is, if it&#8217;s not easy to use, then you will get the questions about how to use it, why it&#8217;s not easier and a whole host of other reasons for one of your users to ask questions.  After playing with LiveStream and UStream tonight, I must say that neither have documented their iPhone support well, however LiveStream at least put a little effort forth by having a dedicated iphone.livestream.com address which you can use to stream h.264 encoded videos.  Their sample feed is great, and showed me exactly what I needed to know to add this ability to my app quickly and easily.  </p>
<p>UStream on the other hand has to wait for a developer to contact me about the availability of their app through the API.  They have an iPhone app, which tells me that they have the technology, however they have not done the little bit of work that it would take to make all this come to life.  I will be sad if they do not have the technology ready prior to the start of the season since one of my feed providers uses them.</p>
<p>All in all, I will be happy when the big players like these are finally h.264 compliant out of the box.  LiveStream is, but the feed I am working with is not &#8211; though they&#8217;re working on it.  I know it will take time for everyone to catch up, though more and more people are using mobile technologies like the iPhone, iPad and iPod Touch.  While these are only a subset of the current mobile technology world, there is enough market penetration at this point for us to warrant a real look into this issue, and change it for the better&#8230; </p>
<p>I definitely commend LiveStream, and hope UStream will follow suit soon!</p>
<p><map name='google_ad_map_166_c78c6414ffdbcb05'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/166?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_166_c78c6414ffdbcb05' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=166&amp;url= http%3A%2F%2Fblog.weatherangel.com%2F2010%2F04%2Fease-of-use-is-key%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/2MXY4y8VOVphrPCugUEVhDcG9ok/0/da"><img src="http://feedads.g.doubleclick.net/~a/2MXY4y8VOVphrPCugUEVhDcG9ok/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/2MXY4y8VOVphrPCugUEVhDcG9ok/1/da"><img src="http://feedads.g.doubleclick.net/~a/2MXY4y8VOVphrPCugUEVhDcG9ok/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/ilenejones/~4/ugyqYLDjIv0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.weatherangel.com/2010/04/ease-of-use-is-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.weatherangel.com/2010/04/ease-of-use-is-key/</feedburner:origLink></item>
		<item>
		<title>iPhone, iPod Touch and iPad App Store Rank</title>
		<link>http://feedproxy.google.com/~r/ilenejones/~3/z2aQvTFfFYw/</link>
		<comments>http://blog.weatherangel.com/2010/04/iphone-ipod-touch-and-ipad-app-store-rank/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 20:05:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[weather]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[ranking]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://blog.weatherangel.com/?p=163</guid>
		<description><![CDATA[An update to AppStoreRank.pl which checks the ranking of your app in each app store.  The new version now also allows for checking the Featured Categories for your app as well!]]></description>
			<content:encoded><![CDATA[<p>With every new week, there is a new opportunity to be added to the App Store&#8217;s Featured lists.  I don&#8217;t know about you, but I definitely want to know if my apps have been picked!  We have previously discussed AppStoreRank, a Perl script which simply goes out, and gets the app store rank for your application for each country, based on a simple to set up hash at the top of the script.</p>
<p>Here&#8217;s a sample of two apps, Hurricane and Weather HD:</p>
<p><code><br />
my @appName = (<br />
            {   appName =>"Hurricane",<br />
                appID => 291430598,<br />
                popId => ['Paid App','Gross App'],<br />
                genreId => 36,<br />
                featuredCategories => ["New and Noteworthy","Whats Hot","Staff Favorites"],<br />
                categoryName => ["Weather","Top Overall"] },<br />
           {   appName =>"Weather HD",<br />
               appID => 364193735,<br />
               popId => ['Paid iPad App','Gross iPad App'],<br />
               genreId => 36,<br />
               featuredCategories => ["Staff Favorites"],<br />
               categoryName => ["Weather","Top Overall"] },<br />
);</code></p>
<p>As you can see above, we now have a featuredCategories hash key which is a plain english way of getting the single &#8220;Staff Favorites&#8221; from Weather HD, or multiple featuredCategories as you can see in Hurricane.</p>
<p>This simple syntax allows you to set which featuredCategories you would like to use.  featuredCategories is not required, so if you would not like to see the results of searching the featured categories, you can remove the whole line.</p>
<p>The available options can be found at the bottom of the script, where we have taken them out of the way of the actual running of the code.  This makes it a lot easier to debug on my part, and well, where they are placed really does not matter.  You will most likely set this up once, and forget about it.</p>
<p>By default, this script will only get featured categories on Tuesdays, since this is the day that Apple changes the featured list around the world.  You will want to make sure that you run the script in the morning of your time zone, so if there is a delay based on time zone, you can catch all countries you are featured in.  In addition, a simple change in the code:<br />
<code><br />
if($wday ==2) {<br />
</code><br />
will enable you to change from Tuesday to Wednesday, or allow for multiple days.  Removing the check all together will allow this part of the script to be run daily.</p>
<p>If you want to see this type of information in a graph on your Mac, I highly suggest you take a look at <a href="http://www.ideaswarm.com/products/appviz/" title="AppViz is worth every penny too!">AppViz</a>.  This is an app that I use daily in addition to my script to ensure that I have the most up to date information about all of my apps!</p>
</p>
<p>Once again, my script is a modification of the original by <a href="http://www.tuaw.com/bloggers/erica-sadun/">Erica Sandun</a> which was published back in 2008.  Unlike some of the other modifications of her script, this one doesn&#8217;t require extra packages, and it just works.  I keep this script up to date since I have it set on a cron to check the statistics during the middle of the night and email the report back to me&#8230; I like waking up to the fresh smell of statistics in the morning, don&#8217;t you?</p>
<p>Happy tracking!</p>
<p>Download: <a href="http://blog.weatherangel.com/codeShare/AppStoreRank.zip">AppStoreRank.zip</a></p>
<p><map name='google_ad_map_163_c78c6414ffdbcb05'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/163?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_163_c78c6414ffdbcb05' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=163&amp;url= http%3A%2F%2Fblog.weatherangel.com%2F2010%2F04%2Fiphone-ipod-touch-and-ipad-app-store-rank%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/YWLRWpXLUgGjXBP22DqgtdsrsUA/0/da"><img src="http://feedads.g.doubleclick.net/~a/YWLRWpXLUgGjXBP22DqgtdsrsUA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YWLRWpXLUgGjXBP22DqgtdsrsUA/1/da"><img src="http://feedads.g.doubleclick.net/~a/YWLRWpXLUgGjXBP22DqgtdsrsUA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/ilenejones/~4/z2aQvTFfFYw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.weatherangel.com/2010/04/iphone-ipod-touch-and-ipad-app-store-rank/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.weatherangel.com/2010/04/iphone-ipod-touch-and-ipad-app-store-rank/</feedburner:origLink></item>
		<item>
		<title>iPad App Store Rank</title>
		<link>http://feedproxy.google.com/~r/ilenejones/~3/oytzRHGMIu4/</link>
		<comments>http://blog.weatherangel.com/2010/04/ipad-app-store-rank/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 07:27:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[AppStore]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[perl script]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://blog.weatherangel.com/?p=158</guid>
		<description><![CDATA[AppStoreRank checks the rank of a given application in every app store.  Updated to add the new stores from the Feb 18th update and now tracks iPads as well.]]></description>
			<content:encoded><![CDATA[<p>Now that the iPad is here, we as developers need a way to keep track of how they are doing in all of the various app stores.  The Perl script we wrote before was great!  Except now they&#8217;ve added new popIds to the mix which are specific to the new hardware.  This means a code update, of course&#8230; So after seeing how Dylan over at <a href="http://www.ideaswarm.com/products/appviz/" title="AppViz is worth every penny too!">AppViz</a> found the new Ids, I went on a hunt to find the rest for my humble little Perl script.  Once again, my script is a modification of the original by <a href="http://www.tuaw.com/bloggers/erica-sadun/">Erica Sandun</a> which was published back in 2008, but it works really well for me and has for quite some time.  Unlike some of the other modifications of her script, this one doesn&#8217;t require extra packages, and it just works.  I personally keep this one up to date since I have it set on a cron to check the statistics during the middle of the night and email the report back to me&#8230; I like waking up to the fresh smell of statistics in the morning, don&#8217;t you?</p>
<p>This version has been refined to add a hash of popIds that I would like to choose from, allowing me to write my hash in plain english and translate it to the ID for the app.  This version also adds in the new countries from the February 18, 2010 country update&#8230;</p>
<p>Happy tracking!</p>
<p>Download: <a href="http://blog.weatherangel.com/codeShare/AppStoreRank.zip">AppStoreRank.zip</a></p>
<p><map name='google_ad_map_158_c78c6414ffdbcb05'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/158?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_158_c78c6414ffdbcb05' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=158&amp;url= http%3A%2F%2Fblog.weatherangel.com%2F2010%2F04%2Fipad-app-store-rank%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/yBO6jNAmbMZh9Ry_20FBy9TWOA0/0/da"><img src="http://feedads.g.doubleclick.net/~a/yBO6jNAmbMZh9Ry_20FBy9TWOA0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/yBO6jNAmbMZh9Ry_20FBy9TWOA0/1/da"><img src="http://feedads.g.doubleclick.net/~a/yBO6jNAmbMZh9Ry_20FBy9TWOA0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/ilenejones/~4/oytzRHGMIu4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.weatherangel.com/2010/04/ipad-app-store-rank/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.weatherangel.com/2010/04/ipad-app-store-rank/</feedburner:origLink></item>
		<item>
		<title>Girl Scouts 98th Birthday</title>
		<link>http://feedproxy.google.com/~r/ilenejones/~3/0TxfX2raLGw/</link>
		<comments>http://blog.weatherangel.com/2010/03/girl-scouts-98th-birthday/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 14:29:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Girl Scouts]]></category>

		<guid isPermaLink="false">http://blog.weatherangel.com/?p=153</guid>
		<description><![CDATA[Girl Scout Birthday, March 12, commemorates the day in 1912 when Juliette Gordon Low officially registered the organization's first 18 girl members in Savannah, Georgia.
It all started with a phone call on March 12, 1912. . ."I've got something for the girls of Savannah, and all America, and all the world. . ."  Juliette was off and going with the first Girl Scout troop. ]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know about you, but for me, being a Girl Scout and later a Girl Scout Leader made a lot of difference in my life.  The organization and the purpose are what you make it, be that good or bad, just like anywhere else, but the opportunities to learn and be a part of your local community are what it&#8217;s all about.  Girl Scouts help others, and is an organization that is world wide through WAGS.  Girl Scouts is all about volunteers.  Leaders are not paid, they are parents of daughters in the troop.  My Mom was a leader, and when my girls needed a leader for their troop, I reluctantly stepped forward.  I have been the troop cookie manager, and have helped our service units in many ways over the years (including writing online sales and organization systems for two service units).  I truly hope that if you have girls, you at least give them a year to experience what Girl Scouting is&#8230; </p>
<p><strong>This information is from this <strong>great</strong> website: </strong><br />
<a href="http://home.roadrunner.com/~scoutingseasons/3gsweek.htm">Scouting For All Seasons</a></p>
<blockquote style="padding: 20px"><p>
Girl Scout Birthday, March 12, commemorates the day in 1912 when Juliette Gordon Low officially registered the organization&#8217;s first 18 girl members in Savannah, Georgia.<br />
It all started with a phone call on March 12, 1912. . .&#8221;I&#8217;ve got something for the girls of Savannah, and all America, and all the world. . .&#8221;  Juliette was off and going with the first Girl Scout troop.<br />
Birthday Week begins Sunday March 7, 2010 and ends Saturday March 13.  </p>
<p>G    is for the Gracious way we all proclaim our birth<br />
I     points up the Ideas shared and those we’d like unearthed<br />
R    is for Respect we have for every race and creed<br />
L    is for our Loyalty to promises we heed</p>
<p>S    is for Sincerity of deed and word and mind<br />
C    is for the Countless ways in which these are combined<br />
O    is Obligation that we owe to fellow man<br />
U    means that it’s You who must be first to lend a hand<br />
T    is for the Teamwork which has evidenced our growth<br />
I     is for Integrity which backs the Girl Scout oath<br />
N    is for the Noble way we remember days of old<br />
G    is for the Grateful thanks for efforts toward our goal</p>
<p>It all began with a spark of light,<br />
And Juliette led the way.<br />
Today her ideas are glowing bright,<br />
It’s Girl Scouts 98th Birthday!</p>
<p>Girl Scout leaders still have enough time to create a special troop meeting for Girl Scout Week, which honors Juliette Gordon Low&#8217;s founding of Girl Scouts on March 12, 1912. The meeting can be both educational and fun. All girls love a good birthday party, so the troop meeting, successfully tested with 12 second grade Brownies, is themed &#8220;Happy Birthday to Girl Scouting.&#8221;</p>
<p><strong>Act Out the Story of Juliette Low</strong></p>
<p>It&#8217;s important for Brownies to know the story of Juliette Gordon Low, the free-spirited, almost deaf woman who founded Girl Scouts in the United States. But troop meetings usually occur after school, a time when Brownies are tired of sitting in the classroom all day.</p>
<p>The key: Bring the story of Low to life by preparing an interactive reading of the &#8220;Juliette Low Album,&#8221; which is found on pages 8-11 of the Brownie Girl Scout Handbook, a leader&#8217;s staple.</p>
<p>Before the meeting, the leader rereads the story, and gathers items that represent parts of the story. For instance: </p>
<ul>
<li>a United States map (Low was born in Savannah, Georgia)</li>
<li>a paintbrush (to illustrate that Low loved the arts)</li>
<li>pieces of taffy to hand out (Low famously got taffy stuck in her hair)</li>
<li>a Brownie who is the second oldest child in her family (like Low)</li>
<li>a small plastic bag filled with rice (an accident with rice caused part of Low&#8217;s deafness)</li>
<li>a first aid kit (Low&#8217;s first U.S. troop learned first aid)</li>
<li>basketball (her first troop also played basketball)</li>
<li>a book and a pencil (to demonstrate when Low wrote the Girl Scout handbook)</li>
<li>any other items that the leader feels appropriate, to match the number of Brownies present</li>
</ul>
<p>Before reading the story, the leader passes out at least one item to each Brownie. The leader then animatedly starts to read the story. She pauses at the point where an item is represented, and asks the Brownie who is holding the item to display it to the group (the Brownie who represents the second oldest child stands up.) This helps the girls listen carefully to the reading. It&#8217;s great fun!</p>
<p><strong>Make Girl Scout Themed Mug</strong></p>
<p>Brownies love crafts! The following project, which takes about 20 minutes, ties into the birthday theme, is educational, relatively mess free and requires little to no adult help.</p>
<ul>
<li>clear plastic mugs with plastic insert (readily available at &#8220;big box&#8221; craft stores in children&#8217;s section) These cost about $1 each</li>
<li>markers, pencils, crayons</li>
<li>glue sticks</li>
<li>scissors</li>
<li>Girl Scout graphics (free, from the national Girl Scout website) downloaded and printed in color</li>
<li>Girl Scout Promise printed out in color (several more copies than girls, to allow for mistakes)</li>
</ul>
<p>Girls remove the mug insert and paper, then decorate the paper. They should make sure to paste (or write) the Girl Scout Promise and their troop number on the paper. They also can add the dates &#8220;1912-2009&#8243; to help link history to present. Afterward, they simply wrap the paper around the insert, and put it back in the mug. The mug is not fragile, but care should be taken when washing so as not to get the paper insert wet.</p>
<p>For snack: a birthday cake made from a mix, served on birthday plates. Before eating, the girls can sing &#8220;Happy Birthday to Girl Scouts.&#8221;</p>
<p>By using a &#8220;Happy Birthday, Girl Scouts&#8221; theme, Brownie Girl Scout leaders can quickly design a troop meeting that celebrates Girl Scout Week with a story, craft and snack.
</p></blockquote>
<p><map name='google_ad_map_153_c78c6414ffdbcb05'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/153?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_153_c78c6414ffdbcb05' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=153&amp;url= http%3A%2F%2Fblog.weatherangel.com%2F2010%2F03%2Fgirl-scouts-98th-birthday%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/aRdbVjJBwgbxvWP1lXGIslsf7DQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/aRdbVjJBwgbxvWP1lXGIslsf7DQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/aRdbVjJBwgbxvWP1lXGIslsf7DQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/aRdbVjJBwgbxvWP1lXGIslsf7DQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/ilenejones/~4/0TxfX2raLGw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.weatherangel.com/2010/03/girl-scouts-98th-birthday/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://blog.weatherangel.com/2010/03/girl-scouts-98th-birthday/</feedburner:origLink></item>
		<item>
		<title>Storms and Breezes</title>
		<link>http://feedproxy.google.com/~r/ilenejones/~3/HlLHToGagCU/</link>
		<comments>http://blog.weatherangel.com/2009/10/storms-and-breezes/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 18:04:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[weather]]></category>

		<guid isPermaLink="false">http://blog.weatherangel.com/?p=148</guid>
		<description><![CDATA[Tropical Storm and Typhoon remnants head to the UK, and the US West coast.  How often do you hear that? ]]></description>
			<content:encoded><![CDATA[<p>This year for the Atlantic Ocean has not been quiet, unless you base your opinion on storms striking land in the continental US.  As always, the Caribbean Islands have had a fair share of storms, but not as many as previous years.  The oddities have been Hurricane Bill and Tropical Storm Grace both making their way to the UK.  While the storm tracks did not follow them through to the coast, the extratropical storm remnants did make it, causing torrential rains and minimal damage to land.</p>
<p>In the Eastern Pacific, off of the West Coast of the US and Mexico, we have had a large number of storms.  Right now, we are following Category 4 Hurricane Rick.  Hurricane Rick is heading to the Baja Mexico peninsula, which has already seen the remnants of Tropical Storm Andres, Hurricane Jimena, Tropical Depression Olaf, and a quickly dissipating Tropical Storm Patricia.</p>
<p>The Central Pacific is an open area that you would think would not matter much, unless you are in shipping.  While that could be partially true, residents and visitors to Hawaii would most certainly disagree with you.  Storms like Hurricane Felicia, Hurricane Guillermo and Tropical Storm Hilda form in the eastern Pacific ocean, and travel a long way to become a threat to the Hawaiian islands.</p>
<p>While Hurricane does not presently track Typhoons in the Western Pacific, we have found another oddity of the season.  The west coast is feeling the remnants of Typhoon Melor.  How often does that happen?  About as often as Hurricane remnants hit the UK! </p>
<p>Prior to creating our iPhone App Hurricane, I like most people in the US paid little attention to the tropical systems outside of the Atlantic Ocean.  Growing up in South Florida made it necessary to watch those storms because we were directly affected.  Last year, Hurricane Norbert opened my eyes to the simple fact that hurricanes do affect the west coast of North America.  This year, thanks to Hurricane, I have kept better track of the affects of hurricanes on areas outside of my little sphere.  As an application developer, my hope is that Hurricane can help travelers and residents stay better informed about storms that affect you.</p>
<p>Even as this year&#8217;s storm season seems to have come to an early close for most on the US eastern seaboard, we will continue to keep watch on the tropics around the world.</p>
<p>If you track hurricanes, and want to see a little of what Hurricane can do for you, I often post screen shots directly from Hurricane on twitter @weatherangel.  Feel free to take a look and see what you have been missing!  Keep in mind that my screen shots are not automated, I post them as time allows or I see fit.</p>
<p><map name='google_ad_map_148_c78c6414ffdbcb05'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/148?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_148_c78c6414ffdbcb05' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=148&amp;url= http%3A%2F%2Fblog.weatherangel.com%2F2009%2F10%2Fstorms-and-breezes%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/xtZfTlYz4fIUspu8pZeaELsUiFo/0/da"><img src="http://feedads.g.doubleclick.net/~a/xtZfTlYz4fIUspu8pZeaELsUiFo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/xtZfTlYz4fIUspu8pZeaELsUiFo/1/da"><img src="http://feedads.g.doubleclick.net/~a/xtZfTlYz4fIUspu8pZeaELsUiFo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/ilenejones/~4/HlLHToGagCU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.weatherangel.com/2009/10/storms-and-breezes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.weatherangel.com/2009/10/storms-and-breezes/</feedburner:origLink></item>
		<item>
		<title>Hurricane Stats</title>
		<link>http://feedproxy.google.com/~r/ilenejones/~3/9HNXyDVgneU/</link>
		<comments>http://blog.weatherangel.com/2009/08/hurricane-stats/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 17:43:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.weatherangel.com/?p=145</guid>
		<description><![CDATA[Over the last week I have watched Hurricane go from number 5 to number 3 in the US iTunes Store, a place Hurricane has not seen since last year, before the release of The Weather Channel and Weather Bug paid apps. Hurricane has remained in the top 5 in Jamaica, Mexico and the Dominican Republic, [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last week I have watched Hurricane go from number 5 to number 3 in the US iTunes Store, a place Hurricane has not seen since last year, before the release of The Weather Channel and Weather Bug paid apps.  Hurricane has remained in the top 5 in Jamaica, Mexico and the Dominican Republic, and has remained in the top 10 in El Salvador and Canada.  Hurricane has also been in the top 100 over all apps in El Salvador, the Dominican Republic and Jamaica during July and August.</p>
<p>We love our customers!  Kitty Code has received so much great feedback, both through the App Store and through email, which has shown how great we are doing with the app.  Things are running smoothly with the data feed, and while we do babysit the data, just to be sure, it&#8217;s nice knowing we don&#8217;t really have to &#8211; and the system just handles it all.</p>
<p>Haven&#8217;t checked out Hurricane yet?  If you live in an area prone to hurricanes, you should definitely take a look.  You will not be disappointed.  </p>
<p><map name='google_ad_map_145_c78c6414ffdbcb05'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/145?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_145_c78c6414ffdbcb05' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=145&amp;url= http%3A%2F%2Fblog.weatherangel.com%2F2009%2F08%2Fhurricane-stats%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/R4quPuFrEYMoalDNZVIuk-jVF1o/0/da"><img src="http://feedads.g.doubleclick.net/~a/R4quPuFrEYMoalDNZVIuk-jVF1o/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/R4quPuFrEYMoalDNZVIuk-jVF1o/1/da"><img src="http://feedads.g.doubleclick.net/~a/R4quPuFrEYMoalDNZVIuk-jVF1o/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/ilenejones/~4/9HNXyDVgneU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.weatherangel.com/2009/08/hurricane-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.weatherangel.com/2009/08/hurricane-stats/</feedburner:origLink></item>
		<item>
		<title>App Store Adds New Countries</title>
		<link>http://feedproxy.google.com/~r/ilenejones/~3/Yu1BfqNTUu0/</link>
		<comments>http://blog.weatherangel.com/2009/07/app-store-adds-new-countries/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 13:19:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[perl AppStoreRank]]></category>

		<guid isPermaLink="false">http://blog.weatherangel.com/?p=142</guid>
		<description><![CDATA[AppStoreRank.pl will grab your app store rank for every known app store country, as well as your top 100 placement per country.  Add AppStoreRank to a cron job to run each morning and email the results, instant status reports available daily to watch your application's progress!]]></description>
			<content:encoded><![CDATA[<p>Previously I wrote about where to find cool scripts to handle getting the App Store Rank for each country.  Back in April, Apple added a few more countries to the app store, did you know?  The script attached below needs to be credited to the original author: <a href="http://blogs.oreilly.com/iphone/2008/08/scraping-appstore-reviews.html">Erica Sadun</a>.  The version I use is based off of <a href="http://benchatelain.com/2009/03/05/scraping-app-store-rankings-around-the-world/comment-page-1/#comment-3861">Ben</a>&#8216;s script with my own modifications to it to handle multiple id&#8217;s a little cleaner, and really, just a tad of code clean up that made me feel better <img src='http://blog.weatherangel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The script itself is attached as a zip file here:  <a href="http://blog.weatherangel.com/codeShare/AppStoreRank.zip">AppStoreRank.zip</a>.  This version is still written in Perl, but it is extremely easy to add a new app to the script.  At the top, just modify the following section:</p>
<p><code>@appName = ( {  appName =>"Hurricane",<br />
                appID => 291430598,<br />
                categoryName => "Weather" },<br />
             {  appName => "Cat Calls",<br />
                appID => 308620543,<br />
                categoryName => "Entertainment"}<br />
            );</p>
<p></code><br />
appName is just for display purposes<br />
appID is your application ID from the iTunes store.<br />
categoryName should match a category in the list below (this will pull the right category number).<br />
As you can see in my list, the order of the parameters does not matter.  </p>
<p><code>Added the following store codes to my script:<br />
# stores added April 1, 2009<br />
143508 => “Dominican Republic”,<br />
143509 => ‘Ecuador’,<br />
143516 => ‘Egypt’,<br />
143518 => ‘Estonia’,<br />
143510 => ‘Honduras’,<br />
143511 => ‘Jamaica’,<br />
143517 => ‘Kazakhstan’,<br />
143519 => ‘Latvia’,<br />
143520 => ‘Lithuania’,<br />
143515 => ‘Macau’,<br />
143521 => ‘Malta’,<br />
143523 => ‘Moldova’,<br />
143512 => ‘Nicaragua’,<br />
143513 => ‘Paraguay’,<br />
143514 => ‘Uruguay’<br />
</code><br />
I am a little more retentive than most, and wanted my rankings to be listed in alphabetic order, so my version of the script does this automatically.</p>
<p>Also the way the script is written, it can be used as a stand alone script, or as part of a package.</p>
<p>If you have updated the script to add a check for Ratings, I would be very interested in seeing your changes!</p>
<p>Enjoy!</p>
<p><map name='google_ad_map_142_c78c6414ffdbcb05'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/142?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_142_c78c6414ffdbcb05' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=142&amp;url= http%3A%2F%2Fblog.weatherangel.com%2F2009%2F07%2Fapp-store-adds-new-countries%2F' /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/Yk-g5aYZ1BtW9ylT8odqgwvf5SE/0/da"><img src="http://feedads.g.doubleclick.net/~a/Yk-g5aYZ1BtW9ylT8odqgwvf5SE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Yk-g5aYZ1BtW9ylT8odqgwvf5SE/1/da"><img src="http://feedads.g.doubleclick.net/~a/Yk-g5aYZ1BtW9ylT8odqgwvf5SE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/ilenejones/~4/Yu1BfqNTUu0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.weatherangel.com/2009/07/app-store-adds-new-countries/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://blog.weatherangel.com/2009/07/app-store-adds-new-countries/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.426 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-07-28 12:40:56 -->
