<?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>HD@THU</title>
	<atom:link href="http://www.thuhd.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thuhd.com</link>
	<description>Keep away from Technology...</description>
	<lastBuildDate>Sun, 27 Dec 2009 04:45:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>4 Simple Steps to Make a SSL Certification</title>
		<link>http://www.thuhd.com/4-simple-steps-to-make-a-ssl-certification.html</link>
		<comments>http://www.thuhd.com/4-simple-steps-to-make-a-ssl-certification.html#comments</comments>
		<pubDate>Sun, 27 Dec 2009 04:44:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.thuhd.com/?p=129</guid>
		<description><![CDATA[In this post, we&#8217;ll create a sll certification. Just follow the 4 steps below: $openssl genrsa -des3 -out thuhd.com.key 4096 $openssl req -new -key thuhd.com.key -out thuhd.com.csr Country Name: US #for example State or Province Name: California Locality Name: LA Organization Name: THUHD.COM Organizational Unit Name: HD@THU Common Name: *.thuhd.com Email Address: public@thuhd.com $openssl rsa [...]]]></description>
			<content:encoded><![CDATA[<p>In this post, we&#8217;ll create a sll certification. Just follow the 4 steps below:<br />
<blockquote><strong>$openssl genrsa -des3 -out thuhd.com.key 4096<br />
$openssl req -new -key thuhd.com.key -out thuhd.com.csr</strong><br />
Country Name: US   #for example<br />
State or Province Name: California<br />
Locality Name: LA<br />
Organization Name: THUHD.COM<br />
Organizational Unit Name: HD@THU<br />
Common Name: *.thuhd.com<br />
Email Address: public@thuhd.com<br />
<strong>$openssl rsa -in thuhd.com.key -out thuhd.com.nopasswd.key<br />
$openssl x509 -req -days 365 -in thuhd.com.csr -signkey thuhd.com.nopasswd.key -out thuhd.com.crt</strong></p></blockquote>
<p>Then we have thuhd.com.crt thuhd.com.key thuhd.com.nopasswd.key thuhd.com.crt.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.thuhd.com/4-simple-steps-to-make-a-ssl-certification.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.thuhd.com/hello-world.html</link>
		<comments>http://www.thuhd.com/hello-world.html#comments</comments>
		<pubDate>Thu, 24 Dec 2009 02:21:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://173.212.227.87/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging! ============== I&#8217;ve moved my blog to BurstNet.]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!<br />
==============<br />
I&#8217;ve moved my blog to BurstNet.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.thuhd.com/hello-world.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install Nginx Spawn-fcgi PHP MySQL eAccelerator on Debian Sid</title>
		<link>http://www.thuhd.com/install-nginx-spawn-fcgi-php-mysql-eaccelerator-on-debian-sid.html</link>
		<comments>http://www.thuhd.com/install-nginx-spawn-fcgi-php-mysql-eaccelerator-on-debian-sid.html#comments</comments>
		<pubDate>Thu, 24 Dec 2009 01:53:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.thuhd.com/install-nginx-spawn-fcgi-php-mysql-eaccelerator-on-debian-sid.html</guid>
		<description><![CDATA[1, Install nginx, spawn-fcgi, php and mysql #apt-get install nginx spawn-fcgi php5-cgi php5-mysql mysql-server-5.1 2, Configure nginx #cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bak #vi /etc/nginx/nginx.conf user www www; worker_processes 1; error_log /var/log/nginx/error.log; pid /var/run/nginx.pid; events { use epoll; worker_connections 1024; multi_accept on; } http { include /etc/nginx/mime.types; access_log /var/log/nginx/access.log; sendfile on; #tcp_nopush on; keepalive_timeout 65; tcp_nodelay on; gzip [...]]]></description>
			<content:encoded><![CDATA[<p>1, Install nginx, spawn-fcgi, php and mysql</p>
<blockquote><p><strong>#apt-get install nginx spawn-fcgi php5-cgi php5-mysql mysql-server-5.1</strong></p></blockquote>
<p>2, Configure nginx</p>
<blockquote><p><strong>#cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bak<br />
#vi /etc/nginx/nginx.conf</strong><br />
user www www;<br />
worker_processes  1;</p>
<p>error_log  /var/log/nginx/error.log;<br />
pid        /var/run/nginx.pid;</p>
<p>events {<br />
use	epoll;<br />
worker_connections  1024;<br />
multi_accept on;<br />
}</p>
<p>http {<br />
include       /etc/nginx/mime.types;</p>
<p>access_log	/var/log/nginx/access.log;</p>
<p>sendfile        on;<br />
#tcp_nopush     on;</p>
<p>keepalive_timeout  65;<br />
tcp_nodelay        on;</p>
<p>gzip  on;<br />
gzip_disable &#8220;MSIE [1-6]\.(?!.*SV1)&#8221;;</p>
<p>include /etc/nginx/conf.d/*.conf;<br />
include /etc/nginx/sites-enabled/*;<br />
}</p>
<p># mail {<br />
#     # See sample authentication script at:<br />
#     # http://wiki.nginx.org/NginxImapAuthenticateWithApachePhpScript<br />
#<br />
#     # auth_http localhost/auth.php;<br />
#     # pop3_capabilities &#8220;TOP&#8221; &#8220;USER&#8221;;<br />
#     # imap_capabilities &#8220;IMAP4rev1&#8243; &#8220;UIDPLUS&#8221;;<br />
#<br />
#     server {<br />
#         listen     localhost:110;<br />
#         protocol   pop3;<br />
#         proxy      on;<br />
#     }<br />
#<br />
#     server {<br />
#         listen     localhost:143;<br />
#         protocol   imap;<br />
#         proxy      on;<br />
#     }<br />
# }<br />
<strong>#cp /etc/nginx/sites-available/default /etc/nginx/sites-available/thuhd.com<br />
#rm -fr /etc/nginx/sites-enabled/default<br />
#vi /etc/nginx/sites-available/thuhd.com</strong><br />
# You may add here your<br />
# server {<br />
#	&#8230;<br />
# }<br />
# statements for each of your virtual hosts</p>
<p>server {<br />
listen   80;<br />
server_name  www.thuhd.com thuhd.com 173.212.227.87;</p>
<p>access_log  /var/log/nginx/thuhd.com.access.log;</p>
<p>location / {<br />
root   /var/www/thuhd.com;<br />
try_files $uri $uri/ /index.php?q=$uri;   #Rewrite rule for WordPress.<br />
index  index.php index.html index.htm;<br />
}</p>
<p>#location /doc {<br />
#	root   /usr/share;<br />
#	autoindex on;<br />
#	allow 127.0.0.1;<br />
#	deny all;<br />
#}</p>
<p>#location /images {<br />
#	root   /usr/share;<br />
#	autoindex on;<br />
#}</p>
<p>#error_page  404  /404.html;</p>
<p># redirect server error pages to the static page /50x.html<br />
#<br />
#error_page   500 502 503 504  /50x.html;<br />
#location = /50x.html {<br />
#	root   /var/www/nginx-default;<br />
#}</p>
<p># proxy the PHP scripts to Apache listening on 127.0.0.1:80<br />
#<br />
#location ~ \.php$ {<br />
#proxy_pass   http://127.0.0.1;<br />
#}</p>
<p># pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000<br />
#<br />
location ~ \.php$ {<br />
fastcgi_pass   127.0.0.1:9000;<br />
fastcgi_index  index.php;<br />
fastcgi_param  SCRIPT_FILENAME  /var/www/thuhd.com$fastcgi_script_name;<br />
include		fastcgi_params;<br />
}</p>
<p># deny access to .htaccess files, if Apache&#8217;s document root<br />
# concurs with nginx&#8217;s one<br />
#<br />
#location ~ /\.ht {<br />
#deny  all;<br />
#}<br />
}</p>
<p># another virtual host using mix of IP-, name-, and port-based configuration<br />
#<br />
#server {<br />
#listen   8000;<br />
#listen   somename:8080;<br />
#server_name  somename  alias  another.alias;</p>
<p>#location / {<br />
#root   html;<br />
#index  index.html index.htm;<br />
#}<br />
#}</p>
<p># HTTPS server<br />
#<br />
#server {<br />
#listen   443;<br />
#server_name  localhost;</p>
<p>#ssl  on;<br />
#ssl_certificate  cert.pem;<br />
#ssl_certificate_key  cert.key;</p>
<p>#ssl_session_timeout  5m;</p>
<p>#ssl_protocols  SSLv2 SSLv3 TLSv1;<br />
#ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;<br />
#ssl_prefer_server_ciphers   on;</p>
<p>#location / {<br />
#root   html;<br />
#index  index.html index.htm;<br />
#}<br />
#}<br />
<strong>#ln -s /etc/nginx/sites-available/thuhd.com /etc/nginx/sites-enabled/thuhd.com<br />
#/etc/init.d/nginx stop<br />
#userdel www-data &amp;&amp; useradd www<br />
#vi /etc/passwd</strong><br />
&#8230;&#8230;<br />
www:x:1001:1001:,,,:/var/www:/bin/sh<br />
&#8230;&#8230;<br />
<strong>#mkdir /var/www<br />
#mkdir /var/www/thuhd.com<br />
#vi /var/www/thuhd.com/index.php</strong><br />
&lt;?php phpinfo(); ?&gt;<br />
<strong>#chown -R www:www /var/www</strong></p></blockquote>
<p>3, make spawn-fcgi automatically start</p>
<blockquote><p><strong>#cp /etc/rc.local /etc/rc.local/bak<br />
#vi /etc/rc.local</strong><br />
&#8230;&#8230;<br />
if [ -x /usr/bin/spawn-fcgi ] ; then<br />
/usr/bin/spawn-fcgi -f /usr/bin/php5-cgi -a 127.0.0.1 -p 9000 -C 3 -u www -g www<br />
fi</p>
<p>exit 0</p></blockquote>
<p>4, Compile eAccelerator and install it. Note that php5-dev can be removed when we&#8217;ve got eaccelerator.so</p>
<blockquote><p><strong>#apt-get install php5-dev build-essential<br />
$wget http://bart.eaccelerator.net/source/0.9.5.3/eaccelerator-0.9.5.3.tar.bz2<br />
$bunzip2 eaccelerator-0.9.5.3.tar.bz2<br />
$tar xvf eaccelerator-0.9.5.3.tar<br />
$cd eaccelerator<br />
$./configure<br />
$make<br />
#cp modules/eaccelerator.so /usr/lib/php5/20060613/<br />
#mkdir /var/cache/eaccelerator<br />
#chown -R www:www /var/cache/eaccelerator<br />
#cp /etc/php5/cgi/php.ini /etc/php5/cgi/php.ini.bak<br />
#vi /etc/php5/cgi/php.ini #add the following lines to the end.</strong><br />
&#8230;<br />
sendmail_path = /usr/sbin/sendmail   #enable PHP mail() function<br />
&#8230;<br />
[eAccelerator]<br />
extension=&#8221;eaccelerator.so&#8221;   #Without pathname<br />
eaccelerator.shm_size=&#8221;16&#8243;<br />
eaccelerator.cache_dir=&#8221;/var/cache/eaccelerator&#8221;<br />
eaccelerator.enable=&#8221;1&#8243;<br />
eaccelerator.optimizer=&#8221;1&#8243;<br />
eaccelerator.check_mtime=&#8221;1&#8243;<br />
eaccelerator.debug=&#8221;0&#8243;<br />
eaccelerator.filter=&#8221;"<br />
eaccelerator.shm_max=&#8221;0&#8243;<br />
eaccelerator.shm_ttl=&#8221;0&#8243;<br />
eaccelerator.shm_prune_period=&#8221;0&#8243;<br />
eaccelerator.shm_only=&#8221;0&#8243;<br />
eaccelerator.compress=&#8221;1&#8243;<br />
eaccelerator.compress_level=&#8221;9&#8243;<br />
<strong>$php5-cgi -v #reboot and test if eaccelertor is loaded by php5-cgi</strong><br />
PHP 5.2.11-2 with Suhosin-Patch 0.9.7 (cgi-fcgi) (built: Nov 21 2009 22:59:34)<br />
Copyright (c) 1997-2009 The PHP Group<br />
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies<br />
with eAccelerator v0.9.5.3, Copyright (c) 2004-2006 eAccelerator, by eAccelerator<br />
with Suhosin v0.9.29, Copyright (c) 2007, by SektionEins GmbH</p></blockquote>
<p>5, Configure mysql</p>
<blockquote><p><strong>$mysql -h localhost -u root -p</strong><br />
Enter password:<br />
Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 41<br />
Server version: 5.1.37-1ubuntu5 (Ubuntu)</p>
<p>Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the current input statement.</p>
<p><strong>mysql> create database thuhd;</strong><br />
Query OK, 1 row affected (0.00 sec)</p>
<p><strong>mysql> grant all privileges on thuhd to thuhd@localhost identified by &#8216;***&#8217;;</strong><br />
Query OK, 0 rows affected (0.02 sec)</p>
<p><strong>mysql> exit</strong><br />
Bye</p></blockquote>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.thuhd.com/install-nginx-spawn-fcgi-php-mysql-eaccelerator-on-debian-sid.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plug-in – Comments Needed</title>
		<link>http://www.thuhd.com/wordpress-plug-in-%e2%80%93-comments-needed.html</link>
		<comments>http://www.thuhd.com/wordpress-plug-in-%e2%80%93-comments-needed.html#comments</comments>
		<pubDate>Sat, 19 Dec 2009 06:46:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.thuhd.com/wordpress-plug-in-%e2%80%93-comments-needed.html</guid>
		<description><![CDATA[It&#8217;s a WordPress plug-in used to remind one-time visitors, for example, those who come from search engines, to post some comments when leaving, by a pop-up comfirmation dialog. Features: It reminds one-time visitors to post comments. It dosen&#8217;t annoy regular visitors who have posted comments before. Compatible with WordPress 2.9. Compatible with IE, Firefox, Chromium/Chrome, [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a WordPress plug-in used to remind one-time visitors, for example, those who come from search engines, to post some comments when leaving, by a pop-up comfirmation dialog.</p>
<p><strong>Features</strong>:<br />
It reminds one-time visitors to post comments.<br />
It dosen&#8217;t annoy regular visitors who have posted comments before.<br />
Compatible with WordPress 2.9.<br />
Compatible with IE, Firefox, Chromium/Chrome, etc.</p>
<p><strong>Requirements</strong>:<br />
The visitors&#8217; web browser supports javascript.</p>
<p><strong>Screenshots</strong>:<br />
<div id="attachment_114" class="wp-caption aligncenter" style="width: 336px"><a href="http://www.thuhd.com/wp-content/uploads/2009/12/Comments-Needed-on-Chromium.png" title="Comments Needed on Chromium" rel="lightbox[66]"><img src="http://www.thuhd.com/wp-content/uploads/2009/12/Comments-Needed-on-Chromium.png" alt="Comments Needed on Chromium" title="Comments Needed on Chromium" width="326" height="159" class="size-full wp-image-114" /></a><p class="wp-caption-text">Comments Needed on Chromium</p></div></p>
<p><strong>Change Log</strong>:<br />
Dec, 19th, 2009: version 0.1 released.</p>
<p><strong>Download</strong>:<br />
<a href="http://wordpress.org/extend/plugins/comments-needed/" target="_blank">Comments Needed on WordPress.ORG</a></p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.thuhd.com/wordpress-plug-in-%e2%80%93-comments-needed.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>WordPress plug-in &#8211; Lightbox Plus</title>
		<link>http://www.thuhd.com/wordpress-plug-in-lightbox-plus.html</link>
		<comments>http://www.thuhd.com/wordpress-plug-in-lightbox-plus.html#comments</comments>
		<pubDate>Tue, 15 Dec 2009 09:04:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.thuhd.com/?p=59</guid>
		<description><![CDATA[Recently I tried some WordPress LightBox plug-ins, and I found that most of them have some issues that disappointed me. Then LightBox Plus catched my eyes, and I finally decided to recommend this plug-in on my blog. Firstly, I’d like to quote the official description of LightBox Plus: Lightbox Plus implements ColorBox as a LightBox [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I tried some WordPress LightBox plug-ins, and I found that most of them have some issues that disappointed me. Then <a href=” http:>LightBox Plus</a> catched my eyes, and I finally decided to recommend this plug-in on my blog.</p>
<p>Firstly, I’d like to quote the official description of LightBox Plus:<br />
<blockquote>Lightbox Plus implements ColorBox as a LightBox image overlay tool for WordPress. ColorBox was created by Jack Moore of Color Powered and is licensed under the MIT License. Lightbox Plus permits users to view larger versions of images without having to leave the current page, and is also able to display simple slide shows. The use of the dark or light background, which dims the page over which the image has been overlaid, also serves to highlight the image being viewed. Lightbox Plus captures the image title for display in the overlay. Lightbox Plus is able to LightBox images displayed using WordPress build in gallery.<br />
Lightbox Plus uses WordPress’s built in jQuery library. </p></blockquote>
<p>Also, it has two other features. One is that it could automatically LightBox images. Another is that it provides an option to specify the display size of images. The latter feature is distinguished, since no other plug-ins, as far as I know, has this feature.</p>
<p>However, when I activated this plug-in on my blog, I rushed into a problem. It was because that this plug-in can handle the “a” tag and “gallery” shortcode, but no “img” tag. When I insert an image into a post, WordPress will automatically insert codes like this:<br />
<blockquote>&#91;caption id=&#8221;attachment_58&#8243; align=&#8221;aligncenter&#8221; width=&#8221;230&#8243; height=&#8221;230&#8243; caption=&#8221;THUHD&#8221;&#93;&lt;img src=&#8221;http://www.thuhd.com/wp-content/uploads/2009/12/THUHD.png&#8221; alt=&#8221;THUHD&#8221; title=&#8221;THUHD&#8221; width=&#8221;230&#8243; height=&#8221;230&#8243; class=&#8221;size-medium wp-image-58&#8243; /&gt;&#91;/caption&#93;</p></blockquote>
<p>. These codes don’t have “a” tag, so I need to add it manually. The following codes will work perfectly:<br />
<blockquote>&#91;caption id=&#8221;attachment_58&#8243; align=&#8221;aligncenter&#8221; width=&#8221;230&#8243; height=&#8221;230&#8243; caption=&#8221;THUHD&#8221;&#93;<strong>&lt;a href=&#8221;http://www.thuhd.com/wp-content/uploads/2009/12/THUHD.png&#8221; title=&#8221;THUHD&#8221;&gt;</strong>&lt;img src=&#8221;http://www.thuhd.com/wp-content/uploads/2009/12/THUHD.png&#8221; alt=&#8221;THUHD&#8221; title=&#8221;THUHD&#8221; width=&#8221;230&#8243; height=&#8221;230&#8243; class=&#8221;size-medium wp-image-58&#8243; /&gt;<strong>&lt;/a&gt;</strong>&#91;/caption&#93;</p></blockquote>
<p>It displays like this:<br />
<div id="attachment_58" class="wp-caption aligncenter" style="width: 240px"><a href="http://www.thuhd.com/wp-content/uploads/2009/12/THUHD.png" title="THUHD" rel="lightbox[59]"><img src="http://www.thuhd.com/wp-content/uploads/2009/12/THUHD.png" alt="THUHD" title="THUHD"  width="230" height="230" class="size-medium wp-image-58" /></a><p class="wp-caption-text">THUHD</p></div></p>
<p><strong>Update</strong>:<br />
No need to manually add &#8220;a&#8221; tag any more since WordPress 2.9.</p>
<p>Related Link(s):<br />
<a href=” http:>LightBox Plus</a></p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.thuhd.com/wordpress-plug-in-lightbox-plus.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Byethost Unavailable Temporarily</title>
		<link>http://www.thuhd.com/byethost-unavailable-temporarily.html</link>
		<comments>http://www.thuhd.com/byethost-unavailable-temporarily.html#comments</comments>
		<pubDate>Tue, 01 Dec 2009 02:07:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.thuhd.com/byethost-unavailable-temporarily.html</guid>
		<description><![CDATA[Today morning, when I visited my site, I got an error page, saying ERROR The requested URL could not be retrieved The following error was encountered while trying to retrieve the URL: http://www.thuhd.com/ Unable to forward this request at this time. This request could not be forwarded to the origin server or to any parent [...]]]></description>
			<content:encoded><![CDATA[<p>Today morning, when I visited my site, I got an error page, saying<br />
<blockquote><strong>ERROR</strong></p>
<p>The requested URL could not be retrieved</p>
<p>The following error was encountered while trying to retrieve the URL: http://www.thuhd.com/<br />
Unable to forward this request at this time.<br />
This request could not be forwarded to the origin server or to any parent caches. The most likely cause for this error is that the cache administrator does not allow this cache to make direct connections to origin servers, and all configured parent caches are currently unreachable.<br />
Your cache administrator is webmaster.</p>
<p>Generated Tue, 01 Dec 2009 01:56:35 GMT by demil1.byetcluster.com (Lusca/LUSCA_HEAD)</p></blockquote>
<p>So byethost was down. And from this error message, we get these information:<br />
1,Byethost.com uses squid as cache server.<br />
2,Byethost.com uses clusters.<br />
3,Free web hosting is not so reliable.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.thuhd.com/byethost-unavailable-temporarily.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plug-in &#8211; Last.fm Recent Tracks Widget</title>
		<link>http://www.thuhd.com/wordpress-plug-in-last-fm-recent-tracks-widget.html</link>
		<comments>http://www.thuhd.com/wordpress-plug-in-last-fm-recent-tracks-widget.html#comments</comments>
		<pubDate>Fri, 27 Nov 2009 09:35:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.thuhd.com/?p=8</guid>
		<description><![CDATA[A simple widget to show tracks you enjoyed recently. Features: No javascripts. Users can specify the username and how many tracks to display. Requirements: An last.fm api key. Screenshots: Download: Sorry, not available this moment. I&#8217;ll upload it soon.]]></description>
			<content:encoded><![CDATA[<p>A simple widget to show tracks you enjoyed recently.</p>
<p><strong>Features</strong>:<br />
No javascripts.<br />
Users can specify the username and how many tracks to display.</p>
<p><strong>Requirements</strong>:<br />
An last.fm api key.</p>
<p><strong>Screenshots</strong>:<br />
<div id="attachment_50" class="wp-caption aligncenter" style="width: 246px"><a href="http://www.thuhd.com/wp-content/uploads/2009/12/Last.fm-Recent-Tracks.png" title="Last.fm Recent Tracks" rel="lightbox[8]"><img src="http://www.thuhd.com/wp-content/uploads/2009/12/Last.fm-Recent-Tracks.png" alt="Last.fm Recent Tracks" title="Last.fm Recent Tracks" width="236" height="255" class="size-full wp-image-50" /></a><p class="wp-caption-text">Last.fm Recent Tracks</p></div></p>
<p><strong>Download</strong>:<br />
Sorry, not available this moment. I&#8217;ll upload it soon.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.thuhd.com/wordpress-plug-in-last-fm-recent-tracks-widget.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSStats.dat Viewer</title>
		<link>http://www.thuhd.com/csstats-dat-viewer.html</link>
		<comments>http://www.thuhd.com/csstats-dat-viewer.html#comments</comments>
		<pubDate>Fri, 27 Nov 2009 09:34:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.thuhd.com/?p=6</guid>
		<description><![CDATA[A viewer to read all the data contained in csstats.dat generated by HLDS Amxx MOD. Features: It can read all the information contained in csstats.dat. Users can import all the data to txt file formatted by tab spaces. It can run on almost all linux distributions. Requirements: Python V2.5/2.6+ (But NO V3+) Screenshots: Download: Sorry, [...]]]></description>
			<content:encoded><![CDATA[<p>A viewer to read all the data contained in csstats.dat generated by HLDS Amxx MOD.</p>
<p><strong>Features</strong>:<br />
It can read all the information contained in csstats.dat.<br />
Users can import all the data to txt file formatted by tab spaces.<br />
It can run on almost all linux distributions.</p>
<p><strong>Requirements</strong>:<br />
Python V2.5/2.6+ (But NO V3+)</p>
<p><strong>Screenshots</strong>:</p>
<div id="attachment_52" class="wp-caption aligncenter" style="width: 522px"><a title="CSStats Viewer" href="http://www.thuhd.com/wp-content/uploads/2009/12/CSStats-Viewer.png" rel="lightbox[7]"><img class="size-medium wp-image-52" title="CSStats Viewer" src="http://www.thuhd.com/wp-content/uploads/2009/12/CSStats-Viewer.png" alt="CSStats Viewer" width="512" height="367" /></a><p class="wp-caption-text">CSStats Viewer</p></div>
<p><strong>Download</strong>:<br />
Sorry, not available this moment. I&#8217;ll upload it to Google Code soon.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.thuhd.com/csstats-dat-viewer.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plug-in &#8211; Twitter for China Widget</title>
		<link>http://www.thuhd.com/wordpress-plug-in-twitter-for-china-widget.html</link>
		<comments>http://www.thuhd.com/wordpress-plug-in-twitter-for-china-widget.html#comments</comments>
		<pubDate>Fri, 27 Nov 2009 09:34:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.thuhd.com/wordpress-plug-in-twitter-for-china-widget.html</guid>
		<description><![CDATA[Twitter.COM has been being blocked in china for long. This situation brings a lot of troubles to Chinese wordpress users. This plug-in is intended to help them display their tweets in wordpress. Since it gets tweets from twitter.com directly through the web server, instead of local javascripts, it&#8217;s possible to bypass the &#8220;barrier&#8221;. Features: No [...]]]></description>
			<content:encoded><![CDATA[<p>Twitter.COM has been being blocked in china for long. This situation brings a lot of troubles to Chinese wordpress users. This plug-in is intended to help them display their tweets in wordpress. Since it gets tweets from twitter.com directly through the web server, instead of local javascripts, it&#8217;s possible to bypass the &#8220;barrier&#8221;.</p>
<p><strong>Features</strong>:<br />
No javascripts.<br />
Users can specify the username and how many tweets to display.</p>
<p><strong>Requirements</strong>:<br />
The web server is outside China.</p>
<p><strong>Screenshots</strong>:<br />
<div id="attachment_54" class="wp-caption aligncenter" style="width: 247px"><a href="http://www.thuhd.com/wp-content/uploads/2009/12/Twitter-for-China.png" title="Twitter for China" rel="lightbox[6]"><img src="http://www.thuhd.com/wp-content/uploads/2009/12/Twitter-for-China.png" alt="Twitter for China" title="Twitter for China" width="237" height="75" class="size-full wp-image-54" /></a><p class="wp-caption-text">Twitter for China</p></div></p>
<p><strong>Download</strong>:<br />
Sorry, not available this moment. I&#8217;ll upload it soon.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.thuhd.com/wordpress-plug-in-twitter-for-china-widget.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.thuhd.com/hello-world-2.html</link>
		<comments>http://www.thuhd.com/hello-world-2.html#comments</comments>
		<pubDate>Fri, 27 Nov 2009 05:35:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.thuhd.com/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.thuhd.com/hello-world-2.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
