<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>trudat &#187; Internet</title>
	<atom:link href="http://trudat.info/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://trudat.info</link>
	<description></description>
	<lastBuildDate>Thu, 28 Apr 2011 14:57:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Multiple Wildcard Self-Signed SSL on MAMP</title>
		<link>http://trudat.info/2010/05/multiple-wildcard-self-signed-ssl-on-mamp/</link>
		<comments>http://trudat.info/2010/05/multiple-wildcard-self-signed-ssl-on-mamp/#comments</comments>
		<pubDate>Fri, 07 May 2010 02:25:15 +0000</pubDate>
		<dc:creator>trudat</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://trudat.info/?p=1119</guid>
		<description><![CDATA[I use a MacBook Pro (MBP) to develop a SaaS product that runs on PHP and Apache. Some pages, such as login forms, require SSL. For years, up until yesterday, I had to specially configure my local development machine to specifically not use SSL during testing because I had not setup the laptop to support [...]]]></description>
			<content:encoded><![CDATA[<p>I use a MacBook Pro (MBP) to develop a SaaS product that runs on PHP and Apache. Some pages, such as login forms, require SSL. For years, up until yesterday, I had to specially configure my local development machine to specifically not use SSL during testing because I had not setup the laptop to support SSL. However, yesterday I finally did it! Here&#8217;s how I did it, in case it is a benefit to anyone.</p>
<p>I need two domains for my purposes: one for the app itself and another one for the CDN server. So I figured out how to set up two SSL vhosts on the same MAMP Apache server.</p>
<p>Using these instructions, you&#8217;ll be able to use https://anysubdomain.fake-domain-1.com/ and https://fake-domain-2.com:4043/ for testing locally. There must be a way to get around using the different port for the second vhost, but I couldn&#8217;t figure it out. But it works! If you want to add on more SSL vhosts, I&#8217;m sure you could just use different ports.</p>
<p><span id="more-1119"></span></p>
<p><a href="http://mamp.info/en/index.html"><img class="alignright size-full wp-image-1133" title="MAMP" src="http://trudat.info/wp-content/uploads/2010/05/mamp_home.gif" alt="" width="258" height="253" /></a>On the MBP, I run <a href="http://mamp.info/en/mamp/index.html">MAMP</a> (the free version).</p>
<h2>Setup Local Domains</h2>
<p>I test my app locally using a fake domain names. First, you need to establish your fake domain name as a local domain. To do so, you need to add it to your hosts file.</p>
<p>To open up your hosts file in TextEdit while logged in with root permission, enter the following in Terminal:</p>
<pre class="brush: plain; title: ;">sudo /Applications/TextEdit.app/Contents/MacOS/TextEdit /etc/hosts</pre>
<p>Your hosts files might look something like this:</p>
<pre class="brush: plain; title: ;">127.0.0.1    localhost
255.255.255.255    broadcasthost
::1             localhost
fe80::1%lo0    localhost
127.0.0.1 mamp fake-domain-1.com anysubdomain.fake-domain-1.com fake-domain-2.com
</pre>
<p>Just add the domains you want after 127.0.0.1 mamp. Once you update your hosts file, you&#8217;ll need to enter this in Terminal.</p>
<pre class="brush: plain; title: ;">dscacheutil - flushcache</pre>
<h2>Create Self-Signed SSL Certificates</h2>
<p>Create a directory to store your SSL certificates at:</p>
<pre class="brush: plain; title: ;">/Applications/MAMP/conf/apache/ssl</pre>
<p>Then create directories in his folder for your various local domains:</p>
<pre class="brush: plain; title: ;">/Applications/MAMP/conf/apache/ssl/fake-domain-1.com
/Applications/MAMP/conf/apache/ssl/fake-domain-2.com</pre>
<p>Log into Terminal. Sign in as root by using the <a href="http://en.wikipedia.org/wiki/Su_%28Unix%29">su command</a>. cd to one of the directories you just made and enter in these commands taken from <a href="http://www.justinsamuel.com/2006/03/11/howto-create-a-self-signed-wildcard-ssl-certificate/">Justin Samuel&#8217;s website</a>. When you are prompted for a Common Name, enter &#8220;*.fake-domain.com&#8221; (where, of course, you substitute the domain you want to use). The * makes it a wildcard certificate for use with any subdomain on that domain. And don&#8217;t forget to enter a valid email address when asked for it. I just hit enter the first time I tried it and no files were generated.</p>
<pre class="brush: plain; title: ;">(umask 077 &amp;amp;&amp;amp; touch host.key host.cert host.info host.pem)
openssl genrsa 2048 &gt; host.key
openssl req -new -x509 -nodes -sha1 -days 3650 -key host.key &gt;  host.cert
openssl x509 -noout -fingerprint -text &lt; host.cert &gt; host.info
cat host.cert host.key &gt; host.pem
chmod 400 host.key host.pem</pre>
<h2>Configure Apache</h2>
<p>Edit the Apache config file at /Applications/MAMP/conf/apache/httpd.conf. Add this or uncomment relevant lines.</p>
<pre class="brush: plain; title: ;">LoadModule ssl_module modules/mod_ssl.so
&lt;IfModule mod_ssl.c&gt;
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
Listen 443
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl    .crl
SSLPassPhraseDialog  builtin
SSLSessionCache         dbm:/Applications/MAMP/logs/ssl_scache
SSLSessionCacheTimeout  300
SSLMutex  file:/Applications/MAMP/logs/ssl_mutex
&lt;VirtualHost *:443&gt;
ServerName fake-domain-1.com:443
ServerAdmin you@fake-domain-1.com
ServerAlias *.fake-domain-1.com
VirtualDocumentRoot /Applications/MAMP/htdocs/fake-domain-1.com/%-3+
ErrorLog /Applications/MAMP/logs/ssl_error_log
TransferLog /Applications/MAMP/logs/ssl_access_log
AddDefaultCharset utf-8
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /Applications/MAMP/conf/apache/ssl/fake-domain-1.com/host.cert
SSLCertificateKeyFile /Applications/MAMP/conf/apache/ssl/fake-domain-1.com/host.key
SetEnvIf User-Agent &quot;.*MSIE*.&quot; nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
&lt;/VirtualHost&gt;

Listen 4043

&lt;VirtualHost *:4043&gt;
 ServerName fake-domain-2.com
 ServerAdmin you@fake-domain-2.com
 DocumentRoot &quot;/Applications/MAMP/htdocs/fake-domain-2.com&quot;

 SSLEngine on
 SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
 SSLCertificateFile /Applications/MAMP/conf/apache/ssl/fake-domain-2.com/host.cert
 SSLCertificateKeyFile /Applications/MAMP/conf/apache/ssl/fake-domain-2.com/host.key
 SetEnvIf User-Agent &quot;.*MSIE*.&quot; nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0

&lt;/VirtualHost&gt;
&lt;/IfModule&gt;</pre>
<h2>Restart Apache</h2>
<p>You can use the MAMP tool to restart servers.</p>
<p><a href="http://trudat.info/wp-content/uploads/2010/05/mamp-stop-server.png"><img class="alignnone size-medium wp-image-1145" title="mamp-stop-server" src="http://trudat.info/wp-content/uploads/2010/05/mamp-stop-server-300x252.png" alt="" width="300" height="252" /></a></p>
<h2>Accept Self-Signed Certs in Firefox</h2>
<p>Try out your your domain on https in your browser. It will throw an error, but if you add an exception to use the cert you won&#8217;t get anymore errors.</p>
<p>In order to accept the self-signed certificates in Firefox you&#8217;ll do the following. Go to the URLs at https://anysubdomain.fake-domain-1.com/ and  https://fake-domain-2.com:4043/ using Firefox. Firefox will tell you that the connection is untrusted.</p>
<p>Click on &#8220;I Understand the Risks&#8221;.</p>
<p><a href="http://trudat.info/wp-content/uploads/2010/05/connection-untrusted.png"><img class="alignnone size-medium wp-image-1143" title="connection-untrusted" src="http://trudat.info/wp-content/uploads/2010/05/connection-untrusted-300x228.png" alt="" width="300" height="228" /></a></p>
<p>Then click on &#8220;Add Exception&#8221;.<br />
<a href="http://trudat.info/wp-content/uploads/2010/05/add-exception.png"><img title="add-exception" src="http://trudat.info/wp-content/uploads/2010/05/add-exception-300x264.png" alt="" width="300" height="264" /></a></p>
<p>Wait a while for the cert to load up, then click on &#8220;Confirm Security Exception&#8221;.</p>
<p>Do this for all the domains you&#8217;ve setup.</p>
<p><a href="http://trudat.info/wp-content/uploads/2010/05/confirm-security-exception.png"><img class="alignnone size-medium wp-image-1144" title="confirm-security-exception" src="http://trudat.info/wp-content/uploads/2010/05/confirm-security-exception-300x172.png" alt="" width="300" height="172" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://trudat.info/2010/05/multiple-wildcard-self-signed-ssl-on-mamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chengdu SaaS Startup Feasibility</title>
		<link>http://trudat.info/2010/04/chengdu-saas-startup-feasibility/</link>
		<comments>http://trudat.info/2010/04/chengdu-saas-startup-feasibility/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 04:44:30 +0000</pubDate>
		<dc:creator>trudat</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Chengdu]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://trudat.info/?p=829</guid>
		<description><![CDATA[Is it feasible to setup an R&#38;D unit in Chengdu, China as a way to &#8220;jump start&#8221; my SaaS startup and get it to scale? A feasibility study is one of the first requirements when submitting an application to the Chinese government to set up a wholly foreign owned enterprise (WFOE) in China. This post [...]]]></description>
			<content:encoded><![CDATA[<p><em style="font-size: 130%;">Is it feasible to setup an R&amp;D unit in Chengdu, China as a way to &#8220;jump start&#8221; my SaaS startup and get it to scale? </em></p>
<p>A <a href="http://womeninbusiness.about.com/od/businessplans/a/feasibilitystud.htm">feasibility  study</a> is one of the first requirements when submitting an  application to the Chinese government to set up a <a href="http://en.wikipedia.org/wiki/Wholly_Foreign_Owned_Enterprise">wholly  foreign owned enterprise</a> (WFOE) in China. This post is a feasibility study as to whether setting up a SaaS in Chengdu makes business sense.<span id="more-829"></span></p>
<p><strong>Reality check requested.</strong> I&#8217;ve never set up a business before in China and have never even been to Chengdu. If you have information that could help me, please feel free to add a <a href="http://trudat.info/2010/04/chengdu-saas-startup-feasibility/#respond">comment</a>.</p>
<h3>Table of Contents</h3>
<table border="0">
<tbody>
<tr>
<td valign="top">
<ul>
<li><a href="#saas">Software as a Service</a></li>
<li><a href="#chengdu-software">Software Industry</a>
<ul>
<li><a href="#cdht">High Tech Zone</a></li>
<li><a href="#tianfu">Software Park</a></li>
</ul>
</li>
<li><a href="#broadband">Internet</a></li>
<li><a href="#telephone">Telephone</a></li>
<li><a href="#staff">Human Resource</a></li>
<li><a href="#tax">Tax &amp; Incentives</a></li>
<li><a href="#capital">Registered Capital</a></li>
</ul>
</td>
<td valign="top">
<ul>
<li><a href="#expenses">Expenses</a>
<ul>
<li><a href="#office">Office Rental</a></li>
</ul>
</li>
<li><a href="#entity">Business Entity Options</a>
<ul>
<li><a href="#wfoe">WFOE</a></li>
<li><a href="#ro">RO</a></li>
<li><a href="#jv">JV</a></li>
</ul>
</li>
<li><a href="#law">China Business Law</a></li>
<li><a href="#glossary">Acronym Glossary</a></li>
</ul>
</td>
</tr>
</tbody>
</table>
<h2><a name="saas"></a>Software As A Service (SaaS)</h2>
<p>My company provides a website publishing (i.e., a <a href="http://en.wikipedia.org/wiki/Content_management_system">content management system</a>, or CMS) and member database (i.e., a <a href="http://en.wikipedia.org/wiki/Customer_relationship_management">customer relationship management</a>, or CRM) software for organizations. The software is delivered to the customer via a web application, so no installation is needed on the customer&#8217;s computers. The <a href="http://en.wikipedia.org/wiki/Software_as_a_service">software  as a service</a> (SAAS) business model provides predictable monthly revenues as customers pay for using the service via a monthly subscription.  The software is basically complete and we have paying customers, although as with any software application, upgrades are always needed to stay current with competitors, keep up with technology and to become a market leader.</p>
<h3>Benefits of Web-based SAAS</h3>
<ul>
<li>access to global market via the Internet
<ul>
<li>customers can access the software from anywhere, anytime</li>
<li>developers can code and update server from anywhere</li>
<li>customer service agents can be located around the world for complete time-zone coverage</li>
</ul>
</li>
<li>quick release cycles of new software features/upgrades to pace with market and competition</li>
<li>economies of scale derived from multi-tenant software architecture</li>
<li>consumption-based expenditure for customers (pay as you go and scale up or down as needed)</li>
<li>subscription model provides predictable monthly revenues</li>
</ul>
<h3>Requirements to a Successful SAAS in Chengdu</h3>
<ul>
<li>reliable, high-speed Internet connections at affordable rates with quick connections to international servers</li>
<li>stable electricity (infrequent brown outs)</li>
<li>access to intelligent, problem-solving software developers</li>
<li>available English-speaking employees to serve as customer service agents</li>
<li>affordable office rental rates</li>
<li>affordable employee salary rates</li>
</ul>
<h3>SaaS Market in China<a href="http://www.mis-asia.com/news/articles/chinas-saas-market-set-to-reach-us$171-million-in-2010-springboard"></a></h3>
<p>In 2008, China&#8217;s software industry grew by <a href="http://news.xinhuanet.com/english/2009-02/11/content_10803694.htm">29.8% to RMB 757.3 billion</a>. China’s SaaS market is targeted to reach <a href="http://www.mis-asia.com/news/articles/chinas-saas-market-set-to-reach-us$171-million-in-2010-springboard">US$171 million in 2010</a>.  Some SaaS players in China:</p>
<ul>
<li><a href="http://800app.com/">800app</a> (八百客) &#8211; CRM provider</li>
<li><a href="http://www.salesforce.com/cn/">Salesforce</a></li>
<li><a href="http://www.sap.com/china/about/saplabs/index.epx">SAP</a></li>
<li><a href="http://www.baihui.com/">Baihui</a> (百会) &#8211; provider of ZOHO apps to China</li>
<li><a href="http://www.kingdee.com/en/">Kingdee</a> &#8211; SME ERP</li>
<li><a href="http://www.ufida.com.cn/">YongYou/Ufida</a> (用友伟库网) &#8211; ERP &#8211; <a href="http://www.wecoo.com/">Wei Library Network</a></li>
<li><a href="http://www.bfuture.com.cn/">bFuture</a> (富基标商)</li>
<li><a href="http://www.xtools.cn/english/">XToolsCRM</a></li>
<li><a href="http://www.mainone.com/">MainOne</a> (铭万) &#8211; <a href="http://soft.b2b.cn/saas.html">SaaS product</a></li>
<li><a href="http://www.jingoal.com/">Jingoal</a> (今目标)</li>
<li><a href="http://www.olymtech.com/cn/">OlymTech</a> (奥林科技)</li>
<li><a href="http://www.liveuc.net/">LiveUC</a> (网动live UC)</li>
<li><a href="http://www.eabax.com/">eAbax</a> (金算盘)</li>
<li><a href="http://www.saasbb.com/">SaaSBB</a> (神码在线)</li>
<li><a href="http://www.youshang.com/">YouShang</a> (友商网)</li>
<li><a href="tp://www.hgnsoft.com/">Cinderella</a> (灰姑娘)</li>
<li><a href="http://www.mmsaas.com/">MarketingMap</a> (昆山频道)</li>
<li><a href="http://www.saaschina.com/">SaaSChina</a> &#8211; seeks to be a SaaS platform where budding SaaS companies can rapidly develop and deploy their SaaS offering on SaaSChina&#8217;s SaaSExpress platform.</li>
<li><a href="http://blog.sina.com.cn/saasfun">Dr. SaaS</a> &#8211; China&#8217;s self-proclaimed No. 1 SaaS blogger</li>
<li><a href="http://www.dosaas.com/">Desai Network</a> &#8211; SaaS industry portal</li>
</ul>
<h2><a name="programmers"></a>Chengdu Software Industry</h2>
<p>One of China&#8217;s economic goals is to turn from manufacturing to focus on  the service sector. Software development and outsourcing is an industry  encouraged by the central government.</p>
<p>An excellent <a href="http://en.chinasourcing.org.cn/content2.jsp?id=4259">article from the ChinaSourcing magazine</a> argues convincingly that Chengdu is an attractive location for software outsourcing.</p>
<p>The Chengdu Municipal Bureau of Commerce has set a <a href="http://en.chinasourcing.org.cn/content2.jsp?id=4429">goal to USD200 million worth of offshore outsourcing contracts</a>.</p>
<h3>Chengdu has one of China’s 11 National Software Parks</h3>
<p>China has eleven national level software parks, one of which is in Chengdu. Being that a national level software park exists in Chengdu, it should stand to reason that there would be an ample pool of computer science graduates from which to hire. And once my company grows, a suitable office space might be available in the nearby software park.  At first China started off with five national software parks in 2000 and by 2006 they added six more. These software parks can be officially called “National Software Industry Base” and/or “National Software Export Base”.</p>
<table>
<tbody>
<tr>
<td valign="top">
<ul>
<li><a href="http://www.zpark.com.cn/en/" target="_blank">Beijing</a></li>
<li><a href="http://en.spsp.com.cn/" target="_blank">Shanghai</a></li>
<li><a href="http://www.tnseb.com.cn/waiwang/english.asp" target="_blank">Tianjin</a></li>
<li><a href="http://english.xasoftpark.com/investmentGuide/gk.htm" target="_blank">Xi’an</a></li>
</ul>
</td>
<td valign="top">
<ul>
<li><a href="http://www.szsoftwarepark.com/soften/" target="_blank">Shenzhen</a></li>
<li> <a href="http://www.dlsp.com.cn/en/" target="_blank">Dalian</a> (<a href="http://en.wikipedia.org/wiki/Dalian_Software_Park" target="_blank">Wikipedia</a>)</li>
<li><a href="http://www.tfsp.cn/en.html" target="_blank">Chengdu</a></li>
<li><a href="http://www.thstp.com/" target="_blank">Guangzhou</a></li>
</ul>
</td>
<td valign="top">
<ul>
<li><a href="http://www.njnhz.gov.cn/software/english/index_soft_e.htm" target="_blank">Nanjing</a></li>
<li><a href="http://en.espark.net/" target="_blank">Hangzhou</a></li>
<li><a href="http://jnqlrj.com/index.htm" target="_blank">Jinan</a></li>
</ul>
</td>
</tr>
</tbody>
</table>
<p>Links:</p>
<ul>
<li><a href="http://www.richcomm.com/en/newsshow.php?ipitt_info_id=117&amp;ipit_infotype_id=11" target="_blank">China Maps out 10 Software Industry Bases</a></li>
<li><a href="http://www.dotnetoutsource.com/Articles/China_becomes_Japan_s_biggest_software_outsourcing_base.aspx" target="_blank">China becomes Japan’s biggest software outsourcing base</a></li>
<li><a href="http://rightsite.asia/en/article/china-software-parks-show-growing-competitiveness" target="_blank">China Software Parks Show Growing Competitiveness</a></li>
</ul>
<h3><a name="cdht"></a>Chengdu High Tech Zone</h3>
<p><a href="http://www.chengduhitech.co.uk/"><img class="alignright size-full wp-image-944" title="CDHT" src="http://trudat.info/wp-content/uploads/2010/04/CDHT.png" alt="" width="152" height="162" /><img class="alignleft size-full wp-image-1025" title="CDHT" src="http://trudat.info/wp-content/uploads/2010/04/CDHT-logo-2.png" alt="" width="149" height="99" />Chengdu Hi-Tech Industrial Development Zone</a> (CDHT) is one of China&#8217;s first nationally recognized high-tech zones and ranks fifth among China&#8217;s 53 high-tech zones. It has two sections: south and west. CDHT has 16,000 companies, of which 750 have foreign investment. Forty of those are Fortune 500 companies, including Intel (in the <a href="http://www.chengduhitech.co.uk/Location/West_Park.asp">West Park</a>) and Microsoft (in the <a href="http://www.chengduhitech.co.uk/Location/South_Park.asp">South Park</a>). Software companies that rent an office in the CDHT may qualify for a <a href="http://www.chengduhitech.co.uk/Guide/Government_Policies.asp">number of government policy incentives</a>.</p>
<ul>
<li>Hiring a certain minimum number of employees may qualify for subsidized rent.</li>
<li>20-100% rebates on individual income tax for management and technical staff for the first five years.</li>
<li>training subsidies</li>
<li>exempt from corporate income tax for the first two years after it begins to make profit</li>
</ul>
<h3><a name="tianfu"></a>TianFu Software Park</h3>
<p><a href="http://trudat.info/wp-content/uploads/2010/04/tianfu-banner1.png"><img class="alignnone size-full wp-image-1023" title="Tianfu Software Park" src="http://trudat.info/wp-content/uploads/2010/04/tianfu-banner1.png" alt="" width="521" height="191" /></a></p>
<p>Chengdu&#8217;s <a href="http://www.tfsp.cn/en.html">software park</a> is loca<img class="alignright size-full wp-image-971" title="tianfusoftwarepark_location" src="http://trudat.info/wp-content/uploads/2010/04/tianfusoftwarepark_location1.gif" alt="" width="240" height="276" />ted in the south part of the South Park and is managed by Chengdu Tianfu Software Park Co., Ltd. (<a href="http://www.linkedin.com/companies/tianfu-software-park-co.-ltd.">LinkedIn profile</a>). Tianfu (天府) means &#8220;heavenly province&#8221; and is an epithet of Sichuan, especially the area around Chengdu.</p>
<p>Services</p>
<ul>
<li>office space at an average rate of 50 RMB/m<sup>2</sup>/month</li>
<li><a href="http://www.tfsp.cn/en/our-services/company-setup.html">business registration</a></li>
<li><a href="http://www.hr028.com.cn/">HR recruitment</a> and staff dispatching</li>
<li><a href="http://www.tfsp.cn/en/our-services/training-solutions.html">training association</a> to provide custom courses</li>
<li><a href="http://www.tfsp.cn/en/our-services/incubation-center.html">incubation center</a> for startups</li>
<li><a href="http://www.tfsp.cn/en/our-services/outsourcing-solution-center.html">outsourcing solution center</a></li>
</ul>
<p>Features</p>
<ul>
<li>employee dormitory</li>
<li>apartments for singles</li>
<li>business hotel</li>
<li>shopping center</li>
<li>24 hour restaurant, high-end restaurant, cafeteria</li>
<li>wifi throughout the park</li>
<li>international school</li>
<li>supermarket</li>
<li>business center</li>
<li>hospital and pharmacy</li>
<li>fitness gym and outdoor sports area</li>
<li>The municipal government is building <a href="http://tfsp.prodbysoftchina.com/index.php/en/thi-tech-zone/new-tianfu-city.html">Tianfu New City</a> adjacent to the park, to be completed in 2014, and will have a population of about 600,000.</li>
</ul>
<table border="0">
<tbody>
<tr>
<td><strong> </strong></td>
<td><strong>land area</strong></td>
<td><strong>floor space</strong></td>
<td><strong>date opened</strong></td>
</tr>
<tr>
<td><strong>Phase I</strong></td>
<td>226,000 m<sup>2</sup></td>
<td>230,000 m<sup>2</sup></td>
<td>end of 2005</td>
</tr>
<tr>
<td><strong>Phase II</strong></td>
<td>760,000 m<sup>2</sup></td>
<td>560,000 m<sup>2</sup></td>
<td>Batch 1 &#8211; June 2008<br />
Batch 2 &#8211; December 2008<br />
Batch 3 &#8211; 2009</td>
</tr>
<tr>
<td><strong>Phase III</strong></td>
<td>57,000 m<sup>2</sup></td>
<td>230,000 m<sup>2</sup></td>
<td></td>
</tr>
</tbody>
</table>
<p><strong>Location of the Software Park</strong></p>
<p>It is located directly south of the center of Chengdu with 24 hour  shuttle buses that go back and forth from the park to the center of  metro Chengdu. The southernmost station of city&#8217;s <a href="http://en.wikipedia.org/wiki/Chengdu_Metro">new subway line #1</a>, set to open in October 2010, will be at the New Exhibition Center, just a ten minute walk to the Tian Fu Software Park.</p>
<p>Check out photos of the park from <a href="http://www.panoramio.com/photo/13367707">Panoramia</a>, <a href="http://picasaweb.google.com/silverjava/TianfuSoftwarePark#">PicasaWeb</a> and <a href="http://www.flickr.com/search/?q=TianFu%20Software%20Park&amp;w=all">Flickr</a>.</p>
<h3>Chengdu Universities that Produce Programmers</h3>
<ul>
<li><strong>Sichuan University </strong>(四川大学) &#8211; <a href="http://cs.scu.edu.cn/new_cs/">College of Computer Science </a>(the  English version of their website doesn&#8217;t work).</li>
<li><strong>Southwest Jiaotong University</strong> (西南交通大学) &#8211; <a href="http://rjxy.swjtu.edu.cn/">School  of Software Engineering</a></li>
<li><a href="http://en.wikipedia.org/wiki/University_of_Electronic_Science_and_Technology_of_China"><strong>University  of Electronic Science and Technology of China</strong></a> (电子科技大学) &#8211; <a href="http://www.uestc.edu.cn/web/english/department_e.aspx">School  of Software</a> (their English website loads but I was unable to get to  the actual computer science department page)
<ul>
<li><a href="http://www.chinatoday.com.cn/English/2004/44.htm">Ding Lei</a>,  <a href="http://www.forbes.com/lists/2007/10/07billionaires_William-Ding_WIXE.html">China&#8217;s  richest man in 2003</a> and founder of <a href="http://en.wikipedia.org/wiki/NetEase">NetEase</a>, operator of  the popular website <a href="http://www.163.com/">163.com</a>, is a graduate of UESTC.</li>
<li>Other prominent graduates include the CEO of <a href="http://en.wikipedia.org/wiki/China_Unicom">China Unicom</a> and the Chairman of <a href="http://en.wikipedia.org/wiki/Huawei">Huawei</a>.</li>
</ul>
</li>
<li><strong>Sichuan Normal University</strong> (四川师范大学) &#8211; <a href="http://web.sicnu.edu.cn/en/AboutSNU_1.html">not much info  available online</a></li>
<li><strong>Chengdu University of Technology</strong> (成都理工大学) &#8211; <a href="http://www1.cdut.edu.cn/cdut/english/Colleges%20and%20Departments.html">Dept.  of Information and Computing Science</a></li>
<li><strong>Chengdu University of Information Technology</strong> (成都信息工程学院) &#8211; <a href="http://www.cuit.edu.cn/">Software  Engineering</a>
<ul>
<li><a href="http://www.fastweb.com.cn/english_china_cdn_solutions.htm">Beijing  Fastweb</a>, a China CDN (i.e., content delivery network) established a  <a href="http://www.prlog.org/10223720-beijing-fastweb-establishes-strategic-alliance-with-chengdu-university-of-information-technology.html">strategic  alliance</a> with CUIT in 2009. I wonder how that&#8217;s going.</li>
</ul>
</li>
<li><strong>Xihua University</strong> (西华大学) &#8211; <a href="http://www.xhu.edu.cn/eng_ver/colleges_schools.htm">School of  Mathematics and Computer</a>
<ul>
<li>Xihua students entered the China <a href="http://imaginecup.com/">Imagine Cup Competition</a> in 2007  submitting  a <a href="http://blogs.msdn.com/fred_chong/archive/2007/05/02/saas-in-innovation-celebration-event.aspx">multi-tenant  SaaS application for creating and managing university  portals</a>.  Very cool.</li>
</ul>
</li>
<li><strong>Chengdu University</strong> (成都大学) &#8211; <a href="http://www.cdu.edu.cn/cdueng/faculty/information-science-technology.htm">School  of Information Science &amp; Technology</a>
<ul>
<li>ChengduU has the best English language website of all universities  in Chengdu. And the school offers an <a href="http://school.cucas.edu.cn/HomePage/155/2009-12-29/Program_13585.shtml">Internet  Engineering</a> major and a course on computer graphics. I would like  to know more.</li>
</ul>
</li>
</ul>
<h3>Computer Companies in Chengdu</h3>
<ul>
<li><a href="http://www.dawning.com.cn/">Dawning Information Industry, Co., Ltd.</a> (<a href="http://en.wikipedia.org/wiki/Dawning">Wikipedia page</a>) &#8211; supercomputer manufacturer entered a joint venture with the Chengdu municipal government and opened China&#8217;s first large scale cloud computing center to facilitate local government affairs and scientific calculation. (<a href="http://www.encyclopedia.com/doc/1P1-174618190.html">source</a>, <a href="http://it.tmcnet.com/news/2009/12/30/4552923.htm">source</a> and another <a href="http://news.alibaba.com/article/detail/business-in-china/100213621-1-china%2527s-2nd-largest-supercomputing-center-open.html">source</a>). It is apparently the  most advanced data center in China and will serve also as a telecommunications hub for the southwestern part of China.</li>
<li><a href="http://www.ubisoftgroup.com/index.php?p=62&amp;cart_id=14">Ubisoft Chengdu</a> (<a href="http://www.facebook.com/ubisoftchengdu">Facebook page</a>) &#8211; a WFOE game development studio located in Tianfu Software Park. Sits on board of the <a href="http://www.chengduinvest.gov.cn/EN/htm/detail.asp?id=9140">Chengdu Game Alliance</a>, an game industry alliance of 80+ game developers in Chengdu.</li>
<li><a href="http://en.noahedu.com.cn/">Noah Education Holdings Limited</a> &#8211; maker of electronic dictionaries and e-learning software <a href="http://www.cdbpu.chengdu.gov.cn/echengdu/news/content.jsp?ID=311696">relocated headquarters to Chengdu from Shenzhen</a>.</li>
<li><a href="http://www.tfxk.com/">TianFuXinKong Web Technology Co., Ltd.</a> &#8211; website design and hosting</li>
<li><a href="http://en.sheeren.com/">Sheer Digital Technology Co., Ltd</a> &#8211; game, animation and art development outsourcing</li>
<li><a href="http://www.zhaof.com/">Chaofa</a> &#8211; software outsourcing</li>
<li><a href="http://www.techfirst.net/">TechFirst</a> &#8211; web and print design plus iPhone app development</li>
<li><a href="http://www.synnex-china.com/about">SYNNEX Corporation</a> (都聚思力信息技术有限公司) &#8211; supply chain service center</li>
<li><a href="http://www.lanyotech.com/saas.html">LanyoTech</a> &#8211; software outsourcing and ERP SaaS product to emerge from beta in June 2010</li>
<li><a href="http://www.30san.com/">30San Information System Co.,Ltd. </a></li>
<li><a href="http://www.bug-tracker.com/">Bug-Tracker Chengdu</a> &#8211; Q/A and localization services</li>
<li><a href="http://www.maesinfo.com/maes.php?c=html&amp;f=show&amp;static=aboutus">MaesInfo</a> &#8211; software outsourcing</li>
<li>Ericsson &#8211; to <a href="http://blog.taragana.com/pr/chengdu-tianfu-software-park-announces-ericsson-to-expand-its-largest-research-center-in-west-china-11704/">move R&amp;D to Tianfu Software Park</a>, renting 5000 m<sup>2</sup></li>
</ul>
<h3>Industry Conferences in Chengdu</h3>
<ul>
<li><a href="http://www.chinasoft.org.cn/en/front/meetingIntro/meetingIntroduction/meetingIntroduction.jsp">ChinaSoft</a> &#8211; a 4 day conference with about 3000 attendees</li>
<li>5th Annual <a href="http://www.asia-sse.com/">Asia Shared Services and Outsourcing Summit</a> &#8211; Day 2 keynote on India&#8217;s outsourcing industry</li>
</ul>
<h3>Industry Websites</h3>
<ul>
<li><a href="http://www.phpchengdu.com/">PHP Training Center Chengdu</a></li>
<li><a href="http://www.028pxw.com/">Chengdu  Computer Training Network</a> &#8211; computer trade school</li>
<li><a href="http://www.tfsps.net/">Tianfu Software Forum</a></li>
</ul>
<h2><a name="broadband"></a>Internet</h2>
<p>Reliable high speed internet connection speeds are vital to the success of a SaaS company both for quick download and upload access to its servers but also for use with VoIP services such as Skype for sales, inter-office and customer support related voice communications.</p>
<h3>Residential</h3>
<p>According to <a href="http://maxxelli-blog.com/2009/10/how-to-get-internet-in-china/">this  Maxxelli blog post</a>, broadband internet cable service can be  obtained from China Telecom. Fees are:</p>
<ul>
<li>Installation: 300 RMB</li>
<li>Plans:
<ul>
<li>1 mbps: 98 RMB/month</li>
<li>2 mbps: 120 RMB/month</li>
</ul>
</li>
</ul>
<h3>Commercial</h3>
<p>Are commercial connection speeds much better? The <a href="http://www.chengduinvest.gov.cn/EN/htm/detail.asp?id=505">Invest  Chengdu government website</a> says that much fiber optic and ADSL  connections are available on commercial lines. It cites the following  network connections from Chengdu:</p>
<blockquote><p>Chengdu&#8217;s internet bandwidth is 40G/S. China Net,   Chengdu 163 net, Chengdu 169 net (Tianfu Hotline) of China public   multimedia are main internet players. There are 4020 PSTN dialing ports,   600 ISDN dialing ports and 150 dedicated line ports in the network,   which is connected by fast speed interfaces with the International Exit   and the country&#8217;s eight regional centers.  Chengdu is one of China  Unicom&#8217;s seven key Uninet nodes.  So far the bandwidth of the key node  is 700M, that of international  exit 418M, whereas the bandwidth of  direct trunk connection with  CHINANET in Beijing, Shanghai and Guangzhou  is 2X155M, which is 6X155M  of domestic network bandwidth.</p></blockquote>
<p>ADSL fees are:</p>
<ul>
<li>Installation: 180 RMB</li>
<li>Equipment rental: 100 RMB</li>
<li>Plans:
<ul>
<li>1 mbps: 500 RMB/month</li>
<li>2 mbps: 1000 RMB/month</li>
<li>4 mbps: 2000 RMB/month (about <a href="http://www.google.com/search?q=2000+RMB+in+us+dollars">USD  $293 per month</a>!)</li>
<li>uncapped speed: 4000 RMB/month</li>
</ul>
</li>
</ul>
<p>A slow internet connection in Chengdu is ludicrously expensive when  compared to a super fast <a href="http://www.google.com/search?q=1050+JPY+in+us+dollars">100  mbps residential fiber optic connection in Japan which you can get for  only USD $11 per month</a>. With Chengdu&#8217;s &#8220;fast&#8221; 4 mpbs commercial  connection, you&#8217;d pay $73 per mbps. Japan&#8217;s fiber optic costs only 11  cents per mpbs! China&#8217;s internet is 666 times more expensive than Japan.</p>
<h3>Woefully Slow Speed to Servers Outside of China</h3>
<p>This might be a show-stopper right here, that is, if I were limited  to  a residential connection.</p>
<ul>
<li>A Chengdu resident said in <a href="http://www.chinese-forums.com/showpost.php?p=102995&amp;postcount=3">2007    that he could only get 70kbps</a> from his local Chengdu telecom    company connection.</li>
<li>Another said that he could only get <a href="http://www.chinese-forums.com/showpost.php?p=102997&amp;postcount=4">35kbps    from websites outside of China</a>.</li>
</ul>
<p>However, the city reportedly installed an <a href="http://www1.chengdu.gov.cn/echengdu/news/content.jsp?ID=294702">&#8220;International Gateway Data Channel&#8221; on December 1, 2009</a> which Bai Gang, the deputy mayor, says should increase Chengdu&#8217;s international internet speed by 30-50 percent.</p>
<h3>Providers</h3>
<ul>
<li>China Telecom &#8211; according to one forum post they sell a <a href="http://www.chinese-forums.com/showthread.php?t=16345">residential  Internet service plan of 1.5mbps for 120元/月</a>, however <a href="http://en.chinatelecom.com.cn/services/index.html">China  Telecom&#8217;s English website</a> says nothing about Internet service.</li>
<li>sad story: China Broadband &#8211; launched cable Internet service in <a href="http://www.allbusiness.com/media-telecommunications/data-transmission-broadband/6513538-1.html">October  2000</a> through it subsidiary Big Sky Network Canada. However China  later outlawed foreign ownership of cable companies, so Big Sky&#8217;s  Chinese joint venture partner got everything. Big Sky <a href="http://www.morelaw.com/verdicts/case.asp?n=07-4014&amp;s=UT&amp;d=36569">filed  suit against</a> Sichuan in Utah, but it was dismissed as it was out of  jurisdiction.</li>
</ul>
<h3>Internet Cafes</h3>
<ul>
<li><a href="http://www.moqicorp.com/index.shtml">MoqiZone</a> launches <a href="http://www.telegeography.com/cu/article.php?article_id=31308">802.16d  WiMAX network</a> in Chengdu</li>
<li><a href="http://www.noahland.com/">Noah Information Industry</a></li>
</ul>
<h2><a name="telephone"></a>Telephone</h2>
<p>Chengdu is apparently one of eight major telecom hubs in  China and has 560 km worth of fiber optic cable laid. CDHT says Chengdu&#8217;s telecom infrastructure can fully guarantee international communications via its overseas nodes.  <a href="http://cn.siemens.com/cms/cn/English/SBT/contact_us/Pages/Default.aspx">Siemens China</a> planned to open its first global call center in China, headquartered in Chengdu&#8217;s High Tech Zone, during the first half of 2010.</p>
<h2><a name="tax"></a>Tax and Incentives</h2>
<p>Both domestic and FIEs pay 25% income tax. However, high-tech  companies can qualify for a reduced 15% tax rate and qualified small and  thin-profit enterprises can get a 20% tax rate.</p>
<table id="tab1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="150">VAT</td>
<td width="348">Basic rate:17%, lower rate:13%</td>
</tr>
<tr>
<td width="150">Business Tax</td>
<td width="348">3% for communication and transportation, 5% for other  trades</td>
</tr>
<tr>
<td width="150">Enterprise Income Tax</td>
<td width="348">Basic rate: 25%</td>
</tr>
<tr>
<td width="150">Individual Income Tax</td>
<td width="348">5% – 45%</td>
</tr>
<tr>
<td width="150">Dividend and bonus of foreign individuals</td>
<td width="348">Exemption</td>
</tr>
<tr>
<td width="150">Income protection</td>
<td width="348">Subject to the transfer pricing agreement</td>
</tr>
<tr>
<td width="150">Other taxable items</td>
<td width="348">Consumption tax, real estate tax, stamp duty, land value  added tax, tariff</td>
</tr>
</tbody>
</table>
<h3>Enterprise Income Tax (企业   所得税法) (EIT Law)</h3>
<p>The <a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/GeneralLawsandRegulations/BasicLaws/t20070327_76240.jsp">EIT Law</a> (<a href="http://trudat.info/wp-content/uploads/2010/04/enterprise-income-tax.pdf">PDF, 78 KB</a>) went into effect in 2008 and replaced previous tax laws for FIEs. China taxes &#8220;resident enterprises&#8221; on their worldwide income at rate of <strong>25 percent</strong>. &#8220;Non-resident enterprises&#8221; pay <strong>20 percent</strong> income tax on their income earned in China.</p>
<ul>
<li>resident enterprise &#8211; set up under Chinese law OR a foreign company headquartered in China</li>
<li>non-resident enterprise &#8211; a foreign company AND headquartered outside of China (may or may not have a China FIE) and earns income in China</li>
</ul>
<p>If a company pays income taxes to foreign governments for income earned outside of China, those taxes paid overseas can be deducted from its enterprise tax in China (Article 23) unless otherwise superseded by a tax treaty the PRC has with a foreign government (Article 58). A <a href="http://www.chinatax.gov.cn/n480462/n480513/n481009/1017111.html">tax treaty between the US and China</a> (<a href="http://trudat.info/wp-content/uploads/2010/04/prc-usa-tax-treaty.pdf">PDF, 111 KB</a>) has been in effect since 1987.</p>
<p>Tax-exempt or partially tax-exempt income types:</p>
<ul>
<li>interest from treasury bonds</li>
<li>dividends from qualified resident enterprises</li>
<li>income of qualified nonprofit organizations</li>
<li>income from agriculture, forestry, husbandry and fishery</li>
<li>income from important state-sponsored infrastructure projects</li>
<li>income environmental protection, energy efficiency and water saving projects</li>
<li>income from transferring technology</li>
</ul>
<p>The tax year in China is from January 1 to December 31. EIT is to be paid in RMB in advance by month or quarter and is due 15 days after the previous month or quarter ended. Annual returns are due by the end of May or 60 days after an enterprise is shut down and ceases business operations.</p>
<h3>Preferential    Income Tax for Hi-Tech Enterprises</h3>
<p>Article 28 of the EIT Law stipulates a <strong>15 percent income tax rate</strong> for important high-tech enterprises.</p>
<p>The second paragraph of Circular 39 (i.e., Circular   on the Transitional Preferential EIT Rate or <a href="http://www.gov.cn/zwgk/2007-12/29/content_847112.htm">国务院关于实施企业所得税过渡优惠政策   的通知</a> &#8230; read a <a href="http://translate.google.com/translate?u=http%3A//www.gov.cn/zwgk/2007-12/29/content_847112.htm%23&amp;hl=en&amp;langpair=auto|en&amp;tbb=1&amp;ie=UTF-8">machine translation in English</a>) states that the preferential tax policies for Western Development will continue.</p>
<p>Serial number 30 of Circular 39 states that qualified high-tech companies operating in a high tech zone would be exempt from income tax for the first two years.</p>
<p>Circular 40 (i.e., Circular on   the Transitional Preferential Tax Treatment   for the  Newly Established High-Tech   Enterprises in the Special Economic Zones    and Shanghai Pudong New District (<a href="http://www.chinatax.gov.cn/n480462/n480513/n480902/7284982.html">国   务院关于经济特区和上海浦东新区新设立    高新技术企业实施过渡性税收优惠的通知</a>&#8230; read a <a href="http://translate.google.com/translate?u=http%3A//www.chinatax.gov.cn/n480462/n480513/n480902/7284982.html&amp;hl=en&amp;langpair=auto|en&amp;tbb=1&amp;ie=UTF-8">machine  translation in English</a>) states that in order to qualify for the 15 percent tax rate, a high-tech  enterprise must own core intellectual property rather than simply  licensing technology from a foreign parent corporation.</p>
<p>For further information, read the <a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/law_en_info.jsp?docid=109401">Preferential   Income Tax for Hi-Tech Enterprises</a> (<a href="http://trudat.info/wp-content/uploads/2010/04/hi-tech-income-tax.pdf">PDF, 705 KB</a>)</p>
<p>Read also the analyses of the tax incentives by <a href="http://www.khattarwong.com.sg/index.php/kw-updates/deals/113.html">KhattarWong</a>, <a href="http://ernie.ey.com/Publication/vwLUAssets/China_Tax___Investment_News_-_January_2008/%24FILE/CTIN2008001(ENG).pdf">Ernst &amp; Young</a>, <a href="http://www.deloitte.com/assets/Dcom-China/Local%20Assets/Documents/cn_tax_m112008eng_170308(4)!!1!!.pdf">Deloitte</a> and <a href="http://www.pwccn.com/home/webmedia/633459466004954918/aptn21_may2008_cn.pdf">PriceWaterhouseCoopers</a>.</p>
<h2>Registered Capital</h2>
<p>A WFOE is required to invest a certain amount of registered capital  which is sent into China from a foreign company into the WFOE’s bank  account. It doesn’t have to just sit there for the duration of the WFOE.  You get to spend it on valid company expenses.  According to the new <a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/law_en_info.jsp?docid=50878">Chinese   Company Law</a> (Article 59), a minimum of 100,000 RMB (<a href="http://www.google.com/search?q=100000+RMB+in+us+dollars">about   USD $14.7K</a>) <strong>registered capital</strong> required for a single  member  LLC, depending on your industry. Read the <a href="http://www.chinalawblog.com/2009/12/how_to_start_a_business_in_chi_1.html">China    Law Blog post</a> on this topic.</p>
<ul>
<li>The amount must be listed in your company’s Articles of Association   and company register.</li>
<li>The company register is a matter of public record and available to   the public. Therefore it establishes a company’s “credit worthiness” and   reputability.</li>
<li>Small amounts of registered capital must be contributed immediately   upon forming the company.</li>
<li>Large amounts of registered capital can be contributed in   installments (over a period, sometimes as long as two years) with the <a href="http://wfoe.org/">first installment  being 20%</a>, called “paid  up” registered capital.</li>
<li>It is a crime to fail to fully transfer the entire stated amount of   registered capital into China.</li>
<li>Regulators will evaluate whether the amount of registered capital is   reasonably sufficient for operating your company in your chosen   industry and location.</li>
<li>Registered capital should be enough to cover rents and salaries in   advance during the company’s start-up phase.</li>
<li>Capital contribution can be in money, equipment or intellectual   property. However any non-monetary contributions will be valued at the   low-end by the authorities.</li>
<li>Capital <a href="http://sgentrepreneurs.com/dummys-guide/2006/09/10/common-mistakes-in-starting-up-a-business-in-china-licence-applications-and-tax-issues/">must  be approved <strong>prior</strong> to transferring it to China</a> otherwise it will not be recognized as part of your registered capital.</li>
<li>All companies in China, both domestic and foreign, must have   registered capital, although probably foreign companies have higher   requirements.</li>
<li>registered capital cannot be repatriated, unless perhaps if the WFOE  is dissolved</li>
</ul>
<p>100,000 RMB is the minimum amount of registered capital. But a  commenter on this <a href="http://sgentrepreneurs.com/contributors-corner/2006/07/24/wholly-foreign-owned-enterprises-china/">blog  post</a> noted that after a WFOE application stalled for 5-7 months,  they resubmitted with two times the original amount of registered  capital and got the WFOE approved in two weeks.  It is important to make sure you have enough registered capital to  pay operational expenses for the WFOE during the startup phase until  such time as the WFOE can bring in income and positive cashflow. If the  WFOE runs out of money (i.e., spends all of its registered capital), you  would have to go through a 6-8 week process of applying for permission  to increase the WFOE’s registered capital, re-issue business licenses,  apply to the approve the transfer and then wire the money.</p>
<h2><a name="staff"></a>Human Resources</h2>
<p>One of the prime motivating factors for establishing an office in China to do software development is to hire software developers at a much lower cost than in the U.S.</p>
<h3><strong>2008 Chengdu Annual Salary/Wages in RMB </strong></h3>
<table border="0">
<tbody>
<tr>
<td></td>
<td><strong> </strong></td>
<td style="text-align: right; padding-bottom: 10px;"><strong>low</strong></td>
<td style="text-align: right; padding-bottom: 10px;"><strong>medium</strong></td>
<td style="text-align: right; padding-bottom: 10px;"><strong>high</strong></td>
</tr>
<tr>
<td><strong>By Profession</strong></td>
<td>Senior Management</td>
<td style="text-align: right;">13,794</td>
<td style="text-align: right;">39,468</td>
<td style="text-align: right;">155,541</td>
</tr>
<tr>
<td></td>
<td>Technical Specialists</td>
<td style="text-align: right;">10,102</td>
<td style="text-align: right;">23,875</td>
<td style="text-align: right;">71,437</td>
</tr>
<tr>
<td></td>
<td>Clerical Worker</td>
<td style="text-align: right;">8,085</td>
<td style="text-align: right;">17,020</td>
<td style="text-align: right;">49,190</td>
</tr>
<tr>
<td></td>
<td>Service Industry Worker</td>
<td style="text-align: right;">7,743</td>
<td style="text-align: right;">15,088</td>
<td style="text-align: right;">40,782</td>
</tr>
<tr>
<td></td>
<td>Worker/Operator</td>
<td style="text-align: right; padding-bottom: 10px;">7,845</td>
<td style="text-align: right; padding-bottom: 10px;">16,560</td>
<td style="text-align: right; padding-bottom: 10px;">44,507</td>
</tr>
<tr>
<td><strong>By Education</strong></td>
<td>Post Doc</td>
<td style="text-align: right;">31,450</td>
<td style="text-align: right;">74,474</td>
<td style="text-align: right;">218,893</td>
</tr>
<tr>
<td></td>
<td>PhD</td>
<td style="text-align: right;">21,638</td>
<td style="text-align: right;">56,571</td>
<td style="text-align: right;">213,552</td>
</tr>
<tr>
<td></td>
<td>BA</td>
<td style="text-align: right;">14,839</td>
<td style="text-align: right;">40,498</td>
<td style="text-align: right;">132,335</td>
</tr>
<tr>
<td></td>
<td>Junior College</td>
<td style="text-align: right;">11,537</td>
<td style="text-align: right;">29,408</td>
<td style="text-align: right;">98,312</td>
</tr>
<tr>
<td></td>
<td>High School or Vocation School</td>
<td style="text-align: right;">8,875</td>
<td style="text-align: right;">19,780</td>
<td style="text-align: right;">60,246</td>
</tr>
<tr>
<td></td>
<td>Middle School</td>
<td style="text-align: right; padding-bottom: 10px;">7,683</td>
<td style="text-align: right; padding-bottom: 10px;">16,024</td>
<td style="text-align: right; padding-bottom: 10px;">46,615</td>
</tr>
<tr>
<td><strong>By Experience</strong></td>
<td>41+ years</td>
<td style="text-align: right;">11,887</td>
<td style="text-align: right;">30,302</td>
<td style="text-align: right;">126,517</td>
</tr>
<tr>
<td></td>
<td>31-40 years</td>
<td style="text-align: right;">11,654</td>
<td style="text-align: right;">28,872</td>
<td style="text-align: right;">93,947</td>
</tr>
<tr>
<td></td>
<td>21-30 years</td>
<td style="text-align: right;">10,251</td>
<td style="text-align: right;">23,777</td>
<td style="text-align: right;">92,930</td>
</tr>
<tr>
<td></td>
<td>11-20 years</td>
<td style="text-align: right;">9,229</td>
<td style="text-align: right;">23,739</td>
<td style="text-align: right;">87,859</td>
</tr>
<tr>
<td></td>
<td>6-10 years</td>
<td style="text-align: right;">8,262</td>
<td style="text-align: right;">20,527</td>
<td style="text-align: right;">73,364</td>
</tr>
<tr>
<td></td>
<td>&gt;= 5 years</td>
<td style="text-align: right;">7,943</td>
<td style="text-align: right;">14,317</td>
<td style="text-align: right;">49,980</td>
</tr>
</tbody>
</table>
<h3>Minimum wage in Chengdu</h3>
<p><a href="http://www.chengdu.gov.cn/echengdu/gov/rules_laws_content.jsp?ID=181639">Minimum wage in Chengdu</a> is based on two sets of geographic regions.</p>
<table border="0">
<tbody>
<tr>
<td></td>
<td>Full-time Workers</td>
<td>Part-time Workers</td>
</tr>
<tr>
<td>Region 1</td>
<td>650 RMB/month</td>
<td>7.1 RMB/hour</td>
</tr>
<tr>
<td>Region 2</td>
<td>550 RMB/month</td>
<td>6 RMB/hour</td>
</tr>
</tbody>
</table>
<h3>Chengdu Web Developers Salary: Market Study through Job Ads</h3>
<table border="0">
<tbody>
<tr>
<td style="white-space: nowrap; padding-right: 7px;"><strong>Skills</strong></td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;"><strong>Edu.</strong></td>
<td style="white-space: nowrap; padding-right: 7px;"><strong>Exp.</strong></td>
<td style="white-space: nowrap; padding-right: 7px;"><strong>Monthly Salary</strong></td>
<td style="white-space: nowrap; padding-right: 7px;"><strong>Company</strong></td>
<td style="white-space: nowrap; padding-right: 7px;"><strong>Industry</strong></td>
</tr>
<tr>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://jobs.zhaopin.com/P2/CC1497/6121/J902/500/CC149761214J90250011000.htm?f=ss&amp;DYWE=1271635739593.288292.1271635740.1271635740.1">PHP, HTML, CSS, Javascript </a></td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">BA</td>
<td style="white-space: nowrap; padding-right: 7px;">1-3 yrs</td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">2001-4000</td>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://www.tfxk.com/">TianfuXingkong</a></td>
<td style="white-space: nowrap; padding-right: 7px;">Hosting, Web Design</td>
</tr>
<tr>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://jobs.zhaopin.com/P2/CC1933/3351/J900/000/CC193333513J90000055000.htm?f=ss&amp;DYWE=1271635739593.288292.1271635740.1271635740.1">Front-end Web &amp; Javascript</a></td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">BA</td>
<td style="white-space: nowrap; padding-right: 7px;">3 yrs</td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">2000-3000</td>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://en.sheeren.com/">Sheer</a></td>
<td style="white-space: nowrap; padding-right: 7px;">Game Development</td>
</tr>
<tr>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://jobs.zhaopin.com/P2/CC2095/1241/J902/500/CC209512412J90250001000.htm?f=ss&amp;DYWE=1271635739593.288292.1271750886.1271813079.4">PHP </a></td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">open</td>
<td style="white-space: nowrap; padding-right: 7px;">1-3 yrs</td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">2001-4000</td>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://www.zhaof.com/">Chengdu Chaofa</a></td>
<td style="white-space: nowrap; padding-right: 7px;">Software Outsouricng</td>
</tr>
<tr>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://jobs.zhaopin.com/P2/CC2009/1801/J902/500/CC200918019J90250021000.htm?f=ss&amp;DYWE=1271635739593.288292.1271750886.1271813079.4">LAMP, jQuery</a></td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">BA</td>
<td style="white-space: nowrap; padding-right: 7px;">n/a</td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">1500-3000</td>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://www.sc120.net/">Runzhi Wang</a></td>
<td style="white-space: nowrap; padding-right: 7px;"></td>
</tr>
<tr>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://jobs.zhaopin.com/P2/CC2006/0471/J902/500/CC200604715J90250002000.htm?f=ss&amp;DYWE=1271635739593.288292.1271750886.1271813079.4">PHP </a></td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">BA</td>
<td style="white-space: nowrap; padding-right: 7px;">1-3 yrs</td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">2000-4000</td>
<td style="white-space: nowrap; padding-right: 7px;"></td>
<td style="white-space: nowrap; padding-right: 7px;"></td>
</tr>
<tr>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://jobs.zhaopin.com/P2/CC2598/6301/J902/502/CC259863016J90250268000.htm?f=ss&amp;DYWE=1271635739593.288292.1271750886.1271813079.4">PHP</a></td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">BA</td>
<td style="white-space: nowrap; padding-right: 7px;">3-5 yrs</td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">3000-6000</td>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://www.smalltreemedia.com/">Small Tree</a></td>
<td style="white-space: nowrap; padding-right: 7px;"></td>
</tr>
<tr>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://jobs.zhaopin.com/P2/CC2935/7851/J902/500/CC293578519J90250008000.htm?f=ss&amp;DYWE=1271635739593.288292.1271750886.1271813079.4">PHP, MySQL, jQuery</a></td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">BA</td>
<td style="white-space: nowrap; padding-right: 7px;">1-3 yrs</td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">1000-2000</td>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://www.jobui.com/company/7935420/">Chengdu Digital</a></td>
<td style="white-space: nowrap; padding-right: 7px;">Database</td>
</tr>
<tr>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://jobs.zhaopin.com/P2/CC2151/0671/J902/500/CC215106710J90250005000.htm?f=ss&amp;DYWE=1271635739593.288292.1271750886.1271813079.4">PHP</a></td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">open</td>
<td style="white-space: nowrap; padding-right: 7px;">1-3 yrs</td>
<td style="white-space: nowrap; padding-right: 7px; text-align: center;">1000-6000</td>
<td style="white-space: nowrap; padding-right: 7px;"><a href="http://www.techfirst.net/">TechFirst</a></td>
<td style="white-space: nowrap; padding-right: 7px;">Web, iPhone, Design</td>
</tr>
</tbody>
</table>
<p>Other current  job listings for <a href="http://search.zhaopin.com/jobs/request.asp?page=1&amp;SchJobType=&amp;subJobtype=&amp;industry=%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%A1%AC%E4%BB%B6%E5%8F%8A%E7%BD%91%E7%BB%9C%E8%AE%BE%E5%A4%87%3B%E8%AE%A1%E7%AE%97%E6%9C%BA%E8%BD%AF%E4%BB%B6%3BIT%E6%9C%8D%E5%8A%A1%28%E7%B3%BB%E7%BB%9F%2F%E6%95%B0%E6%8D%AE%2F%E7%BB%B4%E6%8A%A4%29%2F%E5%A4%9A%E9%A2%86%E5%9F%9F%E7%BB%8F%E8%90%A5%3B%E4%BA%92%E8%81%94%E7%BD%91%2F%E7%94%B5%E5%AD%90%E5%95%86%E5%8A%A1%3B%E7%BD%91%E7%BB%9C%E6%B8%B8%E6%88%8F%3B%E9%80%9A%E8%AE%AF%28%E8%AE%BE%E5%A4%87%2F%E8%BF%90%E8%90%A5%2F%E5%A2%9E%E5%80%BC%E6%9C%8D%E5%8A%A1%29%3B%E7%94%B5%E5%AD%90%E6%8A%80%E6%9C%AF%2F%E5%8D%8A%E5%AF%BC%E4%BD%93%2F%E9%9B%86%E6%88%90%E7%94%B5%E8%B7%AF&amp;PublishDate=30&amp;WorkingExp=&amp;EduLevel=&amp;CompanyType=&amp;CompanySize=&amp;sortby=&amp;SearchModel=0&amp;vip_type=&amp;f_kw=&amp;f_rs=&amp;geoCat=&amp;geoCity=&amp;geoAddr=&amp;JobLocation=%E5%9B%9B%E5%B7%9D%E7%9C%81&amp;KeyWord=javascript&amp;DYWE=1271635739593.288292.1271635740.1271635740.1">Javascript</a> and <a href="http://search.zhaopin.com/jobs/request.asp?page=1&amp;SchJobType=&amp;subJobtype=&amp;industry=%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%A1%AC%E4%BB%B6%E5%8F%8A%E7%BD%91%E7%BB%9C%E8%AE%BE%E5%A4%87%3B%E8%AE%A1%E7%AE%97%E6%9C%BA%E8%BD%AF%E4%BB%B6%3BIT%E6%9C%8D%E5%8A%A1%28%E7%B3%BB%E7%BB%9F%2F%E6%95%B0%E6%8D%AE%2F%E7%BB%B4%E6%8A%A4%29%2F%E5%A4%9A%E9%A2%86%E5%9F%9F%E7%BB%8F%E8%90%A5%3B%E4%BA%92%E8%81%94%E7%BD%91%2F%E7%94%B5%E5%AD%90%E5%95%86%E5%8A%A1%3B%E7%BD%91%E7%BB%9C%E6%B8%B8%E6%88%8F%3B%E9%80%9A%E8%AE%AF%28%E8%AE%BE%E5%A4%87%2F%E8%BF%90%E8%90%A5%2F%E5%A2%9E%E5%80%BC%E6%9C%8D%E5%8A%A1%29%3B%E7%94%B5%E5%AD%90%E6%8A%80%E6%9C%AF%2F%E5%8D%8A%E5%AF%BC%E4%BD%93%2F%E9%9B%86%E6%88%90%E7%94%B5%E8%B7%AF&amp;PublishDate=30&amp;WorkingExp=&amp;EduLevel=&amp;CompanyType=&amp;CompanySize=&amp;sortby=&amp;SearchModel=0&amp;vip_type=&amp;f_kw=&amp;f_rs=&amp;geoCat=&amp;geoCity=&amp;geoAddr=&amp;JobLocation=%E5%9B%9B%E5%B7%9D%E7%9C%81&amp;KeyWord=PHP&amp;DYWE=1271635516961.425326.1271635517.1271635517.1">PHP</a> developers in Sichuan can be found on <a href="http://www.zhaopin.com/">Zhaopin</a>.  3000 RMB per month seems to be a valid estimate of salary costs for programmers in Chengdu.</p>
<h3><strong>2008 Chengdu Benefits</strong></h3>
<table border="0">
<tbody>
<tr>
<td valign="middle"></td>
<td style="text-align: center; padding-bottom: 10px;" valign="middle"><strong>Percentage of Salary paid by Employer</strong></td>
<td style="text-align: center; padding-bottom: 10px;" valign="middle"><strong>Percentage of Salary paid by Employee</strong></td>
</tr>
<tr>
<td valign="middle">Basic Pension</td>
<td style="text-align: center;" valign="middle">20%</td>
<td style="text-align: center;" valign="middle">8%</td>
</tr>
<tr>
<td valign="middle">Medical Insurance</td>
<td style="text-align: center;" valign="middle">7.5%</td>
<td style="text-align: center;" valign="middle">2%</td>
</tr>
<tr>
<td valign="middle">Unemployment Insurance</td>
<td style="text-align: center;" valign="middle">2%</td>
<td style="text-align: center;" valign="middle">1%</td>
</tr>
<tr>
<td valign="middle"><a href="http://en.wikipedia.org/wiki/Workers'_compensation">Workers&#8217;  Comp</a></td>
<td style="text-align: center;" valign="middle">0.6%-1.2%</td>
<td style="text-align: center;" valign="middle">n/a</td>
</tr>
<tr>
<td align="left" valign="top">Maternity Insurance</td>
<td style="text-align: center; padding-bottom: 10px;" valign="middle">0.6%</td>
<td style="text-align: center; padding-bottom: 10px;" valign="middle">n/a</td>
</tr>
<tr>
<td valign="middle"><strong>Total</strong></td>
<td style="text-align: center;" valign="middle"><strong>~31%</strong></td>
<td style="text-align: center;" valign="middle"><strong>11%</strong></td>
</tr>
</tbody>
</table>
<p>Source: <a href="http://www.chengduhitech.co.uk/Documents/Investment_Costs.pdf">CDHT</a> The percentage rates for medical insurance payments are prescribed by the <a href="http://www.cdbpu.chengdu.gov.cn/echengdu/gov/rules_laws_content.jsp?ID=240327">Chengdu Municipal Urban Employees Basic Medical Insurance Method</a>.</p>
<h3>Employment Agencies or Labor Agents</h3>
<p>Representative Offices are not allowed to hire employees. They instead &#8220;hire&#8221; staff via a labor agent which will serve as the actual employer. This sounds just like outsourced human resources companies (i.e., <a href="http://en.wikipedia.org/wiki/Temporary_work">temp agencies</a>) like <a href="http://www.adecco.com/">Adecco</a>, <a href="http://www.kellyservices.com/">Kelly Services</a>, or <a href="http://www.manpower.com/">ManPower</a>. The company that requires staff will enter into a <a href="http://www.mayerbrown.com/publications/article.asp?id=7826&amp;nid=6">labor service contract</a> with the labor agent. However, recent changes in the Chinese labor contract law  make such contracts <a href="http://www.chinalawblog.com/2010/01/how_to_form_a_representative_o.html">extremely  unattractive</a>.  Two commonly used labor agents are:</p>
<ul>
<li><a href="http://www.fesco.com.cn/164/index.htm">Foreign Enterprise  Human Resource Service Co.</a> (FESCO)</li>
<li><a href="http://www.ciic.com.cn/en/">China International Intellectech  Corporation</a> (CIIC) &#8211; a state-owned agency</li>
</ul>
<p>Even though WFOEs or JVs can directly hire PRC citizens, some choose to use a labor agent instead to employ their staff. The labor agent can <a href="http://www.fesco.com.cn/164/qyfw_en3.htm">help you recruit employees</a> or you can recruit your own and later arrange for their employment with the labor agent.  Multi-national labor agents have a China presence with offices in multiple cities across China:</p>
<ul>
<li><a href="http://www.manpower.com.cn/index.do">ManPower</a></li>
<li><a href="http://china.adecco.com/">Adecco</a></li>
<li><a href="http://www.kellyservices.cn/web/cn/services/en/pages/index.html">Kelly Services</a></li>
</ul>
<h3>Labor Contract</h3>
<p>According to China&#8217;s <a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/law_en_info.jsp?docid=82499">Labor  Contract Law</a>, the term of a labor contract (see Article 12) may be</p>
<ul>
<li>fixed term</li>
<li>flexible term</li>
<li>by project</li>
</ul>
<p>A company may determine its own recruiting process. Once an employee is hired, a labor contract between the employer and employee must be signed within one month. A copy of the contract must be given to the employee (Article 16).  Confidentiality and non-compete clauses can be added to the labor contract, but only for senior management or engineers.</p>
<h3>Probation</h3>
<p>Only one probationary period is allowed per employee.</p>
<table border="0">
<tbody>
<tr>
<td><strong>term of labor contract</strong></td>
<td><strong>maximum probation</strong></td>
</tr>
<tr>
<td>less than 3 months or project-based</td>
<td>none allowed</td>
</tr>
<tr>
<td>3-12 months</td>
<td>1 month</td>
</tr>
<tr>
<td>1-3 years</td>
<td>2 months</td>
</tr>
<tr>
<td>3+ years  or open ended</td>
<td>6 months</td>
</tr>
</tbody>
</table>
<p>Wages for employee under probation cannot be less than minimum wage, the lowest pay grade for that job (in the company) or 80 percent of the salary stipulated in the labor contract for that employee.</p>
<h3>Termination (regarding full-time employees)</h3>
<p>A labor contract may be terminated if mutually agreed upon but both employee and employer.  An employer may terminate an employee if he/she :</p>
<ul>
<li>is found lacking during probation</li>
<li>seriously violated written company policies (i.e., bylaws)</li>
<li>causes serious loss to employer</li>
<li>is under criminal investigation</li>
</ul>
<p>Or the employer may terminate an employee upon providing 30 days written notice or one month&#8217;s severance pay if the:</p>
<ul>
<li>the employee is unable to perform duties due to medical reasons, even after treatment, and cannot perform other duties the employer may have need of</li>
<li>the employee is unable to perform duties even after significant training</li>
<li>situation has changed considerably so that the employee cannot do the work prescribed in the contract and no agreement can be reached in arbitration</li>
</ul>
<p>During probation, an employee can quit by giving three days  notice. After probation, the employee must give 30 days written notice. An employee is allowed to quit if the employer fails to</p>
<ul>
<li>provide work conditions that are safe and stipulated in the contract</li>
<li>pay wages on-time</li>
<li>pay social security premiums</li>
<li>abide by the law</li>
</ul>
<p>Whenever a labor contract is terminated, for almost ANY reason including when a fixed term contract is completed or an employee is found negligent, the employer must pay the employee severance pay. The only time an employer doesn&#8217;t need to pay severance is if the employee dies or starts to get retirement benefits. Severance pay is one month&#8217;s salary for every year the person was employed by the company. An employee who worked for less than six months would get half a month&#8217;s salary.</p>
<p>The turnover rate of Chengdu&#8217;s IT industry is <a href="http://www.chengduhitech.com/Online_Services/Frequently_Asked_Questions.asp">5-8%</a>.</p>
<h3>Part-Time Employees</h3>
<p>Part-time workers are paid on an hourly basis, cannot work more than an average of four hours per day and not more than 24 hours per week. No written contract is required and no severance pay needs to be paid. Either employee or employer may terminate the relationship at any time. Hourly wages must not be less than the regional minimum wage.</p>
<h3>Labor Law</h3>
<ul>
<li><a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/law_en_info.jsp?docid=82499">Labor Contract Law</a></li>
<li><a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/law_en_info.jsp?docid=66849">Trial of labor dispute cases</a></li>
<li><a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/law_en_info.jsp?docid=102852">income tax for non-residents</a></li>
</ul>
<h2><a name="expenses"></a>Expenses</h2>
<h3><a name="office"></a>Office Space</h3>
<p>The average rental cost in the <a href="http://www.tfsp.cn/en.html">Tian Fu Software Park</a> is <a href="http://www.chengduhitech.co.uk/Documents/Investment_Costs.pdf">50 RMB per square meter per month</a>.  One company paid two months deposit plus one month rent in advance.  Apparently it was possible in the past to set up your company using a  residence as your company address. But this is not possible any longer.  You must register your company with a commercial address. This requires  that you sign a lease with the office landlord prior to submitting your  FIE application. <a href="http://wfoe.org/">WFOE.org</a> recommends  adding a clause to your lease agreement that the lease is contingent  upon the successful registration of the WFOE and that in the event that  the registration does not go through that the landlord should fund the  deposit and any rents paid.  Moving your office to another location is a complicated process. Your  accountant will need to submit  a Tax Clearance Declaration Report,  which is a difficult as an audit. Then you would need to change all  licenses with your new office address.</p>
<h3>Startup Costs</h3>
<ul>
<li>Office Rental
<ul>
<li>one company paid two months deposit plus one month rent in advance</li>
</ul>
</li>
<li>Real Estate Agent Fees (RMB 5,000)</li>
<li>Legal Fees (RMB 10,000)</li>
<li>Employee Recruitment (i.e., job ad postings, RMB 5,000)</li>
<li>Office furniture and equipment (???)</li>
</ul>
<h3>Monthly Expenses</h3>
<ul>
<li>Accountant (RMB 400)</li>
<li>Office Rental (???)</li>
<li>Janitorial Services (RMB 500, service twice a week)</li>
<li>Broadband Internet Service (RMB 400)</li>
<li>Office Management Fees (RMB 400)</li>
<li>Electricity (1.35 RMB/kwh)</li>
<li>Sewer (1.5 RMB/m<sup>3</sup>)</li>
<li>Water (3.10 RMB/m<sup>3</sup>)</li>
<li>Gas (2.08 RMB/m<sup>3</sup>)</li>
</ul>
<h3>Yearly Costs</h3>
<ul>
<li>Tax Preparation Fees</li>
<li>Various Fees and Insurance charges</li>
</ul>
<h2><a name="entity"></a>Business Entity Options</h2>
<p>When starting a <a href="http://www.investopedia.com/terms/f/fie.asp">foreign invested enterprise</a> (FIE) in China, you have four basic options:</p>
<ol>
<li><a href="#wfoe">Wholly Foreign Owned Enterprise</a> (WFOE)</li>
<li><a href="#ro">Representative Office</a> (RO)</li>
<li><a href="#jv">Joint Venture</a></li>
<li>establish no legal entity in China and just &#8220;do business&#8221; there</li>
</ol>
<p>Obviously the first three options are legal while the last one is &#8220;risky business&#8221; and likely to get you booted out of China and your business given to your &#8220;employees&#8221;. However, <a href="http://www.chinalawblog.com/2010/01/how_to_form_a_representative_o.html#comment-340653">establishing no China company</a> at all might be the way to go for some.</p>
<h3><a name="wfoe"></a>Wholly Foreign Owned Enterprises (WFOE)</h3>
<p><img class="alignnone size-full wp-image-1027" style="border: 1px solid black;" title="Sample WFOE license" src="http://trudat.info/wp-content/uploads/2010/04/wfoe-license.png" alt="" width="521" height="374" /></p>
<p>Read the excellent <a href="http://www.chinalawblog.com/2009/12/how_to_start_a_business_in_chi.html">China Law Blog post</a> on setting up an WFOE in China.  Requirements</p>
<ul>
<li>company to engage in types of business activities approved by China as detailed in the <a href="http://wfoe.org/doc/Catalogue_for_the_Guidance_of_Foreign_Investment_Industries.pdf">Catalogue for the Guidance of Foreign Investment Industries</a></li>
<li>foreign investor is an approved investor
<ul>
<li>investor is a valid, existing company in its home country</li>
<li>documents (along with Chinese translation) to authenticate person representing the company is authorized to sign documents on the investor&#8217;s behalf
<ul>
<li>articles of incorporation</li>
<li>business licenses</li>
<li>Certificate of Status</li>
<li>Bank Letter</li>
<li>description of investor&#8217;s business activities</li>
</ul>
</li>
</ul>
</li>
<li>submit documents (in Chinese) for government approval
<ul>
<li>Articles of Association (<a href="http://wfoe.org/doc/PTC_Articles_of_Association_China.pdf">sample AoA</a> by <a href="http://wfoe.org/">wfoe.org</a>)</li>
<li>Feasibility Study</li>
<li>Leases</li>
<li>Budget for Employee Salary and Benefits</li>
<li>Business plan</li>
</ul>
</li>
</ul>
<p>The World Bank Group provides an excellent <a href="http://www.doingbusiness.org/Subnational/ExploreTopics/StartingBusiness/Details.aspx?economyid=238#4">13 step registration process</a> for starting a business in Chengdu, which includes times and costs to complete each step. They also provide valuable information which compares how easy it is to <a href="http://www.doingbusiness.org/subnational/exploreeconomies/ExploreEconomies.aspx?economyid=238">(1) start a business, (2) register property and (3) enforce contracts in  Chengdu</a> as opposed to other parts of East Asia &amp; Pacific.  Pros</p>
<ul>
<li>can directly hire Chinese citizens as employees</li>
<li><a href="http://www.lehmanbrown.com/FAQ/FAQ-FIE/6.htm">no longer required to export 50% of product</a> &#8230; can target the Chinese market</li>
<li>freedom to control company without a Chinese partner</li>
<li>can earn profits (as opposed to a representative office which is forbidden to do so)</li>
<li>can convert RMB to USD for taking out of China</li>
</ul>
<p>Cons:</p>
<ul>
<li>application process can be lengthy (2-5 months) and expensive (incorporation fees are about one percent of the initial capital)</li>
<li>According to the new <a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/law_en_info.jsp?docid=50878">Chinese Company Law</a> (Article 59), a minimum of 100,000 RMB (<a href="http://www.google.com/search?q=100000+RMB+in+us+dollars">about USD $14.7K</a>) registered capital required for a single member LLC, depending on your industry. Read the <a href="http://www.chinalawblog.com/2009/12/how_to_start_a_business_in_chi_1.html">China  Law Blog post</a> on this topic.
<ul>
<li>The amount must be listed in your company&#8217;s Articles of Association and company register.</li>
<li>The company register is a matter of public record and available to the public. Therefore it establishes a company&#8217;s &#8220;credit worthiness&#8221; and reputability.</li>
<li>Small amounts of registered capital must be contributed immediately upon forming the company.</li>
<li>Large amounts of registered capital can be contributed in installments (over a period, sometimes as long as two years) with the <a href="http://wfoe.org/">first installment being 20%</a>.</li>
<li>It is a crime to fail to fully transfer the entire stated amount of registered capital into China.</li>
<li>Regulators will evaluate whether the amount of registered capital is reasonably sufficient for operating your company in your chosen industry and location.</li>
<li>Registered capital should be enough to cover rents and salaries in advance during the company&#8217;s start-up phase.</li>
<li>Capital contribution can be in money, equipment or intellectual property. However any non-monetary contributions will be valued at the low-end by the authorities.</li>
<li>Capital must be approved <strong>prior</strong> to transferring it to China otherwise it will not be recognized as part of your registered capital.</li>
<li>All companies in China, both domestic and foreign, must have registered capital, although probably foreign companies have higher requirements.</li>
</ul>
</li>
<li>taxable under the Enterprise Income Tax Law</li>
</ul>
<p>Types of WFOEs</p>
<ul>
<li>manufacturing</li>
<li>consulting</li>
<li>trading, wholesale, retail or franchise</li>
</ul>
<h3><a name="ro"></a>Representative Office (RO)</h3>
<p>A representative office in China is not itself a separate legal entity but represents the its headquarters (i.e., the foreign company in another country). An ROs purpose is to</p>
<ul>
<li>perform liaison activities</li>
<li>conduct research and market studies</li>
<li>promote the foreign company</li>
<li>establishing and arranging contacts</li>
<li>coordinate activities of the foreign company in China</li>
</ul>
<p>Pros:</p>
<ul>
<li>faster (<a href="http://www.mutface.com/index.php/2009/06/setting-up-business-in-china-a-to-z/">4-6  weeks</a>, usually 30 days), simpler and cheaper setup than a WFOE</li>
<li>can hire staff indirectly via a labor agent</li>
<li>accounting and corporate services costs less than for an WFOE</li>
<li>useful for building sales, brand and relationships in China</li>
<li><a href="http://www.chinalawblog.com/2010/01/how_to_form_a_representative_o.html#comment-340776">no registered capital required</a>!</li>
</ul>
<p>Cons:</p>
<ul>
<li>cannot hire Chinese citizens as employees directly</li>
<li>Must lease an <strong>approved</strong> office space for an <strong>entire year</strong> beyond the RO approval date. Some jurisdictions, such as Shanghai, consider <a href="http://www.chinalawblog.com/2010/01/how_to_form_a_representative_o.html">only a few designated office buildings</a> as approved to serve as office space for ROs.</li>
<li>cannot bill customers, earn any money in China or take payments from a PRC business or individual</li>
<li>cannot sign contracts</li>
<li>must pay a 10% tax on the gross expenses of the RO</li>
<li>the closing down of an RO will be under <a href="http://www.chinalawblog.com/2010/01/how_to_form_a_representative_o.html#comment-340510">close scrutiny by tax authorities</a> who will look for every opportunity to get money out of you.</li>
</ul>
<p>The law firm <a href="http://www.harrismoure.com/chinese-law.html">Harris &amp; Moure</a> recommends not to setup an RO with the intent to convert it later to an WFOE. They say you will save time and money in the long run by just setting up a WFOE at the outset. Converting from an RO to and WFOE required the shutting down of the RO, which itself can <a href="http://www.lehmanbrown.com/FAQ/FAQ-FIE/3.htm">take about two weeks and requires a bunch of paperwork</a>, and then creating a brand new WFOE from scratch.</p>
<h3><a name="jv"></a>Joint Venture</h3>
<p>There are two types of joint ventures:</p>
<ul>
<li><a href="http://www.lehmanbrown.com/FAQ/FAQ-FIE/4.htm">Equity Joint Venture</a>
<ul>
<li>operates in the form of a limited liability company</li>
<li>profits are allocated based on the ratio of capital contributions made by partners</li>
</ul>
</li>
<li>Cooperative Joint Venture
<ul>
<li>can be organized as an LLC or as a &#8220;non-legal person&#8221;</li>
<li>profit allocation ratios are at partners&#8217; discretion rather than by contribution amounts</li>
</ul>
</li>
</ul>
<h3>Using an offshore holding company</h3>
<p>LehmanBrown has some <a href="http://www.lehmanbrown.com/FAQ/FAQ-FIE/10.htm">good advice</a> about whether to create a company in another country (e.g, Hong Kong, Cayman Islands, etc.) owned by the parent company and where the offshore holding company owns the WFOE in China.  Pros</p>
<ul>
<li>selling the China investment would involve selling the offshore entity rather than the WFOE, saving administrative hassle in China</li>
<li>possible tax savings (this could be illegal tax evasion)</li>
<li>if you create a Hong Kong holding company, you can get Hong Kong residency status and setup a <a href="http://www.hsbc.com.hk/">HSBC</a> account in RMB. Not sure why this is a benefit.</li>
</ul>
<p>Cons</p>
<ul>
<li>practical difficulties for WFOE in China when opening bank account or verifying documents</li>
</ul>
<h2>Discussion</h2>
<p>It seems that Chengdu&#8217;s Tianfu Software Park would make a fantastic location in which to set up an R&amp;D office for my company. I would choose to set up an WFOE so that we could hire employees and control the direction of the company. I would prefer to keep our core intellectual property ownership outside of China. However, perhaps the Chengdu WFOE could create and own its own core technology which is different from our existing core technologies. In that case, then the WFOE would qualify as a high-tech company and receive two years tax exempt status, then 12.5 percent during the third, fourth and fifth years, and then 15 percent from then on.</p>
<hr />
<h2>Appendices</h2>
<h3><a name="registration"></a>Business  Registration consultants</h3>
<ul>
<li><a href="http://www.conpak.com/China-Company-registration.html">Conpak   CPA</a></li>
<li><a href="http://www.harrismoure.com/chinese-law.html">Harris &amp;   Moure</a></li>
<li><a href="http://www.pathtochina.com/">Path To China</a></li>
<li><a href="http://www.rhklegal.cn/">RHK  Legal</a> Corporate Advisors</li>
<li><a href="http://www.sinoinvest.hk/china-incorporation.html">Sinovantage   International</a></li>
<li><a href="http://willsonn.com/">Trident  Trust</a></li>
<li><a href="http://willsonn.com/">Willsonn  Partners</a></li>
<li><a href="http://www.tfsp.cn/en/our-services/company-setup.html">Tianfu Software Park Customer Service Center</a></li>
</ul>
<h3>Other Links</h3>
<ul>
<li><a href="http://www.buyusa.gov/china/en/chengdu.html">U.S. Commercial Service &#8211; Chengdu</a> &#8211; mission to assist U.S. business successfully enter the Southwest China market and is art of the International Trade Administration within the U.S. Dept of Commerce.</li>
</ul>
<h3><a name="law"></a>Chinese Business Law</h3>
<ul>
<li><a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/default_new.jsp">Legal  Documents</a></li>
<li><a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/law_en_info.jsp?docid=50878">The  Company Law of the People’s Republic of China (revised in 2005)</a> – <a href="http://www.chinalawblog.com/2009/12/china_corporate_law_the_basics.html">China  Law Blog post</a></li>
<li><a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/GeneralLawsandRegulations/BasicLaws/t20070327_76240.jsp">Enterprise  Income Tax Law</a></li>
<li><a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/law_en_info.jsp?docid=109401">Preferential  Income Tax for Hi-Tech Enterprises</a> (<a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/Taxation/EnterpriseIncomeTax/ProvisionforSpecificIndustries/P020090807346303431743.pdf">PDF</a>)</li>
<li><a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/Taxation/EnterpriseIncomeTax/GeneralProvisions/t20060620_51522.jsp">Income  Tax Law of the People’s Republic of China on Enterprises with Foreign  Investment and Foreign Enterprises</a></li>
<li><a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/Taxation/EnterpriseIncomeTax/GeneralProvisions/t20060620_51546.jsp">Determining  the Newly-established Enterprises that May Enjoy the Preferential  Policies for the Enterprise Income Tax</a></li>
<li><a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/law_en_info.jsp?docid=117203">Strengthening  Administration of Enterprise  Income Tax on Non-Resident Enterprises’  Equity Transfer Income</a></li>
<li><a href="http://www.fdi.gov.cn/pub/FDI_EN/Laws/law_en_info.jsp?docid=52200">Accounting  Standards for Enterprises No. 18 – Income Taxes</a> (<a href="http://trudat.info/wp-content/uploads/2010/04/accounting-standards-for-enterprises.pdf">PDF</a>)</li>
<li><a href="http://www.saic.gov.cn/english/LawsRegulations/">State  Administration for Industry &amp; Commerce</a> (SAIC)</li>
</ul>
<h3><a name="glossary"></a>Acronym Glossary</h3>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Capability_Maturity_Model_Integration">capability maturity model integration</a> (CMMI)</li>
<li>domestic enterprise (DE)</li>
<li>foreign direct investment (FDI)</li>
<li>foreign-invested commercial enterprise (FICE)</li>
<li>software as a service (SaaS)</li>
<li>State Administration of Taxation (SAT)</li>
</ul>
<h3>Chengdu Business News</h3>
<ul>
<li><a href="http://www.chengduhitech.com/Trends/News.asp">Chengdu High Tech Zone</a></li>
<li><a href="http://www.chinaknowledge.com/search2.aspx?type=Newswires&amp;keyword=chengdu">China Knowledge Online</a></li>
<li><a href="http://www.chengduinvest.gov.cn/EN/htm/list.asp?ClassID=020207">Invest Chengdu</a></li>
<li><a href="http://en.chinasourcing.org.cn/list.jsp?cloumnid=13">ChinaSourcing</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://trudat.info/2010/04/chengdu-saas-startup-feasibility/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Keep Current with New Music on YouTube</title>
		<link>http://trudat.info/2010/04/keep-current-with-new-music-with-youtube/</link>
		<comments>http://trudat.info/2010/04/keep-current-with-new-music-with-youtube/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 02:30:21 +0000</pubDate>
		<dc:creator>trudat</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://trudat.info/?p=796</guid>
		<description><![CDATA[I&#8217;d never been one to spend hours on YouTube &#8220;just cuz&#8221;&#8230; browsing around. But today I discovered a great use for YouTube. People upload all kinds of music videos with songs from all kinds of artists. In the old days, you&#8217;d have to listen to the radio to learn new songs or just go our [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-983" style="margin-right: 8px;" title="Youtube" src="http://trudat.info/wp-content/uploads/2010/04/Youtube.png" alt="" width="64" height="64" />I&#8217;d never been one to spend hours on YouTube &#8220;just cuz&#8221;&#8230; browsing around. But today I discovered a great use for YouTube. People upload all kinds of music videos with songs from all kinds of artists. In the old days, you&#8217;d have to listen to the radio to learn new songs or just go our and buy the latest CDs. Today, all you need to do is go to YouTube. Yeah, I know&#8230;I only just now figured this out. Major music labels have official YouTube channels where they publish official music videos from their artists.</p>
<p>Here is a <a href="http://www.youtube.com/view_play_list?p=E3F64361A397A23F">playlist of 18 (new) Christian songs</a> that I had never heard of until this morning.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/p/E3F64361A397A23F&amp;hl=en_US&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/p/E3F64361A397A23F&amp;hl=en_US&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://trudat.info/2010/04/keep-current-with-new-music-with-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video Playlists for Small Groups</title>
		<link>http://trudat.info/2010/04/video-playlists-for-small-groups/</link>
		<comments>http://trudat.info/2010/04/video-playlists-for-small-groups/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 05:48:10 +0000</pubDate>
		<dc:creator>trudat</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Jesus]]></category>
		<category><![CDATA[Set List]]></category>

		<guid isPermaLink="false">http://trudat.info/?p=725</guid>
		<description><![CDATA[My wife has had severe nausea due to pregnancy for the last five weeks. For two Sundays we were house bound. So we had church at home. We had worship on YouTube and watched a sermon on iBethel.tv. Church in bed was great! Praise God for the Internet! Last night we were talking to some [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-999" style="margin-right:8px;" title="youtube" src="http://trudat.info/wp-content/uploads/2010/04/youtube2.png" alt="" width="62" height="78" />My wife has had severe nausea due to pregnancy for the last five weeks. For two Sundays we were house bound. So we had church at home. We had worship on <a href="http://www.youtube.com/watch?v=RQjjX7Lgwyo&amp;feature=PlayList&amp;p=685E6B5807EA87EE&amp;playnext_from=PL&amp;index=2">YouTube</a> and watched a sermon on <a href="http://www.ibethel.tv/watch/148:3:0">iBethel.tv</a>. Church in bed was great! Praise God for the Internet!</p>
<p>Last night we were talking to some missionary friends who told us a wonderful story of thousands of people who had just gotten saved in a revival. <strong>How do you disciple thousands of people who get saved at once? House churches. </strong> But you&#8217;d need hundreds of leaders trained and ready to go. That&#8217;s a problem. Most churches don&#8217;t have enough small group leaders as it is where is no revival.<span id="more-725"></span></p>
<p><a href="http://www.youtube.com/"><img class="alignright size-full wp-image-727" title="youtube" src="http://trudat.info/wp-content/uploads/2010/04/youtube.png" alt="" width="90" height="42" /></a>Immediately Internet video came to mind. Actually I&#8217;ve been thinking about it for some time. And, incidentally, I&#8217;m almost always thinking about the Internet. Ha. There are already a lot of great video websites which host video for free. They contain thousands of video of worship songs, many with lyrics. Many churches also provide their sermons by video online. The way to string them all together to create a cohesive service would be to create a <strong><a href="http://en.wikipedia.org/wiki/Playlist">playlist</a></strong>. A playlist allows you to watch each video in succession without having to click from one video to the next. It is like a slideshow of videos where the next video plays automatically once the previous video finishes.</p>
<p>Churches and missionary groups can setup any number of ready-to-go online &#8220;services&#8221; which anyone can use to host a small group in their home. No one needs to know how to play a guitar to lead worship. Instead you can have the very best and most talented worship leaders in the world, lead the small group in worship via video. And no one needs to prepare a Bible study with discussion questions. You can just add an online sermon. There are thousands and thousands of them available online for free. There&#8217;s no need to reinvent the wheel every week.</p>
<p>YouTube has the capability to create playlists. Here is a sample worship YouTube playlist embeded below.</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/p/685E6B5807EA87EE&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/p/685E6B5807EA87EE&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" width="480" height="385" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>You can embed your playlists on your blog or a forum, post them on facebook or email the URL to people. <strong>For the best viewing experience embed the playlist on your blog and play it at full screen. </strong>Try it out above, you can set it to play at full-screen and when videos advance from one to another seamlessly. If you were to watch a playlist on the YouTube website with autoplay enabled, at the end of each video, it pops out of full-screen as it loads up the next video.</p>
<h3>Lots of Worship Videos Available on YouTube</h3>
<p>There are a wealth of videos on YouTube that people have made with lyrics and (mostly) pretty good audio. I&#8217;m in the process of collecting worship videos in English, Chinese and Japanese. You&#8217;re free check out my playlist videos below:</p>
<ul>
<li><a href="http://www.youtube.com/view_play_list?p=A63092C96EE61255">English</a></li>
<li><a href="http://www.youtube.com/view_play_list?p=54D4882EE23B407A">Chinese</a></li>
<li><a href="http://www.youtube.com/view_play_list?p=0A071D1BBD18DB49">Japanese</a></li>
</ul>
<p>I&#8217;ll keep adding to those playlists as I find good worship videos. Please feel free to create your own playlists and share them below in the comments.</p>
<h3>How to create a playlist on YouTube</h3>
<p>1. First make sure you have a YouTube account. If you already have some kind of Google account, like GMail, you&#8217;ve already got one.</p>
<p>2. Search for a video you want to add. Here&#8217;s a tip. If you want to find a particular worship song video, search for the name of the song or artist along with the word &#8220;lyrics&#8221;.</p>
<p>3. Once you find the song, look for the &#8220;Save to&#8221; box below the video and click it.</p>
<p><img class="alignnone size-full wp-image-760" title="YouTube Save To" src="http://trudat.info/wp-content/uploads/2010/04/youtube1.png" alt="" width="507" height="231" /></p>
<p>4. A drop-down menu will appear below. Click on &#8220;Create a new playlist&#8230;&#8221; and type in the name of your playlist.</p>
<p><img class="alignnone size-full wp-image-761" title="youtube-create-playlist" src="http://trudat.info/wp-content/uploads/2010/04/youtube-create-playlist.png" alt="" width="315" height="144" /></p>
<p><img class="alignnone size-full wp-image-762" title="youtube-create-pl-name" src="http://trudat.info/wp-content/uploads/2010/04/youtube-create-pl-name.png" alt="" width="320" height="136" /></p>
<p>5. Repeat steps 2-4 until you have added all the songs and/or testimony or Bible study videos that you want for the small group meeting.</p>
<p>6. Once you have your videos in your playlist, to get to your playlists click on your username in the upper right-hand corner and select &#8220;My Videos&#8221;. Then on the next page, click on &#8220;Playlists&#8221; in the left side menu. Your playlists will be listed now in the left side menu. Select the playlist you made.</p>
<p>7. You will now probably wish to make sure the videos are in the order you want them rather than in the order that you added them. To see a list of the videos in your playlist, scroll down to the bottom of the page. To change the order of the videos, double click on a blue number next to a video in the &#8220;Position&#8221; column. An edit box will appear in its place so you can edit the position number of that video.</p>
<p>8. Now we want to embed the playlist on your blog or forum. To do this, scroll up until you find the field entitled <strong>Embed</strong>. You&#8217;ll need to copy the embed code for pasting it into a blog or forum post. If you don&#8217;t know how to copy and paste, watch this <a href="http://www.youtube.com/watch?v=c66pvfilotA">video for the Windows OS</a> or this <a href="http://www.youtube.com/watch?v=YprpvP7nY1w">video for Mac users</a>.</p>
<p>9. Finally go to your blog or forum post and paste the embed code when you have set the editor to HTML mode. Here are some videos which show you just how its done.</p>
<p>How to embed a YouTube video on a <strong><a href="http://www.blogger.com/">Blogger</a></strong> blog post.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/ZnehCBoYLbc?fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ZnehCBoYLbc?fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>How to Embed into <a href="http://wordpress.org/"><strong>WordPress</strong></a> 2.9</p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/bPc_lAuxPhA?fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/bPc_lAuxPhA?fs=1" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Here are other videos that show you <a href="http://www.youtube.com/results?search_query=embed+youtube+video+forum&amp;aq=f">how to embed into forum posts</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://trudat.info/2010/04/video-playlists-for-small-groups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>380円 per month Wireless Gate Wifi with BB Mobilepoint in Japan</title>
		<link>http://trudat.info/2010/02/wireless-gate-wifi-in-japan/</link>
		<comments>http://trudat.info/2010/02/wireless-gate-wifi-in-japan/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 07:45:04 +0000</pubDate>
		<dc:creator>trudat</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Japan]]></category>

		<guid isPermaLink="false">http://trudat.info/?p=548</guid>
		<description><![CDATA[I finally just figured out how to sign into the paid wifi account I signed up for a month ago with Wireless Gate&#8216;s Yodobashi 380 yen per month plan. That&#8217;s a great price! But making it work for an English speaker is not a simple task. It took a lot of Google Translating of their [...]]]></description>
			<content:encoded><![CDATA[<p>I finally just figured out how to sign into the paid wifi account I signed up for a month ago with <a href="http://www.tripletgate.com/wirelessgate/" target="_blank">Wireless Gate</a>&#8216;s <a href="http://translate.googleusercontent.com/translate_c?hl=en&amp;ie=Shift_JIS&amp;langpair=auto|en&amp;u=http://www.yodobashi.com/ec/support/service/wireless-gate/index.html&amp;tbb=1&amp;rurl=translate.google.com&amp;twu=1&amp;usg=ALkJrhhxdv0kKBNt_1UieQ2wbGLLYfAWHA" target="_blank">Yodobashi 380 yen per month plan</a>. That&#8217;s a great price! But making it work for an English speaker is not a simple task.</p>
<p>It took a lot of Google Translating of their webpages to get through the <a href="https://www.wi-gate.net/PRinput.html?request=PRinput&amp;PROMOTION_ID=12601231">signup form</a>. The last field on the signup form requires a promo code, which I found somewhere online. Look for <a href="http://translate.google.com/?js=n&amp;prev=_t&amp;hl=en&amp;ie=UTF-8&amp;layout=1&amp;eotf=1&amp;text=%E3%83%97%E3%83%AD%E3%83%A2%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3%E3%82%B3%E3%83%BC%E3%83%89&amp;sl=ja&amp;tl=en#submit%23submit" target="_blank">プロモーションコード</a> in the last field which means Promotion Code. It looks like they prefill 12601231 now. Here&#8217;s the <a href="http://translate.google.com/translate?u=http%3A//www.wi-gate.net/PRinput.html%3Frequest%3DPRinput%26PROMOTION_ID%3D12601231&amp;hl=en&amp;langpair=auto|en&amp;tbb=1&amp;ie=Shift_JIS" target="_blank">form translated into English</a> for your convenience.</p>
<p>At some point you might also need the <a href="https://www.wi-gate.net/pc/TPindex.html" target="_blank">account management page</a>.</p>
<p>It took a LOT of trial and error before I was able to finally connect via the BB Mobile Point hotspots which are available at McDonald&#8217;s across Japan. To save someone else from frustration, here&#8217;s how to do it.</p>
<p>First connect find a McDonald&#8217;s near you. You can use their online map to search for available hotspots. Here&#8217;s a <a href="http://www.wi-gate.net/PGMap.html?lat=34.7108344&amp;lng=137.7261258">link to a map of area of Hamamatsu</a> where I&#8217;m living. Hotspots don&#8217;t load up right away on the map, you may have to click and drag the map.</p>
<p>Once, you&#8217;re at a McDonalds, connect to the <strong>mobilepoint</strong> wifi hotspot.</p>
<p><img class="alignnone size-full wp-image-549" title="mobilepoint" src="http://trudat.info/wp-content/uploads/2010/02/mobilepoint.png" alt="mobilepoint" width="319" height="237" /></p>
<p>You have to connect via WEP and enter this code: 696177616b</p>
<p><img class="alignnone size-full wp-image-554" title="wep-code" src="http://trudat.info/wp-content/uploads/2010/02/wep-code.png" alt="wep-code" width="429" height="373" /></p>
<p>There are also <a href="http://www.tripletgate.com/password.html" target="_blank">passwords for livedoor Wireless and the NRT-Airport</a>.</p>
<p>Once you&#8217;ve connected to the hotspot, open up your browser. You&#8217;ll be taken to a login form that says &#8220;BB Mobile Point&#8221; at the top.</p>
<p>For your username enter: <em>your-user-ID</em>@wig</p>
<p>For your password, just enter whatever password you had set when you signed up.</p>
<p><img class="alignnone size-full wp-image-552" title="bb" src="http://trudat.info/wp-content/uploads/2010/02/bb.png" alt="bb" width="329" height="617" /></p>
<p>Unfortunately, the BB Mobile Point hotspot at the McDonalds (i.e., the one near Zaza in downtown Hamamatsu) where I&#8217;m first trying this is very spotty and continually loses connection. I do not recommend the Wireless Gate wifi service. Save yourself the headache and stay home. Maybe the connection is better at other McDonalds. I hope so.</p>
<p>UPDATE: The MobilePoint connection at the McDonalds on the ground floor of the Hamamatsu eki is reasonably fast. It also doesn&#8217;t drop quite as often &#8230; only once in the last ten minutes! Also, I&#8217;m sitting at Tully&#8217;s (which is right by the McDonalds) so I&#8217;ve finally almost duplicated my Starbucks in the U.S. with free AT&amp;T wifi work environment.</p>
<p><img class="alignnone" title="Speed Test" src="http://www.speedtest.net/result/725882480.png" alt="" width="300" height="135" /></p>
<p>UPDATE 4/28/2010: MobilePoint speed test at the Hamamatsu eki McDonalds.</p>
<p><img class="alignnone" title="Speed Test" src="http://www.speedtest.net/result/796620932.png" alt="" width="300" height="135" /></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">You have to connect via WEP and enter this code: 696177616b</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">Then once you&#8217;ve connected to the hotspot, open up your browser. You&#8217;ll be taken to a login form that says &#8220;BB Mobile Point&#8221; at the top.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">For your username enter your username, the @ symbol and then &#8220;wig&#8221;.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">For your password, just enter whatever password you had set when you signed up.</div>
]]></content:encoded>
			<wfw:commentRss>http://trudat.info/2010/02/wireless-gate-wifi-in-japan/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>MooEditable &#8211; Pure Javascript &amp; CSS power</title>
		<link>http://trudat.info/2009/08/mooeditable-pure-javascript-n-css-power/</link>
		<comments>http://trudat.info/2009/08/mooeditable-pure-javascript-n-css-power/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 20:28:14 +0000</pubDate>
		<dc:creator>trudat</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://trudat.info/?p=307</guid>
		<description><![CDATA[I&#8217;ve been working on extending an MooEditable (a MooTools Javascript powered WYSIWYG in-browser HTML editor) by Lim Chee Aun which integrates Ascribe Dialog and uses icons from famfamfam with WordPress-inspired buttons. I&#8217;m very excited about MooEditable because I&#8217;ve never before felt that I could have complete control over the previous HTML editors that I&#8217;ve used before. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on extending an <a href="http://cheeaun.github.com/mooeditable/">MooEditable</a> (a <a href="http://mootools.net/">MooTools</a> Javascript powered <a href="http://en.wikipedia.org/wiki/WYSIWYG">WYSIWYG</a> in-browser HTML editor) by <a href="http://cheeaun.com/">Lim Chee Aun</a> which integrates <a href="http://github.com/tru10000/Ascribe-Dialog/">Ascribe Dialog</a> and uses icons from <a href="http://www.famfamfam.com/">famfamfam</a> with <a href="http://wordpress.org/">WordPress</a>-inspired buttons.</p>
<p>I&#8217;m very excited about MooEditable because I&#8217;ve never before felt that I could have complete control over the previous HTML editors that I&#8217;ve <a href="http://www.innovastudio.com/editor.asp">used</a> <a href="http://www.htmlarea.com/forum/htmlArea_2_C3/htmlArea_2_&#038;_3_archive_%28read_only%29_C3/htmlArea_v2.0_F18-11">before</a>. It is much more intuitive for the user to be able to interact with elements directly in the editor when possible rather than having to use the toolbar. With MooEditable, I can finally do that. So far, I&#8217;ve got a pretty robust link functionality. Next up: write a customized image button which utilizes Ascribe Dialog, allows uploads from the users computer and browsing of photo albums in the Ascribe CMS for photos to insert.</p>
<p><a href="http://github.com/tru10000/mooeditable/tree/master">Source code of this fork</a></p>
<style type="text/css">
			#textarea-1{
				width: 550px;
				height: 300px;
				padding: 10px;
				border: 2px solid #ddd;
			}
		</style>
<link rel="stylesheet" type="text/css" href="http://www.ascribedata.com/moo/editable/Assets/MooEditable/MooEditable.css">
<link rel="stylesheet" type="text/css" href="http://www.ascribedata.com/moo/editable/Assets/MooEditable/Ascribe/MooEditable.css">
		<!--[if lte IE 8]></p>
<link rel="stylesheet" type="text/css" href="http://www.ascribedata.com/moo/editable/Assets/MooEditable/Ascribe/ie.css">
		<![endif]--></p>
<h3>Demo &#8230; try clicking on a link in the editor</h3>
<form id="theForm" method="post" action="http://form-data.appspot.com/">
<p>			<label for="textarea-1">Textarea Label (click to focus editor)</label><br />
			<textarea id="textarea-1" name="editable1"></p>
<h3>Additions in this fork</h3>
<ul>
<li>Paragraph function uses button overlay with command customized so extra tags are not inserted when using <a href="http://www.google.com/search?q=safari+formatblock+buggy">Safari</a>.</li>
<li>Link function utilizes Ascribe Dialog and has the ability to detect when the cursor is in a link or whether a link is selected. Can detect links to an <a href="mailto:some-email-address@domain.com">email address</a>. Does on-the-fly email address validation. Clicking on a link in the editor will bring up a small &#8220;tooltip&#8221; menu ala <a href="http://mail.google.com/">Gmail</a> which allows the user to test, edit or remove the link.</li>
<li>Modified the <b>checkStates</b> function such that if a button&#8217;s state attribute is a function, the function will pass the editor object as an argument along with the current node clicked upon in the editor. I needed the editor object to be passed along to a custom state function for the asc_createlink button to properly show and hide link tooltips.</li>
</ul>
<h3>Works in</h3>
<ul>
<li>Firefox</li>
<li>Internet Explorer</li>
<li>Webkit browsers (Safari, Chrome)</li>
</ul>
<h3>Issues yet to be resolved</h3>
<ul>
<li>Toggling between html and editor clears out all undo/redo history.</li>
<li>Find a way to internationalize it by allowing a script to supply strings.</li>
<li>When the content of the editor is taller than the editor window, the editor document scrolls, obviously. I added a <b>editorScroll</b> function to main MooEditable class to track when the user scrolls the editor in order that the little link tooltips will hide themselves upon scroll. However, the onScroll event doesn&#8217;t seem to take in Internet Explorer.</b></li>
</ul>
<p></textarea></p>
<input type="submit" value="Submit">
</form>
<p><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/mootools/1.2.3/mootools-yui-compressed.js"></script><br />
<script type="text/javascript" src="http://www.ascribedata.com/moo/editable/Source/Ascribe/moo.more.js"></script><br />
<script type="text/javascript" src="http://www.ascribedata.com/moo/editable/Source/MooEditable/MooEditable.js"></script><br />
<script type="text/javascript" src="http://www.ascribedata.com/moo/editable/Source/Ascribe/MooEditable.UI.Ascribe.Dialog.js"></script><br />
<script type="text/javascript">window.addEvent('domready', function(){var editor = $('textarea-1').mooEditable({actions: 'formatBlock snippets | bold italic underline | asc_createlink urlimage | insertunorderedlist insertorderedlist indent outdent | justifyleft justifycenter justifyright | toggleview'});});</script></p>
]]></content:encoded>
			<wfw:commentRss>http://trudat.info/2009/08/mooeditable-pure-javascript-n-css-power/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure Your Facebook</title>
		<link>http://trudat.info/2009/07/secure-your-facebook/</link>
		<comments>http://trudat.info/2009/07/secure-your-facebook/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 21:34:36 +0000</pubDate>
		<dc:creator>trudat</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://trudat.info/?p=287</guid>
		<description><![CDATA[Keep Your Photos Out of Facebook Ads According to Facebook Terms of Service, although you maintain ownership of any photos and videos you upload to Facebook, the very act of uploading them to Facebook grants Facebook a non-exclusive, royalty-free license to use your photos and videos worldwide for any purpose &#8230; as long as you [...]]]></description>
			<content:encoded><![CDATA[<h2>Keep Your Photos Out of Facebook Ads</h2>
<p><a href="http://www.facebook.com/"><img class="alignright size-full wp-image-288" title="Facebook" src="http://trudat.info/wp-content/uploads/2009/07/facebook.jpg" alt="Facebook" width="240" height="90" /></a>According to <a href="http://www.facebook.com/terms.php">Facebook Terms of Service</a>, although you maintain ownership of any photos and videos you upload to Facebook, the very act of uploading them to Facebook grants Facebook a non-exclusive, royalty-free license to use your photos and videos worldwide for any purpose &#8230; as long as you haven&#8217;t specifically informed them not to in your privacy settings. As of May 1, 2009, the TOS reads:</p>
<blockquote><p>You own all of the content and information you post on Facebook, and you can control how we share your content through your privacy and application settings. In order for us to use certain types of content and provide you with Facebook, you agree to the following:</p>
<p>For content that is covered by intellectual property rights, like photos and videos (&#8220;IP content&#8221;), you specifically give us the following permission, subject to your privacy and application settings: you grant us a non-exclusive, transferable, sub-licensable, royalty-free, worldwide license to use any IP content that you post on or in connection with Facebook (&#8220;IP License&#8221;). This IP License ends when you delete your IP content or your account (except to the extent your content has been shared with others, and they have not deleted it).</p></blockquote>
<p>Under these terms Facebook allows advertisers to use your photos in their advertisements on Facebook. In the privacy section of your Facebook account, Facebook allows to to set whether or not you wish advertisers to have this permission:</p>
<blockquote><p>Facebook occasionally pairs advertisements with relevant social actions from a user&#8217;s friends to create Facebook Ads. Facebook Ads make advertisements more interesting and more tailored to you and your friends. These respect all privacy rules. You may opt out of appearing in your friends&#8217; Facebook Ads below.</p></blockquote>
<p>So if you don&#8217;t want your mugshot appearing in an ad for &#8220;hot singles in your area&#8221; on your spouse&#8217;s Facebook page, then take the following steps to specifically deny permission to use your photos in ads.</p>
<p>1. Under Settings, click on <strong>Privacy Settings</strong>.</p>
<p><img class="alignnone size-full wp-image-289" title="fb-privacy" src="http://trudat.info/wp-content/uploads/2009/07/fb-privacy.png" alt="fb-privacy" width="190" height="108" /></p>
<p>2. Then click on <strong>News Feed and Wall</strong>.</p>
<p><img class="alignnone size-full wp-image-290" title="fb-newsfeed-wall" src="http://trudat.info/wp-content/uploads/2009/07/fb-newsfeed-wall.png" alt="fb-newsfeed-wall" width="514" height="45" /></p>
<p>3. Click on the <strong>Facebook Ads</strong> tab.</p>
<p><img class="alignnone size-full wp-image-291" title="fb-ads" src="http://trudat.info/wp-content/uploads/2009/07/fb-ads.png" alt="fb-ads" width="285" height="74" /></p>
<p>4. Set <strong>Appearance in Facebook Ads</strong> to &#8220;No one&#8221;.</p>
<p><img class="alignnone size-full wp-image-292" title="fb-no-one" src="http://trudat.info/wp-content/uploads/2009/07/fb-no-one.png" alt="fb-no-one" width="319" height="68" /></p>
<p>5. Click on <strong>Save Changes</strong> and your done.</p>
<h2>Remove Your Public Search Profile</h2>
<p>Another security risk is the public search listings available on search engines like Google. If you have a Facebook account, do a Google search on your name. Chances are your Facebook public search listing is near the top on the first page of search results. Or pick almost any name you can think of and search it on Google. You will probably be able to find a public Facebook listing. The public search profile shows the person&#8217;s current profile picture, a link to send the person a message, eight of the person&#8217;s friends with their pictures and a sampling of the products, companies, television shows, etc. that he or she is a fan of. This is a LOT of information about you that you probably don&#8217;t want public available and easily searchable on the Internet. In Facebook, because you have to sign in with an account in order to use Facebook, as a user you are lulled into a feeling of security that only your friends and family will be able to see your profile picture or know what kinds of television shows you like to watch. On the contrary, Facebook makes it public to the planet by default.</p>
<p>The good news is that you can shut off your public profile. To do so follow watch this video.</p>
<p>[youtube]http://www.youtube.com/watch?v=SK6RlI-oZqs[/youtube]</p>
<h2>Banish Facebook Ads</h2>
<p>I was annoyed sometime last year by the content of some ads on Facebook, so I decided to see if I could get rid of them. It was astonishingly easy. Use the <strong>Stylish</strong> Firefox add-on to add site-specific CSS styles to hide the ads from view. To do hide Facebook ads on the Firefox browser follow these instructions.</p>
<p>1. Use the Firefox browser.</p>
<p>2. Install the &#8220;Stylish&#8221; add-on:<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/2108">https://addons.mozilla.org/en-US/firefox/addon/2108</a><br />
(requires browser restart)</p>
<p>3. Go to a <a href="http://www.facebook.com/home.php">Facebook</a> page.</p>
<p>4. Look at the bottom-right corner of the browser and click on the icon of a pen on a document.</p>
<p>5. Mouseover &#8220;write style&#8230;&#8221; and select &#8220;For facebook.com &#8230;&#8221; in the sub-menu.</p>
<p>6. Under &#8220;Description&#8221; you can name this style rule anything you want (e.g., remove facebook ads).</p>
<p>7. Down below in the style code box use this code:</p>
<blockquote><p>@namespace url(http://www.w3.org/1999/xhtml);<br />
@-moz-document domain(&#8220;facebook.com&#8221;) {<br />
#ssponsor, .home_main_item .social_ad { display: none !important; }<br />
}</p></blockquote>
<p>All you have to do is copy and paste in the code the is bold into the appropriate place in the box.</p>
<p>8. Click &#8220;Save&#8221; and you&#8217;re done! Ads are gone!</p>
]]></content:encoded>
			<wfw:commentRss>http://trudat.info/2009/07/secure-your-facebook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

