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

<channel>
	<title>iVee life log</title>
	<atom:link href="http://ivee.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ivee.wordpress.com</link>
	<description>Just another WordPress.com weblog. Yes! indeed.</description>
	<lastBuildDate>Tue, 19 Jun 2007 09:55:07 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>th</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ivee.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/bd64c698417a4a21045b838a74ce62b0?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>iVee life log</title>
		<link>http://ivee.wordpress.com</link>
	</image>
			<item>
		<title>Object Oriented Programming using JavaScript</title>
		<link>http://ivee.wordpress.com/2007/03/20/object-oriented-programming-using-javascript-2/</link>
		<comments>http://ivee.wordpress.com/2007/03/20/object-oriented-programming-using-javascript-2/#comments</comments>
		<pubDate>Tue, 20 Mar 2007 02:49:29 +0000</pubDate>
		<dc:creator>ทวี</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://ivee.wordpress.com/2007/03/20/object-oriented-programming-using-javascript-2/</guid>
		<description><![CDATA[Subclasses and Superclasses :

&#60;script language="javascript" contenttype="text/javascript"&#62;
&#60;!--
function superTest() {
return &#8220;superTest&#8221;
}
function subTest() {
return &#8220;subTest&#8221;
}
function superClass() {
this.supertest = superTest; //attach method superTest
}
function subClass() {
this.inheritFrom = superClass;
this.inheritFrom();
this.subtest = subTest; //attach method subtest
}
newClass = new subClass();
document.write(newClass.subtest()); //yields &#8220;subTest&#8221;
document.write(&#8220;&#60;br/&#62;&#8221;);
document.write(newClass.supertest()); //yields &#8220;superTest&#8221;
//&#8211;&#62;
&#60;/script&#62;

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivee.wordpress.com&blog=805891&post=10&subd=ivee&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Subclasses and Superclasses :</strong><br />
<code><br />
&lt;script language="javascript" contenttype="text/javascript"&gt;<br />
&lt;!--</code></p>
<p>function superTest() {<br />
return &#8220;superTest&#8221;<br />
}</p>
<p>function subTest() {<br />
return &#8220;subTest&#8221;<br />
}</p>
<p>function superClass() {<br />
this.supertest = superTest; //attach method superTest<br />
}</p>
<p>function subClass() {<br />
this.inheritFrom = superClass;<br />
this.inheritFrom();<br />
this.subtest = subTest; //attach method subtest<br />
}</p>
<p>newClass = new subClass();<br />
document.write(newClass.subtest()); //yields &#8220;subTest&#8221;<br />
document.write(&#8220;&lt;br/&gt;&#8221;);<br />
document.write(newClass.supertest()); //yields &#8220;superTest&#8221;<br />
//&#8211;&gt;<br />
&lt;/script&gt;<br />
</code></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ivee.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ivee.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivee.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivee.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivee.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivee.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivee.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivee.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivee.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivee.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivee.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivee.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivee.wordpress.com&blog=805891&post=10&subd=ivee&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ivee.wordpress.com/2007/03/20/object-oriented-programming-using-javascript-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36c0a8f017926cab4a68b0a80b30b015?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">taveek</media:title>
		</media:content>
	</item>
		<item>
		<title>Top 10 JavaScript functions of all time</title>
		<link>http://ivee.wordpress.com/2007/03/19/top-10-javascript-functions-of-all-time/</link>
		<comments>http://ivee.wordpress.com/2007/03/19/top-10-javascript-functions-of-all-time/#comments</comments>
		<pubDate>Mon, 19 Mar 2007 16:23:00 +0000</pubDate>
		<dc:creator>ทวี</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ivee.wordpress.com/2007/03/19/top-10-javascript-functions-of-all-time/</guid>
		<description><![CDATA[http://www.dustindiaz.com/top-ten-javascript/
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivee.wordpress.com&blog=805891&post=9&subd=ivee&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.dustindiaz.com/top-ten-javascript/">http://www.dustindiaz.com/top-ten-javascript/</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ivee.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ivee.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivee.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivee.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivee.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivee.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivee.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivee.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivee.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivee.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivee.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivee.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivee.wordpress.com&blog=805891&post=9&subd=ivee&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ivee.wordpress.com/2007/03/19/top-10-javascript-functions-of-all-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36c0a8f017926cab4a68b0a80b30b015?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">taveek</media:title>
		</media:content>
	</item>
		<item>
		<title>Object Oriented Programming Using JavaScript</title>
		<link>http://ivee.wordpress.com/2007/03/19/object-oriented-programming-using-javascript/</link>
		<comments>http://ivee.wordpress.com/2007/03/19/object-oriented-programming-using-javascript/#comments</comments>
		<pubDate>Mon, 19 Mar 2007 16:06:32 +0000</pubDate>
		<dc:creator>ทวี</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ivee.wordpress.com/2007/03/19/object-oriented-programming-using-javascript/</guid>
		<description><![CDATA[Object Creation :
&#60;script language=&#8221;javascript&#8221; contenttype=&#8221;text/javascript&#8221;&#62;
&#60;!&#8211;
// object creation using &#8216;new Object()&#8217;
person = new Object()
person.name = &#8220;Tim Scarfe&#8221;
person.height = &#8220;6Ft&#8221;
person.run = function() {
this.state = &#8220;running&#8221;
this.speed = &#8220;4ms^-1&#8243;
}
// Object creation using Literals
timObject = {
property1 : &#8220;Hello&#8221;,
property2 : &#8220;HmmMMm&#8221;,
property3 : ["mmm", 2, 3, 6, "kkk"],
method1 : function() {
document.write(&#8220;Method had been called &#8221; + this.property1)
}
}
// Object constructor and prototyping
function cat(name) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivee.wordpress.com&blog=805891&post=8&subd=ivee&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Object Creation :</strong></p>
<p>&lt;script language=&#8221;javascript&#8221; contenttype=&#8221;text/javascript&#8221;&gt;<br />
&lt;!&#8211;<br />
// object creation using &#8216;new Object()&#8217;<br />
person = new Object()<br />
person.name = &#8220;Tim Scarfe&#8221;<br />
person.height = &#8220;6Ft&#8221;<br />
person.run = function() {<br />
this.state = &#8220;running&#8221;<br />
this.speed = &#8220;4ms^-1&#8243;<br />
}</p>
<p>// Object creation using Literals<br />
timObject = {<br />
property1 : &#8220;Hello&#8221;,<br />
property2 : &#8220;HmmMMm&#8221;,<br />
property3 : ["mmm", 2, 3, 6, "kkk"],<br />
method1 : function() {<br />
document.write(&#8220;Method had been called &#8221; + this.property1)<br />
}<br />
}</p>
<p>// Object constructor and prototyping<br />
function cat(name) {<br />
this.name = name;<br />
this.talk = function() {<br />
document.write(this.name + &#8221; say meeow!&#8221;)<br />
}<br />
}</p>
<p>// Adding methods to our object using prototype<br />
cat.prototype.changeName = function(newName) {<br />
this.name = newName;<br />
}<br />
//&#8211;&gt;<br />
&lt;/script&gt;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ivee.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ivee.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivee.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivee.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivee.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivee.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivee.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivee.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivee.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivee.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivee.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivee.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivee.wordpress.com&blog=805891&post=8&subd=ivee&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ivee.wordpress.com/2007/03/19/object-oriented-programming-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36c0a8f017926cab4a68b0a80b30b015?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">taveek</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS syntax short note</title>
		<link>http://ivee.wordpress.com/2007/03/12/css-syntax-short-note/</link>
		<comments>http://ivee.wordpress.com/2007/03/12/css-syntax-short-note/#comments</comments>
		<pubDate>Mon, 12 Mar 2007 09:23:32 +0000</pubDate>
		<dc:creator>ทวี</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ivee.wordpress.com/2007/03/12/css-syntax-short-note/</guid>
		<description><![CDATA[
The stylesheet file references :
&#60;link ref=&#8217;stylesheet&#8217; type=&#8217;text/css&#8217; href=&#8217;path/to/style.css&#8217; /&#62;
The common selector :
tag { property: value }
The group selector : 
tag0,[tag1],[tag2],&#8230; { property: value }
The class selector : 
[tag].class_name { property: value }
The tag with particular attributes selector :
tag[attr='value'] { property : value }
The id selector : 
[tag]#tag_id { property : value }
The CSS comment :
/* [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivee.wordpress.com&blog=805891&post=7&subd=ivee&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul>
<li><strong>The stylesheet file references :</strong><br />
&lt;link ref=&#8217;stylesheet&#8217; type=&#8217;text/css&#8217; href=&#8217;path/to/style.css&#8217; /&gt;</li>
<li><strong>The common selector :</strong><br />
tag { property: value }</li>
<li><strong>The group selector : </strong><br />
tag0,[tag1],[tag2],&#8230; { property: value }</li>
<li><strong>The class selector : </strong><br />
[tag].class_name { property: value }</li>
<li><strong>The tag with particular attributes selector :<br />
</strong>tag[attr='value'] { property : value }</li>
<li><strong>The id selector : </strong><br />
[tag]#tag_id { property : value }</li>
<li><strong>The CSS comment :</strong><br />
/* &#8230;&#8230; */</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ivee.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ivee.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivee.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivee.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivee.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivee.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivee.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivee.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivee.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivee.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivee.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivee.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivee.wordpress.com&blog=805891&post=7&subd=ivee&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ivee.wordpress.com/2007/03/12/css-syntax-short-note/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36c0a8f017926cab4a68b0a80b30b015?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">taveek</media:title>
		</media:content>
	</item>
		<item>
		<title>พจนานุกวนโอ้ย</title>
		<link>http://ivee.wordpress.com/2007/03/06/%e0%b8%9e%e0%b8%88%e0%b8%99%e0%b8%b2%e0%b8%99%e0%b8%b8%e0%b8%81%e0%b8%a7%e0%b8%99%e0%b9%82%e0%b8%ad%e0%b9%89%e0%b8%a2/</link>
		<comments>http://ivee.wordpress.com/2007/03/06/%e0%b8%9e%e0%b8%88%e0%b8%99%e0%b8%b2%e0%b8%99%e0%b8%b8%e0%b8%81%e0%b8%a7%e0%b8%99%e0%b9%82%e0%b8%ad%e0%b9%89%e0%b8%a2/#comments</comments>
		<pubDate>Tue, 06 Mar 2007 06:55:29 +0000</pubDate>
		<dc:creator>ทวี</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ivee.wordpress.com/2007/03/06/%e0%b8%9e%e0%b8%88%e0%b8%99%e0%b8%b2%e0%b8%99%e0%b8%b8%e0%b8%81%e0%b8%a7%e0%b8%99%e0%b9%82%e0%b8%ad%e0%b9%89%e0%b8%a2/</guid>
		<description><![CDATA[
บุหรี่ : ใบยาสูบที่มีกระดาษพันอยู่ โดยมีไฟติดอยู่อีกข้างหนึ่ง และมีคนโง่อยู่อีกข้างหนึ่ง
 หย่า : Future tense ของคำว่า &#8221; แต่งงาน&#8221;
เลกเชอร์ : ศิลปะในการถ่ายทอดข้อมูลจากกระดาษโน้ตของอาจารย์ ไปยัง กระดาษโน้ตของนักศึกษา โดยที่ไม่ผ่านหัวสมองของทั้ง 2 ฝ่าย
ประชุม : ความงุนงงของคนคนหนึ่งที่ มีมากขึ้นเมื่อเหตุการณ์จบลง
ยินยอม : ศิลปะในการแบ่ง เค้กให้ทุกๆคน โดยทำให้แต่ล่ะคนคิดว่าตนเองได้เค้กชิ้นใหญ่สุด
น้ำตา : พลังน้ำที่ผู้หญิง สามารถสยบความแข็งแกร่งของพลังงานแห่งความเป็นชายได้
พจนานุกรม : ที่เดียวที่คำว่า Success มาก่อนคำ ว่า Work
ห้องประชุม : สถานที่ซึ่งทุกๆ คนจะส่งเสียง โดยไม่มีใครฟังและไม่มีใครยอมรับอะไร
เจ้านาย : ใครบาง คนที่ชอบมาทำงานเช้าในวันที่คุณเข้างานสาย และก็มาซะสายในวันที่คุณมาเช้า
อาชญากร : ก็เหมือน คนเราๆ ท่านๆ นี่แหละ เพียงแต่ถูกจับได้
นักการทูต : คนที่บอกให้คุณไปลงนรกได้ด้วยวิธีพูด ที่ทำให้คุณอยากไปแทบจะรอไม่ ไหว
หมอ : คนที่ช่วยชีวิตคุณด้วยยาและฆ่าคุณทีหลังด้วย [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivee.wordpress.com&blog=805891&post=6&subd=ivee&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul>
<li><strong>บุหรี่ :</strong> ใบยาสูบที่มีกระดาษพันอยู่ โดยมีไฟติดอยู่อีกข้างหนึ่ง และมีคนโง่อยู่อีกข้างหนึ่ง</li>
<li><strong> หย่า :</strong> Future tense ของคำว่า &#8221; แต่งงาน&#8221;</li>
<li><strong>เลกเชอร์ :</strong> ศิลปะในการถ่ายทอดข้อมูลจากกระดาษโน้ตของอาจารย์ ไปยัง กระดาษโน้ตของนักศึกษา โดยที่ไม่ผ่านหัวสมองของทั้ง 2 ฝ่าย</li>
<li><strong>ประชุม</strong> : ความงุนงงของคนคนหนึ่งที่ มีมากขึ้นเมื่อเหตุการณ์จบลง</li>
<li><strong>ยินยอม :</strong> ศิลปะในการแบ่ง เค้กให้ทุกๆคน โดยทำให้แต่ล่ะคนคิดว่าตนเองได้เค้กชิ้นใหญ่สุด</li>
<li><strong>น้ำตา : </strong>พลังน้ำที่ผู้หญิง สามารถสยบความแข็งแกร่งของพลังงานแห่งความเป็นชายได้</li>
<li><strong>พจนานุกรม : </strong>ที่เดียวที่คำว่า Success มาก่อนคำ ว่า Work</li>
<li><strong>ห้องประชุม :</strong> สถานที่ซึ่งทุกๆ คนจะส่งเสียง โดยไม่มีใครฟังและไม่มีใครยอมรับอะไร</li>
<li><strong>เจ้านาย :</strong> ใครบาง คนที่ชอบมาทำงานเช้าในวันที่คุณเข้างานสาย และก็มาซะสายในวันที่คุณมาเช้า</li>
<li><strong>อาชญากร :</strong> ก็เหมือน คนเราๆ ท่านๆ นี่แหละ เพียงแต่ถูกจับได้</li>
<li><strong>นักการทูต :</strong> คนที่บอกให้คุณไปลงนรกได้ด้วยวิธีพูด ที่ทำให้คุณอยากไปแทบจะรอไม่ ไหว</li>
<li><strong>หมอ : </strong>คนที่ช่วยชีวิตคุณด้วยยาและฆ่าคุณทีหลังด้วย บิลค่ารักษา</li>
<li><strong>ทนายความ :</strong> คนที่ยื่นมือเข้าช่วยคนทำผิด กฎหมาย อย่างถูกต้องตามกฎหมาย</li>
<li><strong>นักโฆษณา :</strong> คนที่รู้จัก เลือกพูดแต่ความจริงเกี่ยวกับสินค้า หรือบริการเฉพาะครึ่งที่ดี</li>
<li><strong>นักร้องวัยรุ่น :</strong> เด็กหนุ่มสาวที่มีหน้าตาเป็นอาวุธ และเครื่องแต่ง เสียงกับ sound engineerเป็นเพื่อนตาย</li>
<li><strong>หมอดูลายมือ : </strong>คนแปลกหน้าที่สามารถจับมือแฟนคุณได้ต่อหน้าต่อตา โดยไม่โดน&#8230;</li>
<li><strong>ข่าวลือ :</strong> สิ่งที่มีประสิทธิภาพไวกว่าแสง</li>
<li><strong>ประสบการณ์ :</strong> ชื่อที่มนุษย์ตั้งให้กับความผิดพลาดที่ทำในอดีต</li>
<li><strong>หาว :</strong> จังหวะเดียวในชีวิตที่ผู้ชายที่แต่งงานแล้ว บางคน มีโอกาสได้อ้าปาก</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ivee.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ivee.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivee.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivee.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivee.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivee.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivee.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivee.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivee.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivee.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivee.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivee.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivee.wordpress.com&blog=805891&post=6&subd=ivee&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ivee.wordpress.com/2007/03/06/%e0%b8%9e%e0%b8%88%e0%b8%99%e0%b8%b2%e0%b8%99%e0%b8%b8%e0%b8%81%e0%b8%a7%e0%b8%99%e0%b9%82%e0%b8%ad%e0%b9%89%e0%b8%a2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36c0a8f017926cab4a68b0a80b30b015?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">taveek</media:title>
		</media:content>
	</item>
		<item>
		<title>ทดสอบ ทดสอบ</title>
		<link>http://ivee.wordpress.com/2007/02/22/%e0%b8%97%e0%b8%94%e0%b8%aa%e0%b8%ad%e0%b8%9a-%e0%b8%97%e0%b8%94%e0%b8%aa%e0%b8%ad%e0%b8%9a/</link>
		<comments>http://ivee.wordpress.com/2007/02/22/%e0%b8%97%e0%b8%94%e0%b8%aa%e0%b8%ad%e0%b8%9a-%e0%b8%97%e0%b8%94%e0%b8%aa%e0%b8%ad%e0%b8%9a/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 09:59:50 +0000</pubDate>
		<dc:creator>ทวี</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ivee.wordpress.com/2007/02/22/%e0%b8%97%e0%b8%94%e0%b8%aa%e0%b8%ad%e0%b8%9a-%e0%b8%97%e0%b8%94%e0%b8%aa%e0%b8%ad%e0%b8%9a/</guid>
		<description><![CDATA[ลองดู
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivee.wordpress.com&blog=805891&post=3&subd=ivee&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>ลองดู</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ivee.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ivee.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivee.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivee.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivee.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivee.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivee.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivee.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivee.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivee.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivee.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivee.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivee.wordpress.com&blog=805891&post=3&subd=ivee&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ivee.wordpress.com/2007/02/22/%e0%b8%97%e0%b8%94%e0%b8%aa%e0%b8%ad%e0%b8%9a-%e0%b8%97%e0%b8%94%e0%b8%aa%e0%b8%ad%e0%b8%9a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36c0a8f017926cab4a68b0a80b30b015?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">taveek</media:title>
		</media:content>
	</item>
	</channel>
</rss>