<?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>Asian-Caucasian Issues &#187; Web development</title>
	<atom:link href="http://asian-caucasian.stroke7.com/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://asian-caucasian.stroke7.com</link>
	<description>Observations from a half-fried, half-Chinese, half-Australian American.</description>
	<lastBuildDate>Sun, 25 Jul 2010 20:24:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>WebKit Transitions and the Return of Visibility</title>
		<link>http://asian-caucasian.stroke7.com/2010/07/26/webkit-transitions-and-the-return-of-visibility/</link>
		<comments>http://asian-caucasian.stroke7.com/2010/07/26/webkit-transitions-and-the-return-of-visibility/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 20:24:10 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://asian-caucasian.stroke7.com/?p=68</guid>
		<description><![CDATA[Recently, I&#8217;ve had the pleasure of building the UI for a client program using Webkit. Access to all the CSS3 features has been great as well as completely liberating from the constraints of IE compatibility. WebKit offers another great feature: the -webkit-transition property to animate transitions between different style declarations. One obvious application is fading an [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fasian-caucasian.stroke7.com%2F2010%2F07%2F26%2Fwebkit-transitions-and-the-return-of-visibility%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fasian-caucasian.stroke7.com%2F2010%2F07%2F26%2Fwebkit-transitions-and-the-return-of-visibility%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Recently, I&#8217;ve had the pleasure of building the UI for a client program using Webkit. Access to all the CSS3 features has been great as well as completely liberating from the constraints of IE compatibility.</p>
<p>WebKit offers another great feature: the <strong>-webkit-transition</strong> property to animate transitions between different style declarations. One obvious application is fading an element in and out which requires a CSS property which I&#8217;ve long since relegated to the pile of &#8220;nice, but not so applicable&#8221; properties: &#8220;visibility.&#8221;</p>
<p>here&#8217;s an example:<br />
<code>.module {<br />
visibility: hidden;<br />
opacity: 0;<br />
-webkit-transition: opacity 0.2s ease-in;<br />
}<br />
.module.display {<br />
visibility: visible;<br />
opacity: 1;<br />
}<br />
</code></p>
<p>Why not just use the <strong>display</strong> property? Because even if <strong>display</strong> is &#8220;none&#8221;, an absolutely positioned <code>&lt;div&gt;</code> will block click and other mouse events from being detected by elements below (in terms of z-index) the hidden <code>&lt;div&gt;</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://asian-caucasian.stroke7.com/2010/07/26/webkit-transitions-and-the-return-of-visibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.9.1, beware of encoding issues</title>
		<link>http://asian-caucasian.stroke7.com/2010/01/10/wordpress-2-9-1-beware-of-encoding-issues/</link>
		<comments>http://asian-caucasian.stroke7.com/2010/01/10/wordpress-2-9-1-beware-of-encoding-issues/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 18:14:37 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://asian-caucasian.stroke7.com/?p=35</guid>
		<description><![CDATA[I&#8217;ve just spent an hour and a half upgrading to WordPress 2.9.1. Why did it take that long? Well, their database upgrade assigned the wrong collation to the fields in the database, rendering all the double-byte characters in my posts as ???. Very annoying and a pretty major oversite for such a widely adopted piece [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fasian-caucasian.stroke7.com%2F2010%2F01%2F10%2Fwordpress-2-9-1-beware-of-encoding-issues%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fasian-caucasian.stroke7.com%2F2010%2F01%2F10%2Fwordpress-2-9-1-beware-of-encoding-issues%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve just spent an hour and a half upgrading to WordPress 2.9.1. Why did it take that long? Well, their database upgrade assigned the wrong collation to the fields in the database, rendering all the double-byte characters in my posts as ???. Very annoying and a pretty major oversite for such a widely adopted piece of software.</p>
<p><span id="more-35"></span>After searching around the WordPress Forums, I found this post which blames the Gengo plugin for these encoding problems: <a href="http://wordpress.org/support/topic/193306" target="_blank">[Plugin: Gengo] characters showing as ?????</a>.</p>
<p>What was the solution? Open up phpMyAdmin. and:</p>
<p>1. Change the collation for each table to &#8220;utf8_general_ci&#8221;</p>
<p>2. Change the collation of the offending fields to &#8220;utf8_general_ci&#8221;</p>
<p>It&#8217;s a pain, but it&#8217;ll solve the issue. Hopefully, the next WordPress version will solve this problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://asian-caucasian.stroke7.com/2010/01/10/wordpress-2-9-1-beware-of-encoding-issues/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Versions App and Site5 SVN</title>
		<link>http://asian-caucasian.stroke7.com/2008/07/07/versions-app-and-site5-svn/</link>
		<comments>http://asian-caucasian.stroke7.com/2008/07/07/versions-app-and-site5-svn/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 16:10:27 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://asian-caucasian.stroke7.com/2008/07/07/versions-app-and-site5-svn/</guid>
		<description><![CDATA[Well, I signed up for the Versions app beta and finally got it about a bit over a month ago. I installed it and then minutes later, I clicked it off, fired off an email to their feedback address and removed it from my dock, expecting never to use it again. You see, the problem [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fasian-caucasian.stroke7.com%2F2008%2F07%2F07%2Fversions-app-and-site5-svn%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fasian-caucasian.stroke7.com%2F2008%2F07%2F07%2Fversions-app-and-site5-svn%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Well, I signed up for the Versions app beta and finally got it about a bit over a month ago. I installed it and then minutes later, I clicked it off, fired off an email to their feedback address and removed it from my dock, expecting never to use it again. You see, the problem was I couldn&#8217;t get it to work with my Site5 SVN setup. I received an email back from the beta team and now it&#8217;s working and back in my dock.</p>
<p><span id="more-16"></span><a title="Versions website" href="http://www.versionsapp.com/">Version&#8217;s website</a> mentions a feature: svn+ssh:// key pairs are unnecessary. However, the first time I tried to connect to my repository on Site5, I got an error message &#8220;Connection closed unexpectedly.&#8221; I tried many different login permutations, but nothing worked. And so I was resigned to looking into other more painful Mac SVN clients like SvnX.</p>
<p>The email today alerted me to newest beta update and so I downloaded the update and tried again. No beans. Following a <a title="SVN on Site5 tute" href="http://wiki.site5.com/SVN/Subversion_(SVN)_Setup_Guide">tutorial on setting up SVN on Site5</a> I was still getting the same error. There was still no way to point to the private key I had set up. After re-reading the Versions website (I really hope some documentation is on the way), I realized I was going about it the wrong way. Assuming you&#8217;ve already setup SVN on your Site5 account, here&#8217;s the correct way to connect to your Site5 SVN repository without creating key pairs:</p>
<p><strong>Location:</strong> svn+ssh://[Site5 username]@www.[domain name]/[path to repository]</p>
<p><em>Example: svn+ssh://username@www.versions.com/home/username/svn/project </em><br />
<strong>Username:</strong> [Site5 username]</p>
<p><strong>Password:</strong> [Site5 password]</p>
]]></content:encoded>
			<wfw:commentRss>http://asian-caucasian.stroke7.com/2008/07/07/versions-app-and-site5-svn/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
