<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>GirlieMac! Blog</title>
	<atom:link href="http://girliemac.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://girliemac.com/blog</link>
	<description>Mac, iPhone, Safari and beyond</description>
	<lastBuildDate>Thu, 08 Jul 2010 05:57:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Google Docs Palm Pre Stencil</title>
		<link>http://girliemac.com/blog/2010/07/07/google-docs-palm-pre-stencil/</link>
		<comments>http://girliemac.com/blog/2010/07/07/google-docs-palm-pre-stencil/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 05:50:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Palm]]></category>
		<category><![CDATA[UI/UX]]></category>

		<guid isPermaLink="false">http://girliemac.com/blog/?p=183</guid>
		<description><![CDATA[
A few month ago, after I was saw the impressive web wireframes templates and iPhone stencil created with Google Docs by Morten Just, on Docs blog, I started playing with this Google&#8217;s new addition to the Docs family, Drawing, to copycat this idea and made a Palm Pre stencil.
So here you go! You can check [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://girliemac.com/blog/wp-content/images/pre-stencil.png" alt="Google Docs Pre Stencil screen" /></p>
<p>A few month ago, after I was saw the impressive web wireframes templates and iPhone stencil created with Google Docs by <a href="http://mortenjust.com/2010/05/02/iphone-wireframe-stencils-for-google-docs/" target="_blank">Morten Just</a>, on <a href="http://googledocs.blogspot.com/2010/05/rapid-wireframe-sketching-in-google.html" target="_blank">Docs blog</a>, I started playing with this Google&#8217;s new addition to the Docs family, Drawing, to copycat this idea and made a Palm Pre stencil.</p>
<p>So here you go! You can check out my <a href="https://docs.google.com/drawings/edit?id=1j0nIUVE26sqSMDuePaAehh2qJpyF9dendnQYcvVuFMo&#038;hl=en" target="_blank">Palm Pre stencil</a> on Google Docs.<br />
If you&#8217;d like to have your own copy, sign in your google account, then:<br />
<strong>Choose file &gt; make a copy</strong></p>
<p>You can drag or copy the UI widgets to the white canvas (printable area). To edit text, you need to ungroup the object first, by selecting the UI widget to be editted and go to <strong>Format &gt; Ungroup</strong> (you may need to repeat ungrouping grouped objects) then double-click the text to edit.</p>
<p>Also, I labeled each UI objects to match the <a href="http://developer.palm.com/index.php?option=com_content&#038;view=article&#038;id=1566&#038;Itemid=239" target="_blank">Mojo UI Widget</a> names so developers can reference the stencil and code easily!</p>
]]></content:encoded>
			<wfw:commentRss>http://girliemac.com/blog/2010/07/07/google-docs-palm-pre-stencil/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simulating MacOS Dock-like menu with CSS3</title>
		<link>http://girliemac.com/blog/2010/06/02/simulating-macos-dock-like-menu-with-css3/</link>
		<comments>http://girliemac.com/blog/2010/06/02/simulating-macos-dock-like-menu-with-css3/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 06:14:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Sandbox]]></category>
		<category><![CDATA[WebKit]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://girliemac.com/blog/?p=173</guid>
		<description><![CDATA[

Since my original &#8220;CSS Aqua button&#8221; written last year, I have seen more and more fan CSS3 UI mimic of MacOS components around! I think I have seen some Mac docks too, but as I remember they all use jQuery.
So I was thinking about making one only with CSS.

Initially I thought it was easy &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://girliemac.com/blog/wp-content/images/dock-screenshot.jpg" alt="css3 Dock screenshot"/></p>
<p>
Since my original &#8220;CSS Aqua button&#8221; written last year, I have seen more and more fan CSS3 UI mimic of MacOS components around! I think I have seen some Mac docks too, but as I remember they all use jQuery.<br />
So I was thinking about making one only with CSS.
</p>
<p>Initially I thought it was easy &#8211; let&#8217;s make an hovered icon larger like 200%, and make siblings in 150% of the original size using CSS sibling selector, and done! A piece of cake, huh? &#8211; Then I realized I made a mistake. The adjacent-sibling selector apply to an element which is immediately <em>after</em> the element in markup, not both before and after.<br />
Oh well, so I needed to write a minimal JavaScript (so you don&#8217;t need to import a whole JS library) to add a class name to the element comes before the hovered object.</p>
<p>Anyway, here&#8217;s the <a href="http://girliemac.com/sandbox/dock.html" target="_blank">live-demo!</a> (Try it with the the latest Webkit Nightly or Safari 4) for the best experience!), and I&#8217;ll show you how I did-
</p>
<h3>Markup (Simplified)</h3>
<p>Let&#8217;s create menu items as a list.</p>
<pre class="html">
<code>
&lt;div id="dock-container"&gt;
  &lt;div id="dock"&gt;
  &lt;ul&gt;
    &lt;li&gt;&lt;a href="http://android.com"&gt;&lt;img src="images/dock-icons/android.png"/>&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="http://palm.com"&gt;&lt;img src="images/dock-icons/palm.png"/&gt;&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;...
  &lt;/ul&gt;
  &lt;div class="base"&gt;&lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;
</code>
</pre>
<p>The list should be displayed horizontally by setting the style to <code>#dock li {display:inline-block}</code>. Please see the source code from the demo for the details.
</p>
<h3>Magnify the icon with CSS transform</h3>
<p>
<img style="border:1px solid #666;" src="http://girliemac.com/blog/wp-content/images/dock-tutorial.png" align="right"/>First, let&#8217;s define the dock icon animation with css transition.<br />
The origin of the transform has to set to bottom, so the icon doesn&#8217;t scale from the middle of the icon. (Diagram #1).</p>
<p>I used only a webkit extension for this example but you can use <code>-moz</code> and <code>-o</code> extensions, for Firefox and Opera respectively.</p>
<p>Then, set the hover state &#8211; use css transform to scale the icon image up to 200%. Also you need to add some margin otherwise the enlarged icon overlaps with neighboring icons!
</p>
<pre class="css">
<code>
#dock li img {
  width: 64px;
  height: 64px;
  -webkit-box-reflect: below 2px
		    -webkit-gradient(linear, left top, left bottom, from(transparent),
		    color-stop(0.7, transparent), to(rgba(255,255,255,.5))); /* reflection is supported by webkit only */
  -webkit-transition: all 0.3s;
  -webkit-transform-origin: 50% 100%;
}
#dock li:hover img {
  -webkit-transform: scale(2);
  margin: 0 2em;
}
</code>
</pre>
<h3>Magnify adjacent icons</h3>
<pre class="css">
<code>
#dock li:hover + li img,
#dock li.prev img {
  -webkit-transform: scale(1.5);
  margin: 0 1.5em;
}
</code>
</pre>
<p>To magnify the icon at the right hand side of the hovered icon (Diagram #2), all you need to do is define the scale with using a CSS adjacent-sibling selector, E + F (an F element immediately preceded by an E element).</p>
<p>For the icon at the left (Diagram #3), ss I mentioned earlier, there is no css to get the <em>previous</em> sibling, so I need to rely on JavaScript.<br />
I used the DOM node interface, <code>previousElementSibling</code> to access the sibling node. <code>previousElementSibling</code> should be supported by Webkit, Opera and Firefox.</p>
<p>Basically what I am doing here is that get the mouseovered object (should be an img element), find the parent li element (the immediate parent should be an a-alement, not a li, so get a&#8217;s parent! Check the HTML code again!), find the previous sibling li, then give a classname &#8220;prev&#8221; so I can apply the style.<br />
Don&#8217;t forget to remove the class name as mouseout, otherwise the icon stays large.
</p>
<pre class="js">
<code>
function addPrevClass (e) {
  var target = e.target;
    if(target.getAttribute('src')) { // check if it is img
      var li = target.parentNode.parentNode;
      var prevLi = li.previousElementSibling;
      if(prevLi) {
        prevLi.className = 'prev';
      }

      target.addEventListener('mouseout', function() {
        prevLi.removeAttribute('class');
      }, false);
  }
}
if (window.addEventListener) {
  document.getElementById("dock").addEventListener('mouseover', addPrevClass, false);
}
</code>
</pre>
<p>For more details with the fancy CSS3 effects (e.g. the gradient and 3D-transform to create the &#8220;base&#8221; of the dock), please see the source code of the <a href="http://girliemac.com/sandbox/dock.html" target="_blank">demo page!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://girliemac.com/blog/2010/06/02/simulating-macos-dock-like-menu-with-css3/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CSS3 Box-Shadow with Inset Values &#8211; The Aqua Button ReReVisited!</title>
		<link>http://girliemac.com/blog/2010/02/04/css3-box-shadow-with-inset-values-the-aqua-button-rerevisited/</link>
		<comments>http://girliemac.com/blog/2010/02/04/css3-box-shadow-with-inset-values-the-aqua-button-rerevisited/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 05:22:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Sandbox]]></category>
		<category><![CDATA[WebKit]]></category>

		<guid isPermaLink="false">http://girliemac.com/blog/?p=151</guid>
		<description><![CDATA[
This is my third article on CSS3 No Image Aqua Buttons. The previous articles include:

CSS3 Gradients: No Image Aqua Button
CSS3 Aqua Button – Revisited for Firefox 3.6
And this one &#8211; Read on!

Since Smashing Magazine has selected the original Aqua button demo for their article, &#8220;50 Brilliant CSS3/JavaScript Coding Techniques&#8221;, I have had so much more [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://girliemac.com/sandbox/button.html"><img alt="Screenshot ot CSS Aqua buttons" src="http://girliemac.com/blog/wp-content/images/screenshot_css3button_2.png" title="Screenshot" width="224" height="135" align="right" /></a></p>
<p>This is my third article on CSS3 No Image Aqua Buttons. The previous articles include:</p>
<ol>
<li><a href="http://girliemac.com/blog/2009/04/30/css3-gradients-no-image-aqua-button/" target="_blank">CSS3 Gradients: No Image Aqua Button</a></li>
<li><a href="http://girliemac.com/blog/2010/01/28/css3-aqua-button-revisited-for-firefox-3-6/" target="_blank">CSS3 Aqua Button – Revisited for Firefox 3.6</a></li>
<li>And this one &#8211; Read on!</li>
</ol>
<p>Since Smashing Magazine has selected the original Aqua button demo for their article, <a href="http://www.smashingmagazine.com/2010/02/01/50-brilliant-css3-javascript-coding-techniques/" target="_blank">&#8220;50 Brilliant CSS3/JavaScript Coding Techniques&#8221;</a>, I have had so much more visitors to my blog. </p>
<p>This resulted quality developers leave useful comments and tips for me &#8211; thank you, <a href="http://girliemac.com/blog/2010/01/28/css3-aqua-button-revisited-for-firefox-3-6/#comment-1411" target="_blank">Zoley</a> for suggesting using <code>box-shadow</code> with the <em>inset</em> value, and a big thank you to <a href="http://girliemac.com/blog/2010/01/28/css3-aqua-button-revisited-for-firefox-3-6/#comment-1428" target="_blank">Jim</a> for actually re-writing the Aqua button with the technique!!!</p>
<p>So, now the CSS3 Aqua button is revised with semantic markup (no more &#8220;glare&#8221; div! Yes, I complained it by myself before!) and shorter CSS.<br />
And this time, no CSS gradients! &#8211; use CSS <code>box-shadow</code> property with multiple <em>inset</em> values to draw layers of inner-shadows to create the visual effect.</p>
<h3>Syntax</h3>
<p><code>(-moz-)box-shadow:  none | &lt;shadow&gt; [,&lt;shadow&gt;]*    where &lt;shadow&gt; is defined as:  inset? &#038;&#038; [ &lt;offset-x&gt; &lt;offset-y&gt; &lt;blur-radius&gt;? &lt;spread-radius&gt;? &#038;&#038; &lt;color&gt;? ]<br />
</code></p>
<h3>Values</h3>
<p>from <a href="https://developer.mozilla.org/en/CSS/-moz-box-shadow" target="_blank">Mozilla Developer Center</a>:</p>
<blockquote><p>
<strong>inset (optional)</strong><br />
If not specified (default), the shadow is assumed to be a drop shadow (as if the box were raised above the content).<br />
The presence of the <code>inset</code> keyword changes the shadow to one inside the frame (as if the content was depressed inside the box). Inset shadows are drawn above background, but below border and content.<br/><br />
<strong>&lt;color&gt; (optional)</strong><br />
If not specified, the color depends on the browser. In Gecko (Firefox), the value of the <code>color</code> property is used. Safari&#8217;s shadow is transparent and therefore useless if &lt;color&gt; is omitted.<br/><br />
<strong>&lt;offset-x&gt; &lt;offset-y&gt; (required)</strong><br />
This are two &lt;length&gt; values to set the shadow offset. &lt;offset-x&gt; specifies the horizontal distance. Negative values place the shadow to the left of the element. &lt;offset-y&gt; specifies the vertical distance. Negative values place the shadow above the element.<br />
If both values are 0, the shadow is placed behind the element (and may generate a blur effect if &lt;blur-radius&gt; and/or &lt;spread-radius&gt; is set).<br/><br />
<strong>&lt;blur-radius&gt; (optional)</strong><br />
This is a third &lt;length&gt; value. The higher this value, the bigger the blur, so the shadow becomes bigger and lighter. If not specified, it will be 0.<br/><br />
<strong>&lt;spread-radius&gt; (optional)</strong><br />
This is a fourth &lt;length&gt; value. Positive values will cause the shadow to expand and grow bigger, negative values will cause the shadow to shrink. If not specified, it will be 0 (the shadow will be the same size as the element).<br />
<strong></strong><br/>
</p></blockquote>
<p>Note &#8211; The <code>box-shadow</code> property has been removed from <a href="http://www.w3.org/TR/css3-background/#the-box-shadow" target="_blank">W3C CSS3 Background</a> Candidate recommendation document.</p>
<h3>The Entire Code!</h3>
<p>Use <code>-moz</code> and <code>-webkit</code> prefix for <code>box-shodow</code> to support these browsers. For Opera, there&#8217;s no need to add <code>-o</code>.</p>
<p>Also, notice there are three <code>inset</code> values are defined for detailed visual effects!</p>
<pre class="html">
<code>
&lt;input type="button" class="new-aqua" value="Login"/&gt;
</code>
</pre>
<pre class="css">
<code>
input[type=button].new-aqua {
  width: 155px;
  height: 35px;
  background: #cde;
  border: 2px solid #ccc;
  border-color: #8ba2c1 #5890bf #4f93ca #768fa5;
  font: 600 16px/1 Lucida Sans, Verdana, sans-serif;
  color: #fff;
  text-shadow: rgba(10, 10, 10, 0.5) 1px 2px 2px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border-radius: 16px; -moz-border-radius: 16px; -webkit-border-radius: 16px;
  box-shadow: 0 10px 16px rgba(66, 140, 240, 0.5), inset 0 -8px 12px 0 #6bf, inset 0 -8px 0 8px #48c, inset 0 -35px 15px -10px #7ad;
  -moz-box-shadow: 0 10px 16px rgba(66, 140, 240, 0.5), inset 0 -8px 12px 0 #6bf, inset 0 -8px 0 8px #48c, inset 0 -35px 15px -10px #7ad;
  -webkit-box-shadow: 0 10px 16px rgba(66, 140, 240, 0.5), inset 0 -8px 12px 0 #6bf, inset 0 -8px 0 8px #48c, inset 0 -35px 15px -10px #7ad;
}
.new-aqua:hover {
  text-shadow: rgb(255, 255, 255) 0px 0px 5px;
}
</code>
</pre>
<p><br/></p>
<p>View the <a href="http://girliemac.com/sandbox/button.html" target="_blank">live demo page</a>! This new aqua button works on FF 3.6, Webkit 4 (the current Safari 4 doesn&#8217;t support inset box-shadow yet), Chrome 4 and Opera 10. (But fails on 10.1 on Mac).</p>
<p style="color:#777"><em>* Edited on Feb.5 &#8211; Opera 10.1 fail and Safari4 (I noticed this works only on Webkit Nightly after published this!)</em></p>
<p>And again, a huge thanks to <a href="www.coroflot.com/trickitty" target="_blank">Jim Green</a> for the revised CSS!</p>
<h3>References</h3>
<ul style="margin-top:1em">
<li><a href="http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html" target="_blank">Safari CSS Reference</a> by Apple Safari Dev Center</li>
<li><a href="https://developer.mozilla.org/en/CSS/-moz-box-shadow" target="_blank">-moz-box-shadow</a> by Mozilla Developer Center</li>
<li><a href="http://dev.opera.com/articles/view/css3-border-background-boxshadow/" target="_blank">CSS3 borders, backgrounds and box-shadows</a> by Dev.Opera</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://girliemac.com/blog/2010/02/04/css3-box-shadow-with-inset-values-the-aqua-button-rerevisited/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>CSS3 Aqua Button &#8211; Revisited for Firefox 3.6</title>
		<link>http://girliemac.com/blog/2010/01/28/css3-aqua-button-revisited-for-firefox-3-6/</link>
		<comments>http://girliemac.com/blog/2010/01/28/css3-aqua-button-revisited-for-firefox-3-6/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 21:17:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Sandbox]]></category>

		<guid isPermaLink="false">http://girliemac.com/blog/?p=129</guid>
		<description><![CDATA[This is an update for the Aqua button tutorial. This update will add a support for Firefox 3.6. If you haven&#8217;t seen the article, please go read it before proceeding here.



On the end of November last year, Mozilla Hacks announced the support for CSS gradient in a background on upcoming Firefox 3.6 (which final version [...]]]></description>
			<content:encoded><![CDATA[<p>This is an update for the <a href="http://girliemac.com/blog/2009/04/30/css3-gradients-no-image-aqua-button/">Aqua button tutorial</a>. This update will add a support for Firefox 3.6. If you haven&#8217;t seen the article, please go read it before proceeding here.</p>
<p><br/></p>
<p>
<a href="http://girliemac.com/sandbox/button.html"><img alt="Screenshot ot CSS Aqua buttons" src="http://girliemac.com/blog/wp-content/images/screenshot_css3button_new.png" title="Screenshot" width="224" height="135" align="right" /></a></p>
<p>On the end of November last year, <a href="http://hacks.mozilla.org/2009/11/css-gradients-firefox-36/" target="_blank">Mozilla Hacks announced</a> the support for CSS gradient in a background on upcoming Firefox 3.6 (which final version has just released recently). </p>
<p>As already been supported on WebKit, FF does support both linear and radial gradient, however, Mozilla has implemented differently &#8211;<br />
Most noticeably, Mozilla separate linear and radial gradient as <code>-moz-linear-gradient</code> and <code>-moz-radial-gradient</code>, while on WebKit, the syntax goes <code>-webkit-gradient</code> and you specify linear or radial.</p>
<p>Also the specification of each value is different too.<br />
If you want a linear gradient starting from red on top to ending at bottom in white, you need to define &#8211; </p>
<p>WebKit:<br />
<code>background: -webkit-gradient(linear, left top, right bottom, from(red), to(white)))</code><br />
Firefox:<br />
<code>background: -moz-linear-gradient(top, red, white);<br />
</code>
</p>
<h3>The Aqua Button Redefined</h3>
<p>Let&#8217;s re-create the aqua button, by adding <code>-moz</code> prefixed gradient definitions:</p>
<p>The button:</p>
<pre class="css">
<code>
.aqua{
  background-color: rgba(60, 132, 198, 0.8);
  border-top-color: #8ba2c1;
  border-right-color: #5890bf;
  border-bottom-color: #4f93ca;
  border-left-color: #768fa5;
  -webkit-box-shadow: rgba(66, 140, 240, 0.5) 0px 10px 16px;
  -moz-box-shadow: rgba(66, 140, 240, 0.5) 0px 10px 16px;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 90%, from(rgba(28, 91, 155, 0.8)), to(rgba(108, 191, 255, .9)));
/* for FF 3.6 */
  background-image: -moz-linear-gradient(rgba(28, 91, 155, 0.8) 0%, rgba(108, 191, 255, .9) 90%);
}
</code>
</pre>
<p>and the glare:</p>
<pre class="css">
<code>
.button .glare {
  position: absolute;
  top: 0;
  left: 5px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  height: 1px;
  width: 142px;
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.25);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 95%, from(rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0)));
  /* for FF 3.6 */
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 95%);
}
</code>
</pre>
<p>This is <a href="http://girliemac.com/sandbox/button.html" target="_blank">the actual html page</a>. Open it on Firefox 3.6 and see!</p>
<h3>More Info on Mozilla CSS Gradients</h3>
<ul style="margin-top:1em">
<li><a href="http://hacks.mozilla.org/2009/11/css-gradients-firefox-36/" target="_blank">CSS gradients in Firefox 3.6</a> by HACKS.MOZILLA.ORG</li>
<li><a href="https://developer.mozilla.org/index.php?title=en/CSS/-moz-linear-gradient" target="_blank">-moz-linear-gradient</a> by Mozilla Developer Center</li>
<li><a href="https://developer.mozilla.org/index.php?title=en/CSS/-moz-radial-gradient" target="_blank">-moz-radial-gradient</a> by Mozilla Developer Center</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://girliemac.com/blog/2010/01/28/css3-aqua-button-revisited-for-firefox-3-6/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>I Can Has iPhone App on App Store</title>
		<link>http://girliemac.com/blog/2009/12/29/i-can-has-iphone-app-on-app-store/</link>
		<comments>http://girliemac.com/blog/2009/12/29/i-can-has-iphone-app-on-app-store/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 03:17:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[App]]></category>
		<category><![CDATA[GirlieMac! News]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>

		<guid isPermaLink="false">http://girliemac.com/blog/?p=126</guid>
		<description><![CDATA[Finally, I have my app, called iCanHasLOL published on App Store!
Actually the app was reviewed within 24 hours by Apple, although I&#8217;ve heard it would usually take 2 weeks. 
I mentioned that I had been writing an iPhone app using Appcelerator before, and an app was almost ready to go. However, I was not able [...]]]></description>
			<content:encoded><![CDATA[<p>Finally, I have my app, called <a href="itms://itunes.apple.com/us/app/icanhaslol/id348582423?mt=8">iCanHasLOL published on App Store</a>!<br />
Actually the app was reviewed within 24 hours by Apple, although I&#8217;ve heard it would usually take 2 weeks. </p>
<p>I mentioned that I had been writing an iPhone app using Appcelerator before, and an app was almost ready to go. However, I was not able to publish it with the particular contents so I re-wrote the app and re-created some graphics to finish up this brand-new app.</p>
<p>This is free of charge also ad-free (for now, at least!) so <a href="itms://itunes.apple.com/us/app/icanhaslol/id348582423?mt=8">get your copy</a> now!</p>
<div align="center">
<object width="245" height="496" ><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=8146081&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff0179&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=8146081&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff0179&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="245" height="496"></embed></object>
</div>
]]></content:encoded>
			<wfw:commentRss>http://girliemac.com/blog/2009/12/29/i-can-has-iphone-app-on-app-store/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hello, Palm! I am back to Sunnyvale!</title>
		<link>http://girliemac.com/blog/2009/12/09/hello-palm-i-am-back-to-sunnyvale/</link>
		<comments>http://girliemac.com/blog/2009/12/09/hello-palm-i-am-back-to-sunnyvale/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 06:21:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[GirlieMac! News]]></category>
		<category><![CDATA[Palm]]></category>

		<guid isPermaLink="false">http://girliemac.com/blog/?p=121</guid>
		<description><![CDATA[
Since the last CES announcement, I have been pretty excited to learn about Palm&#8217;s WebOS, been to the meetup and DevCamp, and have created 2 homebrews and co-wrote Net2Streams app.
Now I have joined the human interface team at Palm, inc. It&#8217;s awesome I can work with a shiny new toys (Pre and Pixi), also I [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://girliemac.com/blog/wp-content/uploads/2009/12/palm-logo.jpg" alt="Palm logo"  align="right" /><br />
Since the last CES announcement, I have been pretty excited to learn about Palm&#8217;s WebOS, been to the meetup and DevCamp, and have created 2 homebrews and co-wrote Net2Streams app.</p>
<p>Now I have joined the human interface team at Palm, inc. It&#8217;s awesome I can work with a shiny new toys (Pre and Pixi), also I am happy to keep working on WebKit!<br />
(Plus, it&#8217;s cool I constantly bump into my ex-colleagues and friends from Yahoo! in the area!)</p>
]]></content:encoded>
			<wfw:commentRss>http://girliemac.com/blog/2009/12/09/hello-palm-i-am-back-to-sunnyvale/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>iPhone Cocoa App development with JavaScript</title>
		<link>http://girliemac.com/blog/2009/12/05/iphone-cocoa-app-development-with-javascript/</link>
		<comments>http://girliemac.com/blog/2009/12/05/iphone-cocoa-app-development-with-javascript/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 22:01:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[App]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[SDK]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://girliemac.com/blog/?p=114</guid>
		<description><![CDATA[Hello, I have neglected my blog since September although there have been some blog-worthy events like N900 meetup (plus Droid experience and new Fennec demo. See the videos by Tnkgrl from the link!), California Data Camp, release of Net2Streams Pro (the streaming radio app for Palm WebOS I helped writing) etc&#8230; Well, I keep microblogging [...]]]></description>
			<content:encoded><![CDATA[<p>Hello, I have neglected my blog since September although there have been some blog-worthy events like <a href="http://tnkgrl.wordpress.com/2009/11/01/nokia-n900-meetup/" targtet="_blank">N900 meetup</a> (plus Droid experience and new Fennec demo. See the videos by Tnkgrl from the link!), California Data Camp, release of <a href="http://www.net2streams.net/" target="_blank">Net2Streams Pro</a> (the streaming radio app for Palm WebOS I helped writing) etc&#8230; Well, I keep microblogging on Twitter almost daily basis so <a href="http://twitter.com/girlie_mac" target="_blank">follow me</a> if you&#8217;d like!</p>
<p>One of the interesting I have been independently doing is that writing an app for iPhone with JavaScript, and this time, not an web app but a &#8220;native&#8221; Cocoa app. Yes I said a native iPhone app in JavaScript! But how? -I used this excellent open-source platform, called <strong>Titanium</strong> by <a href="http://www.appcelerator.com/" target="_blank">Appcelerator</a>! Without bothering Obj.C or Java, Titanium allows developers to write iPhone and Android apps with the familiar web technology.</></p>
<p>So, as a test run, I have created the iCuteoverload app for iPhone again. (Originally, I made the web app for iPhone, using <a href="http://code.google.com/p/iui/" target="_blank">iUI</a> in 2007)<br />
I will not release this app on AppStore -not because of the technical issue but the agreement with the business decision. (Yes, this app contents are not mine and copyrighted!) But I should be able to show the video capture as a demo to tell you what Titanium can do for web devs like me!</p>
<div align="center">
<object width="245" height="503"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7231908&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff0179&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7231908&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff0179&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="245" height="503"></embed></object>
</div>
]]></content:encoded>
			<wfw:commentRss>http://girliemac.com/blog/2009/12/05/iphone-cocoa-app-development-with-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Classification of Mobile Browsers</title>
		<link>http://girliemac.com/blog/2009/09/22/classification-of-mobile-browsers/</link>
		<comments>http://girliemac.com/blog/2009/09/22/classification-of-mobile-browsers/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 03:00:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Palm]]></category>
		<category><![CDATA[WAP]]></category>
		<category><![CDATA[WebKit]]></category>
		<category><![CDATA[WinMo]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://girliemac.com/blog/?p=93</guid>
		<description><![CDATA[Today, I am not going to post some CSS3 tricks on Webkit, or stuff like that. Instead, I post a list mobile browsers, since I am often asked about mobile / WAP browsers by engineers, product managers, and mobile-curious or mobile-newbie people.
I gathered 30+ major browsers I have worked with (plus a few I have [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I am not going to post some CSS3 tricks on Webkit, or stuff like that. Instead, I post a list mobile browsers, since I am often asked about mobile / WAP browsers by engineers, product managers, and mobile-curious or mobile-newbie people.
<p>I gathered 30+ major browsers I have worked with (plus a few I have never even seen), and categorize by the markup that browsers can render &#8211; WML, CHTML, XHTML-MP, and HTML4.</p>
<p>So, here you go. If you find some mistakes, let me know!</p>
<style type="text/css">
			#mobile-browsers table {width: 500px; margin-bottom: 1em; border-right: 1px solid #999;border-bottom: 1px solid #999;}
			#mobile-browsers table tr td,
			#mobile-browsers table tr th {margin: 0; padding: 3px; border-left: 1px solid #999;}
			#mobile-browsers table tr.first td {border-top: 1px solid #999;}
		</style>
<div id="mobile-browsers">
<table>
<tr style="background-color:#ebb06a;">
<th colspan="2">WML Browsers (WAP 1.x)</th>
</tr>
<tr>
<td width="40%">Openwave earliy browsers 4.x </td>
<td>&nbsp;</td>
</tr>
<tr class="first">
<td>Early Nokia browser</td>
<td>&nbsp;</td>
</tr>
<tr class="first">
<td>Early Obigo browser</td>
<td>&nbsp;</td>
</tr>
</table>
<table>
<tr style="background-color:#bbda78;">
<th colspan="2">CHTML Browsers (Common in Japan)</th>
</tr>
<tr>
<td width="40%" rowspan="2">CHTML browsers</td>
<td>Compact-HTML browsers</td>
</tr>
<tr>
<td>Compact NetFront</td>
</tr>
<tr class="first">
<td>i-mode browsers (CHTML / XHTML) </td>
<td>NTT Docomo</td>
</tr>
</table>
<table>
<tr style="background-color:#f2a1d3">
<th colspan="2">XHTML Browsers (WAP 2.x &#8211; XHTML-MP / WML)</th>
</tr>
<tr>
<td rowspan="2" width="40%">WebKit</td>
<td>Nokia S40</td>
</tr>
<tr>
<td>Nokia S60 &#8211; earlier versions, or &#8220;Services&#8221; browser</td>
</tr>
<tr class="first">
<td rowspan="2">NetFront by Access</td>
<td>Palm Blazer 3.x -</td>
</tr>
<tr>
<td>Sony Ericsson WAP browser</td>
</tr>
<tr class="first">
<td>Blazer by Handspring</td>
<td>original browsers before accured by Palm</td>
</tr>
<tr class="first">
<td rowspan="5">Openwave 6.x</td>
<td>Siemens</td>
</tr>
<tr>
<td>Sharp</td>
</tr>
<tr>
<td>Sanyo</td>
</tr>
<tr>
<td>Motorola</td>
</tr>
<tr>
<td>Toshiba</td>
</tr>
<tr class="first">
<td>Blackberry by RIM</td>
<td>Blackberry browser- earlier version ~4.3? (<a href="http://docs.blackberry.com/en/developers/subcategories/?userType=21&#038;category=BlackBerry+Browser" target="_blank">*</a>)</td>
</tr>
<tr class="first">
<td>Obigo by Teleca</td>
<td></td>
</tr>
<tr class="first">
<td>Polaris by InfraWare</td>
<td></td>
</tr>
<tr class="first">
<td>Helio</td>
<td></td>
</tr>
<tr class="first">
<td>Motorola MIB</td>
<td></td>
</tr>
</table>
<table>
<tr style="background-color:#91e0f1;">
<th colspan="2">HTML Browsers</th>
</tr>
<tr>
<td width="40%" rowspan="7">WebKit</td>
<td>Nokia S60 3rd gen., &#8220;Web&#8221; Mini-map browser</td>
</tr>
<tr>
<td>Apple Mobile Safari</td>
</tr>
<tr>
<td>Google Android </td>
</tr>
<tr>
<td>Palm WebOS </td>
</tr>
<tr>
<td>Iris, by Torch Mobile (now RIM)</td>
</tr>
<tr>
<td>Bitstream Bolt (Proxy)</td>
</tr>
<tr>
<td>MOTOMAGX (Motorola Linux devices)</td>
</tr>
<tr class="first">
<td rowspan="4">Gecko</td>
<td>Mozilla Minimo (dead?)</td>
</tr>
<tr>
<td>Mozilla Fennec</td>
</tr>
<tr>
<td>Maemo (aka MicroB)</td>
</tr>
<tr>
<td>Skyfire</td>
</tr>
<tr class="first">
<td rowspan="4">Opera (proxy)</td>
<td>Opera Mobile</td>
</tr>
<tr>
<td>Opera Mini</td>
</tr>
<tr>
<td>Nintendo DSi</td>
</tr>
<tr>
<td>Nintendo Wii</td>
</tr>
<tr class="first">
<td>Blackberry by RIM</td>
<td>Blackberry browser ver.4.6+ (I am not sure about 4.4 and 4.5)</td>
</tr>
<tr class="first">
<td>Microsoft Internet Explorer (was Microsoft Pocket IE) </td>
<td>(earlier versions do not support CSS?)</td>
</tr>
<tr class="first">
<td rowspan="4">NetFront 3.x ?</td>
<td>Sony Ericsson browsers</td>
</tr>
<tr>
<td>Sony PlayStation / PSP browsers</td>
</tr>
<tr>
<td>Palm Blazer 4.x</td>
</tr>
<tr>
<td>Amazon Kindle</td>
</tr>
<tr class="first">
<td>Teleca</td>
<td>Teleca Browser V3.x ? (LG Voyager)</td>
</tr>
<tr class="first">
<td>Danger (now by Microsoft)</td>
<td>Sidekick</td>
</tr>
</table></div>
<p>I have categorized only with the markup type, and did not sub-categorize these browsers. However, if I would, I may want to grade XHTML-MP devices with page memory size (=&#8221;deck size&#8221;, yes I said deck size), and screen resolution for UI design purpose. </p>
<p>To grade full-HTML browsers, you need to spend massive time and effort on testing rendering capability with CSS, and Javascript DOM compatibility, events, etc.  Actually, PPK  has done excellent work on mobile browser testing, so you can simply visit <a href="http://www.quirksmode.org/m/" target="_blank">Quirksmode.org</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://girliemac.com/blog/2009/09/22/classification-of-mobile-browsers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Webkit CSS 3D + Local DB Demo</title>
		<link>http://girliemac.com/blog/2009/09/03/webkit-css-3d-local-db-demo/</link>
		<comments>http://girliemac.com/blog/2009/09/03/webkit-css-3d-local-db-demo/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 06:37:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[Sandbox]]></category>
		<category><![CDATA[WebKit]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://girliemac.com/blog/2009/09/03/webkit-css-3d-local-db-demo/</guid>
		<description><![CDATA[
Ever since I heard of Snow Loepard&#8217;s hardware-accelerated CSS, I wanted try some cool CSS animation for Safari 4.
So after installing Snow Leopard, I spent about a day and half to try creating my first 3D animation with Flickr API.
Honestly, I wasn&#8217;t sure where to get started to make some cool 3D effect, so what [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://girliemac.com/blog/wp-content/images/css3d.jpg" alt="css 3D screenshot"/></p>
<p>Ever since I heard of Snow Loepard&#8217;s hardware-accelerated CSS, I wanted try some cool CSS animation for Safari 4.</p>
<p>So after installing Snow Leopard, I spent about a day and half to try creating my first 3D animation with Flickr API.<br />
Honestly, I wasn&#8217;t sure where to get started to make some cool 3D effect, so what I did was I tried to reproduce the one on webkit.org example and modify a lot by trial and error approach.<br />
Also, I have been freqently asked about how I did with &#8220;My Favorites&#8221; feature on <a href="http://girliemac.com/blog/2009/08/29/pretty-cute-suite-another-cute-app-for-pre-from-me/">my Palm Pre app</a> (which is also a WebKit-based), so I throw the HTML5&#8217;s local storage demo with this 3D demo.
</p>
<p>So here, you can try my <a href="http://girliemac.com/sandbox/flickr_3d.html" target="_blank">CSS 3D and Local DB Demo</a>!!!<br />
Be sure to view this demo on Safari 4, iPhone Safari, or WebKit Nightly! This doesn;t seem to work on other Webkit-based browsers such as Chrome and Palm.
</p>
<p>I am not going to write a whole tutorial how to replicate this animation but I try to explain some examples.</p>
<h3>Spin a Wheel!</h3>
<p>Look at one of the flicke photo wheel on my demo. This is a combination of a few different animation.<br />
Let&#8217;s focus on the small wheel inside. This is the snippet of HTML of the wheel:</p>
<pre class="html">
<code>

&lt;div id="gallery"&gt;
  &lt;div id="pic01"&gt;&lt;img src="..."/&gt;&lt;/div&gt;
  &lt;div id="pic02"&gt;&lt;img src="..."/&gt;&lt;/div&gt;
  ... (10 more imgs)
&lt;/div&gt;	

</code>
</pre>
<p><img src="http://girliemac.com/blog/wp-content/images/coordinate.png" alt="3D Cood" align="left"/><br />
OK, for now, let&#8217;s ignore how each photo is rendered to form a loop, and just focus on the animation of one div, #gallery (= a wheel). A band of photos is ratating clockwise around Y-axis.<br />
This means the animation starts as <code>-webkit-transform: rotateY(0);</code> and goes around an circle for a whole 360 degree. <code> -webkit-transform: rotateY(-360deg);</code>.<br />
Use positive if you want to rotate in opposite direction.<br />
I set the whole circle completion span as 60 seconds in linier motion and the animation goes infinite. </p>
<p>This diagram from <a href="http://developer.apple.com/safari/library/documentation/InternetWeb/Conceptual/SafariVisualEffectsProgGuide/Transforms/Transforms.html" target="_blank">Apple&#8217;s Safari Reference Library</a> explains coordinates.</p>
<p>So the css for this movement is defined as:</p>
<pre class="css">
<code>
#gallery {
  -webkit-transform-style: preserve-3d;
  -webkit-animation: spinY 60s linear infinite;
}
</code>
</pre>
<pre class="css">
<code>
@-webkit-keyframes spinY {
  from { -webkit-transform: rotateY(0);}
  to   { -webkit-transform: rotateY(-360deg);}
}
</code>
</pre>
<p>Use 3D style, <code>-webkit-transform-style: preserve-3d;</code>to give 3D illusion. I set the initial perspective in its parent div as <code>-webkit-perspective: 380;</code>.<br />
It gives you an illusion of the depth. You can make the value lower to make it look more up-close to you.<br />
The unit of perspective should be &#8220;px&#8221;, but it looks like you&#8217;d better remove it for iPhone.</p>
<p><img src="http://girliemac.com/blog/wp-content/images/css3d_pers200.png" alt="perspective 200"/> <img src="http://girliemac.com/blog/wp-content/images/css3d_pers400.png" alt="perspective 400"/><br />
<img src="http://girliemac.com/blog/wp-content/images/css3d_pers500.png" alt="perspective 500"/> <img src="http://girliemac.com/blog/wp-content/images/css3d_pers0.png" alt="perspective 0"/></p>
<p>To figure out how to render each photo in loop, also other animations, please look at the source code of my demo.</p>
<p>Also, I will write about how to use HTML 5&#8217;s local storage sometimes later!</p>
<h3>References</h3>
<ul>
<li><a href="http://webkit.org/blog/386/3d-transforms/" target="_blank">3D Transforms</a> by Webkit.org</li>
<li><a href="http://webkit.org/blog/130/css-transforms/" target="_blank">CSS Transforms (2D)</a> by Webkit.org</li>
<li><a href="http://webkit.org/blog/138/css-animation/" target="_blank">CSS Animation</a> by Webkit.org</li>
<li><a href="http://www.w3.org/TR/css3-3d-transforms/" target="_blank">CSS 3D Transforms Module Level 3</a> W3C Working Draft</li>
<li><a href="http://developer.apple.com/safari/library/documentation/InternetWeb/Conceptual/SafariVisualEffectsProgGuide/Transforms/Transforms.html" target="_blank">Safari Reference Library -Transforms</a> by Apple</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://girliemac.com/blog/2009/09/03/webkit-css-3d-local-db-demo/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>PREtty Cute Suite -Another Cute app for Pre from me!</title>
		<link>http://girliemac.com/blog/2009/08/29/pretty-cute-suite-another-cute-app-for-pre-from-me/</link>
		<comments>http://girliemac.com/blog/2009/08/29/pretty-cute-suite-another-cute-app-for-pre-from-me/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 05:13:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[App]]></category>
		<category><![CDATA[GirlieMac! News]]></category>
		<category><![CDATA[Palm]]></category>
		<category><![CDATA[WebKit]]></category>

		<guid isPermaLink="false">http://girliemac.com/blog/2009/08/29/pretty-cute-suite-another-cute-app-for-pre-from-me/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344" align="center><param name="movie" value="http://www.youtube.com/v/kI8PJEBrkkA&#038;hl=en&#038;fs=1&#038;color1=0xcc2550&#038;color2=0xe87a9f"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/kI8PJEBrkkA&#038;hl=en&#038;fs=1&#038;color1=0xcc2550&#038;color2=0xe87a9f" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Can&#8217;t have enough cute!<br />
Instead of upgrading my previous app, iCuteOverload for Palm, I have created this power-up version of cute app called, PREtty Cute Suite. </p>
<p>This app is more offensively and obnoxiously cute with more cute-related rss feed and flickr pics.<br />
Included feeds are:</p>
<ol>
<li>Cute Overload</li>
<li>I Can Has Cheezburger</li>
<li>Cute Obssesion</li>
<li>Epicute</li>
<li>Super Cute Kawaii</li>
<li>Cupcakes Take Tha Cake</li>
</ol>
<p>Also, a bunch of cute picture streams from Flickr.<br />
<br/><br />
This app allows you to save the pix/feeds you like as your favorites, also share the links via email.</p>
<p>Currently available as a &#8220;Homebew&#8221; app on <a href="http://www.precentral.net/homebrew-apps/pretty-cute-suite" target="_blank">PreCentral.net</a> for free.<br />
I have no plan to submit this to the Palm official app store in this moment, at least for this version 0.9.</p>
]]></content:encoded>
			<wfw:commentRss>http://girliemac.com/blog/2009/08/29/pretty-cute-suite-another-cute-app-for-pre-from-me/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
