<?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>messaliberty</title>
	
	<link>http://www.messaliberty.com</link>
	<description>about hulor and us</description>
	<lastBuildDate>Thu, 28 Jan 2010 05:45:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/messaliberty/main" /><feedburner:info uri="messaliberty/main" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>messaliberty/main</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to create a single wp-config file for local and remote WordPress development</title>
		<link>http://feedproxy.google.com/~r/messaliberty/main/~3/2QF0NGfOX04/</link>
		<comments>http://www.messaliberty.com/2010/01/how-to-create-a-single-wp-config-file-for-local-and-remote-wordpress-development/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 05:41:52 +0000</pubDate>
		<dc:creator>ianc</dc:creator>
				<category><![CDATA[techtips]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[virtual servers]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp-config]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://www.messaliberty.com/?p=1331</guid>
		<description>If you are developing WordPress sites, themes or plugins, you probably know that setting up a local development environment can speed things up immensely.  The easiest way is to use XAMPP or MAMP.  I prefer XAMPP by the way as it is available on Windows, Mac OSX and Linux.  Installing XAMPP gets you [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/12/jruby-on-rails-on-gaej-howto-put-rubygems-into-a-jar-file-to-reduce-number-of-files/' rel='bookmark' title='Permanent Link: [JRuby on Rails on GAE/J] how-to put rubygems into a jar file to get around file limitations'&gt;[JRuby on Rails on GAE/J] how-to put rubygems into a jar file to get around file limitations&lt;/a&gt; &lt;small&gt;GAE (Google App Engine) has a limit number to the...&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/11/how-to-use-email-to-create-and-reply-to-forums-on-redmine/' rel='bookmark' title='Permanent Link: How To Use Email To Create And Reply To Forums on Redmine'&gt;How To Use Email To Create And Reply To Forums on Redmine&lt;/a&gt; &lt;small&gt;We&amp;#8217;re using Redmine not only as a BTS (Bug Tracking...&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/05/ruby-on-rails-didnt-apply-edited-view-file/' rel='bookmark' title='Permanent Link: [Ruby on Rails] Didn&amp;#039;t apply edited view file'&gt;[Ruby on Rails] Didn&amp;#039;t apply edited view file&lt;/a&gt; &lt;small&gt;With Ruby on Rails 2.3.2 Sometimes, edit rails view file...&lt;/small&gt;&lt;/li&gt;&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.</description>
			<content:encoded><![CDATA[<p>If you are developing WordPress sites, themes or plugins, you probably know that setting up a local development environment can speed things up immensely.  The easiest way is to use <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> or MAMP.  I prefer XAMPP by the way as it is available on Windows, Mac OSX and Linux.  Installing XAMPP gets you most of the way to headache free WordPress development, the rest is setting up your local server/virtual servers so that it as closely mirrors your remote set-up as possible.</p>
<p>However, some settings like blog address are held in the database which makes mirroring local development and remote production servers a little tricky.  If you just backed up the database on the remote set-up and imported it to your local XAMPP server through phpMyAdmin then WordPress will still think that it is at http://www.wordpressblog.com and not http://localhost</p>
<p>Permalinks might not work, plugins might break and so on.</p>
<p>What you need to do is either edit the database, searching and replacing the relevant fields or edit the wp-config.php file to override the database settings.  I don&#8217;t recommend the first option as it is error-prone and you have to do it again if you throw the database in the opposite direction.</p>
<p>Editing the wp-config.php file is relatively easy, just add the lines</p>
<pre class="brush: php;">
	define('WP_SITEURL', &quot;http://localhost&quot;);
	define('WP_HOME', &quot;http://localhost&quot;);
</pre>
<p>but if you edit the wp-config.php file you will have two different versions of the file.  This will cause your site to break if you absent-mindedly uploaded your local wp-config.php to the remote server.  If you are using source control, like git or svn, and forget to exclude the file the same thing happens.  Plus you have to maintain two versions.</p>
<p>Here&#8217;s what I do.  I set-up the wp-config.php to check to see if it is a local server, if it is then set the configuration one way, otherwise set it using the production values.</p>
<p>The first 3 settings are the same whether local or remote.  In some cases the MySQL hostname will be different, so just set it later with the others.</p>
<pre class="brush: php;">
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wordpressdb');

/** MySQL database username */
define('DB_USER', 'wpdbuser');

/** MySQL hostname */
define('DB_HOST', 'localhost');
</pre>
<p>We&#8217;ve moved the 4th setting, the password, because it is different.  And we will add the &#8216;WP_SITEURL&#8217; and &#8216;WP_HOME&#8217; settings later to override the database values.  But first two more settings that are the same whether local or remote.</p>
<pre class="brush: php;">
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');

/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
</pre>
<p>Ok, now the fun starts.  These five lines checks to see if the server&#8217;s address is 127.0.0.1  If it is, we assume it is a local machine and set a WP_ENV to development, otherwise we set it to production.</p>
<pre class="brush: php;">
if ($_SERVER['REMOTE_ADDR']=='127.0.0.1') {
	define('WP_ENV', 'development');
} else {
	define('WP_ENV', 'production');
}
</pre>
<p>Having determined whether the environment is local or remote, we then grab the site address for use with &#8216;WP_SITEURL&#8217; and &#8216;WP_HOME&#8217;.  I don&#8217;t hardcode it in as it gives me the flexibility to re-use it for any virtual server.</p>
<pre class="brush: php;">
$debian_server  = preg_replace ('/:.*/',&quot;&quot;, $_SERVER['HTTP_HOST']); $_SERVER['HTTP_HOST']);
</pre>
<p>Finally in these lines, if it is the local development, we set a simple dummy password and disable post revisions. We also set WP_DEBUG to false, this allows us to set it to true if we come across any tricky problems.</p>
<p>If it is the real production server then we set the password to its original value which should be a long and random set of characters.</p>
<pre class="brush: php;">
if ( WP_ENV == 'development' ) {
	define('DB_PASSWORD', 'short_dummy_password');

	define ('WP_POST_REVISIONS', false);
	define ('WP_DEBUG', false);

	define('WP_SITEURL', &quot;http://$debian_server&quot;);
	define('WP_HOME', &quot;http://$debian_server&quot;);
} elseif ( WP_ENV == 'production' ) {
	define('DB_PASSWORD', 'the_real_password_which_is_a_very_long_and_random_string');
}
</pre>
<p>This wp-config.php file is now safe to be used on the remote production server or on your local development server.</p>
<p>One note, we didn&#8217;t set the WP_SITEURL and WP_HOME on the production server instead using the values in the database.  But if we moved a site from one domain to another we could do so.</p>
<p>If you have any questions, feel free to ask me in the comments.</p>


<p>Related posts:<ol><li><a href='http://www.messaliberty.com/2009/12/jruby-on-rails-on-gaej-howto-put-rubygems-into-a-jar-file-to-reduce-number-of-files/' rel='bookmark' title='Permanent Link: [JRuby on Rails on GAE/J] how-to put rubygems into a jar file to get around file limitations'>[JRuby on Rails on GAE/J] how-to put rubygems into a jar file to get around file limitations</a> <small>GAE (Google App Engine) has a limit number to the...</small></li><li><a href='http://www.messaliberty.com/2009/11/how-to-use-email-to-create-and-reply-to-forums-on-redmine/' rel='bookmark' title='Permanent Link: How To Use Email To Create And Reply To Forums on Redmine'>How To Use Email To Create And Reply To Forums on Redmine</a> <small>We&#8217;re using Redmine not only as a BTS (Bug Tracking...</small></li><li><a href='http://www.messaliberty.com/2009/05/ruby-on-rails-didnt-apply-edited-view-file/' rel='bookmark' title='Permanent Link: [Ruby on Rails] Didn&#039;t apply edited view file'>[Ruby on Rails] Didn&#039;t apply edited view file</a> <small>With Ruby on Rails 2.3.2 Sometimes, edit rails view file...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=2QF0NGfOX04:u4YXG0eff6Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=2QF0NGfOX04:u4YXG0eff6Y:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=2QF0NGfOX04:u4YXG0eff6Y:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=2QF0NGfOX04:u4YXG0eff6Y:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=2QF0NGfOX04:u4YXG0eff6Y:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=2QF0NGfOX04:u4YXG0eff6Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=2QF0NGfOX04:u4YXG0eff6Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=2QF0NGfOX04:u4YXG0eff6Y:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/messaliberty/main/~4/2QF0NGfOX04" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messaliberty.com/2010/01/how-to-create-a-single-wp-config-file-for-local-and-remote-wordpress-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messaliberty.com/2010/01/how-to-create-a-single-wp-config-file-for-local-and-remote-wordpress-development/</feedburner:origLink></item>
		<item>
		<title>Google Japan’s marketing campaign at Tully’s Coffee But Wait!</title>
		<link>http://feedproxy.google.com/~r/messaliberty/main/~3/k-W-D8Sy83Q/</link>
		<comments>http://www.messaliberty.com/2010/01/google-japans-marketing-campaign-at-tullys-coffee-but-wait/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 00:15:31 +0000</pubDate>
		<dc:creator>hiro</dc:creator>
				<category><![CDATA[marketing]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[cafe]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[wi-fi]]></category>

		<guid isPermaLink="false">http://www.messaliberty.com/?p=1324</guid>
		<description>Like we discussed at recent episodes of messa.tv, Google is trying to become #1 player of Japanese search engine market. To achieve the aim, Google is spending huge amount of money for marketing campaigns on TV and anywhere around us.
Even here at Tully&amp;#8217;s Coffee which is one of Starbucks clones in Japan, I found a [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/11/2-keyboard-shortcuts-you-must-know-for-google-wave/' rel='bookmark' title='Permanent Link: 2 Keyboard Shortcuts You Must Know For Google Wave'&gt;2 Keyboard Shortcuts You Must Know For Google Wave&lt;/a&gt; &lt;small&gt;We&amp;#8217;re using Google Wave for our internal text meetings. And...&lt;/small&gt;&lt;/li&gt;&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.</description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 250px"><a href="http://www.flickr.com/photos/psycho-spider/4281245569/"><img alt="Google at Tullys" src="http://farm5.static.flickr.com/4020/4281245569_5b4a7b5cbf_m.jpg" title="Google at Tullys" width="240" height="180" /></a><p class="wp-caption-text">Google at Tully&#39;s</p></div>
<p>Like we discussed at recent episodes of <a href="http://messa.tv/">messa.tv</a>, Google is trying to become #1 player of Japanese search engine market. To achieve the aim, Google is spending huge amount of money for marketing campaigns on TV and anywhere around us.</p>
<p>Even here at Tully&#8217;s Coffee which is one of Starbucks clones in Japan, I found a small card by Google. It says &#8220;Connect to Free Wi-Fi here to see Google&#8217;s Search Story&#8221;. Sounds nice because it&#8217;s quite hard to find free Wi-Fi spots in Japan but don&#8217;t have excessive expectations for this campaign. ONLY 30min a day you can use it!</p>
<p>Partner companies of this campaign are Wi-Fi provider NTT and cafes like Tully&#8217;s. I know they don&#8217;t want to open the Wi-Fi for a long time but the only 30min limit gives me a negative impression. I&#8217;m always thinking that Google can give us deep impressions all the time.</p>


<p>Related posts:<ol><li><a href='http://www.messaliberty.com/2009/11/2-keyboard-shortcuts-you-must-know-for-google-wave/' rel='bookmark' title='Permanent Link: 2 Keyboard Shortcuts You Must Know For Google Wave'>2 Keyboard Shortcuts You Must Know For Google Wave</a> <small>We&#8217;re using Google Wave for our internal text meetings. And...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=k-W-D8Sy83Q:fEwcOgpw0a0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=k-W-D8Sy83Q:fEwcOgpw0a0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=k-W-D8Sy83Q:fEwcOgpw0a0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=k-W-D8Sy83Q:fEwcOgpw0a0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=k-W-D8Sy83Q:fEwcOgpw0a0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=k-W-D8Sy83Q:fEwcOgpw0a0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=k-W-D8Sy83Q:fEwcOgpw0a0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=k-W-D8Sy83Q:fEwcOgpw0a0:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/messaliberty/main/~4/k-W-D8Sy83Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messaliberty.com/2010/01/google-japans-marketing-campaign-at-tullys-coffee-but-wait/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messaliberty.com/2010/01/google-japans-marketing-campaign-at-tullys-coffee-but-wait/</feedburner:origLink></item>
		<item>
		<title>5 ways to do without a mouse</title>
		<link>http://feedproxy.google.com/~r/messaliberty/main/~3/pOCV6XIDqMw/</link>
		<comments>http://www.messaliberty.com/2009/12/5-ways-to-do-without-a-mouse/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 15:20:07 +0000</pubDate>
		<dc:creator>ken</dc:creator>
				<category><![CDATA[techtips]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[shortcuts]]></category>

		<guid isPermaLink="false">http://www.messaliberty.com/?p=1273</guid>
		<description>I like to use keyboard shortcuts as I am usually using a laptop.
So it&amp;#8217;s convenient to set  up a mouse-less environment.
I know many people use [Ctrl+P][Ctrl+C][Ctrl+V] and so on.
Some people uses 「Alt＋Tab」「Ctrl＋Tab」「Windows button＋D」as well.
Today I want to show you 5 ways to set-up a mouse-less environment that aren&amp;#8217;t as well known.

Go to top-right search box(when [...]


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.</description>
			<content:encoded><![CDATA[<p>I like to use keyboard shortcuts as I am usually using a laptop.</p>
<p>So it&#8217;s convenient to set  up a mouse-less environment.<br />
I know many people use [Ctrl+P][Ctrl+C][Ctrl+V] and so on.<br />
Some people uses 「Alt＋Tab」「Ctrl＋Tab」「Windows button＋D」as well.</p>
<p>Today I want to show you 5 ways to set-up a mouse-less environment that aren&#8217;t as well known.</p>
<ol>
<li>Go to top-right search box(when browsing like Firefox, IE)</li>
<li>Go to address area (when browsing like Firefox, IE)</li>
<li>Call up the right mouse menu without mouse</li>
<li>Make scrolling smoother</li>
<li>Enable clicking links with keyboard</li>
</ol>
<p><span id="more-1273"></span>1. Have a look at the screenshot below</p>
<p><img class="alignnone size-full wp-image-1293" title="1en" src="http://www.messaliberty.com/wp-content/uploads/2009/12/1en.png" alt="1en" width="366" height="236" /></p>
<p>You can move to search box with the shortcut [Ctrl+E].</p>
<p>And in addition, you can choose the object for search with [Ctrl+↓]<br />
You can use this with Firefox and IE as well.</p>
<p>2. Have a look at the screenshot.</p>
<p><img class="alignnone size-full wp-image-1294" title="2en" src="http://www.messaliberty.com/wp-content/uploads/2009/12/2en.png" alt="2en" width="597" height="197" /></p>
<p>You can move to address bar and attach the copied URL by clicking [Ctrl＋L]<br />
You can use with with Firefox and IE, and Chrome as well.</p>
<p>3, Show the context menu, so-called right click which we use a lot.</p>
<p><img class="alignnone size-full wp-image-1295" title="3en" src="http://www.messaliberty.com/wp-content/uploads/2009/12/3en.png" alt="3en" width="554" height="406" /></p>
<p>The shortcut key for this one is [Shift+F10]<br />
With this shortcut, you will be able to change the way to show the pics,<br />
the way to make folders and so on without mouse.</p>
<p>4. Enable smooth scroll with space key (like Livedoor Reader)<br />
You can do this using a Greasemonkey script.<br />
<a href="http://d.hatena.ne.jp/nagaton/20060831/1156993415">http://d.hatena.ne.jp/nagaton/20060831/1156993415</a><br />
(Sorry for it&#8217;s in Japanese)</p>
<p>5.  Click links without using the mouse.<br />
Maybe the most useful tip when browsing, to enable this functionality you need to install an extension called &#8220;mouseless browsing&#8221;<br />
<a href="http://journal.mycom.co.jp/articles/2009/04/13/mouselessbrowsing/index.html">http://journal.mycom.co.jp/articles/2009/04/13/mouselessbrowsing/index.html</a></p>
<p>Try out any of the above if they interest you!  By the way, one of the main reasons why I have been using Firefox is because of the number of extensions/add-ons it has.<br />
But last week, Google Chrome also started to open up development of extension. <a href="http://journal.mycom.co.jp/news/2009/12/09/014/?rt=na">http://journal.mycom.co.jp/news/2009/12/09/014/?rt=na</a><br />
They have already covered a wide range of must-have extensions and it is expected that the number of extensions are going to increase so quickly.<br />
I&#8217;m looking forward to the browser battle between Firefox and Chrome heating up ;)</p>
<p>Oh and if you have any other tips for a mouse-less working environment, tell us about it in the comments.  Thanks!</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=pOCV6XIDqMw:j7jFys3nbH4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=pOCV6XIDqMw:j7jFys3nbH4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=pOCV6XIDqMw:j7jFys3nbH4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=pOCV6XIDqMw:j7jFys3nbH4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=pOCV6XIDqMw:j7jFys3nbH4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=pOCV6XIDqMw:j7jFys3nbH4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=pOCV6XIDqMw:j7jFys3nbH4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=pOCV6XIDqMw:j7jFys3nbH4:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/messaliberty/main/~4/pOCV6XIDqMw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messaliberty.com/2009/12/5-ways-to-do-without-a-mouse/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.messaliberty.com/2009/12/5-ways-to-do-without-a-mouse/</feedburner:origLink></item>
		<item>
		<title>messa.tv JP Starts Soon!</title>
		<link>http://feedproxy.google.com/~r/messaliberty/main/~3/AQ_0TN77poU/</link>
		<comments>http://www.messaliberty.com/2009/12/messa-tv-jp-start-soon/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 05:08:40 +0000</pubDate>
		<dc:creator>hiro</dc:creator>
				<category><![CDATA[messatv]]></category>
		<category><![CDATA[japanese]]></category>

		<guid isPermaLink="false">http://www.messaliberty.com/?p=1256</guid>
		<description>We&amp;#8217;ll launch a Japanese version of the tech podcast messa.tv soon.
messa.tv has been published since April 2006, and then became an English program since beginning of 2009. But finally we&amp;#8217;ll re-start the Japanese show!
The Japanese version of messa.tv might help you if you&amp;#8217;re interested in Japanese tech trends, culture and business. Or if you&amp;#8217;re studying [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/03/messatv-episode-002/' rel='bookmark' title='Permanent Link: messa.tv episode #002'&gt;messa.tv episode #002&lt;/a&gt; &lt;small&gt;Moved to messa.tv http://messa.tv/2009/03/episode-002/ ...&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/04/messatv-episode-004/' rel='bookmark' title='Permanent Link: messa.tv episode #004'&gt;messa.tv episode #004&lt;/a&gt; &lt;small&gt;Moved to messa.tv http://messa.tv/2009/04/episode-004/ ...&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/04/messatv-sp-001-denden-town-street-festa-video/' rel='bookmark' title='Permanent Link: messa.tv SP #001 &amp;#8211; DenDen Town Street Festa Video'&gt;messa.tv SP #001 &amp;#8211; DenDen Town Street Festa Video&lt;/a&gt; &lt;small&gt;Moved to messa.tv http://messa.tv/2009/04/special-001/ ...&lt;/small&gt;&lt;/li&gt;&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.</description>
			<content:encoded><![CDATA[<p>We&#8217;ll launch a <a href="http://jp.messa.tv/">Japanese version of the tech podcast messa.tv</a> soon.</p>
<p>messa.tv has been published since April 2006, and then became an English program since beginning of 2009. But finally we&#8217;ll re-start the Japanese show!</p>
<p>The Japanese version of messa.tv might help you if you&#8217;re interested in Japanese tech trends, culture and business. Or if you&#8217;re studying Japanese, you can watch and learn real live Japanese!</p>
<p>Now our English show have lots of visitors from all around the world and a few days ago we got a guest from Greece. He said he is a fan of our show!</p>
<p><div class="wp-caption alignnone" style="width: 190px"><a href="http://www.flickr.com/photos/psycho-spider/4191936291/"><img alt="Chris from Greece visit us" src="http://farm3.static.flickr.com/2541/4191936291_77af3cb6de_m.jpg" title="Chris from Greece visits us" width="180" height="240" /></a><p class="wp-caption-text">Chris from Greece visit us</p></div><br />
Chris came from Greece to Osaka Japan to see us. Thank you so much Chris!</p>
<p>Anyway, we&#8217;re always welcome to your feedbacks or comments on our blogs, <a href="http://twitter.com/messatv">Twitter</a>.</p>
<p>See you at the show soon!</p>


<p>Related posts:<ol><li><a href='http://www.messaliberty.com/2009/03/messatv-episode-002/' rel='bookmark' title='Permanent Link: messa.tv episode #002'>messa.tv episode #002</a> <small>Moved to messa.tv http://messa.tv/2009/03/episode-002/ ...</small></li><li><a href='http://www.messaliberty.com/2009/04/messatv-episode-004/' rel='bookmark' title='Permanent Link: messa.tv episode #004'>messa.tv episode #004</a> <small>Moved to messa.tv http://messa.tv/2009/04/episode-004/ ...</small></li><li><a href='http://www.messaliberty.com/2009/04/messatv-sp-001-denden-town-street-festa-video/' rel='bookmark' title='Permanent Link: messa.tv SP #001 &#8211; DenDen Town Street Festa Video'>messa.tv SP #001 &#8211; DenDen Town Street Festa Video</a> <small>Moved to messa.tv http://messa.tv/2009/04/special-001/ ...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=AQ_0TN77poU:-JDVKEfzABw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=AQ_0TN77poU:-JDVKEfzABw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=AQ_0TN77poU:-JDVKEfzABw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=AQ_0TN77poU:-JDVKEfzABw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=AQ_0TN77poU:-JDVKEfzABw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=AQ_0TN77poU:-JDVKEfzABw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=AQ_0TN77poU:-JDVKEfzABw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=AQ_0TN77poU:-JDVKEfzABw:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/messaliberty/main/~4/AQ_0TN77poU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messaliberty.com/2009/12/messa-tv-jp-start-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messaliberty.com/2009/12/messa-tv-jp-start-soon/</feedburner:origLink></item>
		<item>
		<title>Use curvyCorners to make rounded corners</title>
		<link>http://feedproxy.google.com/~r/messaliberty/main/~3/cCm1YCh5pYs/</link>
		<comments>http://www.messaliberty.com/2009/12/use-curvycorners-to-make-rounded-corners/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 00:46:27 +0000</pubDate>
		<dc:creator>take</dc:creator>
				<category><![CDATA[techtips]]></category>
		<category><![CDATA[curvycorners]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.messaliberty.com/?p=1261</guid>
		<description>We use a JavaScript library called &amp;#8220;curvyCorners&amp;#8221; for our own sites.
This one can show beautiful rounded corners but can be a bit heavy to load each time. I&amp;#8217;m planning to replace it with a lighter and faster one but let me describe how to use &amp;#8220;curvyCorners&amp;#8221;.
1. Download it form here and load it at a [...]


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.</description>
			<content:encoded><![CDATA[<p>We use a JavaScript library called &#8220;curvyCorners&#8221; for our own sites.</p>
<div id="attachment_729" class="wp-caption alignnone" style="width: 179px"><img src="http://jp.messaliberty.com/wp-content/uploads/2009/12/curvycorners_image.gif" alt="curvycorners" title="javascriptライブラリ『curvyCorners』" width="169" height="140" class="size-full wp-image-729" /><p class="wp-caption-text">curvycorners</p></div>
<p>This one can show beautiful rounded corners but can be a bit heavy to load each time. I&#8217;m planning to replace it with a lighter and faster one but let me describe how to use &#8220;curvyCorners&#8221;.</p>
<p>1. Download it form <a href="http://www.curvycorners.net/downloads.php" target="_blank">here</a> and load it at a header area of HTML files like this:<br />
<span id="more-1261"></span></p>
<pre><code>&lt;script type="text/javascript" src="curvycorners.js"&gt;&lt;/script&gt;</code></pre>
<p>2. Next, create blocks with these class attributes:</p>
<p>Round top corners</p>
<pre><code>&lt;div class="myboxtop"&gt;
Round top corners. &lt;br /&gt;
Round top corners. &lt;br /&gt;
Round top corners. &lt;br /&gt;
&lt;/div&gt;</code></pre>
<p>Round bottom corners</p>
<pre><code>&lt;div class="myboxbottom"&gt;
Round bottom corners. &lt;br /&gt;
Round bottom corners. &lt;br /&gt;
Round bottom corners. &lt;br /&gt;
&lt;/div&gt;</code></pre>
<p>Round all corners</p>
<pre><code>&lt;div class="myboxall"&gt;
Round all corners. &lt;br /&gt;
Round all corners. &lt;br /&gt;
Round all corners. &lt;br /&gt;
&lt;/div&gt;</code></pre>
<p>Then move to the js file.</p>
<p>3. Configure like below:</p>
<p>Round 10px of top corners</p>
<pre><code>settingsTop = {
 tl: { radius: <span>10</span> },
 tr: { radius: <span>10</span> },
 bl: { radius: <span>0</span> },
 br: { radius: <span>0</span> },
 antiAlias: <span>true</span>,
 autoPad: <span>true</span>,
 validTags: ["<span>div</span>"]
}</code></pre>
<p>Round 10px of bottom corners</p>
<pre><code>settingsBottom = {
 tl: { radius: <span>0</span> },
 tr: { radius: <span>0</span> },
 bl: { radius: <span>10</span> },
 br: { radius: <span>10</span> },
 antiAlias: <span>true</span>,
 autoPad: <span>true</span>,
 validTags: ["<span>div</span>"]
}</code></pre>
<p>Round 10px of all corners</p>
<pre><code>settingsAll = {
 tl: { radius: <span>10</span> },
 tr: { radius: <span>10</span> },
 bl: { radius: <span>10</span> },
 br: { radius: <span>10</span> },
 antiAlias: <span>true</span>,
 autoPad: <span>true</span>,
 validTags: ["<span>div</span>"]
}</code></pre>
<p>[Note]<br />
tl: top left<br />
tr: top right<br />
bl: bottom left<br />
br: bottom right<br />
antiAlias: Antialias (true or false)<br />
autoPad: Margin (true or false)<br />
validTags: curvyCorners applied tags (separated by commas)</p>
<p>4. Apply for classes</p>
<pre><code>
      myBoxObject = new curvyCorners(settingsTop, "myboxtop");
      myBoxObject.applyCornersToAll();

      myBoxObject = new curvyCorners(settingsBottom, "myboxbottom");
      myBoxObject.applyCornersToAll();

          myBoxObject = new curvyCorners(settingsAll, "myboxall");
      myBoxObject.applyCornersToAll();
</code></pre>
<p>That&#8217;s all!</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=cCm1YCh5pYs:isl-kdfu7ps:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=cCm1YCh5pYs:isl-kdfu7ps:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=cCm1YCh5pYs:isl-kdfu7ps:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=cCm1YCh5pYs:isl-kdfu7ps:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=cCm1YCh5pYs:isl-kdfu7ps:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=cCm1YCh5pYs:isl-kdfu7ps:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=cCm1YCh5pYs:isl-kdfu7ps:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=cCm1YCh5pYs:isl-kdfu7ps:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/messaliberty/main/~4/cCm1YCh5pYs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messaliberty.com/2009/12/use-curvycorners-to-make-rounded-corners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messaliberty.com/2009/12/use-curvycorners-to-make-rounded-corners/</feedburner:origLink></item>
		<item>
		<title>Next WordBench Osaka at messaliberty</title>
		<link>http://feedproxy.google.com/~r/messaliberty/main/~3/p17lK5Sh99A/</link>
		<comments>http://www.messaliberty.com/2009/12/next-wordbench-osaka-at-messaliberty/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 00:04:57 +0000</pubDate>
		<dc:creator>hiro</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[wordbench]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.messaliberty.com/?p=1266</guid>
		<description>WordPress studying session WordBench will be held at messaliberty. Please join if you&amp;#8217;re in Kansai area!
See more detail here: WordBench 大阪  &amp;#187; Blog Archive   &amp;#187; 2010年新年会を1月31日(日)開催


Related posts:WordCamp Kansai 2009 We attended the WordCamp Kansai event (Hiro, Asami, Chapp and...
Related posts brought to you by Yet Another Related Posts Plugin.


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/04/wordcamp-kansai-2009/' rel='bookmark' title='Permanent Link: WordCamp Kansai 2009'&gt;WordCamp Kansai 2009&lt;/a&gt; &lt;small&gt;We attended the WordCamp Kansai event (Hiro, Asami, Chapp and...&lt;/small&gt;&lt;/li&gt;&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.</description>
			<content:encoded><![CDATA[<p>WordPress studying session WordBench will be held at messaliberty. Please join if you&#8217;re in Kansai area!</p>
<p>See more detail here: <a href="http://osaka.wordbench.org/2009/12/13/study-20100131/">WordBench 大阪  &raquo; Blog Archive   &raquo; 2010年新年会を1月31日(日)開催</a></p>


<p>Related posts:<ol><li><a href='http://www.messaliberty.com/2009/04/wordcamp-kansai-2009/' rel='bookmark' title='Permanent Link: WordCamp Kansai 2009'>WordCamp Kansai 2009</a> <small>We attended the WordCamp Kansai event (Hiro, Asami, Chapp and...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=p17lK5Sh99A:DlTnE5JybCI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=p17lK5Sh99A:DlTnE5JybCI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=p17lK5Sh99A:DlTnE5JybCI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=p17lK5Sh99A:DlTnE5JybCI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=p17lK5Sh99A:DlTnE5JybCI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=p17lK5Sh99A:DlTnE5JybCI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=p17lK5Sh99A:DlTnE5JybCI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=p17lK5Sh99A:DlTnE5JybCI:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/messaliberty/main/~4/p17lK5Sh99A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messaliberty.com/2009/12/next-wordbench-osaka-at-messaliberty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messaliberty.com/2009/12/next-wordbench-osaka-at-messaliberty/</feedburner:origLink></item>
		<item>
		<title>Localizing dates in WordPress themes</title>
		<link>http://feedproxy.google.com/~r/messaliberty/main/~3/l-MUS9da0yc/</link>
		<comments>http://www.messaliberty.com/2009/12/localizing-dates-in-wordpress-themes/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 05:51:34 +0000</pubDate>
		<dc:creator>ianc</dc:creator>
				<category><![CDATA[techtips]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[date format]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[japanese]]></category>
		<category><![CDATA[localisation]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.messaliberty.com/?p=1163</guid>
		<description>Our theme on the English side and the Japanese side are the same.  And by that I mean, we only have one copy of the theme files that is used for both sides.  For this to work, it has to be  fully localised and independant. One thing that is quite different in the two languages [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/10/thoughts-on-the-gpl-and-wordpress-themes/' rel='bookmark' title='Permanent Link: Thoughts on the GPL and WordPress themes'&gt;Thoughts on the GPL and WordPress themes&lt;/a&gt; &lt;small&gt; Why the GPL doesn&amp;#8217;t matter WordCamp Kyoto 2009 was...&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/05/multi-lingual-wordpress-admin-screens/' rel='bookmark' title='Permanent Link: Multi-lingual WordPress Admin Screens'&gt;Multi-lingual WordPress Admin Screens&lt;/a&gt; &lt;small&gt;As mentioned in messa.tv episode 004 we have set-up multi-lingual...&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2010/01/how-to-create-a-single-wp-config-file-for-local-and-remote-wordpress-development/' rel='bookmark' title='Permanent Link: How to create a single wp-config file for local and remote WordPress development'&gt;How to create a single wp-config file for local and remote WordPress development&lt;/a&gt; &lt;small&gt;If you are developing WordPress sites, themes or plugins, you...&lt;/small&gt;&lt;/li&gt;&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.</description>
			<content:encoded><![CDATA[<div id="attachment_1238" class="wp-caption alignnone" style="width: 200px"><img class="size-medium wp-image-1238" title="cal2" src="http://www.messaliberty.com/wp-content/uploads/2009/12/cal2-190x300.jpg" alt="cal2" width="190" height="300" /><p class="wp-caption-text">Ken&#39;s stuck in time calendar</p></div>
<p>Our theme on the English side and the Japanese side are the same.  And by that I mean, we only have one copy of the theme files that is used for both sides.  For this to work, it has to be  fully localised and independant. One thing that is quite different in the two languages is the formatting of dates.  A date like Dec 13th 2009 might be formatted as 2009年12月13日</p>
<p>Chapp worked from a theme that had the date formats hard coded into the theme.  As in:</p>
<pre class="brush: php;">
&lt;?php the_time('F jS, Y'); ?&gt;
</pre>
<p>If we left that in, the Japanese side&#8217;s dates wouldn&#8217;t be right, but if we took out the <strong>&#8216;F jS, Y&#8217;</strong> part, it defaulted to outputting the time.  As a workaround, we used:</p>
<pre class="brush: php;">
&lt;?php the_date(); ?&gt;
</pre>
<p>which does fetch and use the right formatted date on both sides.  Yay!  But&#8230;  when WordPress generated archive pages, we found an unexpected behaviour of date().  <a href="http://codex.wordpress.org/Template_Tags/the_date">It only outputs a certain date once</a>.  So if two posts were written on the same day, only one post would have the date.  I think somewhere in the theme there is an ugly workaround involving an array.  But this is a better approach:</p>
<pre class="brush: php;">
&lt;?php the_time(get_option('date_format')); ?&gt;
</pre>
<p>What this is doing is fetching the date format string that is set in <em>Settings &gt; General &gt; Date Format</em> and using that.  Which for the record is <strong>F jS, Y</strong> on the English side, and<strong> Y年n月j日</strong> on the Japanese side.  I know it may sound obvious but at the time it had us scratching our collective heads.</p>
<p>And while not many installations will be using the same set of theme files for two or more languages at the same time (except for WordPress MU themes), localizing the theme this way lets you or your users to just set the date format in the General Settings screen.</p>


<p>Related posts:<ol><li><a href='http://www.messaliberty.com/2009/10/thoughts-on-the-gpl-and-wordpress-themes/' rel='bookmark' title='Permanent Link: Thoughts on the GPL and WordPress themes'>Thoughts on the GPL and WordPress themes</a> <small> Why the GPL doesn&#8217;t matter WordCamp Kyoto 2009 was...</small></li><li><a href='http://www.messaliberty.com/2009/05/multi-lingual-wordpress-admin-screens/' rel='bookmark' title='Permanent Link: Multi-lingual WordPress Admin Screens'>Multi-lingual WordPress Admin Screens</a> <small>As mentioned in messa.tv episode 004 we have set-up multi-lingual...</small></li><li><a href='http://www.messaliberty.com/2010/01/how-to-create-a-single-wp-config-file-for-local-and-remote-wordpress-development/' rel='bookmark' title='Permanent Link: How to create a single wp-config file for local and remote WordPress development'>How to create a single wp-config file for local and remote WordPress development</a> <small>If you are developing WordPress sites, themes or plugins, you...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=l-MUS9da0yc:ZpFaizvqnZU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=l-MUS9da0yc:ZpFaizvqnZU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=l-MUS9da0yc:ZpFaizvqnZU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=l-MUS9da0yc:ZpFaizvqnZU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=l-MUS9da0yc:ZpFaizvqnZU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=l-MUS9da0yc:ZpFaizvqnZU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=l-MUS9da0yc:ZpFaizvqnZU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=l-MUS9da0yc:ZpFaizvqnZU:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/messaliberty/main/~4/l-MUS9da0yc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messaliberty.com/2009/12/localizing-dates-in-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messaliberty.com/2009/12/localizing-dates-in-wordpress-themes/</feedburner:origLink></item>
		<item>
		<title>Free Japanese prefecture icons</title>
		<link>http://feedproxy.google.com/~r/messaliberty/main/~3/Q0zhDD2zrJ0/</link>
		<comments>http://www.messaliberty.com/2009/12/free-japanese-prefecture-icons/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 02:29:16 +0000</pubDate>
		<dc:creator>ianc</dc:creator>
				<category><![CDATA[culture]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[aomori]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[hyogo]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[kyoto]]></category>
		<category><![CDATA[okinawa]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[shimane]]></category>
		<category><![CDATA[tokyo]]></category>

		<guid isPermaLink="false">http://www.messaliberty.com/?p=1187</guid>
		<description>Here are some icons I created of some prefectures in Japan.  The prefectures are Tokyo, Aomori, Hyogo, Kyoto, Okinawa and Shimane . They are in png format (256&amp;#215;256) and you are free to reuse them, but a link back to here would be appreciated. To download, just right click and select Save As.
If anyone has [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/03/changes-happened-among-japanese-kids-by-nintendo-dsi/' rel='bookmark' title='Permanent Link: Changes happened among Japanese kids by Nintendo DSi'&gt;Changes happened among Japanese kids by Nintendo DSi&lt;/a&gt; &lt;small&gt;When I heard about spec of Nintendo DSi and a...&lt;/small&gt;&lt;/li&gt;&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.</description>
			<content:encoded><![CDATA[<p>Here are some icons I created of some prefectures in Japan.  The prefectures are Tokyo, Aomori, Hyogo, Kyoto, Okinawa and Shimane . They are in png format (256&#215;256) and you are free to reuse them, but a link back to here would be appreciated. To download, just right click and select Save As.</p>
<p>If anyone has a request for one of the other 41 prefectures, just leave a comment and I&#8217;ll make one when I have time.  I chose these prefectures for various random reasons.  For example, Shimane is the home to the Ruby language which is what we do most of our web development on, and Okinawa is my favourite place in Japan.</p>
<div id="attachment_1191" class="wp-caption alignnone" style="width: 266px"><img class="size-full wp-image-1191 " title="tokyo" src="http://www.messaliberty.com/wp-content/uploads/2009/12/tokyo.png" alt="Tokyo" width="256" height="256" /><p class="wp-caption-text">Tokyo</p></div>
<div id="attachment_1189" class="wp-caption alignnone" style="width: 266px"><img class="size-full wp-image-1189 " title="aomori" src="http://www.messaliberty.com/wp-content/uploads/2009/12/aomori.png" alt="Aomori" width="256" height="256" /><p class="wp-caption-text">Aomori</p></div>
<div id="attachment_1193" class="wp-caption alignnone" style="width: 266px"><img class="size-full wp-image-1193 " title="hyogo" src="http://www.messaliberty.com/wp-content/uploads/2009/12/hyogo.png" alt="Hyogo" width="256" height="256" /><p class="wp-caption-text">Hyogo</p></div>
<div id="attachment_1192" class="wp-caption alignnone" style="width: 266px"><img class="size-full wp-image-1192 " title="kyoto" src="http://www.messaliberty.com/wp-content/uploads/2009/12/kyoto.png" alt="Kyoto" width="256" height="256" /><p class="wp-caption-text">Kyoto</p></div>
<div id="attachment_1190" class="wp-caption alignnone" style="width: 266px"><img class="size-full wp-image-1190 " title="okinawa" src="http://www.messaliberty.com/wp-content/uploads/2009/12/okinawa.png" alt="Okinawa" width="256" height="256" /><p class="wp-caption-text">Okinawa</p></div>
<div id="attachment_1188" class="wp-caption alignnone" style="width: 266px"><img class="size-full wp-image-1188 " title="shimane" src="http://www.messaliberty.com/wp-content/uploads/2009/12/shimane.png" alt="Shimane" width="256" height="256" /><p class="wp-caption-text">Shimane</p></div>


<p>Related posts:<ol><li><a href='http://www.messaliberty.com/2009/03/changes-happened-among-japanese-kids-by-nintendo-dsi/' rel='bookmark' title='Permanent Link: Changes happened among Japanese kids by Nintendo DSi'>Changes happened among Japanese kids by Nintendo DSi</a> <small>When I heard about spec of Nintendo DSi and a...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=Q0zhDD2zrJ0:5gBWWwKK5GI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=Q0zhDD2zrJ0:5gBWWwKK5GI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=Q0zhDD2zrJ0:5gBWWwKK5GI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=Q0zhDD2zrJ0:5gBWWwKK5GI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=Q0zhDD2zrJ0:5gBWWwKK5GI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=Q0zhDD2zrJ0:5gBWWwKK5GI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=Q0zhDD2zrJ0:5gBWWwKK5GI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=Q0zhDD2zrJ0:5gBWWwKK5GI:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/messaliberty/main/~4/Q0zhDD2zrJ0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messaliberty.com/2009/12/free-japanese-prefecture-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messaliberty.com/2009/12/free-japanese-prefecture-icons/</feedburner:origLink></item>
		<item>
		<title>[JRuby on Rails on GAE/J] how-to put rubygems into a jar file to get around file limitations</title>
		<link>http://feedproxy.google.com/~r/messaliberty/main/~3/iZEjXcRlLoQ/</link>
		<comments>http://www.messaliberty.com/2009/12/jruby-on-rails-on-gaej-howto-put-rubygems-into-a-jar-file-to-reduce-number-of-files/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 06:06:14 +0000</pubDate>
		<dc:creator>ice</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[file limitations]]></category>
		<category><![CDATA[gae]]></category>
		<category><![CDATA[google app engine]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[jar]]></category>
		<category><![CDATA[jruby]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://www.messaliberty.com/?p=1202</guid>
		<description>GAE (Google App Engine) has a limit number to the number files you can upload.
To get around this limit, we need to compress rubygems into jar files.
There may not be easy way to load rubygems in jar files with JRuby.
But with JRuby on GAE/J, it&amp;#8217;s easy to load.

JRuby on Rails on GAE/J, can load rubygems [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/05/ruby-on-rails-didnt-apply-edited-view-file/' rel='bookmark' title='Permanent Link: [Ruby on Rails] Didn&amp;#039;t apply edited view file'&gt;[Ruby on Rails] Didn&amp;#039;t apply edited view file&lt;/a&gt; &lt;small&gt;With Ruby on Rails 2.3.2 Sometimes, edit rails view file...&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/03/ruby-how-to-use-rspec-01-quickstart/' rel='bookmark' title='Permanent Link: [Ruby] How to use RSpec &amp;#8211; 01 QuickStart'&gt;[Ruby] How to use RSpec &amp;#8211; 01 QuickStart&lt;/a&gt; &lt;small&gt;RSpec is one of ruby&amp;#8217;s testing frameworks for BDD(Behavior Driven...&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/04/ruby-on-rails-uninitialized-constant-activesupporttestingsetupandteardownforrspec/' rel='bookmark' title='Permanent Link: [Ruby on Rails] uninitialized constant ActiveSupport::~::ForRspec'&gt;[Ruby on Rails] uninitialized constant ActiveSupport::~::ForRspec&lt;/a&gt; &lt;small&gt;Today I got an error below with rake. What happened?...&lt;/small&gt;&lt;/li&gt;&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.</description>
			<content:encoded><![CDATA[<p>GAE (Google App Engine) has a limit number to the number files you can upload.<br />
To get around this limit, we need to compress rubygems into jar files.</p>
<p>There may not be easy way to load rubygems in jar files with JRuby.<br />
But with JRuby on GAE/J, it&#8217;s easy to load.</p>
<ul>
<li>JRuby on Rails on GAE/J, can load rubygems in RAILS_ROOT/vendor/gems, just do require &#8220;gem-name&#8221;.</li>
<li>But rubygems often contain a lot of files and that can eat into the quota pretty quickly.</li>
<li>JRuby on GAE/J, can load rubygems from jar files.</li>
<li>Therefore it makes sense to put rubygems into jar files, and I am going to show you how step by step.</li>
</ul>
<p>Steps:</p>
<ul>
<li>install rubygems into a specific temporary directory (not into the system dir)
<ul>
<li>use -i option to install rugygems into a temporary directory.</li>
<li>use &#8211;no-rdoc and &#8211;no-ri options, to skip to install rdoc and ri, to reduce jar file size.</li>
</ul>
</li>
<li>compress rubygems by jar command in the temporary directory.</li>
<li>add require &#8220;installed-gem.jar&#8221; line in RAILS_ROOT/config/environment.rb</li>
</ul>
<p><span id="more-1202"></span></p>
<p>Example (scrapi):</p>
<pre style="color: #7eff00; background-color: #000000;">% cd RAILS_ROOT
% cd lib/
% jgem search -r scrapi

*** REMOTE GEMS ***

<span style="font-weight: bold; text-decoration: underline;">assaf-scrapi</span> (1.2.1)
<span style="font-weight: bold; text-decoration: underline;">scrapi</span> (1.2.0)
<span style="font-weight: bold; text-decoration: underline;">scrapin-a-livin</span> (0.1.1)
% jgem install -i scrapi-tmp scrapi --no-rdoc --no-ri
Successfully installed tidy-1.1.2
Successfully installed scrapi-1.2.0
2 gems installed
% cd scrapi-tmp/
% ls
cache  doc  gems  specifications
% ls gems/
scrapi-1.2.0  tidy-1.1.2
% ls specifications/
scrapi-1.2.0.gemspec  tidy-1.1.2.gemspec
% jar cf ../scrapi-1.2.0.jar gems/ specifications/
% cd ..
% ls
...  scrapi-1.2.0.jar  ...
% rm -rf scrapi-tmp/
% cd ..</pre>
<p>add following line in config/environment.rb</p>
<pre style="color: #7eff00; background-color: #000000;">require <span style="color: #eeee00;">'lib/scrapi-1.2.0.jar'</span></pre>
<p>With dev_appserver.sh or appspot.com,  rubygems load fine with steps above.<br />
But executing ruby script by jruby command, cannot load rubygems.</p>
<p>I found only one way, shown below, to load scrapi in jar file.</p>
<pre style="color: #7eff00; background-color: #000000;">require <span style="color: #eeee00;">"file:///path/to/rubygems/scrapi-1.2.0.jar!gems/scrapi-1.2.0/lib/scrapi"</span></pre>
<p>Maybe there are better ways than this.  If there are, please share in the comments below, thanks!</p>


<p>Related posts:<ol><li><a href='http://www.messaliberty.com/2009/05/ruby-on-rails-didnt-apply-edited-view-file/' rel='bookmark' title='Permanent Link: [Ruby on Rails] Didn&#039;t apply edited view file'>[Ruby on Rails] Didn&#039;t apply edited view file</a> <small>With Ruby on Rails 2.3.2 Sometimes, edit rails view file...</small></li><li><a href='http://www.messaliberty.com/2009/03/ruby-how-to-use-rspec-01-quickstart/' rel='bookmark' title='Permanent Link: [Ruby] How to use RSpec &#8211; 01 QuickStart'>[Ruby] How to use RSpec &#8211; 01 QuickStart</a> <small>RSpec is one of ruby&#8217;s testing frameworks for BDD(Behavior Driven...</small></li><li><a href='http://www.messaliberty.com/2009/04/ruby-on-rails-uninitialized-constant-activesupporttestingsetupandteardownforrspec/' rel='bookmark' title='Permanent Link: [Ruby on Rails] uninitialized constant ActiveSupport::~::ForRspec'>[Ruby on Rails] uninitialized constant ActiveSupport::~::ForRspec</a> <small>Today I got an error below with rake. What happened?...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=iZEjXcRlLoQ:0jYLRofpFig:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=iZEjXcRlLoQ:0jYLRofpFig:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=iZEjXcRlLoQ:0jYLRofpFig:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=iZEjXcRlLoQ:0jYLRofpFig:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=iZEjXcRlLoQ:0jYLRofpFig:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=iZEjXcRlLoQ:0jYLRofpFig:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=iZEjXcRlLoQ:0jYLRofpFig:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=iZEjXcRlLoQ:0jYLRofpFig:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/messaliberty/main/~4/iZEjXcRlLoQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messaliberty.com/2009/12/jruby-on-rails-on-gaej-howto-put-rubygems-into-a-jar-file-to-reduce-number-of-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messaliberty.com/2009/12/jruby-on-rails-on-gaej-howto-put-rubygems-into-a-jar-file-to-reduce-number-of-files/</feedburner:origLink></item>
		<item>
		<title>How To Edit Videos Taken By Vado HD on iMovie7</title>
		<link>http://feedproxy.google.com/~r/messaliberty/main/~3/RbhtSK-F2UU/</link>
		<comments>http://www.messaliberty.com/2009/11/how-to-edit-videos-taken-by-vado-hd-on-imovie7/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 13:30:41 +0000</pubDate>
		<dc:creator>har</dc:creator>
				<category><![CDATA[techtips]]></category>
		<category><![CDATA[imovie]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[vado]]></category>
		<category><![CDATA[vadohd]]></category>

		<guid isPermaLink="false">http://www.messaliberty.com/?p=1182</guid>
		<description>Hi, I&amp;#8217;m an editor of messa.tv. Today I&amp;#8217;ll explain how to edit videos taken by our favorite cam Vado HD. 
That is because iMovie 7.1.4 doesn&amp;#8217;t support container format of Vado HD. To make a long story short, can&amp;#8217;t use AVI format. Need to convert to some formats or through iMovie away if you don&amp;#8217;t [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/03/100-yen-macro-lens-for-iphone/' rel='bookmark' title='Permanent Link: 100 Yen Macro Lens for iPhone'&gt;100 Yen Macro Lens for iPhone&lt;/a&gt; &lt;small&gt;Do you know how I took photos like above by...&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.messaliberty.com/2009/09/must-have-mac-apps-for-web-developers/' rel='bookmark' title='Permanent Link: Must have Mac apps for web developers'&gt;Must have Mac apps for web developers&lt;/a&gt; &lt;small&gt;Got a new mac? You should check this list to...&lt;/small&gt;&lt;/li&gt;&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.</description>
			<content:encoded><![CDATA[<div id="attachment_692" class="wp-caption alignnone" style="width: 310px"><img src="http://jp.messaliberty.com/wp-content/uploads/2009/11/imovie001-300x137.jpg" alt="Vado - iMovie 01" title="Vado - iMovie 01" width="300" height="137" class="size-medium wp-image-692" /><p class="wp-caption-text">Vado - iMovie 01</p></div>
<p>Hi, I&#8217;m an editor of <a href="http://messa.tv/">messa.tv</a>. Today I&#8217;ll explain how to edit videos taken by our favorite cam Vado HD. </p>
<p>That is because iMovie 7.1.4 doesn&#8217;t support <a href="http://en.wikipedia.org/wiki/Container_format_(digital)">container format</a> of Vado HD. To make a long story short, can&#8217;t use AVI format. Need to convert to some formats or through iMovie away if you don&#8217;t want to lose video quality.</p>
<p>OK, let&#8217;s start it.</p>
<p>First of all, you need to get the <a href="http://www.squared5.com/" target="_blank">MPEG Streamclip (Free App)</a>. Install the MPEG Streamclip and launch it then select your video file.</p>
<div id="attachment_695" class="wp-caption alignnone" style="width: 303px"><img src="http://jp.messaliberty.com/wp-content/uploads/2009/11/imovie002-293x300.jpg" alt="Vado - iMovie 02" title="Vado - iMovie 02" width="293" height="300" class="size-medium wp-image-695" /><p class="wp-caption-text">Vado - iMovie 02</p></div>
<p>Choose [File] &gt; [Export to MPEG-4]</p>
<div id="attachment_696" class="wp-caption alignnone" style="width: 298px"><img src="http://jp.messaliberty.com/wp-content/uploads/2009/11/imovie003-288x300.jpg" alt="Vado - iMovie 03" title="Vado - iMovie 03" width="288" height="300" class="size-medium wp-image-696" /><p class="wp-caption-text">Vado - iMovie 03</p></div>
<p>Videos which taken by Vado HD have these kind of file informations. (By <a href="http://www.videolan.org/" target="_blank">VLC media player</a>.)</p>
<div id="attachment_697" class="wp-caption alignnone" style="width: 310px"><img src="http://jp.messaliberty.com/wp-content/uploads/2009/11/imovie004-300x134.jpg" alt="Vado - iMovie 04" title="Vado - iMovie 04" width="300" height="134" class="size-medium wp-image-697" /><p class="wp-caption-text">Vado - iMovie 04</p></div>
<p>Now we need to be careful to pick the better format to keep video quality.</p>
<ul>
<li>[Quality] to [100 %] </li>
<li>[Sound] &gt; [Channel] to [Mono] </li>
<li>[Sound] &gt; [Bit Rate] to [128 kbps] </li>
</ul>
<div id="attachment_698" class="wp-caption alignnone" style="width: 298px"><img src="http://jp.messaliberty.com/wp-content/uploads/2009/11/imovie005-288x300.jpg" alt="Vado - iMovie 05" title="Vado - iMovie 05" width="288" height="300" class="size-medium wp-image-698" /><p class="wp-caption-text">Vado - iMovie 05</p></div>
<p>Then click [Make MP4] to create a video file.</p>
<div id="attachment_699" class="wp-caption alignnone" style="width: 310px"><img src="http://jp.messaliberty.com/wp-content/uploads/2009/11/imovie006-300x159.jpg" alt="Vado - iMovie 06" title="Vado - iMovie 06" width="300" height="159" class="size-medium wp-image-699" /><p class="wp-caption-text">Vado - iMovie 06</p></div>
<p>File informations may broken when you check it by VLC media player but don&#8217;t care about it, keep on.</p>
<p>It&#8217;s time to launch iMovie.</p>
<div id="attachment_700" class="wp-caption alignnone" style="width: 310px"><img src="http://jp.messaliberty.com/wp-content/uploads/2009/11/imovie007-300x273.jpg" alt="Vado - iMovie 07" title="Vado - iMovie 07" width="300" height="273" class="size-medium wp-image-700" /><p class="wp-caption-text">Vado - iMovie 07</p></div>
<p>[File] &gt;［Import Movies］</p>
<div id="attachment_701" class="wp-caption alignnone" style="width: 306px"><img src="http://jp.messaliberty.com/wp-content/uploads/2009/11/imovie008-296x300.jpg" alt="Vado - iMovie 08" title="Vado - iMovie 08" width="296" height="300" class="size-medium wp-image-701" /><p class="wp-caption-text">Vado - iMovie 08</p></div>
<p>Fill out your favorite settings. Videos are saved on here:</p>
<p>/Users/<span style="color: red">{USERNAME}</span>/Movies/iMovie Events/<span style="color: red">{EVENTNAME}</span></p>
<div id="attachment_702" class="wp-caption alignnone" style="width: 310px"><img src="http://jp.messaliberty.com/wp-content/uploads/2009/11/imovie009-300x86.jpg" alt="Vado - iMovie 09" title="Vado - iMovie 09" width="300" height="86" class="size-medium wp-image-702" /><p class="wp-caption-text">Vado - iMovie 09</p></div>
<p>Done! Enjoy!</p>


<p>Related posts:<ol><li><a href='http://www.messaliberty.com/2009/03/100-yen-macro-lens-for-iphone/' rel='bookmark' title='Permanent Link: 100 Yen Macro Lens for iPhone'>100 Yen Macro Lens for iPhone</a> <small>Do you know how I took photos like above by...</small></li><li><a href='http://www.messaliberty.com/2009/09/must-have-mac-apps-for-web-developers/' rel='bookmark' title='Permanent Link: Must have Mac apps for web developers'>Must have Mac apps for web developers</a> <small>Got a new mac? You should check this list to...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=RbhtSK-F2UU:WwT-AS0WT3I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=RbhtSK-F2UU:WwT-AS0WT3I:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=RbhtSK-F2UU:WwT-AS0WT3I:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=RbhtSK-F2UU:WwT-AS0WT3I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=RbhtSK-F2UU:WwT-AS0WT3I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=RbhtSK-F2UU:WwT-AS0WT3I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/messaliberty/main?a=RbhtSK-F2UU:WwT-AS0WT3I:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/messaliberty/main?i=RbhtSK-F2UU:WwT-AS0WT3I:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/messaliberty/main/~4/RbhtSK-F2UU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.messaliberty.com/2009/11/how-to-edit-videos-taken-by-vado-hd-on-imovie7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.messaliberty.com/2009/11/how-to-edit-videos-taken-by-vado-hd-on-imovie7/</feedburner:origLink></item>
	</channel>
</rss>
