<?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>klainfo &#187; Web</title>
	<atom:link href="http://www.klainfo.com/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.klainfo.com</link>
	<description>Web2.0, HPC, Unix, and my mine.</description>
	<lastBuildDate>Thu, 09 Sep 2010 16:21:17 +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>Redirect To SSL Using Apache’s .htaccess</title>
		<link>http://www.klainfo.com/2010/03/30/redirect-to-ssl-using-apache%e2%80%99s-htaccess/</link>
		<comments>http://www.klainfo.com/2010/03/30/redirect-to-ssl-using-apache%e2%80%99s-htaccess/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 10:37:26 +0000</pubDate>
		<dc:creator>klainfo</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[WegetHosting]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://www.klainfo.com/?p=687</guid>
		<description><![CDATA[RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.klainfo.com%2F2010%2F03%2F30%2Fredirect-to-ssl-using-apache%25e2%2580%2599s-htaccess%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.klainfo.com%2F2010%2F03%2F30%2Fredirect-to-ssl-using-apache%25e2%2580%2599s-htaccess%2F&amp;source=klainfo&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><code>RewriteEngine On<br />
RewriteCond %{HTTPS} off<br />
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}</code></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.klainfo.com/2010/03/30/redirect-to-ssl-using-apache%e2%80%99s-htaccess/" target="_blank"><img src="http://www.klainfo.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.klainfo.com/2010/03/30/redirect-to-ssl-using-apache%e2%80%99s-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeIgniter Routes Trick &#8211; Removing Controller Names from the URI to Keep URLs Short.</title>
		<link>http://www.klainfo.com/2010/02/03/codeigniter-routes-trick-removing-controller-names-from-the-uri-to-keep-urls-short/</link>
		<comments>http://www.klainfo.com/2010/02/03/codeigniter-routes-trick-removing-controller-names-from-the-uri-to-keep-urls-short/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 11:13:21 +0000</pubDate>
		<dc:creator>klainfo</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[codeIgniter]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[route]]></category>

		<guid isPermaLink="false">http://blog.klainfo.com/?p=640</guid>
		<description><![CDATA[ช่วงนี้ บริการจำพวก URL Shortener Service กำลังมาแรง เช่น bit.ly goog.gl  youtu.be fb.me เป็นต้น ผมก็อยากจะลองทำเวบพวกนี้ บน Codeigniter เหมือนกัน สำหรับคนที่เคยใช้ codeigniter จะรู้ว่าระบบ URI ของ CI จะต้องมีรูปแบบดังนี้ http://localhost/controller/function/parameters นั่นหมายถึง มันยาวมากเลย แต่ผมต้องการ http://localhost/parameters เลยอ่ะคับ ไปลอง Google เลยมาโน๊ตเก็บไว้หน่อย เด๋วพอจะใช้แล้วหาไม่เจออีก เปิดไฟล์ application/config/routes.php เติมคำสั่งนี้ลงไป $route['^(?!video&#124;url).*'] = &#8216;controller/function/$0&#8242;; คำอธิบาย หมายถึงให้ Route URI ที่ไม่ได้ขึ้นต้นด้วยคำว่า video หรือ url ไปที่ๆ ต้องการ ที่มา http://bizwidgets.biz/web-design/codeigniter-routes-trick-removing-controller-names-from-the-uri-to-keep-urls-short/]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.klainfo.com%2F2010%2F02%2F03%2Fcodeigniter-routes-trick-removing-controller-names-from-the-uri-to-keep-urls-short%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.klainfo.com%2F2010%2F02%2F03%2Fcodeigniter-routes-trick-removing-controller-names-from-the-uri-to-keep-urls-short%2F&amp;source=klainfo&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>ช่วงนี้ บริการจำพวก URL Shortener Service กำลังมาแรง เช่น bit.ly goog.gl  youtu.be fb.me เป็นต้น ผมก็อยากจะลองทำเวบพวกนี้ บน Codeigniter เหมือนกัน สำหรับคนที่เคยใช้ codeigniter จะรู้ว่าระบบ URI ของ CI จะต้องมีรูปแบบดังนี้ http://localhost/controller/function/parameters นั่นหมายถึง มันยาวมากเลย แต่ผมต้องการ http://localhost/parameters เลยอ่ะคับ ไปลอง Google เลยมาโน๊ตเก็บไว้หน่อย เด๋วพอจะใช้แล้วหาไม่เจออีก</p>
<p>เปิดไฟล์ application/config/routes.php</p>
<p>เติมคำสั่งนี้ลงไป</p>
<p>$route['^(?!video|url).*'] = &#8216;controller/function/$0&#8242;;</p>
<p><strong>คำอธิบาย</strong> หมายถึงให้ Route URI ที่ไม่ได้ขึ้นต้นด้วยคำว่า video หรือ url ไปที่ๆ ต้องการ</p>
<p>ที่มา <a href="http://bizwidgets.biz/web-design/codeigniter-routes-trick-removing-controller-names-from-the-uri-to-keep-urls-short/">http://bizwidgets.biz/web-design/codeigniter-routes-trick-removing-controller-names-from-the-uri-to-keep-urls-short/</a></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.klainfo.com/2010/02/03/codeigniter-routes-trick-removing-controller-names-from-the-uri-to-keep-urls-short/" target="_blank"><img src="http://www.klainfo.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.klainfo.com/2010/02/03/codeigniter-routes-trick-removing-controller-names-from-the-uri-to-keep-urls-short/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Apache] Create subdomain on localhost</title>
		<link>http://www.klainfo.com/2010/01/31/apache-create-subdomain-on-localhost/</link>
		<comments>http://www.klainfo.com/2010/01/31/apache-create-subdomain-on-localhost/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 18:15:53 +0000</pubDate>
		<dc:creator>klainfo</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[subdomain]]></category>

		<guid isPermaLink="false">http://blog.klainfo.com/?p=602</guid>
		<description><![CDATA[ปกติแล้ว คนที่ทำเวบ ก็สร้าง subdomain ผ่าน direct admin ง่ายมาก แต่ถ้าอยากลองบน localhost จะทำยังไงดีหละ นั่งหาๆเหมือนกัน เลยจดไว้ดีกว่า กันลืม ลองดูวิธีนี้ละกันนะ ง่ายดี สำหรับตัวอย่างนี้ สมมติว่าสร้าง subdomain ชื่อว่า sub โดยมีไดเรคทอรี่อยู่ที่ /var/www/sub เริ่มจาก $ sudo vi /etc/apache2/sites-enabled/000-default เติมข้อความนี้ลงไป ServerAdmin admin@localhost DocumentRoot /var/www/sub ServerName sub.localhost ตามด้วยคำสั่ง $ sudo vi /etc/hosts เติมข้อความนี้ลงไป 127.0.0.1 localhost 127.0.0.1 sub.localhost ลองทดสอบดู ถ้าไม่ได้ให้ restart apache service ก่อนครับ $ sudo /etc/init.d/apache2 restart]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.klainfo.com%2F2010%2F01%2F31%2Fapache-create-subdomain-on-localhost%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.klainfo.com%2F2010%2F01%2F31%2Fapache-create-subdomain-on-localhost%2F&amp;source=klainfo&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>ปกติแล้ว คนที่ทำเวบ ก็สร้าง subdomain ผ่าน direct admin ง่ายมาก แต่ถ้าอยากลองบน localhost จะทำยังไงดีหละ นั่งหาๆเหมือนกัน เลยจดไว้ดีกว่า กันลืม ลองดูวิธีนี้ละกันนะ ง่ายดี<br />
สำหรับตัวอย่างนี้ สมมติว่าสร้าง subdomain ชื่อว่า sub โดยมีไดเรคทอรี่อยู่ที่ /var/www/sub<br />
เริ่มจาก</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">vi</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>sites-enabled<span style="color: #000000; font-weight: bold;">/</span>000-default</pre></div></div>

<p>เติมข้อความนี้ลงไป</p>
<pre>
ServerAdmin admin@localhost
DocumentRoot /var/www/sub
ServerName sub.localhost
</pre>
<p>ตามด้วยคำสั่ง</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">vi</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>hosts</pre></div></div>

<p>เติมข้อความนี้ลงไป</p>
<pre>
127.0.0.1    localhost
127.0.0.1    sub.localhost
</pre>
<p>ลองทดสอบดู ถ้าไม่ได้ให้ restart apache service ก่อนครับ</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>apache2 restart</pre></div></div>

<p>เสร็จแล้วๆๆๆ อิอิ</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.klainfo.com/2010/01/31/apache-create-subdomain-on-localhost/" target="_blank"><img src="http://www.klainfo.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.klainfo.com/2010/01/31/apache-create-subdomain-on-localhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[PHP] Delete Apache owned files and folders</title>
		<link>http://www.klainfo.com/2010/01/24/php-delete-apache-owned-files-and-folders/</link>
		<comments>http://www.klainfo.com/2010/01/24/php-delete-apache-owned-files-and-folders/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 05:22:55 +0000</pubDate>
		<dc:creator>klainfo</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[permission]]></category>

		<guid isPermaLink="false">http://blog.klainfo.com/?p=586</guid>
		<description><![CDATA[เนื่องจากผมใช้ Doku wiki แล้ว Apache มันสร้าง cache ขึ้นมาเอง แล้วผมอยากจะลบมัน ปรากฏว่าผมลบไฟล์ไม่ได้ เนื่องจากผมไม่ใช่ Root แล้วเป็นไฟล์ที่ Apache สร้างขึ้นด้วย นั่งขุดคุ้ยหา script php มาลบให้มันละกัน ทำตามนี้โลด 1 2 3 4 5 6 7 8 9 10 11 12 13 14 &#60;?php function SureRemoveDir&#40;$dir&#41; &#123; if&#40;!$dh = @opendir&#40;$dir&#41;&#41; return; while &#40;&#40;$obj = readdir&#40;$dh&#41;&#41;&#41; &#123; if&#40;$obj==‘.’ &#124;&#124; $obj==‘..’&#41; continue; if &#40;!@unlink&#40;$dir.‘/’.$obj&#41;&#41; &#123; SureRemoveDir&#40;$dir.‘/’.$obj&#41;;]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.klainfo.com%2F2010%2F01%2F24%2Fphp-delete-apache-owned-files-and-folders%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.klainfo.com%2F2010%2F01%2F24%2Fphp-delete-apache-owned-files-and-folders%2F&amp;source=klainfo&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>เนื่องจากผมใช้ Doku wiki แล้ว Apache มันสร้าง cache ขึ้นมาเอง แล้วผมอยากจะลบมัน ปรากฏว่าผมลบไฟล์ไม่ได้ เนื่องจากผมไม่ใช่ Root แล้วเป็นไฟล์ที่ Apache สร้างขึ้นด้วย</p>
<p>นั่งขุดคุ้ยหา script php มาลบให้มันละกัน ทำตามนี้โลด</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">function</span> SureRemoveDir<span style="color: #009900;">&#40;</span><span style="color: #000088;">$dir</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$dh</span> <span style="color: #339933;">=</span> <span style="color: #339933;">@</span><span style="color: #990000;">opendir</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dir</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">return</span><span style="color: #339933;">;</span>
      <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span> <span style="color: #339933;">=</span> <span style="color: #990000;">readdir</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dh</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #339933;">==</span>‘<span style="color: #339933;">.</span>’ <span style="color: #339933;">||</span> <span style="color: #000088;">$obj</span><span style="color: #339933;">==</span>‘<span style="color: #339933;">..</span>’<span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">continue</span><span style="color: #339933;">;</span>
            <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!@</span><span style="color: #990000;">unlink</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dir</span><span style="color: #339933;">.</span>‘<span style="color: #339933;">/</span>’<span style="color: #339933;">.</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
SureRemoveDir<span style="color: #009900;">&#40;</span><span style="color: #000088;">$dir</span><span style="color: #339933;">.</span>‘<span style="color: #339933;">/</span>’<span style="color: #339933;">.</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
                   <span style="color: #000088;">$file_deleted</span><span style="color: #339933;">++;</span>
            <span style="color: #009900;">&#125;</span>
      <span style="color: #009900;">&#125;</span>
      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">@</span><span style="color: #990000;">rmdir</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dir</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #000088;">$dir_deleted</span><span style="color: #339933;">++;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>วิธีเรียกใช้ก็ง่ายๆ ตามนี้เลยครับ โดยใส่ชื่อ Directory ลงไปแทนคำว่า Test</p>
<p>เสร็จแล้ว เย่ๆ ^^</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.klainfo.com/2010/01/24/php-delete-apache-owned-files-and-folders/" target="_blank"><img src="http://www.klainfo.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.klainfo.com/2010/01/24/php-delete-apache-owned-files-and-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Happy New Year 2010] Twitter Countdown</title>
		<link>http://www.klainfo.com/2010/01/01/happy-new-year-2010-twitter-countdown/</link>
		<comments>http://www.klainfo.com/2010/01/01/happy-new-year-2010-twitter-countdown/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 17:37:43 +0000</pubDate>
		<dc:creator>klainfo</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[klainfo]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[countdown]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[Happy New Year]]></category>

		<guid isPermaLink="false">http://blog.klainfo.com/?p=543</guid>
		<description><![CDATA[มาดู Twitter Trend สำหรับปีใหม่ปีนี้ดีกว่า คนทั่วโลก Tweet หนักมาก #fail]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.klainfo.com%2F2010%2F01%2F01%2Fhappy-new-year-2010-twitter-countdown%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.klainfo.com%2F2010%2F01%2F01%2Fhappy-new-year-2010-twitter-countdown%2F&amp;source=klainfo&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h2>มาดู Twitter Trend สำหรับปีใหม่ปีนี้ดีกว่า</h2>
<p style="text-align: center;"><a href="http://blog.klainfo.com/wp-content/uploads/2010/01/Twitter_1262280827308.png"><img class="aligncenter size-full wp-image-546" style="border: 1px solid black;" title="Twitter_1262280827308" src="http://blog.klainfo.com/wp-content/uploads/2010/01/Twitter_1262280827308.png" alt="" width="553" height="329" /></a></p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://blog.klainfo.com/wp-content/uploads/2010/01/กล้าnFo-klainfo-on-Twitter_1262280508410.png"><img class="aligncenter size-large wp-image-544" style="border: 1px solid black;" title="กล้า[!nFo] (klainfo) on Twitter_1262280508410" src="http://blog.klainfo.com/wp-content/uploads/2010/01/กล้าnFo-klainfo-on-Twitter_1262280508410-684x1024.png" alt="" width="547" height="819" /></a></p>
<h3>คนทั่วโลก Tweet หนักมาก #fail</h3>
<p style="text-align: center;"><a href="http://blog.klainfo.com/wp-content/uploads/2010/01/twitfail.jpg"><img class="aligncenter size-full wp-image-545" title="twitfail" src="http://blog.klainfo.com/wp-content/uploads/2010/01/twitfail.jpg" alt="" width="428" height="309" /></a></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.klainfo.com/2010/01/01/happy-new-year-2010-twitter-countdown/" target="_blank"><img src="http://www.klainfo.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.klainfo.com/2010/01/01/happy-new-year-2010-twitter-countdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
