<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>AlchemistaAlchemista</title>
	<atom:link href="http://en.katzueno.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://en.katzueno.com</link>
	<description>The personal blog of Katz Ueno, Editor and Producer of YokosoNews and filmmaker.</description>
	<lastBuildDate>Tue, 21 Feb 2012 06:10:31 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<meta name="generator" content="Obscure English 2.0" />
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://en.katzueno.com/feed/" />
		<item>
		<title>concrete5 YouTube block customization tips</title>
		<link>http://en.katzueno.com/2011/08/24/concrete5-youtube-block-customization-tips/</link>
		<comments>http://en.katzueno.com/2011/08/24/concrete5-youtube-block-customization-tips/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 04:25:15 +0000</pubDate>
		<dc:creator>katzueno</dc:creator>
				<category><![CDATA[Tech & Web]]></category>
		<category><![CDATA[concrete5]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[YokosoNews]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://en.katzueno.com/?p=417</guid>
		<description><![CDATA[This is how-to for concrete5 web masters and developers. YouTube now recommend to use &#8220;iFrame&#8221; instead of &#8220;object&#8221; tag. And I also came up with a custom template for playlist which you can easily embed the YouTube playlist onto your concrete5 site. You need the basic knowledge of installing and working with concrete5, and how to use FTP . YouTube block iFrame customization Here is easy how-to of iFrame. This method will replace the entire existing YouTube blocks. If you &#8230; <a href="http://en.katzueno.com/2011/08/24/concrete5-youtube-block-customization-tips/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>This is how-to for concrete5 web masters and developers. YouTube now recommend to use &#8220;iFrame&#8221; instead of &#8220;object&#8221; tag. And I also came up with a custom template for playlist which you can easily embed the YouTube playlist onto your concrete5 site.</p>
<p>You need the basic knowledge of installing and working with concrete5, and how to use FTP .</p>
<h1>YouTube block iFrame customization</h1>
<p>Here is easy how-to of iFrame. This method will replace the entire existing YouTube blocks. If you don&#8217;t want to change the existing YouTube blocks, you may want to apply this as custom template.</p>
<h2>1. Create a blank text file at</h2>
<p>/blocks/youtube/view.php</p>
<h2>2. Copy and paste the following code</h2>
<pre class="brush: php; title: ; notranslate">
&lt;?php
defined('C5_EXECUTE') or die(&quot;Access Denied.&quot;);
$url = parse_url($videoURL);
parse_str($url['query'], $query);
$c = Page::getCurrentPage();

$vWidth=640; // Video Width
$vHeight=390; // Video Height

if ($c-&gt;isEditMode()) { ?&gt;
&lt;div style=&quot;width:&lt;?php  echo $vWidth; ?&gt;px; height:&lt;?php  echo $vHeight; ?&gt;px;&quot;&gt;
&lt;div style=&quot;padding:8px 0px; padding-top: &lt;?php  echo round($vHeight/2)-10; ?&gt;px;&quot;&gt;&lt;?php  echo t('Content disabled in edit mode.'); ?&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;?php  } else { ?&gt;
&lt;iframe width=&quot;&lt;?php echo $vWidth;?&gt;&quot; height=&quot;&lt;?php echo $vHeight;?&gt;&quot; src=&quot;http://www.youtube.com/embed/&lt;?php echo $query['v'];?&gt;&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;
&lt;?php  } ?&gt;
</pre>
<h2>3. Height and width</h2>
<p>Change the number of $vWidth and $vHeight according to your site dimension, or you can create new custom template to change the dimension.</p>
<h2>4. Save the text file</h2>
<h2>5. Upload it to your concrete5 server</h2>
<p>Use this block as original YouTube block.</p>
<h1>YouTube block custom template for Playlist</h1>
<p>YouTube has &#8220;Playlist&#8221; function. You can add multiple videos and play them all together.</p>
<p>When you made a playlist or obtain somebody else&#8217; public playlist URL, you can now easily add the YouTube playlist onto your concrete5 site.</p>
<h2>1. Create a blank text file at</h2>
<p>/blocks/youtube/templates/playlist.php</p>
<h2>2. Copy and paste the following code</h2>
<pre class="brush: php; title: ; notranslate">
&lt;?php
defined('C5_EXECUTE') or die(&quot;Access Denied.&quot;);
$url = parse_url($videoURL);
parse_str($url['query'], $query);
$c = Page::getCurrentPage();

$vWidth=640; // Video Width
$vHeight=390; // Video Height
$playlistID= str_replace('PL','',$query['list']);

if ($c-&gt;isEditMode()) { ?&gt;
&lt;div style=&quot;width:&lt;?php  echo $vWidth; ?&gt;px; height:&lt;?php  echo $vHeight; ?&gt;px;&quot;&gt;
&lt;div style=&quot;padding:8px 0px; padding-top: &lt;?php  echo round($vHeight/2)-10; ?&gt;px;&quot;&gt;&lt;?php  echo t('Content disabled in edit mode.'); ?&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;?php  } else { ?&gt;
&lt;object width=&quot;&lt;?php echo $vWidth;?&gt;&quot; height=&quot;&lt;?php echo $vHeight;?&gt;&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/p/&lt;?php echo $playlistID;?&gt;?version=3&amp;hl=&lt;?php echo LOCALE;?&gt;&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/p/&lt;?php echo $playlistID;?&gt;?version=3&amp;hl=&lt;?php echo LOCALE;?&gt;&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;&lt;?php echo $vWidth;?&gt;&quot; height=&quot;&lt;?php echo $vHeight;?&gt;&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot;&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;?php  } ?&gt;
</pre>
<h2>3. Height and width</h2>
<p>Change the number of $vWidth and $vHeight according to your site dimension, or you can create new custom template to change the dimension.</p>
<h2>4. Save the text file</h2>
<h2>5. Upload it to your concrete5 server</h2>
<h2>How to use it</h2>
<ul>
<li>Get the URL of playlist</li>
<ul>
<li>EXAMPLE: http://www.youtube.com/playlist?list=PL297A125DC0A5A054</li>
</ul>
<li>Create a new YouTube block</li>
<li>Type title and paste the Playlist URL onto the block</li>
<li>Save</li>
<li>Click the block</li>
<li>Click &#8220;Custom Template&#8221;</li>
<li>Choose &#8220;Playlist&#8221;</li>
<li>Save</li>
<li>Publish</li>
</ul>
<p>Done</p>
<p>Enjoy the easy to embed playlist in concrete5 site.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://en.katzueno.com/2011/08/24/concrete5-youtube-block-customization-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://en.katzueno.com/2011/08/24/concrete5-youtube-block-customization-tips/" />
	</item>
		<item>
		<title>[Editorial] Dolphin, Whales and YokosoNews</title>
		<link>http://en.katzueno.com/2011/06/19/dolphin-whales-and-yokosonews/</link>
		<comments>http://en.katzueno.com/2011/06/19/dolphin-whales-and-yokosonews/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 16:47:39 +0000</pubDate>
		<dc:creator>katzueno</dc:creator>
				<category><![CDATA[Food]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Japan]]></category>
		<category><![CDATA[Media 2.5]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[YokosoNews]]></category>

		<guid isPermaLink="false">http://en.katzueno.com/?p=410</guid>
		<description><![CDATA[Earlier today, one of my YokosoNews contributors traveled to Kumano, Japan. And he went to eat the local cuisine which include the dolphin. Then he posted the photo on YokosoNews Facebook page. I immediately deleted the photo from the YokosoNews Facebook Page. But I would like to take this opportunity to express my personal opinion and my premature plan. I&#8217;m writing this on my personal blog because this is not the official final plan of YokosoNews. But it&#8217;s good to &#8230; <a href="http://en.katzueno.com/2011/06/19/dolphin-whales-and-yokosonews/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Earlier today, one of my YokosoNews contributors traveled to Kumano, Japan. And he went to eat the local cuisine which include the dolphin. Then he posted the photo on YokosoNews Facebook page.</p>
<p>I immediately deleted the photo from the YokosoNews Facebook Page.</p>
<p>But I would like to take this opportunity to express my personal opinion and my premature plan. I&#8217;m writing this on my personal blog because this is not the official final plan of YokosoNews.</p>
<p>But it&#8217;s good to share my developing plan of YokosoNews as the first step to become a real <em>social</em> media and the bridge of Japanese culture&#8230; and get your feedbacks.</p>
<h1>Lessons from the past</h1>
<p>I was once a human rights activists in the past. And I made the terrible mistake and withdrawn to be a human rights activist 15 years ago.</p>
<p>I would like to refrain from the detail. But I was involved with dealing with the discrimination against Korean immigrants and indigenous Japanese.</p>
<h2>Human rights acts in Japan</h2>
<p>In the past, as a young immature person, I kept encouraging the victims to speak out. It was the awake of the Internet. I wanted to help the victims, and using the voice via Internet, try to make a documentary, and interviewed some victim.</p>
<p>I was approaching the high school students to speak out their experience. However after many years of joining their events and activities, I was not fully accepted by them. My project had failed eventually.</p>
<h2>Outsider</h2>
<p>One of the reason was that I was just an outsider. Nobody would understand the pain unless you are in the situation.</p>
<p>Especially, I was trying to work with high school students. The many guardians refused my idea by worrying about their future by coming out to the public.</p>
<p>For them, I was still an outsider. Even if I failed, I would be just a documentary filmmaker. However, for those high school students, they would have been marked as the victim of discrimination. It would have affected the future of their lives.</p>
<p>I failed to convince them why it would be beneficial for them, and I was always an outsider. You cannot become &#8220;an insider&#8221; no matter how much you tried to fit in. You need to function as the beneficial outsider. It&#8217;s very important to prove that I could bring the benefit to their lives.</p>
<h2>Negative comments vs. Criticism</h2>
<p>Once I kept condemning the problems of certain human rights organization. However, many of my earlier criticism were just &#8220;negative comments&#8221; that would give any solutions.</p>
<p>I learned that if you are going to have opinion, especially, if you&#8217;re going to criticize something, your critical comments must have the constructive results.</p>
<p>And you must respect and understand your counterparts as much as possible.</p>
<p>I define &#8220;condemnation&#8221; as negative comments without any solution in this post, and &#8220;criticism&#8221; as maybe negative comment but with solution or merit.</p>
<h1>When treating the sensitive topics</h1>
<p>Therefore, from my past experience, when dealing with the sensitive topics, I learned and am trying to.,,,</p>
<ul>
<li>To respect other parties</li>
<li>To understand other parties</li>
<li>To prove or provide the beneficial outcome</li>
<li>Negative comments or condemnation won&#8217;t help but destruct everything</li>
<li>Must have the constructive opinion</li>
</ul>
<p>Which include the dolphin and whale situation of Japan.</p>
<h1>YokosoNews can&#8217;t start Dolphin and Whale debates UNLESS</h1>
<h2><em>Y</em><em>ou</em> help YokosoNews grow and become capable to bringing the positive outcome to both parties</h2>
<p>Now let&#8217;s talk about the dolphin and whale issue of Japan.</p>
<p>Conclusion, YokosoNews will not talk about dolphin and whale topics unless YokosoNews gain enough support from our audience and gained enough power to bring the positive outcome to both parties.</p>
<p>This is why I came to this conclusion because of the following reasons.</p>
<h1>The situation is UGLY</h1>
<h2>The failure of both Japanese fishermen and animal activists</h2>
<p>Currently, I am disappointed and tired of listening to the both sides of Japanese and animal rights activists.</p>
<h2>Both sides failed to:</h2>
<ul>
<li>understand each culture</li>
<li>failed to learn each other</li>
<li>failed to respect each other</li>
</ul>
<p>Both Japanese and animal rights activists pays no respect each other. If you don&#8217;t respect each other, the conflict becomes&#8230;&#8230;</p>
<h2>It&#8217;s now just ugly childish fight</h2>
<p>For me, the conflict between Japanese fisheries industry and animal rights activists are yelling at each other, NO LONGER listen to each others&#8217; opinions.</p>
<p>YokosoNews doesn&#8217;t want to get involved with childish fight.</p>
<h2>Why it became childish fight?</h2>
<p>When the people from different cultures join the debate, they must learn and compromise each other respectably. Japanese fishermen needs to learn &#8220;western&#8221; style debate. And animal rights group needs to respect the Japanese way of expressing their opinion.</p>
<p>In short, if Japanese people think their idea is right, they will shut their mouth. The virtue of Japanese is &#8220;silence is golden&#8221;. However, in the western culture, if the people kept quiet, she/he could be considered &#8220;guilty&#8221;.</p>
<p>Both parties slowly realized the difference and they tried to come closer. However, they already lost the trust each other. I believe they already broke the bond of trust too deep. They need the moderator.</p>
<h2>We need &#8220;adult&#8221; moderator for childish fight</h2>
<p>The only &#8220;person&#8221; who can bring the peace to the childish fights is &#8220;the adul&#8221;. YokosoNews needs to grow up to become influential and beneficial to both animal rights group and Japanese fishermen.</p>
<p>If YokosoNews becomes beneficial entity to both parties. They will listen to YokosoNews.</p>
<h1>YokosoNews cannot,<em> yet</em>, bring the positive outcome</h1>
<p>YokosoNews will not talk about and get involved with the dolphin and whale issue simply because YokosoNews is not capable of providing the enough evidence, research, finance, nor time yet.</p>
<h1>We must build the real constructive debates</h1>
<p>YokosoNews recognize that we need to focus the following debates. But if we cover them, we must be  fully responsible.</p>
<h2>Talk with the responsibility OR no talk</h2>
<p>Since 311 Tsunami Earthquake, YokosoNews has been spending most of our resources to Tsunami, Earthquake and Fukushima Nuclear Power Plant incident.We are committed to report until the end because YokosoNews is the media with responsibility and commitment.</p>
<p>Therefore, in order to keep being the responsible media for dolphin and whale issue, YokosoNews believes that we need to cover ALL of the following debates, at least. And we must have enough resources to complete. OR we must not talk about it.</p>
<h2>&#8220;Killing Cruelty&#8221; Debate</h2>
<p>First debate is &#8220;killing dolphin and whale&#8221; debate.</p>
<p>YokosoNews thinks that we need to cover the following parties to start the discussion.</p>
<ol>
<li>Fishermen who catch dolphin and whale</li>
<li>Fishermen who don&#8217;t fish dolphin and whale</li>
<li>Animal rights activists which are ONLY against whale and dolphin fishing</li>
<li>Animal rights activists which are against ALL animal killing (Vegans)</li>
<li>Cattle farmers and fishermen who kill animals to eat</li>
</ol>
<p>In order to build the constructive debate, YokosoNews needs to have enough finance, volunteer, staff and time to cover and introduce all aspects. We also need to talk with:</p>
<ul>
<li>Experts (college professors)</li>
<li>Politicians (Japanese and other countries especially Autralia)</li>
<li>Philosophers</li>
</ul>
<p>YokosoNews must obtain interviews of experts (which cost money, or volunteer and time)</p>
<p>YokosoNews will need your help with resources (finance, staff, connections and other resources)</p>
<h2>&#8220;We can kill cows but not dolphin&#8221; debate</h2>
<p>Many people (including many Japanese) simply against killing whale and dolphin because they think they are cute.</p>
<p>Then many people dislike the idea of &#8220;Simply being against because of cuteness.&#8221; Some Japanese people says &#8220;As long as people keeps killing cows, pigs and chickens, Japanese are entitled to fish whale and dolphins&#8221;</p>
<p>Then we also have to consider vegetarians and vegans&#8230;</p>
<ul>
<li>Who supports eating dolphin &amp; whale</li>
<li>Who only supports eating meat and fish</li>
<li>Vegetarians who don&#8217;t eat meat but fish</li>
<li>Muslims who don&#8217;t eat pork</li>
<li>Vegans who are against eating any animals</li>
</ul>
<p>This has only one solution: open debate.</p>
<p>However, this debate had never got crossed each other because of the language barriers. YokosoNews would like to launch the large scale debate between Pro-and-Cons side. But we need space, time, enough translators to conduct the debate.</p>
<h2>&#8220;Endangered Species&#8221; debate</h2>
<p>Animal rights activist claims that dolphin and whale are endangered species.</p>
<p>Some Japanese fishermen claims that too many dolphin and whales actually breaks the food-chain. In the past, Japanese fishermen in Nagasaki had to kill the dolphins because there were too many dolphins between 1978 and 1986. Some people claims that they sometime need to kill dolphins so that they can control the food chain.</p>
<p>YokosoNews would like to confirm the facts by hiring and/or interviewing various experts, and conduct the research if necessary.</p>
<h2>Alternative Job Support (?)</h2>
<p>One of main concern over Japanese fishermen are simply job. Many fishermen has been fishing over hundreds of years. They have proud. Fishing is their history and identity. If we ask them to quit the thousand-year-old tradition and job, we should help them to present new job opportunities.</p>
<p>I saw a NHK documentary that one animal rights activisit tried to give one (1) million yen to a fisherman to quit fishing. That would be a good approach but 1 million yen to too little.</p>
<p>According to various sources, there are at least a couple hundred fishermen who have been making the living of doing the whale and dolphin fishing.</p>
<p>Unless they can come up with new industry to support thousand jobs for the fisherman.. which could cost billions of yen, the above act is very childish.</p>
<h2>Etc etc etc&#8230;.</h2>
<p>Mercury health risk, and etc etc&#8230;. This is a few of topics and debates that I&#8217;m thinking about doing.</p>
<h1>Why YokosoNews?</h1>
<p>YokosoNews is only one English online media in Japan which led by Japanese. During the March 11 disaster, YokosoNews was only English media to provide the comprehensive information about the disaster to the rest of the world</p>
<p>It&#8217;s because YokosoNews understands both Japanese culture, the non-Japanese culture, and media.</p>
<p>YokosoNews understand Japanese culture and where to find the right information about Japan. At the same time, YokosoNews can listen to non-Japanese because of our experience as 44-year-old entertainment media in Los Angeles.</p>
<p>I believe that YokosoNews is the only one media which suits to do this job.</p>
<p>However, especially after 311 Tsunami and Earthquake disaster in Tohoku and Fukushima, we are facing the lack of resources.</p>
<h1>Help YokosoNews to grow</h1>
<p>If you want to solve the conflict, YokosoNews asks your help. First please help us spread the word of YokosoNews. Become a volunteer reporter. Help us find the sponsor to end the conflict and help Japanese people grow.</p>
<h2>What you can do for us now</h2>
<ul>
<li>Help promote YokosoNews</li>
<li>Enjoy the show</li>
</ul>
<p>As I mentioned earlier, Japanese people don&#8217;t recognize YokosoNews and our efforts yet. Simply tell your friends about YokosoNews and enjoy the live show.</p>
<p>It&#8217;s very important to have fun in order to talk about serious topics for the positive result. I would like to build the strong online community that can enjoy our lives so that we can face our serious problem.</p>
<h2>Practically, what we need to start dolphin and whale project</h2>
<p>In order to start the project about dolphin and whale, we need financial and labor support. In order to conduct the project, we would need some full-time staff or volunteer with Japanese, English and media experience.</p>
<p>To be exact, we would need to raise or collect the following team</p>
<ul>
<li>Project
<ul>
<li>Dolphin, Whale and Japan</li>
</ul>
</li>
<li>Terms
<ul>
<li>2 years</li>
</ul>
</li>
<li>Must Requirement
<ul>
<li>The constructive relationship with Japanese fishermen</li>
<li>The constructive relationship with animal rights activists</li>
</ul>
</li>
<li>Contents
<ul>
<li>Series of online video documentary</li>
<li>3~4 events with local residents with English translation with live cast</li>
<li>3~4 events &amp; live cast &#8211; all over the world</li>
<li>3~4 Interview and round table discussions with experts</li>
</ul>
</li>
<li>Team
<ul>
<li>(1) Producer</li>
<li>(1) Director / Writer / Editor</li>
<li>(2) Editor &amp; Broadcaster</li>
<li>(2) Online media &amp; marketing</li>
</ul>
</li>
<li>Budget
<ul>
<li>50,000,000 ~ 100,000,000 yen<br />
( US$ 630K ~ 1.24 million)</li>
<li>Budget varies depends on how many staff can work as volunteer</li>
</ul>
</li>
</ul>
<p>If you are serious about solving the issue of dolphin and whales, please help us raise the money, or develop the project.</p>
<p>However, practically, I don&#8217;t think we will able to build the support quickly&#8230; Therefore, I would like you to help promote YokosoNews for now.</p>
<p>Thank you for reading. And I&#8217;m open to any suggestions and help.</p>
<p>PS.</p>
<p>Now, I need to write Japanese version&#8230; It&#8217;s the challenge that I must write this in both Japanese and English so that both Japanese and English speaker can be at the same level&#8230; but it is time consuming&#8230;. So I need your HELP!!!!</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://en.katzueno.com/2011/06/19/dolphin-whales-and-yokosonews/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://en.katzueno.com/2011/06/19/dolphin-whales-and-yokosonews/" />
	</item>
		<item>
		<title>Using CloudFlare for concrete5</title>
		<link>http://en.katzueno.com/2011/06/14/using-cloudflare-for-concrete5/</link>
		<comments>http://en.katzueno.com/2011/06/14/using-cloudflare-for-concrete5/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 04:42:25 +0000</pubDate>
		<dc:creator>katzueno</dc:creator>
				<category><![CDATA[Tech & Web]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[concrete5]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://en.katzueno.com/?p=343</guid>
		<description><![CDATA[I&#8217;ve been using CloudFlare for many of my major high traffic volume concrete5 sites, and I&#8217;m getting the significant result now. Our concrete5 Japan site was reviewed by a major Internet software website, and it caused the high volume traffic yesterday. But it withstood the high traffic volume. Here is the implementation of concrete5 &#38; CloudFlare for both developer and visitors. CloudFlare DNS &#38; Hosting provider setting When developing or make the changes of your concrete5 site, you may want &#8230; <a href="http://en.katzueno.com/2011/06/14/using-cloudflare-for-concrete5/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://en.katzueno.com/files/2011/06/20110614.00.cloudflare.jpg" title="CloudFlare" width="590" height="410" class="aligncenter size-full wp-image-344" /></p>
<p>I&#8217;ve been using CloudFlare for many of my major high traffic volume concrete5 sites, and I&#8217;m getting the significant result now.</p>
<p>Our concrete5 Japan site was reviewed by a major Internet software website, and it caused the high volume traffic yesterday. But it withstood the high traffic volume. Here is the implementation of concrete5 &amp; CloudFlare for both developer and visitors.</p>
<h1>CloudFlare DNS &amp; Hosting provider setting</h1>
<p>When developing or make the changes of your concrete5 site, you may want to bypass the CloudFlare network .</p>
<p>CloudFlare gives you &#8220;direct.EXAMPLE.com&#8221; subdomain as your direct access to the root domain.</p>
<p>E.g.<br />
&#8212;&#8212;&#8212;-<br />
EXAMPLE.COM<br />
&#8212;&#8212;&#8212;-</p>
<p>CloudFlare suggests you to allocate<br />
&#8212;&#8212;&#8212;-<br />
direct.EXAMPLE.COM<br />
&#8212;&#8212;&#8212;-<br />
as your direct access subdomain.</p>
<p>You need to create an &#8220;alias domain&#8221; that will point to the exactly same directory of your host server.</p>
<p>You could change &#8220;direct&#8221; to anything else. Make sure you modify all of your CloudFlare, hosting server and the following codes accordingly. (E.g., if you can changing the dev domain to be &#8220;access.EXAMPLE.COM&#8221;. You want to change every &#8220;direct&#8221; to &#8220;access&#8221;.)</p>
<h1>/config/site.php</h1>
<p>So you want to insert the following code onto /config/site.php</p>
<pre class="brush: php; title: ; notranslate">&lt;?php
if (strpos($_SERVER['HTTP_HOST'],'direct') !== FALSE) {
define('REDIRECT_TO_BASE_URL', false); }
?&gt;
</pre>
<p>* If you&#8217;re pasting inside of &#8220;<!--?php ?-->&lt;?php ?&gt;&#8221; tags remove those tags before inserting.</p>
<p>By default, concrete5 tries to re-direct you to the main domain.<br />
But when you insert the code into site.php, when you access to the site &#8220;direct.EXAMPLE.com&#8221;, it won&#8217;t redirect the domain and keeps you at &#8220;direct.EXAMPLE.COM&#8221;</p>
<h1>/elements/header_required.php (Optional)</h1>
<p>This is the optional suggestion. So that Google and other search engine won&#8217;t crawl and register your development-only subdomain.</p>
<ul>
<li>Copy: /concrete/elements/header_requied.php</li>
<li>To: /elements/header_required.php</li>
</ul>
<p>Then insert the following code at the bottom of the file</p>
<pre class="brush: php; title: ; notranslate">
if (strpos($_SERVER['HTTP_HOST'],'direct') !== FALSE) { ?&gt;
&lt;meta name=&quot;robots&quot; content=&quot;noindex, nofollow&quot;&gt;
&lt;?php } else { ?&gt;
&lt;meta name=&quot;robots&quot; content=&quot;index, follow&quot;&gt;
&lt;?php } ?&gt;
</pre>
<p>* Make sure &#8220;<!--?php" and "?-->&lt;?php ?&gt;&#8221; tags are properly wrapped and closed.</p>
<h1>Check out CloudFlare powered concrete5 sites!</h1>
<p><a href="http://concrete5-japan.org/" target="_blank">http://concrete5-japan.org/</a><br />
<a href="http://yokosonews.com/" target="_blank"> http://yokosonews.com/</a></p>
<p>* as of June 2011</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://en.katzueno.com/2011/06/14/using-cloudflare-for-concrete5/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://en.katzueno.com/2011/06/14/using-cloudflare-for-concrete5/" />
	</item>
		<item>
		<title>New design!</title>
		<link>http://en.katzueno.com/2011/06/14/new-design/</link>
		<comments>http://en.katzueno.com/2011/06/14/new-design/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 21:53:33 +0000</pubDate>
		<dc:creator>katzueno</dc:creator>
				<category><![CDATA[Tech & Web]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Media 2.5]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://en.katzueno.com/?p=341</guid>
		<description><![CDATA[I just installed the new theme for my blog. I hope you like it. Although concrete5 is much superior in theme design whereas WordPress is very hard to design a theme, WordPress is still the key player of CMS, especially as a blog platform. It&#8217;s very good as maintaining a number of simple title-and-text contents. No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://en.katzueno.com/files/2011/06/20110614.01.renewaldesign.jpg" title="20110614.01.renewaldesign" width="590" height="330" class="size-full wp-image-342 aligncenter" /></p>
<p>I just installed the new theme for my blog. I hope you like it.</p>
<p>Although concrete5 is much superior in theme design whereas WordPress is very hard to design a theme, WordPress is still the key player of CMS, especially as a blog platform.</p>
<p>It&#8217;s very good as maintaining a number of simple title-and-text contents.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://en.katzueno.com/2011/06/14/new-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://en.katzueno.com/2011/06/14/new-design/" />
	</item>
		<item>
		<title>WANTED: volunteers and guests of 311 Disasters in Japan</title>
		<link>http://en.katzueno.com/2011/06/11/wanted-volunteers-and-guest-of-311-disasters-japan/</link>
		<comments>http://en.katzueno.com/2011/06/11/wanted-volunteers-and-guest-of-311-disasters-japan/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 01:11:54 +0000</pubDate>
		<dc:creator>katzueno</dc:creator>
				<category><![CDATA[Media]]></category>
		<category><![CDATA[Earthquake]]></category>
		<category><![CDATA[Japan]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Tsunami]]></category>
		<category><![CDATA[YokosoNews]]></category>

		<guid isPermaLink="false">http://en.katzueno.com/?p=313</guid>
		<description><![CDATA[PLEASE DISTRIBUTE: YokosoNews, the English social media to introduce Japanese culture in English, is currently looking for volunteer reporters and guests who can share their experience during our live cast for the next generation. YokosoNews usually provide the useful travel tips, lifestyle and entertainment information of Japan to welcome the people from all over the world. However, Japan has lived with natural disasters. In order to welcome the people from all over the world, YokosoNews had been prepared to provide &#8230; <a href="http://en.katzueno.com/2011/06/11/wanted-volunteers-and-guest-of-311-disasters-japan/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://en.katzueno.com/files/2011/06/201105179.01.311update.jpeg" title="201105179.01.311update" width="590" height="332" class="aligncenter size-full wp-image-314" /></p>
<p>PLEASE DISTRIBUTE:</p>
<p>YokosoNews, the English social media to introduce Japanese culture in English, is currently looking for volunteer reporters and guests who can share their experience during our live cast for the next generation.</p>
<p>YokosoNews usually provide the useful travel tips, lifestyle and entertainment information of Japan to welcome the people from all over the world.</p>
<p>However, Japan has lived with natural disasters. In order to welcome the people from all over the world, YokosoNews had been prepared to provide necessary disaster prevention awareness especially to the non-Japanese residents in Japan since the beginning of YokosoNews operation.</p>
<h1>The journey since 311 Great East Japan Earthquake</h1>
<p>Since the 2:52pm on March 11, 2011, 6 minutes after the 2011 Tohoku Earthquake, YokosoNews had cancelled all of its regular broadcasting and focuses on the emergency live casting by translating the local Japanese TV news and the live reports from the people from Kanto area.</p>
<p>Thanks to the disaster preparation, YokosoNews knew where to obtain the right information. We were the few trusted English source of the information especially during the 1st week of the disaster.</p>
<p>More than one million people tuned in to YokosoNews emergency live cast during the 1st month of the 311 Earthquake and Tsunami.</p>
<p>YokosoNews was interviewed by Al Jazeera, ABC TV and Radio, German Public Radio, Russian TV. French newspaper, La Monde, and Reuters, YokosoNews and other European media tuned in to YokosoNews to obtain the latest information.</p>
<h1>The shift from disaster to reconstruction</h1>
<p>Prior to the 2011 Tohoku Earthuaqe, YokosoNews had been aware that the long-term support would be needed in case of major disaster from the past experience, such as Great Hanshin Earthquake in 1995.</p>
<p>In addition to the support to the people of Tohoku, YokosoNews recognize the value of preserving the history in English for the future generation.</p>
<p>These experience could be priceless knowledge to the rest of the world where they face the similar natural disasters by learning the successful prevention measure and mistakes.</p>
<h1>One million live viewers in one month</h1>
<p>During the first few days of the disaster, YokosoNews was the ONLY continuous online media to provide English information about the disaster.</p>
<p>On March 12, 2011, YokosoNews had approximately 7,000 simultaneous viewers. From March 11 to April 11, over one million viewers tuned into YokosoNews live cast to receive up-to-date information from Japan.</p>
<p>During the first 30 days since the disaster, over one million viewers tuned into YokosoNews.</p>
<p>For more detail and media coverage of YokosoNews, please read<br />
<a title="Minutes of YokosoNews and Earthquake" href="http://en.katzueno.com/2011/03/26/minutes-of-yokosonews-and-earthquake/">http://en.katzueno.com/2011/03/26/minutes-of-yokosonews-and-earthquake/</a></p>
<h1>The first to report, the last to report</h1>
<p>For the first a couple days, no other English media was capable to broadcast the information but YokosoNews.</p>
<p>YokosoNews kept broadcasting at least 14-18 hours a day to provide the latest update.</p>
<p>After a certain time, the world had to shift its focus to others. YokosoNews was the only online media to report about the disaster continuously.</p>
<p>YokosoNews believes that the major disaster could last years to recover. As the first English media to report the incident, we are responsible to report until the end.</p>
<h1>Years of preparation</h1>
<p>The history of YokosoNews&#8217; disaster update originated from Great Hanshin Earthquake in 1995.</p>
<p>When YokosoNews was formed in 2008, the safety of Engligh speaking non-Japanese traveler and resident was already the core mission of YokosoNews.</p>
<p>YokosoNews has been studying and monitoring what has happened during the major disasters in modern Japan. Also we closely learned the advantage and disadvantage of various social media.</p>
<h1>YokosoNews&#8217; long-term commitment</h1>
<p>Based on our experience from the past disasters, the people forget the power of mother nature.</p>
<p>In fact, many Japanese people didn&#8217;t pay attention to the ancient Japanese from how terrible tsunami was 1,000 years ago. It&#8217;s very difficult to maintain the focus generation after generation.</p>
<p>However, the power of social media and audio &amp; visual presentation could help sustain the focus of many people.</p>
<p>At the same time, we believe that our effort would help all over the world where it has the potential of any natural disaster.</p>
<p>We&#8217;re committed to bring the information not limited to:</p>
<ul>
<li>Provide safety information
<ul>
<li>Natural disasters</li>
<li>Crime</li>
<li>Moral</li>
<li>Public Health</li>
</ul>
</li>
<li>Continuous live streaming</li>
<li>For English language for non-Japanese speaker in Japan</li>
<li>To preserve the history while it&#8217;s fresh for the future generation</li>
<li>There&#8217;re still many help needed in the disaster area</li>
</ul>
<p>First, we will continue our &#8220;311 Weekly Disaster Update&#8221; until March 11.</p>
<h1>YokosoNews needs your help</h1>
<p>Now, YokosoNews needs your help. I will ask all of you to:</p>
<ul>
<li>Tell your friend about disaster prevention and YokosoNews</li>
<li>Share your disaster prevention</li>
</ul>
<p>Then.. if you happened to have close connection to the people in Japan&#8230;</p>
<h2>Volunteer and Guests Wanted</h2>
<p>Especially, those who are closely connected to Tohoku Japan and Fukushima, we&#8217;re looking for your help</p>
<ul>
<li>Share your story
<ul>
<li>Anyone who lives in Tohoku or Fukushima?</li>
<li>Anyone who went to volunteer in Tohoku or Fukushima</li>
<li>No English speaking skills are required</li>
</ul>
</li>
<li>Share your photo and video
<ul>
<li>To share the reconstruction &#8211; No tear breaking needed</li>
</ul>
</li>
<li>Journalist
<ul>
<li>Who&#8217;s willing to share your story</li>
</ul>
</li>
<li>Experts
<ul>
<li>Construction</li>
<li>Medical and Public Health</li>
<li>Government and Politics</li>
<li>Energy</li>
</ul>
</li>
<li>English translation volunteers
<ul>
<li>Fast check</li>
<li>Assistant to weekly live cast</li>
</ul>
</li>
<li>Promote the works of YokosoNews to the people in Tohoku and Fukushima
<ul>
<li>Especially to the people in Tohoku</li>
<li>Especially to the local government, companies and organizations in Tohoku or related parties</li>
</ul>
</li>
<li>Companies
<ul>
<li>To share their reconstruction efforts</li>
<li>To promote tourism in Tohoku</li>
<li>To report their volunteer efforts</li>
</ul>
</li>
<li>Suggestions</li>
<li>News tips</li>
</ul>
<p>We want your &#8220;real&#8221; voice. NOT &#8220;I heard or watched.&#8221;</p>
<h3>Example</h3>
<p><strong>May 17, 2011: 311 Disaster Update #36</strong><a href="http://yokosonews.com/news/311-disaster-update-36/" target="_blank"></p>
<p>http://yokosonews.com/news/311-disaster-update-36/</a></p>
<ul>
<li>Volunteer Report of Ishinomaki</li>
<li>Anti-nuclear rally in Iwaki, Fukushima</li>
</ul>
<h1>Live streaming date</h1>
<ul>
<li>Time:
<ul>
<li>Japan Standard Time &#8211; Every Tuesday at 8pm</li>
</ul>
</li>
<li>URL:
<ul>
<li><a href="http://YokosoNews.tv" target="_blank">http://YokosoNews.tv</a></li>
</ul>
</li>
<li>Archive: Ustream and YouTube
<ul>
<li><a href="http://youtube.com/YokosoNews" target="_blank">http://youtube.com/YokosoNews</a></li>
<li><a href="http://www.ustream.tv/user/YokosoNews/videos" target="_blank">http://www.ustream.tv/user/YokosoNews/videos</a></li>
</ul>
</li>
</ul>
<h1>Technial requirement for the guests</h1>
<p>For those who can be on live cast or interview</p>
<ul>
<li>Live interview via
<ul>
<li>Skype (most preferrd)</li>
<li>iChat</li>
<li>Live Messenger</li>
<li>Viber</li>
<li>Reengo</li>
<li>Tel (from USA or Japan)</li>
</ul>
</li>
<li>We can arrange the live cast or it could be pre-recorded</li>
<li>Communication
<ul>
<li>The person should know how to communicate via Email, Skype, Twitter or Facebook</li>
</ul>
</li>
</ul>
<p>If the guests could prepare the following prior to the live appearance. That would be great.</p>
<ul>
<li>Photo
<ul>
<li>using Facebook or Flickr photos</li>
<li>Website or blogs</li>
</ul>
</li>
<li>Video
<ul>
<li>YouTube</li>
<li>Vimeo</li>
</ul>
</li>
<li>Presentation
<ul>
<li>Word, Powerpoint or Keynote</li>
</ul>
</li>
</ul>
<p>We hope your continuous corporations!</p>
<h1>Contact</h1>
<p>Feel free to contact</p>
<p><a href="http://japanexp.org/contact/" target="_blank">http://japanexp.org/contact/</a></p>
<p>Please make sure to leave a voicemail</p>
<p>Japan +81 (3) 4590-6279<br />
USA +1 (310) 820-7129</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://en.katzueno.com/2011/06/11/wanted-volunteers-and-guest-of-311-disasters-japan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://en.katzueno.com/2011/06/11/wanted-volunteers-and-guest-of-311-disasters-japan/" />
	</item>
		<item>
		<title>Adding (+1) to US tel numbers in Address Book (Mac OS X)</title>
		<link>http://en.katzueno.com/2011/06/08/adding-1-to-us-tel-numbers-in-address-book-mac-os-x/</link>
		<comments>http://en.katzueno.com/2011/06/08/adding-1-to-us-tel-numbers-in-address-book-mac-os-x/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 01:41:32 +0000</pubDate>
		<dc:creator>katzueno</dc:creator>
				<category><![CDATA[Tech & Web]]></category>
		<category><![CDATA[Address Book]]></category>
		<category><![CDATA[Organization]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://en.katzueno.com/?p=312</guid>
		<description><![CDATA[This is my memo to share with everyone. I moved to Japan, and needed to add +1 to all my US contacts. Then I found the following post Adding 1 to all phone numbers in address book https://discussions.apple.com/message/9169756 However, I already have many Japanese phone numbers in my address book starting with &#8220;0&#8243; So I&#8217;ve modified Andreas&#8217; code to the folliowing So that it will skip the phone number starting with zero (0). How to use the code Launch AppleScript &#8230; <a href="http://en.katzueno.com/2011/06/08/adding-1-to-us-tel-numbers-in-address-book-mac-os-x/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>This is my memo to share with everyone.</p>
<p>I moved to Japan, and needed to add +1 to all my US contacts. Then I found the following post</p>
<p><strong>Adding 1 to all phone numbers in address book</strong><br />
<a href="https://discussions.apple.com/message/9169756#9169756">https://discussions.apple.com/message/9169756</a></p>
<p>However, I already have many Japanese phone numbers in my address book starting with &#8220;0&#8243; So I&#8217;ve modified Andreas&#8217; code to the folliowing</p>
<pre class="brush: plain; title: ; notranslate">tell application &quot;Address Book&quot;
    repeat with eachPerson in people
        repeat with eachNumber in phones of eachPerson
            set theNum to (get value of eachNumber)
            if (theNum does not start with &quot;+&quot; and theNum does not start with &quot;1&quot; and theNum does not start with &quot;0&quot;) then
                set value of eachNumber to &quot;+1&quot; &amp;amp; theNum
            end if
        end repeat
    end repeat
    save
end tell</pre>
<p>So that it will skip the phone number starting with zero (0).</p>
<p><strong>How to use the code</strong></p>
<ul>
<li>Launch AppleScript Editor</li>
<li>Copy and paste the above codes</li>
<li>Click [Compile]</li>
<li>Run the script (CAUTION)</li>
</ul>
<p>If you have more than 300 contacts, you need the following extra step. Otherwise, the script may freeze (like it did it on me)</p>
<ul>
<li>After clicking [Compile]</li>
<li>Save it onto [Library] &#8211; [Scripts] &#8211; [Address Book Scripts]</li>
<li>Go to Preferences of AppleScript Editor</li>
<li>In General, make sure &#8220;Show Script menu in menu bar&#8221; is checked</li>
<li>You will see &#8220;S&#8221; like curve on the menu bar on top</li>
<li>Launch Address Book</li>
<li>Go to script menu &#8211; AddressBook Scripts &#8211; [your script]</li>
<li>Then it will run without any notification</li>
<li>I had 1500 contacts, and it took me about 5 min</li>
</ul>
<p>Done.</p>
<p>I had to include the script in the menu.</p>
<p>If I run the script in Script Editor, it always freezes at 380 items.</p>
<p>Other useful post</p>
<p><strong style="font-size: 10pt;">Need to add area code to all local contacts&#8217; phone numbers</strong><br />
<a href="https://discussions.apple.com/message/10833980#10833980">https://discussions.apple.com/message/10833980</a></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://en.katzueno.com/2011/06/08/adding-1-to-us-tel-numbers-in-address-book-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://en.katzueno.com/2011/06/08/adding-1-to-us-tel-numbers-in-address-book-mac-os-x/" />
	</item>
		<item>
		<title>FMLE: How to Ustream the HD, High and Low quality multi streams</title>
		<link>http://en.katzueno.com/2011/06/07/fmle-how-to-ustream-the-hd-high-and-low-quality-multi-streams/</link>
		<comments>http://en.katzueno.com/2011/06/07/fmle-how-to-ustream-the-hd-high-and-low-quality-multi-streams/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 23:34:53 +0000</pubDate>
		<dc:creator>katzueno</dc:creator>
				<category><![CDATA[Filmmaking]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Tech & Web]]></category>
		<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Media 2.5]]></category>
		<category><![CDATA[Ustream]]></category>
		<category><![CDATA[YokosoNews]]></category>

		<guid isPermaLink="false">http://en.katzueno.com/?p=305</guid>
		<description><![CDATA[Using Flash Media Live Encoder 3.2 (FMLE), you can now stream 3 different quality of streams using Ustream like SpaceVideoCast.com SpaceVidCast http://www.ustream.tv/spacevidcast As on June 6, 2011, you can only 1st Stream will be labeled as &#8220;HD&#8221; 2nd Stream will be labeled as &#8220;High&#8221; 3rd Stream will be labeled as &#8220;Low&#8221; No matter what your quality setting of FMLE. That&#8217;s probably why Ustream has not officially put this how-tos in their support yet. Requirement for this tutorial In this tutorial, &#8230; <a href="http://en.katzueno.com/2011/06/07/fmle-how-to-ustream-the-hd-high-and-low-quality-multi-streams/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Using Flash Media Live Encoder 3.2 (FMLE), you can now stream 3 different quality of streams using Ustream like SpaceVideoCast.com</p>
<ul>
<li><strong>SpaceVidCast</strong><a href="http://www.ustream.tv/spacevidcast" target="_blank">
<p>http://www.ustream.tv/spacevidcast</a></li>
</ul>
<p><a href="http://www.ustream.tv/spacevidcast" target="_blank"><img src="http://en.katzueno.com/files/2011/06/20110607.00.spacevid.jpg" title="20110607.00.spacevid" width="590" height="416" class="aligncenter size-full wp-image-306" /></a></p>
<p>As on June 6, 2011, you can only</p>
<ul>
<li>1st Stream will be labeled as &#8220;HD&#8221;</li>
<li>2nd Stream will be labeled as &#8220;High&#8221;</li>
<li>3rd Stream will be labeled as &#8220;Low&#8221;</li>
</ul>
<p><img src="http://en.katzueno.com/files/2011/06/20110607.02.spacevid.jpg" title="20110607.02.spacevid" width="350" height="360" class="aligncenter size-full wp-image-307" /></p>
<p>No matter what your quality setting of FMLE.</p>
<p>That&#8217;s probably why Ustream has not officially put this how-tos in their support yet.</p>
<h1>Requirement for this tutorial</h1>
<p>In this tutorial, you must have</p>
<ul>
<li>Fast Windows or Mac
<ul>
<li>faster than Intel Core2Duo i7 6 Core Processor)</li>
</ul>
</li>
<li>Fast Internet with fast upload bandwidth
<ul>
<li>More than <strong>5Mbps upload</strong> speed is recommended</li>
<li>Check your UPLOAD speed at
<ul>
<li><a href="http://speedtest.net/" target="_blank">http://speedtest.net</a></li>
</ul>
</li>
</ul>
</li>
<li>Other basic video equipment (in HD quality)</li>
<li>A Ustream account</li>
</ul>
<p>And you must know</p>
<ul>
<li>How to broadcast on Ustream</li>
<li>How to use Ustream Broadcaster (Browser-base Ustream interface)</li>
<li>How to use FMLE</li>
</ul>
<h1>How to multi stream different quality in Flash Media Live Encoder</h1>
<p>Here is how tos.</p>
<p>Basis steps</p>
<ul>
<li>Start your FMLE</li>
<li>Load the regular XML file from Ustream</li>
<li>Set up the basic quality, input source, and other preferences</li>
</ul>
<p>Now multi stream settings</p>
<p><img src="http://en.katzueno.com/files/2011/06/20110607.03.FLME_.jpg" title="20110607.03.FLME" width="590" height="444" class="aligncenter size-full wp-image-308" /></p>
<ul>
<li>Go to the stream and use the example</li>
</ul>
<p><img src="http://en.katzueno.com/files/2011/06/20110607.04b.FLME_.jpg" title="20110607.04b.FLME" width="350" height="100" class="aligncenter size-full wp-image-309" /></p>
<p>You can only set one setting for the audio. Thus, I recommend, 96kbps AAC 44.1KHz for Stereo, or 48kbps AAC 44.1Khz for mono. MONO IS RECOMMENDED unless you broadcast music live concert. Don&#8217;t waste your bandwidth.</p>
<p>* These are recommended setting. But you should play around with the setting to come up with the best result.</p>
<ul>
<li>Go to the right section, and add &#8220;%i&#8221; to the and of the stream after &#8220;offair&#8221;</li>
</ul>
<p><img src="http://en.katzueno.com/files/2011/06/20110607.05.FLME_.jpg" title="20110607.05.FLME" width="590" height="244" class="aligncenter size-full wp-image-310" /></p>
<p>That&#8217;s it.</p>
<p>Then, the rest of the broadcasting procedure will be the same as others. Click &#8220;start,&#8221; Go to Ustream Broadcaster and click Start Broadcast. Enjoy the multi streams!</p>
<p><strong>DISCLAIMER:</strong> This is very unofficial version of multi stream. Ustream could change the method at any time.</p>
<p><span style="color: #ffffff;">.</span></p>
<h2>If you think this tutorial is helpful,</h2>
<p>Help us promote our live cast at <a href="http://YokosoNews.tv" target="_blank">YokosoNews.tv</a> to introduce Japanese culture in English via social media.</p>
<p>Thanks.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://en.katzueno.com/2011/06/07/fmle-how-to-ustream-the-hd-high-and-low-quality-multi-streams/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://en.katzueno.com/2011/06/07/fmle-how-to-ustream-the-hd-high-and-low-quality-multi-streams/" />
	</item>
		<item>
		<title>Minutes of YokosoNews and Earthquake</title>
		<link>http://en.katzueno.com/2011/03/26/minutes-of-yokosonews-and-earthquake/</link>
		<comments>http://en.katzueno.com/2011/03/26/minutes-of-yokosonews-and-earthquake/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 17:54:23 +0000</pubDate>
		<dc:creator>katzueno</dc:creator>
				<category><![CDATA[Media]]></category>

		<guid isPermaLink="false">http://en.katzueno.com/?p=287</guid>
		<description><![CDATA[MEMO: YokosoNews originally launched on April 2010 to introduce Japanese culture in English. But it has prepared to serve as information hub on social media in case of emergency. Katz, editor and producer of YokosoNews, has experienced 911 in Los Angeles. Being as a foreigner in the foreign country, he recognized the needs of information for English speakers and possibility of social media. &#8212;&#8212;&#8212;- Stories &#8212;&#8212;&#8212;- An American who was stuck in disaster area in Sendai got to hold of &#8230; <a href="http://en.katzueno.com/2011/03/26/minutes-of-yokosonews-and-earthquake/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p>MEMO:</p>
<p>YokosoNews originally launched on April 2010 to introduce Japanese culture in English. But it has prepared to serve as information hub on social media in case of emergency.</p>
<p>Katz, editor and producer of YokosoNews, has experienced 911 in Los Angeles. Being as a foreigner in the foreign country, he recognized the needs of information for English speakers and possibility of social media.</p>
<p>&#8212;&#8212;&#8212;-</p>
<h1>Stories</h1>
<p>&#8212;&#8212;&#8212;-</p>
<p>An American who was stuck in disaster area in Sendai got to hold of the English hotline number via YokosoNews. He&#8217;s safely on the way back to the US.</p>
<p>Some was able to get in touch with relative/friend soon after the quake. Some waited for a week &amp; finally able to contact with friend/relative &amp; shared the joy with other viewers in the timeline.</p>
<p>The YokosoNews&#8217; breaking news were faster than any other English media including, CNN Breaking News and BBC.</p>
<p>&#8212;&#8212;&#8212;-</p>
<h1>Timeline</h1>
<p>&#8212;&#8212;&#8212;-</p>
<h2>- Friday, March 11, 2011</h2>
<p>2:52pm (JST), witihn 6 minutes after Earthquake, YokosoNews tweeted the Tsunami alert.</p>
<p>3:20pm (JST), within 40 minutes after Earthquake, YokosoNews began its emergency broadcast.</p>
<h2>- Saturday, March 12, 2011</h2>
<p>Around 7pm, YokosoNews simulteneous viewers reached over 6,200 during the press conference of Edano, Japan&#8217;s Chief Cabinet Secreatary to give the latest update of Earthquake and Nuclear power plant.</p>
<p>During the first 2 days, YokosoNews was ONLY English Internet media which was reporting the latest information from Japanese media and governtment.</p>
<h2>- Friday, March 25, 2011</h2>
<p>YokosoNews had been broadcasting the emergency live cast for 10-18 hours a day for 14 days.</p>
<p>&#8212;&#8212;&#8212;-</p>
<h1>Statistics (3/11~3/25/2011)</h1>
<p>&#8212;&#8212;&#8212;-</p>
<ul>
<li>The VERY FIRST English media to report the 311 Earthquake (First reported 6 min after the Earthquake)</li>
<li>Total approx. 1 million total live cast viewers (Ustream)</li>
<li>Total 401,821 unique live cast viewers (Ustream)</li>
<li>Maximum simultaneous viewers once reached 6,000 (Ustream)</li>
<li>Total 338,513 viewer hours (Ustream)</li>
<li>Recorded archived also generated 138,899 views (Ustream) <span style="color: #ffffff;">Facebook: 2394 Likes Twitter: 2404 Followers 145,272 S/208,959 P/88,855 U</span></li>
</ul>
<p>&#8212;&#8212;&#8212;-</p>
<h1>Media Coverage</h1>
<p>&#8212;&#8212;&#8212;-</p>
<ul>
<li>The Stream &#8211; Al Jazeera English
<ul>
<li>April  27, 2011</li>
<ul>
<li><a href="http://stream.aljazeera.com/story/yokoso-news" target="_blank">http://stream.aljazeera.com/story/yokoso-news</a></li>
<li>Video &#8211; <a href="http://stream.aljazeera.com/episode/episode-2" target="_blank">http://stream.aljazeera.com/episode/episode-2</a></li>
</ul>
<li>August 9, 2011</li>
<ul>
<li><a href="http://stream.aljazeera.com/story/japan-research" target="_blank">http://stream.aljazeera.com/story/japan-research</a></li>
</ul>
</ul>
</li>
<li>Breitband &#8211; Deutschlandradio Kultur
<ul>
<li><a href="http://breitband.dradio.de/yokoso-news/" target="_blank">http://breitband.dradio.de/yokoso-news/</a></li>
</ul>
</li>
<li>Boing Boing (lifehacker)
<ul>
<li><a href="http://www.boingboing.net/2011/03/12/live-real-time-engli.html" target="_blank">http://www.boingboing.net/2011/03/12/live-real-time-engli.html</a></li>
<li><a href="http://lifehacker.com/5781316/listen-to-live-coverage-from-japan-in-english-from-yokosonews" target="_blank">http://lifehacker.com/5781316/listen-to-live-coverage-from-japan-in-english-from-yokosonews</a></li>
</ul>
</li>
<li>Eyewitness News &#8211; ABC Houston
<ul>
<li><a href="http://abclocal.go.com/ktrk/story?section=news%2Flocal&amp;id=8024140" target="_blank">http://abclocal.go.com/ktrk/story?section=news%2Flocal&amp;id=8024140</a></li>
</ul>
</li>
<li>John Phillip&#8217;s Show &#8211; KABC 790 Talk Radio
<ul>
<li><a href="http://www.kabc.com/Article.asp?id=2135140&amp;spid=33483" target="_blank">http://www.kabc.com/Article.asp?id=2135140&amp;spid=33483</a>and continuous appearance</li>
</ul>
</li>
<li>Le Monte (France) &#8211; real-time web update
<ul>
<li><a href="http://www.lemonde.fr/asie-pacifique/article/2011/03/14/en-direct-nouvelle-explosion-a-l-usine-de-fukushima_1492576_3216.html#ens_id=1491461" target="_blank">http://www.lemonde.fr/asie-pacifique/article/2011/03/14/en-direct-nouvelle-explosion-a-l-usine-de-fukushima_1492576_3216.html#ens_id=1491461</a></li>
</ul>
</li>
<li>Haffington Post (NIkkei View)
<ul>
<li><a href="http://www.huffingtonpost.com/gil-asakawa/japan-tsunami-media-coverage_b_835399.html" target="_blank">http://www.huffingtonpost.com/gil-asakawa/japan-tsunami-media-coverage_b_835399.html</a></li>
<li><a href="http://www.nikkeiview.com/blog/2011/03/13/tohoku-kanto-earthquake-tsunami/" target="_blank">http://www.nikkeiview.com/blog/2011/03/13/tohoku-kanto-earthquake-tsunami/</a></li>
</ul>
</li>
<li>Microsoft Certified Professional Magazine Online
<ul>
<li><a href="http://mcpmag.com/Blogs/Certifiable/2011/03/Earthquake-News-and-Tech.aspx" target="_blank">http://mcpmag.com/Blogs/Certifiable/2011/03/Earthquake-News-and-Tech.aspx</a></li>
</ul>
</li>
</ul>
<p>&#8212;&#8212;&#8212;-</p>
<h1>The origin of YokosoNews disaster coverage</h1>
<p>&#8212;&#8212;&#8212;-</p>
<p>Origin of YokosoNews 311 Disaster Update</p>
<ul>
<li>311 Disaster Update was the part of YokosoNews fundamental plan</li>
<ul>
<li>Provide sufficient English information to non-Japanese speaking residents in Japan</li>
</ul>
<li>Experience and knowledge from 1995 Hanshin Earthquake</li>
<ul>
<li>Studied disaster prevention</li>
<li>Studied volunteer efforts</li>
<li>Studied the day to day situation after the earthquake</li>
<li>The earthquake experiences were worth to be shared to world wide community but there were the language barrier.</li>
</ul>
<li>Experience from 911</li>
<ul>
<li>Experienced that overseas media won&#8217;t provide enough coverage</li>
<li>Saw many foreign students in USA panicked who didn&#8217;t understand English perfectly</li>
</ul>
<li>Developed social media live reporting methods from</li>
<ul>
<li>Toyota Recall hearing</li>
<ul>
<li>Watched C-SPAN online live cast</li>
<li>Translated into Japanese via Twitter</li>
</ul>
<li>Apple Keynote speech</li>
<ul>
<li>Watched Steve Jobs keynote speech via live cast</li>
<li>Didn&#8217;t illegally broadcast their live video</li>
<li>But broadcasted the Japanese translation of Steve Jobs keynote via Ustream</li>
</ul>
</ul>
</ul>
<p><span style="color: #eaeaea;">Reuters &#8211; liveblog</span></p>
<p><span style="color: #eaeaea;">http://live.reuters.com/Event/Japan_earthquake2</span></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://en.katzueno.com/2011/03/26/minutes-of-yokosonews-and-earthquake/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://en.katzueno.com/2011/03/26/minutes-of-yokosonews-and-earthquake/" />
	</item>
		<item>
		<title>A Happy New Year 2011</title>
		<link>http://en.katzueno.com/2011/01/03/a-happy-new-year-2011/</link>
		<comments>http://en.katzueno.com/2011/01/03/a-happy-new-year-2011/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 05:41:15 +0000</pubDate>
		<dc:creator>katzueno</dc:creator>
				<category><![CDATA[Lifestyle]]></category>

		<guid isPermaLink="false">http://en.katzueno.com/?p=280</guid>
		<description><![CDATA[at Chiyozaki Beach, Suzuka, Mie, Japan on January 1st, 2011 [ Check more photo and video ] . . No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://en.katzueno.com/files/2011/01/20110101-01.greeting-600x337.jpg" title="20110101-01.greeting" width="590" height="331" class="aligncenter size-large wp-image-281" /></p>
<p style="text-align: center;">at Chiyozaki Beach, Suzuka, Mie, Japan on January 1st, 2011</p>
<p style="text-align: center;">[ <a href="http://yokosonews.com/lifestyle/hatsuhinode-2011/" target="_blank">Check more photo and video</a> ]</p>
<p style="text-align: center;"><span style="color: #ffffff;">.</span></p>
<p style="text-align: center;"><span style="color: #ffffff;">.</span></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://en.katzueno.com/2011/01/03/a-happy-new-year-2011/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://en.katzueno.com/2011/01/03/a-happy-new-year-2011/" />
	</item>
		<item>
		<title>3,000 people in 2 years</title>
		<link>http://en.katzueno.com/2010/11/03/3000-people-in-2-years/</link>
		<comments>http://en.katzueno.com/2010/11/03/3000-people-in-2-years/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 23:03:13 +0000</pubDate>
		<dc:creator>katzueno</dc:creator>
				<category><![CDATA[Media]]></category>
		<category><![CDATA[Japan]]></category>
		<category><![CDATA[Japanese]]></category>
		<category><![CDATA[Media 2.5]]></category>
		<category><![CDATA[YokosoNews]]></category>

		<guid isPermaLink="false">http://en.katzueno.com/?p=272</guid>
		<description><![CDATA[I just finished filling out the 10th notebooks. 10 notebooks in 2 years. These are the notebook that I started taking in September 2008 when I first came up with the idea of YokosoNews. As a media, it&#8217;s all about how much information you can gather, edit them, and publish it to the public. As I completed the 10th notebooks, I think I&#8217;m going to really start editing, and reporting them. The notebooks contain topics, tips and people that could &#8230; <a href="http://en.katzueno.com/2010/11/03/3000-people-in-2-years/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://en.katzueno.com/files/2010/11/73436_173821459298854_111775688836765_625677_3025855_n.jpg" title="YokosoNews notebooks" width="520" height="389" class="size-full wp-image-273  aligncenter" /></p>
<p>I just finished filling out the 10th notebooks. 10 notebooks in 2 years.</p>
<p>These are the notebook that I started taking in September 2008 when I first came up with the idea of YokosoNews. As a media, it&#8217;s all about how much information you can gather, edit them, and publish it to the public. As I completed the 10th notebooks, I think I&#8217;m going to really start editing, and reporting them.</p>
<p>The notebooks contain topics, tips and people that could become a YokosoNews stories. And these are NOT from the Internet. For these notebooks, I intended not-to-use any Internet information but newspaper, magazine, TV, radio or books. This is the reason why I insist on handwriting too.</p>
<p>Anyway, each books contains 50-100 topics with average 300 people. So I compiled the 1,000 stories idea and 3,000 people into 10 notebooks!</p>
<p>It was very easy task and practice, though it&#8217;s difficult to continue.</p>
<p>Now, I&#8217;ll move onto the 2nd step of YokosoNews, start looking for more people to join our venture!</p>
<p style="text-align: center;">##</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://en.katzueno.com/2010/11/03/3000-people-in-2-years/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://en.katzueno.com/2010/11/03/3000-people-in-2-years/" />
	</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 1/55 queries in 0.026 seconds using disk: basic
Object Caching 2333/2449 objects using disk: basic

Served from: en.katzueno.com @ 2012-02-23 18:49:35 -->
