<?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>Google Infomer: Insight SEO, PPC, Web Develope etc</title>
	<atom:link href="http://ggin.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://ggin.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 28 Dec 2010 09:56:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>OpenVPN setup on Slicehost VPS</title>
		<link>http://ggin.com/blog/openvpn-setup-on-vps/</link>
		<comments>http://ggin.com/blog/openvpn-setup-on-vps/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 00:57:17 +0000</pubDate>
		<dc:creator>Lan Bing</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[slicehost]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://ggin.com/blog/?p=84</guid>
		<description><![CDATA[OpenVPN setup on Slicehost VPS - Ubuntu]]></description>
			<content:encoded><![CDATA[<p>Today, my <abbr title="virtual private server">VPS</abbr> on <a href="https://manage.slicehost.com/customers/new?referrer=e5a9698660bb4f9a17a39a8f9f81b7bb" title="referrals url">slicehost</a> has been setup as virtual private network server via <a href="http://openvpn.net">OpenVPN</a>. As I have mentioned at Google said <a href="/google-cn-disabled/">goodbye to Chinese</a>, the google.cn has been disabled and restricted by <abbr title="Internet Protocol ">IP</abbr>. So I have to find a way to setup the <strong>VPN server</strong> so that I can visit Google.com in China. Well, my story is over. Let&#8217;s start the VPN server tutorial right now!<span id="more-84"></span></p>
<h3>Step 1: Install OpenVpn to your slice(VPS on the SliceHost)!</h3>
<p>As usual, we can install it either source or binary. I have installed it with binary via aptitude the built-in dpkg of the Ubuntu(well, I installed the image Ubuntu 8.04.2 LTS &#8211; hardy on my VPS). </p>
<dl>
<dt>install openvpn via dpkg</dt>
<dd>aptitude install openvpn</dd>
<dt>install openvpn via source</dt>
<dd><code>cd ~/sources #or your favor places to put source files always<br />wget http://openvpn.net/release/openvpn-2.0.5.tar.gz<br />tar -jxv -f openvpn-2.0.5.tar.gz<br />cd ./openvpn-2.0.5<br />./configure --with-lzo-headers=/usr/local/include --with-lzo-lib=/usr/local/lib --with-ssl-headers=/usr/local/include/openssl --with-ssl-lib=/usr/local/lib # please install lzo and openssl first<br />make<br />make check<br />make install</code></dd>
</dl>
<h3>Step 2: PKI Configure and Keys Generated</h3>
<p><code><br />
cp -R /usr/share/doc/openvpn/examples/easy-rsa /etc/open/vpn<br />
sudo -i #if you are not login as root but have sudo permitted as root<br />
cd /etc/openvpn/easy-rsa/2.0<br />
./vars #if it doesn't work, try [sh ./vars] or use the export command<br />
./clean-all<br />
./build-ca<br />
./build-key-server server #change server to yours<br />
./build-key username #set username here<br />
./build-dh<br />
openvpn --genkey --secret ta.key #find more about this comment in sample file server.conf<br />
exit<br />
</code><br />
You needn&#8217;t and shouldn&#8217;t to run clean-all and build-ca at the next time when you wanna add more user or server.</p>
<h3>Step 3: Config the server.conf for OpenVPN</h3>
<p><code><br />
sudo cp /usr/share/doc/openvpn/example/sample-config-files/server.conf /etc/openvpn/<br />
sudo vim /etc/openvpn/server.conf<br />
</code><br />
It&#8217;s a good idea to read the comment in the server.conf. We have to uncomment the following settings.<br />
<code><br />
port 1194<br />
proto udp<br />
dev tun<br />
ca /etc/openvpn/easy-rsa/2.0/keys/ca.crt<br />
cert /etc/openvpn/easy-rsa/2.0/keys/server.crt<br />
key /etc/openvpn/easy-rsa/2.0/keys/server.key<br />
dh /etc/openvpn/easy-rsa/2.0/keys/dh1024.pem<br />
server x.x.0.0 255.255.255.0<br />
ifconfig-pool-persist ipp.txt<br />
push "redirect-gateway"<br />
push "dhcp-option DNS x.x.x.x" #try to find it via comment cat /etc/resolv.conf<br />
keepalive 10 120<br />
tls-auth /etc/openvpn/easy-rsa/2.0/keys/ta.key 0<br />
comp-lzo<br />
user nobody<br />
group nogroup<br />
persist-key<br />
persist-tun<br />
status openvpn-status.log<br />
verb 3<br />
</code></p>
<h3>Step 4: iptable if you have set firewall</h3>
<p><code><br />
sudo vim /etc/iptables.test.rules<br />
# then add the following lines into your test rules<br />
*nat<br />
-t nat -A POSTROUTING -s x.x.0.0/24 -o eth0 -j MASQUERADE # x.x.0.0 should be identical with the one in your server.conf file<br />
COMMIT<br />
*filter #it may have already<br />
-A INPUT -i tun+ -j ACCEPT<br />
-A FORWARD -i tun+ -j ACCEPT<br />
-A FORWARD -o tun+ -j ACCEPT<br />
-A INPUT -p udp --dport 1194 -j ACCEPT<br />
.....<br />
your origin chains<br />
....<br />
COMMIT<br />
sudo iptables-restore < /etc/iptables.test.rules<br />
sudo iptables -L<br />
#.....output for your review<br />
sudo -i<br />
iptables-save > /etc/iptables.up.rules<br />
exit<br />
</code></p>
<h3>Step 5: VPN Client</h3>
<p>Install OpenVPN on your local computer as well basically.<br />
Copy the files ca.crt、ta.key、username.crt、username.key, they are lying in the folder /etc/openvpn/keys/. Please be aware of that the copy should in the ssh tunnel to keep it&#8217;s secret. Execute [sudo cp /usr/share/doc/openvpn/examples/sample-config-files/client.conf /etc/openvpn/]. The finally setting client file as following:<br />
<code><br />
client<br />
dev tun<br />
proto udp<br />
remote yourserver 1194 #the public IP of your slice<br />
resolv-retry infinite<br />
nobind<br />
persist-key<br />
persist-tun<br />
ca ca.crt<br />
cert username.crt<br />
key username.key<br />
ns-cert-type server<br />
tls-auth ta.key 1<br />
comp-lzo<br />
verb 3<br />
</code></p>
<h3>Step 6: Forward isn&#8217;t ready yet, enable Router</h3>
<p>Till now, we can connect the VPN server. However, we are failed to access internet once the connection created. That&#8217;s because the  ROUTER on the slice isn&#8217;t enabled yet. Try type [sudo sysctl -a | grep for]. We will see net.ipv4.ip_forward = 0 etc. Use command [sudo sysctl -w net.ipv4.ip_forward=1] to adjust the value of forward. The finally displaying after your run [sudo sysctl -a | grep for] as follow.<br />
<code><br />
kernel.sched_domain.cpu0.domain0.forkexec_idx = 1<br />
kernel.sched_domain.cpu1.domain0.forkexec_idx = 1<br />
kernel.sched_domain.cpu2.domain0.forkexec_idx = 1<br />
kernel.sched_domain.cpu3.domain0.forkexec_idx = 1<br />
net.ipv4.ip_forward = 1<br />
net.ipv4.conf.lo.forwarding = 1<br />
net.ipv4.conf.lo.mc_forwarding = 0<br />
net.ipv4.conf.lo.force_igmp_version = 0<br />
net.ipv4.conf.all.forwarding = 1<br />
net.ipv4.conf.all.mc_forwarding = 0<br />
net.ipv4.conf.all.force_igmp_version = 0<br />
net.ipv4.conf.default.forwarding = 1<br />
net.ipv4.conf.default.mc_forwarding = 0<br />
net.ipv4.conf.default.force_igmp_version = 0<br />
net.ipv4.conf.eth0.forwarding = 1<br />
net.ipv4.conf.eth0.mc_forwarding = 0<br />
net.ipv4.conf.eth0.force_igmp_version = 0<br />
net.ipv4.conf.eth1.forwarding = 1<br />
net.ipv4.conf.eth1.mc_forwarding = 0<br />
net.ipv4.conf.eth1.force_igmp_version = 0<br />
net.ipv4.conf.tun0.forwarding = 1<br />
net.ipv4.conf.tun0.mc_forwarding = 0<br />
net.ipv4.conf.tun0.force_igmp_version = 0<br />
net.ipv6.conf.lo.forwarding = 0<br />
net.ipv6.conf.lo.force_mld_version = 0<br />
net.ipv6.conf.eth0.forwarding = 0<br />
net.ipv6.conf.eth0.force_mld_version = 0<br />
net.ipv6.conf.eth1.forwarding = 0<br />
net.ipv6.conf.eth1.force_mld_version = 0<br />
net.ipv6.conf.all.forwarding = 0<br />
net.ipv6.conf.all.force_mld_version = 0<br />
net.ipv6.conf.default.forwarding = 0<br />
net.ipv6.conf.default.force_mld_version = 0<br />
net.ipv6.conf.tun0.forwarding = 0<br />
net.ipv6.conf.tun0.force_mld_version = 0<br />
</code><br />
Alernately, you can modify the file /etc/sysctl.conf. There is an comment line[net.ipv4.ip_forward=1]. And run sudo sysctl -p to flush the modification. I have read some guides which use the command [echo "1" > /proc/sys/net/ipv4/ip_forward] to enable simple built-in router of kernel. It&#8217;s works. But it will be disabled once you reboot the computer. So try to add it to file <em>/etc/rc.d/rc.local</em>. </p>
<h3>Step 7: Start Your VPN Server and try to use it</h3>
<p><code><br />
sudo /etc/init.d/openvps start<br />
</code><br />
OR<br />
append the command [/usr/local/sbin/openvpn --config /etc/openvpn/server.conf > dev/null 2>&#038;1 &#038;] to /etc/rc.local].<br />
This is a tutorial based upon Ubuntu. You may need adjust the command to run if you wanna setup OpenVPN server in other unix-like system. If you wanna use OpenVPN on the Windows, I recommend <a href="http://openvpn.se/">GUI OpenVPN for windows</a>.<br />
Thanks for your reading!</p>
]]></content:encoded>
			<wfw:commentRss>http://ggin.com/blog/openvpn-setup-on-vps/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>500 Error Once http authentication set up?</title>
		<link>http://ggin.com/blog/500-error-http-auth-nginx/</link>
		<comments>http://ggin.com/blog/500-error-http-auth-nginx/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 09:21:06 +0000</pubDate>
		<dc:creator>Lan Bing</dc:creator>
				<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">http://ggin.com/blog/?p=82</guid>
		<description><![CDATA[Nginx, as one of light web server software, is awesome. It has the ability to protect whole or parts of your web application via http authentication. It can be set up with ease. Be careful with the path of your auth user file. Try to change it to the absolute path if your pages drop [...]]]></description>
			<content:encoded><![CDATA[<p><a  href="http://nginx.org">Nginx</a>, as one of light web server software, is awesome. It has the ability to protect whole or parts of your web application via <a href="http://wiki.nginx.org/NginxHttpAuthBasicModule">http authentication</a>. It can be set up with ease. Be careful with the path of your auth user file. Try to change it to the <em>absolute path</em> if your pages drop into 500 Internal Server Error.</p>
<blockquote cite="http://wiki.nginx.org/NginxHttpAuthBasicModule"><p>
auth_basic_user_file</p>
<p>syntax: auth_basic_user_file the_file</p>
<p>default: no</p>
<p>context: http, server, location, limit_except</p>
<p>This directive sets the htpasswd filename for the authentication realm. <strong>Since version 0.6.7 the filename path is relative to directory of nginx configuration file nginx.conf, but not to nginx prefix directory</strong>.</p>
<p>The format of file is the following:</p>
<p>user:pass<br />
user2:pass2:comment<br />
user3:pass3</p>
<p>Passwords must be encoded by function crypt(3). You can create the password file with the htpasswd program from Apache.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ggin.com/blog/500-error-http-auth-nginx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google.CN has been Disabled by Google</title>
		<link>http://ggin.com/blog/google-cn-disabled/</link>
		<comments>http://ggin.com/blog/google-cn-disabled/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 21:14:46 +0000</pubDate>
		<dc:creator>Lan Bing</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://ggin.com/blog/?p=72</guid>
		<description><![CDATA[Google suspended the Google.cn, and redirect Chinese users to Google.com.hk since March 22, 2010.]]></description>
			<content:encoded><![CDATA[<p>I detected the Google.CN has been suspended and redirected to Google.com.hk half an hour ago.<br />
<img alt="Google.CN was disabled" src="http://farm5.static.flickr.com/4001/4455239152_27181610b6_o.jpg" title="Google closed their CN domain" width="512" height="411" /><br />
And it has been confirmed by <a href="http://twitter.com/google" title="google at twitter.com">Googler</a>. You can see Google has tweeted <a href="http://googleblog.blogspot.com/2010/03/new-approach-to-china-update.html">New Approach to China Update</a>. Back to the original post about <a href="http://googleblog.blogspot.com/2010/01/new-approach-to-china.html">Google approach to China</a>, we know Google.cn was opened in January 2006.<br />
At the same time, Google.com can&#8217;t be visited and redirected too. <del>It means that the Google used IP address as the strict condition for 302 redirect. Otherwise</del>(<a href="#googledotcn">see below</a>). I won&#8217;t detected this out because I use GOogle.com to search usually. I recommend that Google goes to remove the text link at home page of google.com.hk for Chinese user(should remain it for HongKong users of course:).<br />
<img alt="Google.com has been redirected too" src="http://farm5.static.flickr.com/4061/4454522215_38d154bd89_o.jpg" title="China IP has been suspended to use Google.com as well" width="512" height="449" /><br />
<em>I have three types of browsers installed at my computer(Windows 7 64bit). I have tested on all of them, and the following are results.</em><br />
<table id="googledotcn" border="1">
<tr>
<td>&nbsp;</td>
<td>Google.cn</td>
<td>Google.com</td>
</tr>
<tr>
<td>IE(64-bits)</td>
<td>302->Google.com.hk</td>
<td><strong>Remain at Google.com</strong></td>
</tr>
<tr>
<td>IE(32-bits)</td>
<td>302->Google.com.hk</td>
<td><strong>Remain at Google.com</strong></td>
</tr>
<tr>
<td>Chrome</td>
<td>302->Google.com.hk</td>
<td>302->Google.com.hk</td>
</tr>
<tr>
<td>Firefox</td>
<td>302->Google.com.hk</td>
<td>302->Google.com.hk</td>
</tr>
</table>
<p>Then I go to connect another computer that install Window 2003 32bit as OS at my office, the all redirecting works well there. I believe that is not a bug when Googler want to handle redirect. Anyway, seems Google doesn&#8217;t use the user IP as the redirect condition. I really can not figure out how they to redirect the Google.com to Google.com.hk on both Chrome and Firefox. Could anyone see my articles give me a hint?</p>
<h2>Will it reduce the Google&#8217;s marketing share in China?</h2>
<p>IMHO, Absolute NOT! I even guess that more Chinese people will know Google. Google is successful one more time in Chinese marketing:)</p>
<blockquote cite="http://googleblog.blogspot.com/2010/03/new-approach-to-china-update.html"><p>
In terms of Google&#8217;s wider business operations, we intend to continue <strong>R&#038;D</strong> work in China and also to maintain a sales presence there, &#8230;&#8230; Google.com.hk.
</p></blockquote>
<h2>Google filter the search result at the same time</h2>
<p>I have tried to use some sexual words to search at Google.com.hk. The content filter of <a href="http://www.google.com/support/websearch/bin/answer.py?hl=en&#038;answer=35892">Google Safesearch</a> is active automatically. I even can&#8217;t close it via <a href="http://www.google.com/preferences">Google Preferences Page</a> in Firefox as the parameter(&#038;safe=active) is added explicitly compared with Google chrome. Fortunately, it can be set to off manually throughout URL modification with ease.</p>
]]></content:encoded>
			<wfw:commentRss>http://ggin.com/blog/google-cn-disabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Gzip on Share Hosting in Right Way &#8211; Unix Like</title>
		<link>http://ggin.com/blog/enable-gzip-on-share-hosting/</link>
		<comments>http://ggin.com/blog/enable-gzip-on-share-hosting/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 15:14:18 +0000</pubDate>
		<dc:creator>Lan Bing</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Gzip]]></category>

		<guid isPermaLink="false">http://ggin.com/blog/?p=66</guid>
		<description><![CDATA[The tips for Gzip enabling on sharing hosts installed Unix like OS. I know many resources on Google.com can help you already. So this is not an full guide for enable Gzip. Although I have listed a dozen of tips at the end of this post. Read my story to understand what I wanna share [...]]]></description>
			<content:encoded><![CDATA[<p>The tips for Gzip enabling on sharing hosts installed Unix like <abbr title="operating system">OS</abbr>.  I know many resources on Google.com can help you already. So this is not an full guide for enable Gzip. Although I have listed a dozen of tips at the end of this post. Read my story to understand what I wanna share with you. That&#8217;s an specific medicine for the guys who is <a href="#situation">dropping in the same situation I met</a>. </p>
<p>Today, I did the optimization for the blog as usual after the blog(<a href="http://buystocredit.com/" title="buy star trek credit" target="_gzippop">buy STO credit</a>) has been set up. The blog is hosted by <a href="https://www.godaddy.com/Hosting/Legacy.aspx" target="_gzippop">Godaddy Sharing Host</a>(Specially, Linux economy plan. Why? As it&#8217;s cheap prices and decent <abbr title="customer services">CS</abbr>. If you have any suggestion to me, I appreciate!). After the bog got a nice score with <a href="http://developer.yahoo.com/yslow/" target="_gzippop">YSlow</a>, I noticed that the title rewrite has been all death. I have used the famous WordPress plugin titled <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO by Michael Torbert</a>. Sincerely, I am so lazy so that I didn&#8217;t read the sources code ever. I have to read the code to understand how it works. aha..It uses the function ob_start() to get call callback function in the class to rewrite the original title. That&#8217;s where the collision comes from. I have used the ob_start(&#8220;gz_handler&#8221;) to enable Gzip for buystocredit.com. Read the <a href="http://www.php.net/manual/en/function.ob-end-flush.php">PHP manual for function ob_end_flush()</a> to know the collision well if you want to know more.<br />
So, the issue I met when I enabled Gzip was clear. </p>
<div id="situation">What is the tip to fix?</p>
<ul>
<li>Web Server: Apache 1.3.* with PHP5 on Linux Share Hosting</li>
<li>Blog Software: WordPress</li>
<li>Plugin Enabled: All in one SEO pack</li>
<li>Gzip Enabled Method: call ob_start(&#8220;gz_handler&#8221;) at the beginning of each page</li>
<li>Result: All in one SEO pack title rewrite <b>disables</b></li>
<li>Solution: Use zlib.output_compression to instead of ob_gzhandler()
<ol>
<li>Remove the ob_start(&#8220;ob_gzhandler&#8221;) from everywhere in your codes</li>
<li>Modify the php5.ini/php.ini at the web root as following:<code>zlib.output_buffering = On<br />
;zlib.output_handler = ob_gzhandler //comment it out, as it cannot be used with the zlib.ouput_compression is on<br />
zlib.output_compression = On</code></li>
</ol>
</li>
</ul>
</div>
<p>There are many way to enabled Gzip as following.</p>
<dl>
<dt>Apache 2.0.x &#8211; if the <a href="http://httpd.apache.org/docs/2.0/mod/mod_deflate.html" target="_gzippop">mod_felate</a> enabled by your host provider.</dt>
<dd><a href="http://www.techiegyan.com/?p=251" target="_gzippop">Enable Gzip via Mod_deflate</a></dd>
<dt>Apache 1.3.x &#8211; if the <a href="http://schroepl.net/projekte/mod_gzip/install.htm" target="_gzippop">mod_gzip installed</a> and enabled by your host provider</dt>
<dd><a href="http://schroepl.net/projekte/mod_gzip/config.htm" target="_gzippop">Official Mod_Gzip Manual</a> or <a href="http://nadeausoftware.com/node/33#Enablefilecompressionusingmodgzip" target="_gzippop">Fast Usage Tips</a></dd>
<dt>PHP 4.0.4 or higher Ob_start(&#8220;ob_gzhandler&#8221;)</dt>
<dd><a href="http://perishablepress.com/press/2007/03/26/fast-effective-php-compression/" target="_gzippop">Fast Effective PHP Gzip Compression</a></dd>
<dt><a href="http://www.php.net/manual/en/zlib.configuration.php#ini.zlib.output-compression">PHP zlib.output_compression</a></dt>
<dd>The method in my post!</dd>
<dt>Other resouces:</dt>
<dd><a href="http://www.lateralcode.com/gzip-files-with-htaccess-and-php/" target="_gzippop">Gzip with .htaccess and PHP</a></dd>
<dd><a href="http://betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/" target="_gzippop">Better Explained? Interesting domain</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://ggin.com/blog/enable-gzip-on-share-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 Digital Domains Pending Deletion</title>
		<link>http://ggin.com/blog/9-digital-domains-pending-deletion/</link>
		<comments>http://ggin.com/blog/9-digital-domains-pending-deletion/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 10:18:28 +0000</pubDate>
		<dc:creator>Lan Bing</dc:creator>
				<category><![CDATA[Domains]]></category>

		<guid isPermaLink="false">http://ggin.com/blog/?p=58</guid>
		<description><![CDATA[I have just noticed that there are nine domains that compose with 4 numbers are pending for deletion. Digital Domains Estimated Final Winning Pricesupdate later 0012.com $2,999 0016.com $2,499 0017.com $2,299 0023.com $3,049 0138.com $1,999 0165.com $1,099 0198.com $1,099 0257.com $999 0368.com $999 Ignore the estimated pricing above, that&#8217;s only my evaluations based upon my [...]]]></description>
			<content:encoded><![CDATA[<p>I have just noticed that there are nine domains that compose with 4 numbers are pending for deletion.</p>
<table style="border:1px solid silver;">
<tr>
<th>Digital Domains</th>
<th>Estimated</th>
<th>Final Winning Prices<sup>update later</sup></th>
</tr>
<tr>
<td>0012.com</td>
<td>$2,999</td>
<td></td>
</tr>
<tr>
<td>0016.com</td>
<td>$2,499</td>
<td></td>
</tr>
<tr>
<td>0017.com</td>
<td>$2,299</td>
<td></td>
</tr>
<tr>
<td>0023.com</td>
<td>$3,049</td>
<td></td>
</tr>
<tr>
<td>0138.com</td>
<td>$1,999</td>
<td></td>
</tr>
<tr>
<td>0165.com</td>
<td>$1,099</td>
<td></td>
</tr>
<tr>
<td>0198.com</td>
<td>$1,099</td>
<td></td>
</tr>
<tr>
<td>0257.com</td>
<td>$999</td>
<td></td>
</tr>
<tr>
<td>0368.com</td>
<td>$999</td>
<td></td>
</tr>
</table>
<p>Ignore the estimated pricing above, that&#8217;s only my evaluations based upon my experiences. Just for funny!<br />
The all 9 domains were registered via <a href="http://www.directnic.com/" target="_blank">Direct Nic</a> ago. So I suppose they are belongs to one guy who finally decided to out of the domain business or became insolvent. Those Digital domains are all registered since 1999 without any dropping.</p>
]]></content:encoded>
			<wfw:commentRss>http://ggin.com/blog/9-digital-domains-pending-deletion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

