<?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/"
	>

<channel>
	<title>Songinwind Blog</title>
	<atom:link href="http://www.songinwind.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.songinwind.com/blog</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Tue, 26 Jan 2010 21:57:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>man&#8217;s portrait</title>
		<link>http://www.songinwind.com/blog/design-art/mans-portrait</link>
		<comments>http://www.songinwind.com/blog/design-art/mans-portrait#comments</comments>
		<pubDate>Tue, 26 Jan 2010 17:11:42 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
		
		<category><![CDATA[design & art]]></category>

		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://www.songinwind.com/blog/?p=310</guid>
		<description><![CDATA[
sketching, pencil and charcoal
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-311" title="sketching_man_180" src="http://www.songinwind.com/blog/wp-content/uploads/2009/06/sketching_man_180.jpg" alt="sketching_man_180" width="180" height="239" /></p>
<p>sketching, pencil and charcoal</p>
]]></content:encoded>
			<wfw:commentRss>http://www.songinwind.com/blog/design-art/mans-portrait/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to apply mobile CSS to smart phone devices</title>
		<link>http://www.songinwind.com/blog/trends/how-to-apply-mobile-css-to-smart-phone-devices</link>
		<comments>http://www.songinwind.com/blog/trends/how-to-apply-mobile-css-to-smart-phone-devices#comments</comments>
		<pubDate>Thu, 10 Dec 2009 01:59:29 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
		
		<category><![CDATA[coding front-end]]></category>

		<category><![CDATA[trends]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[mobile]]></category>

		<category><![CDATA[trick]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.songinwind.com/blog/?p=529</guid>
		<description><![CDATA[When I am talking about mobile css, I am looking for safari in iphone, blackberry default browser and this new born but the mobile browser for majority to be - opera mini. These days, in spite of the fact that the third generation phones - smart phones have made the majority share of cell phone [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-530" style="float: left; padding-right: 10px;" title="screenshot1" src="http://www.songinwind.com/blog/wp-content/uploads/2009/12/screenshot1-152x300.png" alt="screenshot1" width="152" height="300" />When I am talking about mobile css, I am looking for safari in iphone, blackberry default browser and this new born but the mobile browser for majority to be - opera mini. These days, in spite of the fact that the third generation phones - smart phones have made the majority share of cell phone market in US, unfortunately the mobile web hasn&#8217;t come to a universal standard that we can apply like we do to those modern computer browsers.  As a result, when designing a website for mobile, it usually takes more effort to find a solution to browser compatibility and accessibility. And funnily, most smart phones don&#8217;t consider themselves as handheld device, thus this &#8220;handheld&#8221; media for CSS doesn&#8217;t work for them:</p>
<p><strong>&lt;link media=&#8221;handheld&#8221; href=&#8221;mobile.css&#8221; type=&#8221;text/css&#8221; rel=&#8221;stylesheet&#8221; /&gt;</strong></p>
<p><strong><br />
</strong></p>
<p><span style="font-size: 1.2em; text-decoration: underline;"><strong>First of all, iphone and its default browser Safari. </strong></span></p>
<p>Yes, iphone made everything easy for everyone, not just consumers but also iphone application developer as well as web designers <img src='http://www.songinwind.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> So this approach is rather simple comparing to all other smart phone devices.</p>
<p><strong>&lt;link media=&#8221;only screen and (max-device-width: 480px)&#8221; href=&#8221;mobile.css&#8221; type=&#8221;text/css&#8221; rel=&#8221;stylesheet&#8221; /&gt;<br />
</strong><br />
In order to include all other devices which consider themselves as handheld, we tweak this line to be more general:</p>
<p><strong>&lt;link media=&#8221;handheld, only screen and (max-device-width: 480px)&#8221; href=&#8221;mobile.css&#8221; type=&#8221;text/css&#8221; rel=&#8221;stylesheet&#8221; /&gt;</strong></p>
<p>To be even safer, there are times, the device width is 320 pixel or less. So here we are:</p>
<p><strong>&lt;link media=&#8221;handheld, only screen and (max-device-width: 320px)&#8221; href=&#8221;mobile.css&#8221; type=&#8221;text/css&#8221; rel=&#8221;stylesheet&#8221; /&gt;<br />
&lt;link media=&#8221;only screen and (max-device-width: 480px)&#8221; href=&#8221;mobile.css&#8221; type=&#8221;text/css&#8221; rel=&#8221;stylesheet&#8221; /&gt;<br />
</strong><br />
Everything works perfectly well with these two lines, except when you come to W3C CSS validator. Yes, W3C doesn&#8217;t recognize the mobile style lines, and it doesn&#8217;t let them pass through validation. And there is really nothing you can do about it. for more info, you can see some discussion here: <a href="http://csscreator.com/node/28171">http://csscreator.com/node/28171</a></p>
<p><span style="font-size: 1.2em; text-decoration: underline;"><strong>Blackberry and its default browser.</strong></span></p>
<p>Blackberry doesn&#8217;t pickup any mobile style sheet no matter what media you set to it, not handheld, not width 480px or 320px. There is only one way to give blackberry a mobile looking page - using javascript and direct the page to a blackberry. Below is the script that works. I also tried to apply some mobile style sheet without directing the page to another, but unfortunately didn&#8217;t work. more details hereinafter:<br />
<strong><br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
var deviceBB = &#8220;blackberry&#8221;;</strong></p>
<p><strong>//Initialize our user agent string to lower case.<br />
var uagent = navigator.userAgent.toLowerCase();<br />
var cssFile = &#8220;mobile.css&#8221;;<br />
//**************************<br />
// Detects if the current browser is a BlackBerry of some sort.</strong></p>
<p><strong>if (uagent.search(deviceBB) &gt; -1) {<br />
//document.getElementById(&#8217;blackb&#8217;).href = &#8216;mobile.css&#8217;; // this doesn&#8217;t work<br />
window.location = &#8216;home_bb.html&#8217;;</strong></p>
<p><strong>//document.write(&#8217;&lt;link href=&#8221;&#8216;+cssFile+&#8217;&#8221; type=&#8221;text/css&#8221; rel=&#8221;stylesheet&#8221;&gt;); //this doesn&#8217;t work either</strong></p>
<p><strong>}<br />
&lt;/script&gt;</strong></p>
<p><span style="font-size: 1.2em; text-decoration: underline;"><strong>Opera Mini</strong></span></p>
<p>It&#8217;s a cool mobile browser, which works well with most smart phones - blackberry, iphone, treo palm, etc. To display your mobile CSS on this browser, all you need is still the two lines:<br />
<strong>&lt;link media=&#8221;handheld, only screen and (max-device-width: 320px)&#8221; href=&#8221;mobile.css&#8221; type=&#8221;text/css&#8221; rel=&#8221;stylesheet&#8221; /&gt;<br />
&lt;link media=&#8221;only screen and (max-device-width: 480px)&#8221; href=&#8221;mobile.css&#8221; type=&#8221;text/css&#8221; rel=&#8221;stylesheet&#8221; /&gt;<br />
</strong><br />
There is this Opera Mini simulator <a title="opera mini simulator" href="http://www.opera.com/mini/demo/" target="_blank">http://www.opera.com/mini/demo/</a>, which makes it possible to test your mobile styles without a mobile phone, however, it only gives you FALSE result. So don&#8217;t use it for testing. Install it to your mobile phone and do the real test from there!</p>
<p>Issues you see in real mobile phones but not in simulator:<br />
Opera Mini doesn&#8217;t pick up the font size setting in css. Here is the sentence I got from wikipedia:  Opera Mini supports only one font, which can be set to &#8220;Small&#8221;, &#8220;Medium&#8221;, &#8220;Large&#8221;, or &#8220;Extra large&#8221; size.<br />
<a title="opera mini in Wikipedia" href=" http://en.wikipedia.org/wiki/Opera_Mini"><br />
http://en.wikipedia.org/wiki/Opera_Mini</a></p>
<p>The default setting of font size in mobile phone is &#8220;medium&#8221;. Be aware of this issue when you design the mobile styles, if you are targeting Opera Mini as your mobile browser - use one font size - medium for all text and let it fit in the page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.songinwind.com/blog/trends/how-to-apply-mobile-css-to-smart-phone-devices/feed</wfw:commentRss>
		</item>
		<item>
		<title>UI14 playback 2 - Why Amazon&#8217;s so successful</title>
		<link>http://www.songinwind.com/blog/design-art/ui14-playback-2-why-amazons-so-successful</link>
		<comments>http://www.songinwind.com/blog/design-art/ui14-playback-2-why-amazons-so-successful#comments</comments>
		<pubDate>Sat, 14 Nov 2009 08:06:53 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
		
		<category><![CDATA[design & art]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[ui14]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.songinwind.com/blog/?p=522</guid>
		<description><![CDATA[Jared Spool is indeed a user experience expert with knowledgeable and in-depth insight of consumer oriented industry and web design. In this impressively interesting featured talked, he revealed those hidden secrets in Amazon that made it so successful. It all started from the amazing reviews of this currently available Tuscan Whole Milk, 1 Gallon, 128 [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-523" style="float: left; padding-right: 10px;" title="amazon" src="http://www.songinwind.com/blog/wp-content/uploads/2009/11/amazon.gif" alt="amazon" width="159" height="35" />Jared Spool is indeed a user experience expert with knowledgeable and in-depth insight of consumer oriented industry and web design. In this impressively interesting featured talked, he revealed those hidden secrets in Amazon that made it so successful. It all started from the amazing reviews of this currently available <a href="http://www.amazon.com/gp/product/B00032G1S0/ref=s9_simz_gw_s0_p325_i1?pf_rd_m=ATVPDKIKX0DER&amp;pf_rd_s=center-2&amp;pf_rd_r=1V5N8G2P57WZKTD4HAXR&amp;pf_rd_t=101&amp;pf_rd_p=470938631&amp;pf_rd_i=507846">Tuscan Whole Milk, 1 Gallon, 128 fl oz</a>. Take a look at the reviews at the bottom of this product, which is even not available now. You will feel it&#8217;s so amazing that so many people are just sticky, addicted and constantly contributing to Amazon. Here is some data to show how attractive this website is: The number of visitors in December 2008 is 71,431,000, rank of all website in traffic is 8; Revenue in 2008 is $19,166,000,000, which is 29% increase over 2007. So why is that? Here are some highlights of the Jared Spool&#8217;s talk:</p>
<ul>
<li>Engage your users by delivering great content
<ul>
<li>User commentary enhances the experience</li>
<li>Putting in a system to “bubble up” the most interesting or useful<br />
content can dramatically improve the experience</li>
<li>Only a small percentage of visitors will participate</li>
</ul>
</li>
<li>Don’t fear trying out new ideas</li>
<li>Eliminate tool time while delivering confidence <em>(Goal time vs. Tool time - Goal time: When the user is improving the outcome of the experience; Tool Time: When the user is moving forward without any improvement in the outcome of the experience)</em></li>
<li>Never forget the business</li>
<li>Caution is warranted
<ul>
<li>Be careful when emulating features</li>
<li>Some experiments don’t pan out</li>
<li>Not all use cases are equal</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.songinwind.com/blog/design-art/ui14-playback-2-why-amazons-so-successful/feed</wfw:commentRss>
		</item>
		<item>
		<title>Another trick of CSS for printing in FF</title>
		<link>http://www.songinwind.com/blog/front-end-coding/another-trick-of-css-for-printing-in-ff</link>
		<comments>http://www.songinwind.com/blog/front-end-coding/another-trick-of-css-for-printing-in-ff#comments</comments>
		<pubDate>Fri, 13 Nov 2009 01:19:25 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
		
		<category><![CDATA[coding front-end]]></category>

		<category><![CDATA[bug]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[firefox3.5]]></category>

		<category><![CDATA[trick]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.songinwind.com/blog/?p=509</guid>
		<description><![CDATA[Working on a printing CSS today, and I found when I tried to print or print preview the page in FF, it only prints/shows the first page, the rest are just blank. This issue only exists in FF browser, all others (IE6-8, Safari) are just fine. So what causes the problem and what&#8217;s the solution?
All [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-510 pngimg" style="float: left;" title="firefoxbug" src="http://www.songinwind.com/blog/wp-content/uploads/2009/11/firefoxbug.png" alt="firefoxbug" width="180" height="150" />Working on a printing CSS today, and I found when I tried to print or print preview the page in FF, it only prints/shows the first page, the rest are just blank. This issue only exists in FF browser, all others (IE6-8, Safari) are just fine. So what causes the problem and what&#8217;s the solution?</p>
<p>All because of this: <strong>overflow: hidden</strong><br />
As soon as I removed it, the print preview is good. However, this overflow:hidden is there for a reason, if you remove it, you have to work on the overflow issues. So printing or overfow? you gotta choose one, or if you are flexibile enough, work around the content to prevent it from being overflown.</p>
<p>Well, Firefox also has bugs&#8230; it&#8217;s the hard cold fact, so deal with it <img src='http://www.songinwind.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Many reports about this issue in FF suport:</p>
<p><a href="http://support.mozilla.com/tiki-view_forum_thread.php?locale=de&amp;comments_parentId=468968&amp;forumId=1">report 1,  report 2, </a><a href="http://support.mozilla.com/tiki-view_forum_thread.php?forumId=1&amp;comments_parentId=2549">report 3</a>, look at the comments down there, they are really helpful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.songinwind.com/blog/front-end-coding/another-trick-of-css-for-printing-in-ff/feed</wfw:commentRss>
		</item>
		<item>
		<title>UI14 playback 1 - sketchboards, new technique for creative ideas</title>
		<link>http://www.songinwind.com/blog/design-art/ui14-playback-1-sketchboards-new-technique-for-creative-ideas</link>
		<comments>http://www.songinwind.com/blog/design-art/ui14-playback-1-sketchboards-new-technique-for-creative-ideas#comments</comments>
		<pubDate>Sun, 08 Nov 2009 08:25:18 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
		
		<category><![CDATA[design & art]]></category>

		<category><![CDATA[sketch]]></category>

		<category><![CDATA[ui14]]></category>

		<guid isPermaLink="false">http://www.songinwind.com/blog/?p=499</guid>
		<description><![CDATA[
User Interface conference is a widely recognized conference organized by UIE Jared Spool once every year. It covers the biggest issues in the world of design, gives workshops, seminars in the perspective of usability, user testing, information architecture, persona, etc.
New technique for creative ideas is a full day workshop by Leah Buley, an experience designer [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-500" style="float: left; padding-right: 10px;" title="picture-4" src="http://www.songinwind.com/blog/wp-content/uploads/2009/11/picture-4-150x150.png" alt="picture-4" width="150" height="150" /></p>
<p><strong><a title="UI14" href="http://www.uie.com/events/uiconf/2009/" target="_blank">User Interface conference</a> is a widely recognized conference organized by <a title="UIE" href="http://www.uie.com/" target="_blank">UIE Jared Spool</a> once every year. It covers the biggest issues in the world of design, gives workshops, seminars in the perspective of usability, user testing, information architecture, persona, etc.</strong></p>
<p><strong>New technique for creative ideas</strong> is a full day workshop by Leah Buley, an experience designer in <a title="adaptive path" href="http://www.adaptivepath.com" target="_blank">Adaptive Path</a>. The workshop used an interactive way to gave us a full new perspective to fast design creating, sharing and exploring.</p>
<p>So here comes this great practice of sketchboards, which fixes the wrongs in wireframes.</p>
<p><strong>Sketchboards</strong><br />
• Avoids unnecessary detail (so you don!t waste time documenting what you haven&#8217;t yet decided on)<br />
• Reveals the best of multiple solutions (so you can be sure that you!re moving forward with the right design, not just the first design that comes to mind)<br />
• Gets everyone!s input and buy-in (so the design can move forward with many supporters)</p>
<p><strong>3 Types of Sketch:</strong><br />
- Icons and symbols add another level of meaning to text - they’re like visual summaries, or bullet points.<br />
- Environment sketches give context to an idea by showing the user’s perspective - bringing in real people to your sketches can be a powerful orienting tool.<br />
- Interaction sketches. They let you figure out how your idea works on the page, and then communicate that to other people.</p>
<p><strong>sketching tools/supplies:</strong><br />
1-up and 6-up template, highlighter, sharpie markers - fat, regular and small, grey marker, sticky notes, scissors, tapes, etc.</p>
<p><strong>Phases of sketching:</strong><br />
- ideation: e.g. coming up with lots of ideas<br />
- big picture thinking: e.g. how to structure sketchboards<br />
- collaborative critique: how to get the group to say the hard stuff</p>
<p><strong>Case study</strong> - Sweet Potato, a dinning, cooking, diet iphone application oriented to healthy life</p>
<p>There are a number of products and web sites that cover aspects of what Sweet Potato<br />
will cover. The Daily Plate from Livestrong helps you see the nutritive value of what you!re eating. But compared to the savory, life affirming experience of eating a nutritious meal, counting calories with the Daily Plate seems boring. We want to design a product that feels like more than just a calorie counter.<br />
<img class="alignleft size-large wp-image-502" style="float: left; padding-right: 10px;" title="dsc075611" src="http://www.songinwind.com/blog/wp-content/uploads/2009/11/dsc075611-1024x487.jpg" alt="dsc075611" width="453" height="211" /><img class="alignleft size-medium wp-image-503" title="dsc07558" src="http://www.songinwind.com/blog/wp-content/uploads/2009/11/dsc07558-251x300.jpg" alt="dsc07558" width="174" height="209" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.songinwind.com/blog/design-art/ui14-playback-1-sketchboards-new-technique-for-creative-ideas/feed</wfw:commentRss>
		</item>
		<item>
		<title>a little tool to keep multiple developers on the same page</title>
		<link>http://www.songinwind.com/blog/backend/a-little-tool-to-keep-multiple-developers-on-the-same-page</link>
		<comments>http://www.songinwind.com/blog/backend/a-little-tool-to-keep-multiple-developers-on-the-same-page#comments</comments>
		<pubDate>Fri, 02 Oct 2009 18:24:38 +0000</pubDate>
		<dc:creator>William</dc:creator>
		
		<category><![CDATA[backend]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://www.songinwind.com/blog/?p=497</guid>
		<description><![CDATA[When you have a few developers working on the same site, you can easilyget into a very frustrating situation of they overwrite each other&#8217;s changes and the site keeps getting broken back and forth. This happens when, say, one developer puts in a fix, he releases the fix (some files) to the site, then later [...]]]></description>
			<content:encoded><![CDATA[<p>When you have a few developers working on the same site, you can easilyget into a very frustrating situation of they overwrite each other&#8217;s changes and the site keeps getting broken back and forth. This happens when, say, one developer puts in a fix, he releases the fix (some files) to the site, then later on, another developer who&#8217;s working on some other feature or fixes that release his files, and some of the files overlaps with the ones released by previous developers.</p>
<p>Now you can argue that you should use some sort of version control system(VCS) like svn, git, etc and implement some release process. But if you are talking about hetergenous developer profiles and experiences, not everyone uses VCS, and if you just have less than a handful of developers, you might not want to add too much overhead of implementing some kind of release process, which requires some training and authority of implementing it &#8212; and you might not have either.</p>
<p>So a much simpler approach would be just make sure before anyone puts code out there on the live site, make a diff between what&#8217;s on the live site code base and what you are going to push. If there is any diff that&#8217;s not from you (therefore from someone else), you need to merge that fix, or otherwise you unfix what the other developer fixes, or worse, breaks the site.</p>
<p>Now there is still one problem, you change might be big enough, and the other developer&#8217;s change might be just one line or two, so when you do a diff, you might very well miss the other developer&#8217;s change. So here&#8217;s an idea, I would set up a cron job on the webserver, and finds all the files that are modified in the last 24 hours (or whatever interval you like), and email the file list to the developers once a day. And the developer can also run this little command right before he pushes code, so that if he sees some files he&#8217;s going to push out is already in the last modified list (from the command), he will be extra careful, and make sure to resolve all the difference.</p>
<p>The command is rather simple:</p>
<p><strong> cd /path/to/webroot; find . -mtime 1 -print | mail -s &#8220;files modified in last 24 hours&#8221; developer1@mysite.com developer2@mysite.com</strong></p>
<p>Sometimes there are some cache files that keeps changing but irrelevant to the site codebase, you can just use &#8220;grep -v&#8221; to filter out those files, for example:</p>
<p>cd /path/to/webroot; find . -mtime 1 -print | <strong>grep -v &#8216;/caches/&#8217;</strong> | mail -s &#8220;files modified in last 24 hours&#8221; developer1@mysite.com developer2@mysite.com</p>
<p>this will filter out any files/directories that has &#8216;/caches/&#8217; in its path.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.songinwind.com/blog/backend/a-little-tool-to-keep-multiple-developers-on-the-same-page/feed</wfw:commentRss>
		</item>
		<item>
		<title>Firefox 3.5 and some interesting articles about CSS3</title>
		<link>http://www.songinwind.com/blog/trends/firefox-35-and-some-interesting-articles-about-css3</link>
		<comments>http://www.songinwind.com/blog/trends/firefox-35-and-some-interesting-articles-about-css3#comments</comments>
		<pubDate>Fri, 28 Aug 2009 20:55:16 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
		
		<category><![CDATA[coding front-end]]></category>

		<category><![CDATA[trends]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[firefox3.5]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.songinwind.com/blog/?p=491</guid>
		<description><![CDATA[Firefox3.5 was released a while ago, yet lazy I just updated my FF today. And the direct reason for that is I read two interesting articles, both talking about some fancy CSS effects to the text - one is about the fancy text gradient/shadow effect, one is about text rotation. Both didn&#8217;t work on my [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-492" style="float: left; padding-right: 10px;" title="ff35" src="http://www.songinwind.com/blog/wp-content/uploads/2009/08/ff35-300x86.jpg" alt="ff35" width="300" height="86" />Firefox3.5 was released a while ago, yet lazy I just updated my FF today. And the direct reason for that is I read two interesting articles, both talking about some fancy CSS effects to the text - <a href="http://nicewebtype.com/notes/2009/07/24/pure-css-text-gradient-no-pngs/" target="_blank">one is about the fancy text gradient/shadow effect</a>, <a href="http://snook.ca/archives/html_and_css/css-text-rotation" target="_blank">one is about text rotation</a>. Both didn&#8217;t work on my FF3.0 or FF2.0. <img src='http://www.songinwind.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>All right, so here we go, FF3.5. How much better is it ? It&#8217;s faster, it displays fonts even more nicely, and most of all - it supports CSS3 and above! well, while enjoying this advanced modern browser, I also noticed a few cons - forcing to update the add-ons: I have had the great add-ons of firebug, colorpicker and measurelt, they were working perfect and I had no intention of changing them. But as soon as I installed the FF3.5, it told me I have to update them otherwise they won&#8217;t be functioning&#8230; anyway, I am not so used to the new interface of firebug yet.</p>
<p>Overall I liked FF from day one. It never lets me down with 2.0, 3.0 and the updated 3.5 version, both as a regular computer/internet user and as a web designer. However, to be a web guy, we need to realize that what we produce is for the mass media, instead of for ourselves. Therefore, the two CSS3 tricks about the text effects are just for fun, but definitely not for real work practice. I am taking notes of those codes, but I would say it&#8217;s for the future only, when the market share of IE (of all versions), FF3.0 and below, Safari 3 and below and Opera 9 and below are all close to 0%. When will that happen? You tell me. <img src='http://www.songinwind.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.songinwind.com/blog/trends/firefox-35-and-some-interesting-articles-about-css3/feed</wfw:commentRss>
		</item>
		<item>
		<title>Frames - text, images and color</title>
		<link>http://www.songinwind.com/blog/design-art/frames-text-images-and-color</link>
		<comments>http://www.songinwind.com/blog/design-art/frames-text-images-and-color#comments</comments>
		<pubDate>Mon, 03 Aug 2009 07:27:45 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
		
		<category><![CDATA[design & art]]></category>

		<category><![CDATA[color]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[graphics]]></category>

		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.songinwind.com/blog/?p=213</guid>
		<description><![CDATA[How can you use text, images, and color together to create a strong visual communication solution?
Text, images and color are the three important elements for graphic design. And they are the tools designers use to create visual communication solutions.
Images are usually used as the element in the first glance.  It can be the part that [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-214" style="float: left; padding-right: 10px;" title="poster" src="http://www.songinwind.com/blog/wp-content/uploads/2009/06/poster-202x300.jpg" alt="poster" width="202" height="300" />How can you use text, images, and color together to create a strong visual communication solution?</p>
<p>Text, images and color are the three important elements for graphic design. And they are the tools designers use to create visual communication solutions.</p>
<p>Images are usually used as the element in the first glance.  It can be the part that creates some interesting and appealing visual effects to attract audiences’ attention.</p>
<p>Text is used to convey direct message of the design work.  Text can create styles as well, by it’s font, position, size etc. When the audiences look further into the work, text will be the elements that he/she is looking for to find the details of the information.  However, when they look into the text, they still have the impression that the image left to them.  They read the text with their expectation from the image.  If the text message is within the expectation, they will read further and further to go through the design and get all the information that the design work want to convey.  However, if text message is off their expectation, they will leave the design work right away.  This tells us that elements in design have to be consistent in style, look and feel to create a clear message to the readers.</p>
<p>Color supports the design to create a style and the consistency principle applies to it as well.  Consistency basically integrates all the elements to create a united design.  Just to remember good visual communication needs the graphic elements strongly group together.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.songinwind.com/blog/design-art/frames-text-images-and-color/feed</wfw:commentRss>
		</item>
		<item>
		<title>A Painting a day - Lighthouse</title>
		<link>http://www.songinwind.com/blog/design-art/lighthouse</link>
		<comments>http://www.songinwind.com/blog/design-art/lighthouse#comments</comments>
		<pubDate>Wed, 22 Jul 2009 13:09:31 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
		
		<category><![CDATA[design & art]]></category>

		<category><![CDATA[fun]]></category>

		<category><![CDATA[painting]]></category>

		<guid isPermaLink="false">http://www.songinwind.com/blog/?p=307</guid>
		<description><![CDATA[
water color painting
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-308" title="wc_lighttower_180" src="http://www.songinwind.com/blog/wp-content/uploads/2009/06/wc_lighttower_180.jpg" alt="wc_lighttower_180" width="180" height="243" /></p>
<p>water color painting</p>
]]></content:encoded>
			<wfw:commentRss>http://www.songinwind.com/blog/design-art/lighthouse/feed</wfw:commentRss>
		</item>
		<item>
		<title>Geogia O&#8217;keeffe and Ansel Adams - Special Exhibition in SFMOMA</title>
		<link>http://www.songinwind.com/blog/design-art/geogia-okeeffe-and-ansel-adams-special-exhibition-in-sfmoma</link>
		<comments>http://www.songinwind.com/blog/design-art/geogia-okeeffe-and-ansel-adams-special-exhibition-in-sfmoma#comments</comments>
		<pubDate>Mon, 06 Jul 2009 07:13:36 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
		
		<category><![CDATA[design & art]]></category>

		<category><![CDATA[painting]]></category>

		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.songinwind.com/blog/?p=476</guid>
		<description><![CDATA[
Geogia O&#8217;keeffe is famous for her vibrant colorful paintings, mostly flowers, landscape, objects in nature&#8230; No one can be untouched when looking at O&#8217;keeffe&#8217;s paintings.  Ansel Adams is a great photographer of the nature and wildness. His black and white phtotos are stunningly powerful to express this artist&#8217;s insight of the nature. Despite the different [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-477" style="float: left; padding-right: 10px;" title="georgia_okeeffe" src="http://www.songinwind.com/blog/wp-content/uploads/2009/07/georgia_okeeffe-300x178.jpg" alt="georgia_okeeffe" width="300" height="178" /><img class="alignleft size-medium wp-image-481" style="clear: right;" title="ansel_adams1" src="http://www.songinwind.com/blog/wp-content/uploads/2009/07/ansel_adams1-300x178.jpg" alt="ansel_adams1" width="300" height="178" /></p>
<p>Geogia O&#8217;keeffe is famous for her vibrant colorful paintings, mostly flowers, landscape, objects in nature&#8230; No one can be untouched when looking at O&#8217;keeffe&#8217;s paintings.  Ansel Adams is a great photographer of the nature and wildness. His black and white phtotos are stunningly powerful to express this artist&#8217;s insight of the nature. Despite the different styles and two unique ways to capture the essense of natural beauty and the 15-year age gap between these two American&#8217;s best-known artists, they developed a lifelong friendship.</p>
<p>The SF MOMA is now having the special exhibition for the art works from the two - <a href="http://www.sfmoma.org/exhibitions/383" target="_blank">Georgia O&#8217;Keeffe and Ansel Adams, Natural Affinities</a>.  It was such an joyful experience for me to be exposed to those precious and inspiring art works. This painter and this photographer have their own distinctive visions of the natural world, yet they share the same admiration to the beauty.</p>
<p>There are also site specific installation and woodcut prints from Ranjani Shettar, an Indian artis; Robert Frank&#8217;s &#8220;The Americans&#8221; photography, that reveals the life of Americans beyond the polished surface; Between Art and Life: the contemporary painting and scupture collection, etc.</p>
<p><img class="alignleft size-full wp-image-485" style="float: left; padding-right: 10px;" title="ranjani_shettar" src="http://www.songinwind.com/blog/wp-content/uploads/2009/07/ranjani_shettar.jpg" alt="ranjani_shettar" width="300" height="225" /><img class="alignleft size-full wp-image-486" style="clear: right;" title="sfmoma" src="http://www.songinwind.com/blog/wp-content/uploads/2009/07/sfmoma.jpg" alt="sfmoma" width="300" height="225" /></p>
<p>If you go to San Francisco, go visit MOMA, it got those amazing exhibitions that you don&#8217;t want to miss.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.songinwind.com/blog/design-art/geogia-okeeffe-and-ansel-adams-special-exhibition-in-sfmoma/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
