<?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>ดูโปร บล๊อก</title>
	<atom:link href="http://blog.doopro.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.doopro.com</link>
	<description>บล๊อกเล็กๆ บันทึกเรื่องราวของคนทำเว็บดูโปร</description>
	<lastBuildDate>Fri, 12 Nov 2010 08:28:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>XSS (Cross Site Scripting)</title>
		<link>http://blog.doopro.com/2010/11/xss-cross-site-scripting/</link>
		<comments>http://blog.doopro.com/2010/11/xss-cross-site-scripting/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 08:28:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[เกี่ยวกับนักพัฒนาเว็บ]]></category>
		<category><![CDATA[Cross Site Scripting]]></category>
		<category><![CDATA[XSS]]></category>

		<guid isPermaLink="false">http://blog.doopro.com/?p=140</guid>
		<description><![CDATA[XSS (Cross Site Scripting) Cheat Sheet Esp: for filter evasion ขอเก็บไว้ก่อน ถ้าว่างจะมาอ่านทำความเข้าใจ http://ha.ckers.org/xss.html]]></description>
			<content:encoded><![CDATA[<p>XSS (Cross Site Scripting) Cheat Sheet Esp: for filter evasion</p>
<p>ขอเก็บไว้ก่อน ถ้าว่างจะมาอ่านทำความเข้าใจ</p>
<p><a href="http://ha.ckers.org/xss.html">http://ha.ckers.org/xss.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.doopro.com/2010/11/xss-cross-site-scripting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>query สำหรับดึง source code ใน oracle</title>
		<link>http://blog.doopro.com/2010/11/query-%e0%b8%aa%e0%b8%b3%e0%b8%ab%e0%b8%a3%e0%b8%b1%e0%b8%9a%e0%b8%94%e0%b8%b6%e0%b8%87-source-code-%e0%b9%83%e0%b8%99-oracle/</link>
		<comments>http://blog.doopro.com/2010/11/query-%e0%b8%aa%e0%b8%b3%e0%b8%ab%e0%b8%a3%e0%b8%b1%e0%b8%9a%e0%b8%94%e0%b8%b6%e0%b8%87-source-code-%e0%b9%83%e0%b8%99-oracle/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 04:12:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[function source code]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[procedure source code]]></category>
		<category><![CDATA[view source code]]></category>

		<guid isPermaLink="false">http://blog.doopro.com/?p=135</guid>
		<description><![CDATA[เนื่องจากบทความที่แล้ว เป็น query สำหรับดู DEPENDENCY ของ object สำหรับ query ที่ใช้สำหรับดึง code ในส่วนของ source code ที่เป็น view คือ SELECT text FROM all_views WHERE view_name= ? สำหรับ ที่เอาไว้ดึง function + procedure คือ SELECT text FROM all_source WHERE name= ? and type = &#8230; <a href="http://blog.doopro.com/2010/11/query-%e0%b8%aa%e0%b8%b3%e0%b8%ab%e0%b8%a3%e0%b8%b1%e0%b8%9a%e0%b8%94%e0%b8%b6%e0%b8%87-source-code-%e0%b9%83%e0%b8%99-oracle/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>เนื่องจากบทความที่แล้ว เป็น query สำหรับดู DEPENDENCY ของ object</p>
<p>สำหรับ query ที่ใช้สำหรับดึง code ในส่วนของ source code ที่เป็น view คือ</p>
<pre class="brush:sql">SELECT text
FROM all_views
WHERE view_name= ?</pre>
<p>สำหรับ ที่เอาไว้ดึง function + procedure คือ</p>
<pre class="brush:sql">SELECT text
FROM all_source
WHERE name= ? and type = ?
order by line</pre>
<p>TIP: เราสามารถเขียน program สำหรับดึงข้อมูลต่างๆ มาสร้างเป็น script ไว้สำหรับทำเป็น database deploy ได้ครับ กรณีที่มัน dependency กันลองต่อยอดดูนะครับ</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.doopro.com/2010/11/query-%e0%b8%aa%e0%b8%b3%e0%b8%ab%e0%b8%a3%e0%b8%b1%e0%b8%9a%e0%b8%94%e0%b8%b6%e0%b8%87-source-code-%e0%b9%83%e0%b8%99-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>วิธีดู DEPENDENCY ของ object ใน oracle</title>
		<link>http://blog.doopro.com/2010/11/%e0%b8%a7%e0%b8%b4%e0%b8%98%e0%b8%b5%e0%b8%94%e0%b8%b9-dependency-%e0%b8%82%e0%b8%ad%e0%b8%87-object-%e0%b9%83%e0%b8%99-oracle/</link>
		<comments>http://blog.doopro.com/2010/11/%e0%b8%a7%e0%b8%b4%e0%b8%98%e0%b8%b5%e0%b8%94%e0%b8%b9-dependency-%e0%b8%82%e0%b8%ad%e0%b8%87-object-%e0%b9%83%e0%b8%99-oracle/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 07:03:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[procedure dependency]]></category>

		<guid isPermaLink="false">http://blog.doopro.com/?p=127</guid>
		<description><![CDATA[วิธีดู DEPENDENCY ของ object ใน oracle เช่น เอาไว้ดูว่า procedure นี้ dependency กับ procedure หรือ function ไหนบ้าง SELECT lvl , u.object_id , u.object_type , LPAD (' ', lvl) &#124;&#124; object_name obj FROM ( SELECT LEVEL lvl, object_id FROM SYS.public_dependency s START &#8230; <a href="http://blog.doopro.com/2010/11/%e0%b8%a7%e0%b8%b4%e0%b8%98%e0%b8%b5%e0%b8%94%e0%b8%b9-dependency-%e0%b8%82%e0%b8%ad%e0%b8%87-object-%e0%b9%83%e0%b8%99-oracle/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>วิธีดู DEPENDENCY ของ object ใน oracle เช่น เอาไว้ดูว่า procedure นี้ dependency กับ procedure หรือ function ไหนบ้าง</p>
<div id="_mcePaste">
<pre class="brush:sql">SELECT lvl
     , u.object_id
     , u.object_type
     , LPAD (' ', lvl) || object_name obj
   FROM ( SELECT LEVEL lvl, object_id
            FROM SYS.public_dependency s
         START WITH s.object_id =
                      ( SELECT object_id
                          FROM user_objects
                         WHERE object_name = UPPER ('&amp;OBJECT_NAME')
                           AND object_type = UPPER ('&amp;OBJECT_TYPE'))
         CONNECT BY s.object_id = PRIOR referenced_object_id
         GROUP BY LEVEL, object_id) tree
      , user_objects u
  WHERE tree.object_id = u.object_id
ORDER BY lvl</pre>
</div>
<p>ที่มา : <a href="http://stackoverflow.com/questions/297465/how-do-you-programatically-identify-a-stored-procedures-dependencies">http://stackoverflow.com/questions/297465/how-do-you-programatically-identify-a-stored-procedures-dependencies</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.doopro.com/2010/11/%e0%b8%a7%e0%b8%b4%e0%b8%98%e0%b8%b5%e0%b8%94%e0%b8%b9-dependency-%e0%b8%82%e0%b8%ad%e0%b8%87-object-%e0%b9%83%e0%b8%99-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ปัญหา select ทับเมนู หรือ calendar บน IE6</title>
		<link>http://blog.doopro.com/2010/10/%e0%b8%9b%e0%b8%b1%e0%b8%8d%e0%b8%ab%e0%b8%b2-select-%e0%b8%97%e0%b8%b1%e0%b8%9a%e0%b9%80%e0%b8%a1%e0%b8%99%e0%b8%b9-%e0%b8%ab%e0%b8%a3%e0%b8%b7%e0%b8%ad-calendar-%e0%b8%9a%e0%b8%99-ie6/</link>
		<comments>http://blog.doopro.com/2010/10/%e0%b8%9b%e0%b8%b1%e0%b8%8d%e0%b8%ab%e0%b8%b2-select-%e0%b8%97%e0%b8%b1%e0%b8%9a%e0%b9%80%e0%b8%a1%e0%b8%99%e0%b8%b9-%e0%b8%ab%e0%b8%a3%e0%b8%b7%e0%b8%ad-calendar-%e0%b8%9a%e0%b8%99-ie6/#comments</comments>
		<pubDate>Sun, 17 Oct 2010 13:27:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[BGIFRAME]]></category>
		<category><![CDATA[html select tag]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[JSCal2]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[z-index]]></category>

		<guid isPermaLink="false">http://blog.doopro.com/?p=115</guid>
		<description><![CDATA[ปัญหา สำหรับหลายๆคนที่ทำเว็บน่าจะเจอปัญหาเกี่ยวกับ tag select ของ html บน IE 6 ชอบทับ เมนู หรือ calendar ที่เป็น div ไม่ว่าจะ set z-index ให้มากๆ ก็ยังโดน select ทับอยู่ดี ปล. ไม่ได้ลงรูปให้ดูนะครับ น่าจะทราบกันอยู่แล้ว (เมื่อไหร่จะเลิกใช้ IE6 กันสักทีก็ไม่รู้) วิธีแก้ปัญหา เขียน code ให้ hide และ show select เมื่อใช้งานเมนู หรือ calendar วิธีนี้อาจจะทำให้ &#8230; <a href="http://blog.doopro.com/2010/10/%e0%b8%9b%e0%b8%b1%e0%b8%8d%e0%b8%ab%e0%b8%b2-select-%e0%b8%97%e0%b8%b1%e0%b8%9a%e0%b9%80%e0%b8%a1%e0%b8%99%e0%b8%b9-%e0%b8%ab%e0%b8%a3%e0%b8%b7%e0%b8%ad-calendar-%e0%b8%9a%e0%b8%99-ie6/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;">ปัญหา</span></p>
<p style="padding-left: 30px;">สำหรับหลายๆคนที่ทำเว็บน่าจะเจอปัญหาเกี่ยวกับ tag select ของ html บน IE 6 ชอบทับ เมนู หรือ calendar ที่เป็น div ไม่ว่าจะ set z-index ให้มากๆ ก็ยังโดน select ทับอยู่ดี</p>
<p style="padding-left: 30px;">ปล. ไม่ได้ลงรูปให้ดูนะครับ น่าจะทราบกันอยู่แล้ว (เมื่อไหร่จะเลิกใช้ IE6 กันสักทีก็ไม่รู้)</p>
<p><span style="text-decoration: underline;">วิธีแก้ปัญหา</span></p>
<ul>
<li>เขียน code ให้ hide และ show select เมื่อใช้งานเมนู หรือ calendar วิธีนี้อาจจะทำให้ user ที่ใช้ งงว่าทำไม dropdown หลายไป แต่เป็นวิธีที่ง่ายสุด</li>
<li>อีกวิธีคือสร้าง iframe ให้ขนาดความกว้าง+ความยาวเท่ากับเมนู หรือ calendar สำหรับคนที่ใช้ jquery อยู่แล้ว จะโชคดีมีคนเขียน plugin ที่ชื่อ <a href="http://plugins.jquery.com/project/bgiframe">BGIFRAME</a> มาให้ใช้อยู่แล้ว</li>
</ul>
<p>สำหรับคนที่ใช้ JSCal2 เป็น javascript calendar <a href="http://www.dynarch.com/projects/calendar/">http://www.dynarch.com/projects/calendar/</a> แล้วเกิดปัญหากับ ie6 และใช้ prototype javascript</p>
<p>สามารถ download ตัวอย่างได้ที่นี่ครับ <a href="http://blog.doopro.com/wp-content/uploads/2010/10/jscal2-fix-ie6.zip">jscal2-fix-ie6</a></p>
<p>ปล. หวังว่าคงมีประโยชน์ไม่มากก็น้อย ผมกว่าจะแก้ได้ก็ใช้เวลานานเหมือนกัน</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.doopro.com/2010/10/%e0%b8%9b%e0%b8%b1%e0%b8%8d%e0%b8%ab%e0%b8%b2-select-%e0%b8%97%e0%b8%b1%e0%b8%9a%e0%b9%80%e0%b8%a1%e0%b8%99%e0%b8%b9-%e0%b8%ab%e0%b8%a3%e0%b8%b7%e0%b8%ad-calendar-%e0%b8%9a%e0%b8%99-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php error เกี่ยวกับ strtotime</title>
		<link>http://blog.doopro.com/2010/10/php-error-%e0%b9%80%e0%b8%81%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%81%e0%b8%b1%e0%b8%9a-strtotime/</link>
		<comments>http://blog.doopro.com/2010/10/php-error-%e0%b9%80%e0%b8%81%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%81%e0%b8%b1%e0%b8%9a-strtotime/#comments</comments>
		<pubDate>Sun, 17 Oct 2010 13:02:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[date_default_timezone_set]]></category>

		<guid isPermaLink="false">http://blog.doopro.com/?p=113</guid>
		<description><![CDATA[ปัญหาที่เจอ A PHP Error was encountered Severity: Warning Message: strtotime() [function.strtotime]: It is not safe to rely on the system&#8217;s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of &#8230; <a href="http://blog.doopro.com/2010/10/php-error-%e0%b9%80%e0%b8%81%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%81%e0%b8%b1%e0%b8%9a-strtotime/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;">ปัญหาที่เจอ</span></p>
<p style="padding-left: 30px;">
<div id="_mcePaste" style="padding-left: 30px;"><span style="font-style: normal;">A PHP Error was encountered</span></div>
<div id="_mcePaste" style="padding-left: 30px;"><span style="font-style: normal;">Severity: Warning</span></div>
<div id="_mcePaste" style="padding-left: 30px;"><span style="font-style: normal;">Message: strtotime() [function.strtotime]: It is not safe to rely on the system&#8217;s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected &#8216;Asia/Bangkok&#8217; for &#8216;ICT/7.0/no DST&#8217; instead</span></div>
<p style="padding-left: 30px;"><span style="font-style: normal;">A PHP Error was encountered<br />
Severity: Warning<br />
Message: strtotime() [function.strtotime]: It is not safe to rely on the system&#8217;s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected &#8216;Asia/Bangkok&#8217; for &#8216;ICT/7.0/no DST&#8217; instead</span></p>
<p><span style="text-decoration: underline;">วิธีแก้</span></p>
<p style="padding-left: 30px;">if( ! ini_get(&#8216;date.timezone&#8217;) )</p>
<p style="padding-left: 30px;">{</p>
<p style="padding-left: 30px;">date_default_timezone_set(&#8216;Asia/Bangkok&#8217;);</p>
<p style="padding-left: 30px;">}</p>
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">
]]></content:encoded>
			<wfw:commentRss>http://blog.doopro.com/2010/10/php-error-%e0%b9%80%e0%b8%81%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%81%e0%b8%b1%e0%b8%9a-strtotime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Redirect non-www to www for Codeigniter</title>
		<link>http://blog.doopro.com/2010/04/how-to-redirect-non-www-to-www-for-codeigniter/</link>
		<comments>http://blog.doopro.com/2010/04/how-to-redirect-non-www-to-www-for-codeigniter/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 15:02:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[เกี่ยวกับนักพัฒนาเว็บ]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[doopromotion.com]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[redirect 301]]></category>
		<category><![CDATA[redirect non-www to www]]></category>
		<category><![CDATA[remove index.php]]></category>

		<guid isPermaLink="false">http://blog.doopro.com/?p=86</guid>
		<description><![CDATA[RewriteEngine On                           #This bit rewrites your host name to include www RewriteCond %{HTTP_HOST} !^www\.doopromotion\.com [NC] RewriteRule ^(.*)$ http://www.doopromotion.com/$1 [R=301,NC,L] #This bit does the codeigniter magic RewriteCond %{REQUEST_FILENAME} &#8230; <a href="http://blog.doopro.com/2010/04/how-to-redirect-non-www-to-www-for-codeigniter/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<pre><code>RewriteEngine On                           

#This bit rewrites your host name to include www
RewriteCond %{HTTP_HOST} !^www\.doopromotion\.com [NC]
RewriteRule ^(.*)$ http://www.doopromotion.com/$1 [R=301,NC,L]

#This bit does the codeigniter magic
RewriteCond %{REQUEST_FILENAME} !-f  
RewriteCond %{REQUEST_FILENAME} !-d  
RewriteRule ^(.*)$ /index.php/$1 [L]

สำหรับคนที่ develop บน codeigniter จะได้ไม่มี content duplicate ลองดูนะครับ
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.doopro.com/2010/04/how-to-redirect-non-www-to-www-for-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>วิธี ping sitemap เพื่อเรียก bot</title>
		<link>http://blog.doopro.com/2010/04/%e0%b8%a7%e0%b8%b4%e0%b8%98%e0%b8%b5-ping-sitemap-%e0%b9%80%e0%b8%9e%e0%b8%b7%e0%b9%88%e0%b8%ad%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%81-bot/</link>
		<comments>http://blog.doopro.com/2010/04/%e0%b8%a7%e0%b8%b4%e0%b8%98%e0%b8%b5-ping-sitemap-%e0%b9%80%e0%b8%9e%e0%b8%b7%e0%b9%88%e0%b8%ad%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%81-bot/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 07:28:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[เกี่ยวกับนักพัฒนาเว็บ]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[ping ask sitemap]]></category>
		<category><![CDATA[ping google sitemap]]></category>
		<category><![CDATA[ping live sitemap]]></category>
		<category><![CDATA[ping sitemap]]></category>
		<category><![CDATA[ping yahoo sitemap]]></category>
		<category><![CDATA[ping เรียก bot]]></category>
		<category><![CDATA[sitemap]]></category>

		<guid isPermaLink="false">http://blog.doopro.com/?p=78</guid>
		<description><![CDATA[เขียนแบบสั้นๆง่ายๆนะครับ เปลี่ยน http://doopromotion.com/sitemap.xml เป็น domain และ sitemap ของเว็บของคุณ และนำไปวางใน browser + enter http://www.google.com/webmasters/sitemaps/ping?sitemap=http://doopromotion.com/sitemap.xml http://api.search.yahoo.com/SiteExplorerService/V1/updateNotification?appid=MicrosysProgramSER&#38;url=http://doopromotion.com/sitemap.xml http://submissions.ask.com/ping?sitemap=http://doopromotion.com/sitemap.xml http://api.moreover.com/ping?u=http://doopromotion.com/sitemap.xml http://webmaster.live.com/ping.aspx?siteMap=http://doopromotion.com/sitemap.xml DooPromotion &#38;raquo; Cheap Deals, Best Deals, On Sale]]></description>
			<content:encoded><![CDATA[<p>เขียนแบบสั้นๆง่ายๆนะครับ</p>
<p>เปลี่ยน http://doopromotion.com/sitemap.xml เป็น domain และ sitemap ของเว็บของคุณ และนำไปวางใน browser + enter</p>
<ol>
<li>http://www.google.com/webmasters/sitemaps/ping?sitemap=http://doopromotion.com/sitemap.xml</li>
<li>http://api.search.yahoo.com/SiteExplorerService/V1/updateNotification?appid=MicrosysProgramSER&amp;url=http://doopromotion.com/sitemap.xml</li>
<li>http://submissions.ask.com/ping?sitemap=http://doopromotion.com/sitemap.xml</li>
<li>http://api.moreover.com/ping?u=http://doopromotion.com/sitemap.xml</li>
<li>http://webmaster.live.com/ping.aspx?siteMap=http://doopromotion.com/sitemap.xml</li>
</ol>
<p><a title="Cheap Deals" href="http://doopromotion.com" target="_blank">DooPromotion &amp;raquo; Cheap Deals, Best Deals, On Sale</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.doopro.com/2010/04/%e0%b8%a7%e0%b8%b4%e0%b8%98%e0%b8%b5-ping-sitemap-%e0%b9%80%e0%b8%9e%e0%b8%b7%e0%b9%88%e0%b8%ad%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%81-bot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PageRank DooPro.com</title>
		<link>http://blog.doopro.com/2009/11/pagerank-doopro/</link>
		<comments>http://blog.doopro.com/2009/11/pagerank-doopro/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 03:06:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[เกี่ยวกับเว็บดูโปร]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[doopro.com]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[page rank]]></category>

		<guid isPermaLink="false">http://blog.doopro.com/?p=70</guid>
		<description><![CDATA[จะพยายามมาอัพเดทเรื่อยๆนะครับ ขอเริ่มนับใหม่ตั้งแต่ 2010 2010-04-06     PR1 http://doopro.com , PR1 http://doopro.com/home]]></description>
			<content:encoded><![CDATA[<p>จะพยายามมาอัพเดทเรื่อยๆนะครับ ขอเริ่มนับใหม่ตั้งแต่ 2010</p>
<ul>
<li>2010-04-06     <strong>PR1</strong> <a title="Doopro.com ดูโปร : ดูโปรโมชั่น" href="http://doopro.com" target="_blank">http://doopro.com</a> , <strong>PR1</strong> <a title="doopro" href="http://doopro.com/home" target="_blank">http://doopro.com/home</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.doopro.com/2009/11/pagerank-doopro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer &amp; IT learning center (e-book)</title>
		<link>http://blog.doopro.com/2009/10/computer-it-learning-center-e-book/</link>
		<comments>http://blog.doopro.com/2009/10/computer-it-learning-center-e-book/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 03:35:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[เกี่ยวกับนักพัฒนาเว็บ]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[e-book]]></category>
		<category><![CDATA[IT learning center]]></category>

		<guid isPermaLink="false">http://blog.doopro.com/?p=67</guid>
		<description><![CDATA[Computer &#38; IT learning center (e-book) http://www.flazx.com/ สำหรับคน it ไม่ต้องอธิบายไรมากครับ ลองเข้าดูรับรองคุณจะติดใจ]]></description>
			<content:encoded><![CDATA[<p>Computer &amp; IT learning center (e-book)<br />
<a title="http://www.flazx.com/" rel="nofollow" href="http://www.flazx.com/" target="_blank">http://www.flazx.com/</a></p>
<p>สำหรับคน it<br />
ไม่ต้องอธิบายไรมากครับ ลองเข้าดูรับรองคุณจะติดใจ</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.doopro.com/2009/10/computer-it-learning-center-e-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>commnd unix find and find+grep ไว้หาคำ</title>
		<link>http://blog.doopro.com/2009/10/commnd-unix-find-and-findgrep-%e0%b9%84%e0%b8%a7%e0%b9%89%e0%b8%ab%e0%b8%b2%e0%b8%84%e0%b8%b3/</link>
		<comments>http://blog.doopro.com/2009/10/commnd-unix-find-and-findgrep-%e0%b9%84%e0%b8%a7%e0%b9%89%e0%b8%ab%e0%b8%b2%e0%b8%84%e0%b8%b3/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 01:57:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[เกี่ยวกับนักพัฒนาเว็บ]]></category>
		<category><![CDATA[find command]]></category>
		<category><![CDATA[grep command]]></category>
		<category><![CDATA[unix command]]></category>

		<guid isPermaLink="false">http://blog.doopro.com/?p=65</guid>
		<description><![CDATA[find . -exec grep &#8220;word&#8221; &#8216;{}&#8217; \; -print find . -name &#8220;word&#8221; -print]]></description>
			<content:encoded><![CDATA[<p>find . -exec grep &#8220;word&#8221; &#8216;{}&#8217; \; -print </p>
<p>find . -name &#8220;word&#8221; -print </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.doopro.com/2009/10/commnd-unix-find-and-findgrep-%e0%b9%84%e0%b8%a7%e0%b9%89%e0%b8%ab%e0%b8%b2%e0%b8%84%e0%b8%b3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

