<?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>ไอเอินบล๊อก &#187; nolifelover</title>
	<atom:link href="http://www.iearn.in.th/author/nolifelover/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iearn.in.th</link>
	<description>Just Play and Just Knowledge</description>
	<lastBuildDate>Sat, 12 Jun 2010 06:40:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Groovy send SMS using http post</title>
		<link>http://www.iearn.in.th/2010/04/24/groovy-send-sms-using-http-post/</link>
		<comments>http://www.iearn.in.th/2010/04/24/groovy-send-sms-using-http-post/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 04:30:16 +0000</pubDate>
		<dc:creator>nolifelover</dc:creator>
				<category><![CDATA[Groovy]]></category>
		<category><![CDATA[send sms]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[sms gateway]]></category>
		<category><![CDATA[thaibulksms]]></category>

		<guid isPermaLink="false">http://www.iearn.in.th/?p=639</guid>
		<description><![CDATA[สำหรับใครที่ต้องการส่ง sms ไปยังพวก sms gateway ด้วย grails ลองเอา script ตัวนี้ไปใช้ดูนะครับเป็น groovy script สำหรับการใช้งานส่ง sms ด้วย thaibulksms ครับหากใครไม่ได้ใช้ของที่นี้ก็ลองดูโค้ดเอานะครับ(ไม่ได้ค่าโฆษณาจาก thaibulksms นะครับ อิๆ) class ThaiBulkSmsEngine&#123; def username def password def sender = 'SMS' &#160; //return a map containing keys as documented def send&#40;target, message&#41;&#123; def conn = new URL&#40;&#34;http://www.thaibulksms.com/sms_api.php&#34;&#41;.openConnection&#40;&#41;; conn.requestMethod = &#34;POST&#34; conn.doOutput = true conn.outputStream.withWriter&#40;&#34;UTF-8&#34;&#41; &#123; writer [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iearn.in.th/wp-content/uploads/2010/04/sms.jpg"><img src="http://www.iearn.in.th/wp-content/uploads/2010/04/sms-300x125.jpg" alt="" title="sms" width="300" height="125" class="aligncenter size-medium wp-image-640" /></a></p>
<p>สำหรับใครที่ต้องการส่ง sms ไปยังพวก sms gateway ด้วย grails ลองเอา script ตัวนี้ไปใช้ดูนะครับเป็น groovy script สำหรับการใช้งานส่ง sms ด้วย thaibulksms ครับหากใครไม่ได้ใช้ของที่นี้ก็ลองดูโค้ดเอานะครับ(ไม่ได้ค่าโฆษณาจาก thaibulksms นะครับ อิๆ)<span id="more-639"></span></p>

<div class="wp_syntax"><div class="code"><pre class="groovy" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">class</span> ThaiBulkSmsEngine<span style="color: #66cc66;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">def</span> username
    <span style="color: #000000; font-weight: bold;">def</span> password
    <span style="color: #000000; font-weight: bold;">def</span> sender <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'SMS'</span>
&nbsp;
    <span style="color: #808080; font-style: italic;">//return a map containing keys as documented</span>
    <span style="color: #000000; font-weight: bold;">def</span> send<span style="color: #66cc66;">&#40;</span>target, message<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">def</span> conn <span style="color: #66cc66;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #aaaadd; font-weight: bold;">URL</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;http://www.thaibulksms.com/sms_api.php&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">openConnection</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">;</span>
        conn.<span style="color: #006600;">requestMethod</span> <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">&quot;POST&quot;</span>
        conn.<span style="color: #006600;">doOutput</span> <span style="color: #66cc66;">=</span> <span style="color: #000000; font-weight: bold;">true</span>
        conn.<span style="color: #006600;">outputStream</span>.<span style="color: #FFCC33;">withWriter</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> writer <span style="color: #66cc66;">-&gt;</span>
            <span style="color: #66cc66;">&#91;</span> 
    <span style="color: #ff0000;">&quot;username&quot;</span>:username,<span style="color: #ff0000;">&quot;password&quot;</span>:password,<span style="color: #ff0000;">&quot;msisdn&quot;</span>:target,
    <span style="color: #ff0000;">&quot;message&quot;</span>:message,<span style="color: #ff0000;">&quot;sender&quot;</span>:sender
            <span style="color: #66cc66;">&#93;</span>.<span style="color: #663399;">each</span><span style="color: #66cc66;">&#123;</span>
                writer.<span style="color: #FFCC33;">write</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;&amp;&quot;</span><span style="color: #66cc66;">+</span><span style="color: #aaaadd; font-weight: bold;">URLEncoder</span>.<span style="color: #006600;">encode</span><span style="color: #66cc66;">&#40;</span>it.<span style="color: #006600;">key</span>,<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">+</span><span style="color: #ff0000;">&quot;=&quot;</span><span style="color: #66cc66;">+</span><span style="color: #aaaadd; font-weight: bold;">URLEncoder</span>.<span style="color: #006600;">encode</span><span style="color: #66cc66;">&#40;</span>it.<span style="color: #006600;">value</span>,<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
            <span style="color: #66cc66;">&#125;</span>
        <span style="color: #66cc66;">&#125;</span>
        <span style="color: #000000; font-weight: bold;">def</span> resultXml <span style="color: #66cc66;">=</span> conn.<span style="color: #006600;">inputStream</span>.<span style="color: #006600;">text</span>
        parseXml<span style="color: #66cc66;">&#40;</span>resultXml<span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#125;</span>
&nbsp;
    <span style="color: #808080; font-style: italic;">//return a long</span>
    <span style="color: #000000; font-weight: bold;">def</span> readCredits<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">def</span> conn <span style="color: #66cc66;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #aaaadd; font-weight: bold;">URL</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;http://www.thaibulksms.com/sms_api.php&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">openConnection</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">;</span>
        conn.<span style="color: #006600;">requestMethod</span> <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">&quot;POST&quot;</span>
        conn.<span style="color: #006600;">doOutput</span> <span style="color: #66cc66;">=</span> <span style="color: #000000; font-weight: bold;">true</span>
        conn.<span style="color: #006600;">outputStream</span>.<span style="color: #FFCC33;">withWriter</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> writer <span style="color: #66cc66;">-&gt;</span>
            <span style="color: #66cc66;">&#91;</span>
    <span style="color: #ff0000;">&quot;username&quot;</span>:username,<span style="color: #ff0000;">&quot;password&quot;</span>:password,<span style="color: #ff0000;">&quot;tag&quot;</span>:<span style="color: #ff0000;">&quot;credit_remain&quot;</span>
            <span style="color: #66cc66;">&#93;</span>.<span style="color: #663399;">each</span><span style="color: #66cc66;">&#123;</span>
                writer.<span style="color: #FFCC33;">write</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;&amp;&quot;</span><span style="color: #66cc66;">+</span><span style="color: #aaaadd; font-weight: bold;">URLEncoder</span>.<span style="color: #006600;">encode</span><span style="color: #66cc66;">&#40;</span>it.<span style="color: #006600;">key</span>,<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">+</span><span style="color: #ff0000;">&quot;=&quot;</span><span style="color: #66cc66;">+</span><span style="color: #aaaadd; font-weight: bold;">URLEncoder</span>.<span style="color: #006600;">encode</span><span style="color: #66cc66;">&#40;</span>it.<span style="color: #006600;">value</span>,<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
            <span style="color: #66cc66;">&#125;</span>
        <span style="color: #66cc66;">&#125;</span>
        <span style="color: #000000; font-weight: bold;">def</span> resultCredit <span style="color: #66cc66;">=</span> conn.<span style="color: #006600;">inputStream</span>.<span style="color: #006600;">text</span>
        <span style="color: #000000; font-weight: bold;">try</span><span style="color: #66cc66;">&#123;</span>
            resultCredit.<span style="color: #CC0099;">toLong</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">//this will generate an exception</span>
        <span style="color: #66cc66;">&#125;</span><span style="color: #000000; font-weight: bold;">catch</span><span style="color: #66cc66;">&#40;</span><span style="color: #aaaadd; font-weight: bold;">NumberFormatException</span> e<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
            <span style="color: #66cc66;">-</span><span style="color: #cc66cc;">1</span>
        <span style="color: #66cc66;">&#125;</span>
    <span style="color: #66cc66;">&#125;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">def</span> parseXml<span style="color: #66cc66;">&#40;</span>xml<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">def</span> results <span style="color: #66cc66;">=</span> <span style="color: #66cc66;">&#91;</span>:<span style="color: #66cc66;">&#93;</span>
        <span style="color: #000000; font-weight: bold;">def</span> replyXml <span style="color: #66cc66;">=</span> <span style="color: #000000; font-weight: bold;">new</span> XmlParser<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">parseText</span><span style="color: #66cc66;">&#40;</span>xml<span style="color: #66cc66;">&#41;</span>
        <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>replyXml.<span style="color: #006600;">QUEUE</span>.<span style="color: #663399;">size</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&gt;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
            <span style="color: #808080; font-style: italic;">//Ok</span>
            results.<span style="color: #006600;">action</span> <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'ok'</span>
            results.<span style="color: #006600;">status</span> <span style="color: #66cc66;">=</span> replyXml.<span style="color: #006600;">QUEUE</span><span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">Status</span>.<span style="color: #006600;">text</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">toInt</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
            results.<span style="color: #006600;">msisdn</span> <span style="color: #66cc66;">=</span> replyXml.<span style="color: #006600;">QUEUE</span><span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">Msisdn</span>.<span style="color: #006600;">text</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
            results.<span style="color: #006600;">transaction</span> <span style="color: #66cc66;">=</span> replyXml.<span style="color: #006600;">QUEUE</span><span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">Transaction</span>.<span style="color: #006600;">text</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
            results.<span style="color: #006600;">usedCredit</span> <span style="color: #66cc66;">=</span> replyXml.<span style="color: #006600;">QUEUE</span><span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">UsedCredit</span>.<span style="color: #006600;">text</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">toInt</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
            results.<span style="color: #006600;">remainCredit</span> <span style="color: #66cc66;">=</span> replyXml.<span style="color: #006600;">QUEUE</span><span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">RemainCredit</span>.<span style="color: #006600;">text</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">toInt</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
        <span style="color: #66cc66;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #66cc66;">&#123;</span>
            <span style="color: #808080; font-style: italic;">//Fail</span>
            results.<span style="color: #006600;">action</span> <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'fail'</span>
            results.<span style="color: #006600;">status</span> <span style="color: #66cc66;">=</span> replyXml.<span style="color: #006600;">Status</span>.<span style="color: #006600;">text</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">toInt</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
            results.<span style="color: #006600;">detail</span> <span style="color: #66cc66;">=</span> replyXml.<span style="color: #006600;">Detail</span>.<span style="color: #006600;">text</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
        <span style="color: #66cc66;">&#125;</span>
        results
    <span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">//def engine = new ThaiBulkSmsEngine(username:'nolifelover', password:'ไม่บอก')</span>
<span style="color: #aaaadd; font-weight: bold;">List</span> lines <span style="color: #66cc66;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #aaaadd; font-weight: bold;">File</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;sms.txt&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">readLines</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">//ผมอ่านมาจากไฟล์ utf-8 นะครับเพราะถ้า hardcode ไปส่งเป็นภาษาไรไม่รู้</span>
engine.<span style="color: #006600;">send</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'xxxxxxxxxx'</span>,lines<span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#41;</span>
engine.<span style="color: #006600;">readCredits</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">;</span></pre></div></div>

<p>ที่มา</p>
<p>http://blog.bemoko.com/2008/11/19/http-post-with-groovy-to-send-smss-using-web-service/</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.iearn.in.th/2010/04/24/groovy-send-sms-using-http-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>text-shadow on ie with jquery drop shadow plugins</title>
		<link>http://www.iearn.in.th/2010/04/23/text-shadow-on-ie-with-jquery-drop-shadow-plugins/</link>
		<comments>http://www.iearn.in.th/2010/04/23/text-shadow-on-ie-with-jquery-drop-shadow-plugins/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 03:01:14 +0000</pubDate>
		<dc:creator>nolifelover</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[dropshadow]]></category>
		<category><![CDATA[text-shadow]]></category>

		<guid isPermaLink="false">http://www.iearn.in.th/?p=633</guid>
		<description><![CDATA[สำหรับใครที่เคยใช้ css สำหรับสร้างเงานให้กับตัวอักษรนั้นหลายคนคงไม่ทราบว่าใน ie ไม่มี property นี้ครับ ผมก็ไม่เข้าใจเหมือนกันว่าทำไมว่า ie มันไม่ค่อยเหมือนชาวบ้านเท่าไร สำหรับในส่วนของ text-shadow สามารถที่จะใช้งานได้ใน firefox chrome safari opera ซึ่งจะเห็นว่าตระกูล ie ไม่มีรุ่นไหนที่สนับสนุนเลย(เวลาเขียนเว็บโคตรเกลียด ie เลย) สำหรับในส่วนของการใช้งานหากเป็นเบราเซอร์ที่สนันสนุนสามารถใช้งาน text-shadow: 2px 2px 2px #000; โดยในส่วนของ ตัวแรก 2px คือเงาไปด้านว่าเท่าไร ค่าตัวที่ เงาลงล่าง 2 px และ 2px อีกตัวคือความฟุ้งกระจายครับ ส่วนอันสุดท้ายคือสีของเงา แต่สำหรับหากว่าต้องการให้ ie เห็นด้วยเราจำเป็นต้องพึ่ง jQuery โดยใช้ plugins ที่ชื่อว่า Drop Shadow สำหรับตัวอย่างสามารถดูได้ที่ http://dropshadow.webvex.limebits.com/ ซึ่งในการใช้จริงก็ง่ายมากครับพวกแค่าเรา เอา jQuery + [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iearn.in.th/wp-content/uploads/2010/04/shadow.jpg"><img src="http://www.iearn.in.th/wp-content/uploads/2010/04/shadow-300x121.jpg" alt="" title="shadow" width="300" height="121" class="aligncenter size-medium wp-image-634" /></a></p>
<p>สำหรับใครที่เคยใช้ css สำหรับสร้างเงานให้กับตัวอักษรนั้นหลายคนคงไม่ทราบว่าใน ie ไม่มี property นี้ครับ ผมก็ไม่เข้าใจเหมือนกันว่าทำไมว่า ie มันไม่ค่อยเหมือนชาวบ้านเท่าไร สำหรับในส่วนของ text-shadow สามารถที่จะใช้งานได้ใน firefox chrome safari opera ซึ่งจะเห็นว่าตระกูล ie ไม่มีรุ่นไหนที่สนับสนุนเลย(เวลาเขียนเว็บโคตรเกลียด ie เลย)<span id="more-633"></span></p>
<p>สำหรับในส่วนของการใช้งานหากเป็นเบราเซอร์ที่สนันสนุนสามารถใช้งาน</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">2px</span> <span style="color: #933;">2px</span> <span style="color: #933;">2px</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span></pre></div></div>

<p>โดยในส่วนของ ตัวแรก 2px คือเงาไปด้านว่าเท่าไร ค่าตัวที่  เงาลงล่าง 2 px และ 2px อีกตัวคือความฟุ้งกระจายครับ ส่วนอันสุดท้ายคือสีของเงา แต่สำหรับหากว่าต้องการให้ ie เห็นด้วยเราจำเป็นต้องพึ่ง jQuery โดยใช้ plugins ที่ชื่อว่า <a href="http://plugins.jquery.com/project/DropShadow">Drop Shadow</a> สำหรับตัวอย่างสามารถดูได้ที่  <a href="http://dropshadow.webvex.limebits.com/">http://dropshadow.webvex.limebits.com/</a> ซึ่งในการใช้จริงก็ง่ายมากครับพวกแค่าเรา เอา jQuery + DropShadow plugins มาไว้ในหน้าเว็บก็สามารถใช้งานได้แล้วครับ</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
	$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#headerShadow&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">dropShadow</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p><strong><br />
สำหรับ property ของ dropShadow() มีดังนี้ครับ</strong><br />
left : 2 //ระยะเงาแนวนอน<br />
top : 2 //ระยะเงานแนวตั้ง<br />
blue : 2 // ความฟุ้งกระจาย<br />
opacity: 0.5 // ความโปร่งใส<br />
color: #fff //สีของเงา<br />
swap: true //เปลี่ยนทิศเงา</p>
<p><strong>การสร้าง script สำหรับให้ทุกตัวมีเงาอัตโนมัติ</strong><br />
ผมว่าหลายคนคงอยากที่จะเขียน script ในส่วนของการสั่งให้มีการสร้างเงแค่ครั้งเดียวนะครับ</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">      <span style="color: #003366; font-weight: bold;">function</span> reloadProgressBar<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
                $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.drop-shadow'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span>
                <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
                    value <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">text</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                    $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">dropShadow</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #009900;">&#125;</span>
            <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>ที่มา </p>
<p>http://dropshadow.webvex.limebits.com/</p>
<p>http://www.hotdog-x.com/programming-tips/html-shadow-with-jquery/</p>
<p>http://plugins.jquery.com/project/DropShadow</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.iearn.in.th/2010/04/23/text-shadow-on-ie-with-jquery-drop-shadow-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BluePrint CSS</title>
		<link>http://www.iearn.in.th/2010/04/22/blueprint-css/</link>
		<comments>http://www.iearn.in.th/2010/04/22/blueprint-css/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 04:11:19 +0000</pubDate>
		<dc:creator>nolifelover</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[blueprint css]]></category>
		<category><![CDATA[css framework]]></category>

		<guid isPermaLink="false">http://www.iearn.in.th/?p=630</guid>
		<description><![CDATA[สำหรับ blueprint css เป็น css frame work ที่ช่วยให้ผู้พัฒนาเว็บไซต์ไม่ต้องกังวลในส่วนของการจัดขนาดของเว็บไซต์และไม่ต้องกังวลถึงปัญหาที่เกิดขึ้นจากการใช้งานต่างเว็บเบราเซอร์ โดย blueprint css จะมีการจัดหน้าในลักษระของ grid โดยในการจัดหน้าจะแบ่งออกเป็น 24 grid ช่องละ 30 px; และมีช่องว่าในแต่ละ grid 10 px; ข้อควรรู้ 1. โดยความกว้างของหย้าจะอยู่ที่ 950px โดยในการหาความกว้างจะเป็นไปตามสูตร width = (columns * 40) -10 เราจะได้เความกว้างหรือ grid ที่เราต้องใส่ไปครับ 2. โดยในส่วนของการใช้งาน blueprint css จะต้องกำหนดข้อมูลอยู่ใน div ที่ชื่อว่า container หากว่าอยู่นอก container แล้ว css จะไม่มีการ apply เพื่อนำไปใช้ 3. ในส่วนที่เป็น grid [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iearn.in.th/wp-content/uploads/2010/04/blueprint.jpg"><img src="http://www.iearn.in.th/wp-content/uploads/2010/04/blueprint-300x122.jpg" alt="" title="blueprint" width="300" height="122" class="aligncenter size-medium wp-image-631" /></a></p>
<p>สำหรับ blueprint css เป็น css frame work ที่ช่วยให้ผู้พัฒนาเว็บไซต์ไม่ต้องกังวลในส่วนของการจัดขนาดของเว็บไซต์และไม่ต้องกังวลถึงปัญหาที่เกิดขึ้นจากการใช้งานต่างเว็บเบราเซอร์ โดย blueprint css จะมีการจัดหน้าในลักษระของ grid โดยในการจัดหน้าจะแบ่งออกเป็น 24 grid ช่องละ 30 px; และมีช่องว่าในแต่ละ grid 10 px;<br />
<span id="more-630"></span><br />
<strong>ข้อควรรู้</strong><br />
1. โดยความกว้างของหย้าจะอยู่ที่ 950px โดยในการหาความกว้างจะเป็นไปตามสูตร width = (columns * 40) -10 เราจะได้เความกว้างหรือ grid ที่เราต้องใส่ไปครับ<br />
2. โดยในส่วนของการใช้งาน blueprint css จะต้องกำหนดข้อมูลอยู่ใน div ที่ชื่อว่า container หากว่าอยู่นอก container แล้ว css จะไม่มีการ apply เพื่อนำไปใช้<br />
3. ในส่วนที่เป็น grid สุดท้ายเราจะต้องใส่ คลาส last เพื่อบอกว่าเป็นสุดท้ายเพื่อให้มีการปรับให้พอดีกับขอบ<br />
ที่มา <a href="http://wiki.github.com/joshuaclayton/blueprint-css/quick-start-tutorial">http://wiki.github.com/joshuaclayton/blueprint-css/quick-start-tutorial</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.iearn.in.th/2010/04/22/blueprint-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deploy rails app on a suburi</title>
		<link>http://www.iearn.in.th/2010/03/11/deploy-rails-app-on-a-suburi/</link>
		<comments>http://www.iearn.in.th/2010/03/11/deploy-rails-app-on-a-suburi/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 09:00:30 +0000</pubDate>
		<dc:creator>nolifelover</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[RoR]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[rails suburi]]></category>
		<category><![CDATA[relative url]]></category>

		<guid isPermaLink="false">http://www.iearn.in.th/?p=628</guid>
		<description><![CDATA[หากใครอยากที่จะ deploy rails สำหรับให้อยู่ในส่วนของ suburi เช่น example.com/app จำเป็นจะต้องมีการใช้งานในส่วนของการสั่งให้ rails ทราบว่าตอนนี้มันกำลังอยู่ใน url ใด ซึ่งในส่วนของการ deploy ผมได้ deploy apache+mod_proxy+mongrel ซึ่งผมจะมาเขียนที่หลังละกันครับ สำหรับการทำให้ rails deploy บน suburi ทำได้ดังนี้ครับ โดยการแก้ไขในส่วนของ environment.rb config.action_controller.relative_url_root = &#34;/rails&#34; เป็นอันว่าเรียบร้อย Related posts:Install and Deploy Rails with Apache Modrails Jaideawhosting ตอนนี้ได้เปลี่ยนมาใช้งาน mod_rails แทน mod_proxy และ fastcgi แล้วเพราะเห็นว่าเจ้า mod_rails มันเสถียรจริงๆ... Related posts brought to you by Yet [...]


Related posts:<ol><li><a href='http://www.iearn.in.th/2009/10/15/install-and-deploy-rails-with-apache-modrails/' rel='bookmark' title='Permanent Link: Install and Deploy Rails with Apache Modrails'>Install and Deploy Rails with Apache Modrails</a> <small>Jaideawhosting ตอนนี้ได้เปลี่ยนมาใช้งาน mod_rails แทน mod_proxy และ fastcgi แล้วเพราะเห็นว่าเจ้า mod_rails มันเสถียรจริงๆ...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>หากใครอยากที่จะ deploy rails สำหรับให้อยู่ในส่วนของ suburi เช่น example.com/app จำเป็นจะต้องมีการใช้งานในส่วนของการสั่งให้ rails ทราบว่าตอนนี้มันกำลังอยู่ใน url ใด ซึ่งในส่วนของการ deploy ผมได้ deploy apache+mod_proxy+mongrel ซึ่งผมจะมาเขียนที่หลังละกันครับ<br />
สำหรับการทำให้ rails deploy บน suburi ทำได้ดังนี้ครับ โดยการแก้ไขในส่วนของ environment.rb</p>

<div class="wp_syntax"><div class="code"><pre class="rails" style="font-family:monospace;">config.<span style="color:#9900CC;">action_controller</span>.<span style="color:#9900CC;">relative_url_root</span> = <span style="color:#996600;">&quot;/rails&quot;</span></pre></div></div>

<p>เป็นอันว่าเรียบร้อย</p>


<p>Related posts:<ol><li><a href='http://www.iearn.in.th/2009/10/15/install-and-deploy-rails-with-apache-modrails/' rel='bookmark' title='Permanent Link: Install and Deploy Rails with Apache Modrails'>Install and Deploy Rails with Apache Modrails</a> <small>Jaideawhosting ตอนนี้ได้เปลี่ยนมาใช้งาน mod_rails แทน mod_proxy และ fastcgi แล้วเพราะเห็นว่าเจ้า mod_rails มันเสถียรจริงๆ...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.iearn.in.th/2010/03/11/deploy-rails-app-on-a-suburi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>install dhcp server on debian</title>
		<link>http://www.iearn.in.th/2010/03/10/install-dhcp-server-on-debian/</link>
		<comments>http://www.iearn.in.th/2010/03/10/install-dhcp-server-on-debian/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 06:39:57 +0000</pubDate>
		<dc:creator>nolifelover</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[dhcp3]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.iearn.in.th/?p=623</guid>
		<description><![CDATA[apt-get install dhcp3-server เป็นภาคต่อของการทำ server ของบริษัทครับ ที่จริงไม่มีอะไรหรอกแค่เอามาไว้อ่านเฉยๆ ส่วนตรงนี้จะเป็นส่วนของการ Install dhcp server ซึ่งไว้สำหรับการแจก ip ภายในครับ โดยในการแจกได้ใช้ ip ช่วงตั้งแต่ 192.168.55.100 &#8211; 192.168.55.254 แก้ไข /etc/dhcp3/dhcpd.conf subnet 192.168.55.0 netmask 255.255.255.0 &#123; #option routers 192.168.2.55 pool&#123; range 192.168.55.100 192.168.55.255; allow unknown clients; &#125; &#125; Related posts:gem update &#8211;system is disabled on Debian ปัญหาเกิดจากกำลังลอง server และ rails hosting controller โดยที่ลองเล่นบน debian [...]


Related posts:<ol><li><a href='http://www.iearn.in.th/2010/03/07/gem-update-system-is-disabled-on-debian/' rel='bookmark' title='Permanent Link: gem update &#8211;system is disabled on Debian'>gem update &#8211;system is disabled on Debian</a> <small>ปัญหาเกิดจากกำลังลอง server และ rails hosting controller โดยที่ลองเล่นบน debian แล้วเมื่อต้องการ update...</small></li>
<li><a href='http://www.iearn.in.th/2009/10/15/install-and-deploy-rails-with-apache-modrails/' rel='bookmark' title='Permanent Link: Install and Deploy Rails with Apache Modrails'>Install and Deploy Rails with Apache Modrails</a> <small>Jaideawhosting ตอนนี้ได้เปลี่ยนมาใช้งาน mod_rails แทน mod_proxy และ fastcgi แล้วเพราะเห็นว่าเจ้า mod_rails มันเสถียรจริงๆ...</small></li>
<li><a href='http://www.iearn.in.th/2009/08/20/install-cups-on-ubuntu-904/' rel='bookmark' title='Permanent Link: Install CUPS on Ubuntu 9.04'>Install CUPS on Ubuntu 9.04</a> <small>Cups ย่อมาจากคำว่า “Common Unix Printing system” เป็นโปรแกรมช่วยจัดการการพิมพ์ของเครื่องพิมพ์ โดยสามารถจัดการคิวงานพิมพ์ รวมทั้งแชร์เครื่องพิมพ์ผ่านเน็ตเวิร์คได้ ขั้นตอนการติดตั้ง...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> dhcp3-server</pre></div></div>

<p>เป็นภาคต่อของการทำ server ของบริษัทครับ ที่จริงไม่มีอะไรหรอกแค่เอามาไว้อ่านเฉยๆ ส่วนตรงนี้จะเป็นส่วนของการ Install dhcp server ซึ่งไว้สำหรับการแจก ip ภายในครับ<br />
<span id="more-623"></span></p>
<p>โดยในการแจกได้ใช้ ip ช่วงตั้งแต่ 192.168.55.100 &#8211; 192.168.55.254 แก้ไข /etc/dhcp3/dhcpd.conf</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">subnet 192.168.55.0 netmask 255.255.255.0 <span style="color: #7a0874; font-weight: bold;">&#123;</span>
        <span style="color: #666666; font-style: italic;">#option routers 192.168.2.55</span>
        pool<span style="color: #7a0874; font-weight: bold;">&#123;</span>
                range 192.168.55.100 192.168.55.255;
                allow unknown clients;
        <span style="color: #7a0874; font-weight: bold;">&#125;</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>



<p>Related posts:<ol><li><a href='http://www.iearn.in.th/2010/03/07/gem-update-system-is-disabled-on-debian/' rel='bookmark' title='Permanent Link: gem update &#8211;system is disabled on Debian'>gem update &#8211;system is disabled on Debian</a> <small>ปัญหาเกิดจากกำลังลอง server และ rails hosting controller โดยที่ลองเล่นบน debian แล้วเมื่อต้องการ update...</small></li>
<li><a href='http://www.iearn.in.th/2009/10/15/install-and-deploy-rails-with-apache-modrails/' rel='bookmark' title='Permanent Link: Install and Deploy Rails with Apache Modrails'>Install and Deploy Rails with Apache Modrails</a> <small>Jaideawhosting ตอนนี้ได้เปลี่ยนมาใช้งาน mod_rails แทน mod_proxy และ fastcgi แล้วเพราะเห็นว่าเจ้า mod_rails มันเสถียรจริงๆ...</small></li>
<li><a href='http://www.iearn.in.th/2009/08/20/install-cups-on-ubuntu-904/' rel='bookmark' title='Permanent Link: Install CUPS on Ubuntu 9.04'>Install CUPS on Ubuntu 9.04</a> <small>Cups ย่อมาจากคำว่า “Common Unix Printing system” เป็นโปรแกรมช่วยจัดการการพิมพ์ของเครื่องพิมพ์ โดยสามารถจัดการคิวงานพิมพ์ รวมทั้งแชร์เครื่องพิมพ์ผ่านเน็ตเวิร์คได้ ขั้นตอนการติดตั้ง...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.iearn.in.th/2010/03/10/install-dhcp-server-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gem update &#8211;system is disabled on Debian</title>
		<link>http://www.iearn.in.th/2010/03/07/gem-update-system-is-disabled-on-debian/</link>
		<comments>http://www.iearn.in.th/2010/03/07/gem-update-system-is-disabled-on-debian/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 15:40:26 +0000</pubDate>
		<dc:creator>nolifelover</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[RoR]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[update gem]]></category>
		<category><![CDATA[update_rubygems]]></category>

		<guid isPermaLink="false">http://www.iearn.in.th/?p=621</guid>
		<description><![CDATA[ปัญหาเกิดจากกำลังลอง server และ rails hosting controller โดยที่ลองเล่นบน debian แล้วเมื่อต้องการ update gem เจอปัญหานี้ครับ ERROR: While executing gem ... (RuntimeError) gem update --system is disabled on Debian. RubyGems can be updated using the official Debian repositories by aptitude or apt-get. วิธีการแก้โดยการเปลี่ยนไปใช้ gem ที่ไว้สำหรับ update rubygems ทำได้ 2 วิธีครับ gem install update_rubygems cd /var/lib/gems/1.8/bin ./update_rubygems or gem install [...]


Related posts:<ol><li><a href='http://www.iearn.in.th/2010/03/10/install-dhcp-server-on-debian/' rel='bookmark' title='Permanent Link: install dhcp server on debian'>install dhcp server on debian</a> <small>apt-get install dhcp3-server เป็นภาคต่อของการทำ server ของบริษัทครับ ที่จริงไม่มีอะไรหรอกแค่เอามาไว้อ่านเฉยๆ ส่วนตรงนี้จะเป็นส่วนของการ Install dhcp...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>ปัญหาเกิดจากกำลังลอง server และ rails hosting controller โดยที่ลองเล่นบน debian แล้วเมื่อต้องการ update gem เจอปัญหานี้ครับ</p>
<pre code="bash">ERROR:  While executing gem ... (RuntimeError)
    gem update --system is disabled on Debian. RubyGems can be updated using the official Debian repositories by aptitude or apt-get.
</pre>
<p><span id="more-621"></span><br />
วิธีการแก้โดยการเปลี่ยนไปใช้ gem ที่ไว้สำหรับ update rubygems ทำได้ 2 วิธีครับ</p>
<pre code="bash">
gem install update_rubygems
cd /var/lib/gems/1.8/bin
./update_rubygems
</pre>
<p>or</p>
<pre code="bash">
gem install rubygems-update
cd /var/lib/gems/1.8/bin
./update_rubygems
</pre>


<p>Related posts:<ol><li><a href='http://www.iearn.in.th/2010/03/10/install-dhcp-server-on-debian/' rel='bookmark' title='Permanent Link: install dhcp server on debian'>install dhcp server on debian</a> <small>apt-get install dhcp3-server เป็นภาคต่อของการทำ server ของบริษัทครับ ที่จริงไม่มีอะไรหรอกแค่เอามาไว้อ่านเฉยๆ ส่วนตรงนี้จะเป็นส่วนของการ Install dhcp...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.iearn.in.th/2010/03/07/gem-update-system-is-disabled-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ไปเที่ยวสิงคโปร์ วันที่ 4 พ.ย.</title>
		<link>http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-3/</link>
		<comments>http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-3/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 08:14:35 +0000</pubDate>
		<dc:creator>nolifelover</dc:creator>
				<category><![CDATA[AboutMe]]></category>
		<category><![CDATA[sentosa]]></category>
		<category><![CDATA[singapore]]></category>

		<guid isPermaLink="false">http://www.iearn.in.th/?p=617</guid>
		<description><![CDATA[วันนี้เป็นวันสุดท้ายที่เที่ยวในสิงคโปร์โดยในวันนี้ผมได้ไปเที่ยวเกาะ sentosa ซึ่งตามคำกล่าวคือเกาะแห่งความสนุกสนานและมีความสุข แต่เป็นที่น่าเสียดายที่การไปครั้งนี้อยู่ในช่วงการประปรุงเลยทำให้อดเล่นในเครื่องเล่นหลายๆ เครื่อง แต่ก็ประทับใจกับการแสดงสุดท้ายก่อนกลับคือ song of the sea Related posts:ไปเที่ยวสิงคโปร์ วันที่ 3 พ.ย. วันที่ 2 ของการเดินทางวันนี้เน้นเดินซะเกือบทั้งวัน ผมซื้อแผนที่ 1 อันจากนั้นก็เริ่มทำการเดินเที่ยวทั่วเมืองสิงคโปร์ เริ่มตั้งแต่บ่าย 3 จนถึง 3... ไปเที่ยวสิงคโปร์ วันที่ 2 พ.ย. วันแรกสุดของการเดินทางผมเดินทางด้วยรถทัวร์เข้าไปยังสิงคโปร์กว่าจะไปถึงนานพอสมควรประมาณ 16 ชั่วโมงเลย ถ้าเกิดว่านั่งเครื่องแค่ประมาณ 2 ชั่วงโมงเอง แต่ต้องไปขึ้นที่กรุงเทพ เพราะไม่มีหาดใหญ่-สิงคโปร์ เพื่อความประหยัดเลยไปกะรถทัวร์เป็นการดีที่สุด ในส่วนการเดินทางเป็นครั้งแรกที่ได้เดินทางไปยังต่างประเทศ... Related posts brought to you by Yet Another Related Posts Plugin.


Related posts:<ol><li><a href='http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-2/' rel='bookmark' title='Permanent Link: ไปเที่ยวสิงคโปร์ วันที่ 3 พ.ย.'>ไปเที่ยวสิงคโปร์ วันที่ 3 พ.ย.</a> <small>วันที่ 2 ของการเดินทางวันนี้เน้นเดินซะเกือบทั้งวัน ผมซื้อแผนที่ 1 อันจากนั้นก็เริ่มทำการเดินเที่ยวทั่วเมืองสิงคโปร์ เริ่มตั้งแต่บ่าย 3 จนถึง 3...</small></li>
<li><a href='http://www.iearn.in.th/2009/12/17/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-1/' rel='bookmark' title='Permanent Link: ไปเที่ยวสิงคโปร์ วันที่ 2 พ.ย.'>ไปเที่ยวสิงคโปร์ วันที่ 2 พ.ย.</a> <small>วันแรกสุดของการเดินทางผมเดินทางด้วยรถทัวร์เข้าไปยังสิงคโปร์กว่าจะไปถึงนานพอสมควรประมาณ 16 ชั่วโมงเลย ถ้าเกิดว่านั่งเครื่องแค่ประมาณ 2 ชั่วงโมงเอง แต่ต้องไปขึ้นที่กรุงเทพ เพราะไม่มีหาดใหญ่-สิงคโปร์ เพื่อความประหยัดเลยไปกะรถทัวร์เป็นการดีที่สุด ในส่วนการเดินทางเป็นครั้งแรกที่ได้เดินทางไปยังต่างประเทศ...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iearn.in.th/wp-content/uploads/2009/12/dscf1125.jpg"><img class="aligncenter size-medium wp-image-618" title="dscf1125" src="http://www.iearn.in.th/wp-content/uploads/2009/12/dscf1125-300x225.jpg" alt="dscf1125" width="300" height="225" /></a></p>
<p>วันนี้เป็นวันสุดท้ายที่เที่ยวในสิงคโปร์โดยในวันนี้ผมได้ไปเที่ยวเกาะ sentosa ซึ่งตามคำกล่าวคือเกาะแห่งความสนุกสนานและมีความสุข แต่เป็นที่น่าเสียดายที่การไปครั้งนี้อยู่ในช่วงการประปรุงเลยทำให้อดเล่นในเครื่องเล่นหลายๆ เครื่อง แต่ก็ประทับใจกับการแสดงสุดท้ายก่อนกลับคือ song of the sea</p>

<div class="ngg-galleryoverview" id="ngg-gallery-8-617">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.iearn.in.th/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=8&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-450" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1007.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1007" alt="DSCF1007" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1007.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-451" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1008.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1008" alt="DSCF1008" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1008.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-452" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1009.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1009" alt="DSCF1009" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1009.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-453" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1010.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1010" alt="DSCF1010" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1010.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-454" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1011.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1011" alt="DSCF1011" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1011.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-455" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1012.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1012" alt="DSCF1012" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1012.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-456" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1013.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1013" alt="DSCF1013" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1013.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-457" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1014.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1014" alt="DSCF1014" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1014.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-458" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1015.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1015" alt="DSCF1015" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1015.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-459" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1016.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1016" alt="DSCF1016" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1016.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-460" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1017.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1017" alt="DSCF1017" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1017.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-461" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1018.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1018" alt="DSCF1018" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1018.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-462" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1019.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1019" alt="DSCF1019" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1019.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-463" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1020.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1020" alt="DSCF1020" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1020.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-464" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1022.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1022" alt="DSCF1022" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1022.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-465" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1023.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1023" alt="DSCF1023" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1023.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-466" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1025.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1025" alt="DSCF1025" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1025.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-467" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1026.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1026" alt="DSCF1026" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1026.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-468" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1027.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1027" alt="DSCF1027" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1027.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-469" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day3/DSCF1028.JPG" title=" " class="shutterset_set_8" >
								<img title="DSCF1028" alt="DSCF1028" src="http://www.iearn.in.th/wp-gallery/singapore/day3/thumbs/thumbs_DSCF1028.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-3/?nggpage=2">2</a><a class="page-numbers" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-3/?nggpage=3">3</a><a class="page-numbers" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-3/?nggpage=4">4</a><a class="page-numbers" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-3/?nggpage=5">5</a><a class="page-numbers" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-3/?nggpage=6">6</a><a class="page-numbers" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-3/?nggpage=7">7</a><a class="next" id="ngg-next-2" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-3/?nggpage=2">&#9658;</a></div> 	
</div>




<p>Related posts:<ol><li><a href='http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-2/' rel='bookmark' title='Permanent Link: ไปเที่ยวสิงคโปร์ วันที่ 3 พ.ย.'>ไปเที่ยวสิงคโปร์ วันที่ 3 พ.ย.</a> <small>วันที่ 2 ของการเดินทางวันนี้เน้นเดินซะเกือบทั้งวัน ผมซื้อแผนที่ 1 อันจากนั้นก็เริ่มทำการเดินเที่ยวทั่วเมืองสิงคโปร์ เริ่มตั้งแต่บ่าย 3 จนถึง 3...</small></li>
<li><a href='http://www.iearn.in.th/2009/12/17/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-1/' rel='bookmark' title='Permanent Link: ไปเที่ยวสิงคโปร์ วันที่ 2 พ.ย.'>ไปเที่ยวสิงคโปร์ วันที่ 2 พ.ย.</a> <small>วันแรกสุดของการเดินทางผมเดินทางด้วยรถทัวร์เข้าไปยังสิงคโปร์กว่าจะไปถึงนานพอสมควรประมาณ 16 ชั่วโมงเลย ถ้าเกิดว่านั่งเครื่องแค่ประมาณ 2 ชั่วงโมงเอง แต่ต้องไปขึ้นที่กรุงเทพ เพราะไม่มีหาดใหญ่-สิงคโปร์ เพื่อความประหยัดเลยไปกะรถทัวร์เป็นการดีที่สุด ในส่วนการเดินทางเป็นครั้งแรกที่ได้เดินทางไปยังต่างประเทศ...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ไปเที่ยวสิงคโปร์ วันที่ 3 พ.ย.</title>
		<link>http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-2/</link>
		<comments>http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-2/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 08:00:57 +0000</pubDate>
		<dc:creator>nolifelover</dc:creator>
				<category><![CDATA[AboutMe]]></category>
		<category><![CDATA[singapore]]></category>

		<guid isPermaLink="false">http://www.iearn.in.th/?p=612</guid>
		<description><![CDATA[วันที่ 2 ของการเดินทางวันนี้เน้นเดินซะเกือบทั้งวัน ผมซื้อแผนที่ 1 อันจากนั้นก็เริ่มทำการเดินเที่ยวทั่วเมืองสิงคโปร์ เริ่มตั้งแต่บ่าย 3 จนถึง 3 ทุ่ม บอกได้เลยว่าเหนื่อยมาก แต่ก็สนุกมากมาย เพราะว่าเป็นครั้งแรกที่ได้เดินทางแบบ นักท่องเที่ยวทัวไปมีรูปมาฝากด้วย Related posts:ไปเที่ยวสิงคโปร์ วันที่ 2 พ.ย. วันแรกสุดของการเดินทางผมเดินทางด้วยรถทัวร์เข้าไปยังสิงคโปร์กว่าจะไปถึงนานพอสมควรประมาณ 16 ชั่วโมงเลย ถ้าเกิดว่านั่งเครื่องแค่ประมาณ 2 ชั่วงโมงเอง แต่ต้องไปขึ้นที่กรุงเทพ เพราะไม่มีหาดใหญ่-สิงคโปร์ เพื่อความประหยัดเลยไปกะรถทัวร์เป็นการดีที่สุด ในส่วนการเดินทางเป็นครั้งแรกที่ได้เดินทางไปยังต่างประเทศ... Related posts brought to you by Yet Another Related Posts Plugin.


Related posts:<ol><li><a href='http://www.iearn.in.th/2009/12/17/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-1/' rel='bookmark' title='Permanent Link: ไปเที่ยวสิงคโปร์ วันที่ 2 พ.ย.'>ไปเที่ยวสิงคโปร์ วันที่ 2 พ.ย.</a> <small>วันแรกสุดของการเดินทางผมเดินทางด้วยรถทัวร์เข้าไปยังสิงคโปร์กว่าจะไปถึงนานพอสมควรประมาณ 16 ชั่วโมงเลย ถ้าเกิดว่านั่งเครื่องแค่ประมาณ 2 ชั่วงโมงเอง แต่ต้องไปขึ้นที่กรุงเทพ เพราะไม่มีหาดใหญ่-สิงคโปร์ เพื่อความประหยัดเลยไปกะรถทัวร์เป็นการดีที่สุด ในส่วนการเดินทางเป็นครั้งแรกที่ได้เดินทางไปยังต่างประเทศ...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iearn.in.th/wp-content/uploads/2009/12/day20083.jpg"><img class="aligncenter size-medium wp-image-614" title="day20083" src="http://www.iearn.in.th/wp-content/uploads/2009/12/day20083-300x70.jpg" alt="day20083" width="300" height="70" /></a></p>
<p>วันที่ 2 ของการเดินทางวันนี้เน้นเดินซะเกือบทั้งวัน ผมซื้อแผนที่ 1 อันจากนั้นก็เริ่มทำการเดินเที่ยวทั่วเมืองสิงคโปร์ เริ่มตั้งแต่บ่าย 3 จนถึง 3 ทุ่ม บอกได้เลยว่าเหนื่อยมาก แต่ก็สนุกมากมาย เพราะว่าเป็นครั้งแรกที่ได้เดินทางแบบ นักท่องเที่ยวทัวไปมีรูปมาฝากด้วย</p>

<div class="ngg-galleryoverview" id="ngg-gallery-7-612">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.iearn.in.th/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=7&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-345" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20001.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20001" alt="DAY20001" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20001.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-346" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20002.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20002" alt="DAY20002" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20002.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-347" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20003.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20003" alt="DAY20003" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20003.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-348" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20004.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20004" alt="DAY20004" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20004.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-349" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20005.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20005" alt="DAY20005" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20005.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-350" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20006.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20006" alt="DAY20006" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20006.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-351" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20007.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20007" alt="DAY20007" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20007.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-352" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20008.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20008" alt="DAY20008" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20008.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-353" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20009.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20009" alt="DAY20009" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20009.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-354" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20010.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20010" alt="DAY20010" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20010.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-355" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20011.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20011" alt="DAY20011" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20011.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-356" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20012.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20012" alt="DAY20012" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20012.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-357" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20013.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20013" alt="DAY20013" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20013.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-358" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20014.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20014" alt="DAY20014" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20014.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-359" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20015.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20015" alt="DAY20015" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20015.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-360" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20016.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20016" alt="DAY20016" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20016.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-361" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20017.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20017" alt="DAY20017" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20017.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-362" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20018.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20018" alt="DAY20018" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20018.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-363" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20019.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20019" alt="DAY20019" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20019.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-364" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-gallery/singapore/day2/DAY20020.JPG" title=" " class="shutterset_set_7" >
								<img title="DAY20020" alt="DAY20020" src="http://www.iearn.in.th/wp-gallery/singapore/day2/thumbs/thumbs_DAY20020.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-2/?nggpage=2">2</a><a class="page-numbers" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-2/?nggpage=3">3</a><a class="page-numbers" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-2/?nggpage=4">4</a><a class="page-numbers" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-2/?nggpage=5">5</a><a class="page-numbers" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-2/?nggpage=6">6</a><a class="next" id="ngg-next-2" href="http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-2/?nggpage=2">&#9658;</a></div> 	
</div>




<p>Related posts:<ol><li><a href='http://www.iearn.in.th/2009/12/17/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-1/' rel='bookmark' title='Permanent Link: ไปเที่ยวสิงคโปร์ วันที่ 2 พ.ย.'>ไปเที่ยวสิงคโปร์ วันที่ 2 พ.ย.</a> <small>วันแรกสุดของการเดินทางผมเดินทางด้วยรถทัวร์เข้าไปยังสิงคโปร์กว่าจะไปถึงนานพอสมควรประมาณ 16 ชั่วโมงเลย ถ้าเกิดว่านั่งเครื่องแค่ประมาณ 2 ชั่วงโมงเอง แต่ต้องไปขึ้นที่กรุงเทพ เพราะไม่มีหาดใหญ่-สิงคโปร์ เพื่อความประหยัดเลยไปกะรถทัวร์เป็นการดีที่สุด ในส่วนการเดินทางเป็นครั้งแรกที่ได้เดินทางไปยังต่างประเทศ...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.iearn.in.th/2009/12/18/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ไปเที่ยวสิงคโปร์ วันที่ 2 พ.ย.</title>
		<link>http://www.iearn.in.th/2009/12/17/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-1/</link>
		<comments>http://www.iearn.in.th/2009/12/17/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-1/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 05:06:35 +0000</pubDate>
		<dc:creator>nolifelover</dc:creator>
				<category><![CDATA[AboutMe]]></category>
		<category><![CDATA[malaysia]]></category>
		<category><![CDATA[singapore]]></category>

		<guid isPermaLink="false">http://www.iearn.in.th/?p=605</guid>
		<description><![CDATA[วันแรกสุดของการเดินทางผมเดินทางด้วยรถทัวร์เข้าไปยังสิงคโปร์กว่าจะไปถึงนานพอสมควรประมาณ 16 ชั่วโมงเลย ถ้าเกิดว่านั่งเครื่องแค่ประมาณ 2 ชั่วงโมงเอง แต่ต้องไปขึ้นที่กรุงเทพ เพราะไม่มีหาดใหญ่-สิงคโปร์ เพื่อความประหยัดเลยไปกะรถทัวร์เป็นการดีที่สุด ในส่วนการเดินทางเป็นครั้งแรกที่ได้เดินทางไปยังต่างประเทศ ซึ่งสิ่งที่ต้องกลัวคือ ต.ม. แต่ก็ไม่มีปัญหาเลย ต้องใช้เวลาใน ต.ม. ของสิงคโปร์นานมาก ตรวจหมดทุกอย่าง กระเป๋า โน๊ตบุ๊คกล้อง กว่าจะผ่านได้ เอาเป็นว่าในวันแรกไปถึงก็เริ่มการเที่ยวเลย โดยมีรูปมาฝากตามด้านล่าง No related posts. Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iearn.in.th/wp-content/uploads/2009/12/dscf1080.jpg"><img class="aligncenter size-medium wp-image-606" title="dscf1080" src="http://www.iearn.in.th/wp-content/uploads/2009/12/dscf1080-300x73.jpg" alt="dscf1080" width="300" height="73" /></a></p>
<p>วันแรกสุดของการเดินทางผมเดินทางด้วยรถทัวร์เข้าไปยังสิงคโปร์กว่าจะไปถึงนานพอสมควรประมาณ 16 ชั่วโมงเลย ถ้าเกิดว่านั่งเครื่องแค่ประมาณ 2 ชั่วงโมงเอง แต่ต้องไปขึ้นที่กรุงเทพ เพราะไม่มีหาดใหญ่-สิงคโปร์ เพื่อความประหยัดเลยไปกะรถทัวร์เป็นการดีที่สุด ในส่วนการเดินทางเป็นครั้งแรกที่ได้เดินทางไปยังต่างประเทศ ซึ่งสิ่งที่ต้องกลัวคือ ต.ม. แต่ก็ไม่มีปัญหาเลย ต้องใช้เวลาใน ต.ม. ของสิงคโปร์นานมาก ตรวจหมดทุกอย่าง กระเป๋า โน๊ตบุ๊คกล้อง กว่าจะผ่านได้ เอาเป็นว่าในวันแรกไปถึงก็เริ่มการเที่ยวเลย โดยมีรูปมาฝากตามด้านล่าง</p>

<div class="ngg-galleryoverview" id="ngg-gallery-6-605">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.iearn.in.th/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=6&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-284" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1003.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1003" alt="DSCF1003" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1003.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-285" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1004.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1004" alt="DSCF1004" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1004.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-286" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1009.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1009" alt="DSCF1009" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1009.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-287" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1011.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1011" alt="DSCF1011" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1011.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-288" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1013.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1013" alt="DSCF1013" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1013.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-289" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1015.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1015" alt="DSCF1015" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1015.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-290" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1016.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1016" alt="DSCF1016" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1016.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-291" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1017.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1017" alt="DSCF1017" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1017.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-292" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1018.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1018" alt="DSCF1018" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1018.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-293" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1031.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1031" alt="DSCF1031" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1031.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-294" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1035.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1035" alt="DSCF1035" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1035.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-295" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1036.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1036" alt="DSCF1036" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1036.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-296" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1037.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1037" alt="DSCF1037" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1037.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-297" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1038.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1038" alt="DSCF1038" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1038.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-298" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1039.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1039" alt="DSCF1039" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1039.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-299" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1040.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1040" alt="DSCF1040" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1040.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-300" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1041.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1041" alt="DSCF1041" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1041.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-301" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1042.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1042" alt="DSCF1042" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1042.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-302" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1043.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1043" alt="DSCF1043" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1043.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-303" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.iearn.in.th/wp-content/gallery/singapore/DSCF1044.JPG" title=" " class="shutterset_set_6" >
								<img title="DSCF1044" alt="DSCF1044" src="http://www.iearn.in.th/wp-content/gallery/singapore/thumbs/thumbs_DSCF1044.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="http://www.iearn.in.th/2009/12/17/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-1/?nggpage=2">2</a><a class="page-numbers" href="http://www.iearn.in.th/2009/12/17/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-1/?nggpage=3">3</a><a class="page-numbers" href="http://www.iearn.in.th/2009/12/17/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-1/?nggpage=4">4</a><a class="next" id="ngg-next-2" href="http://www.iearn.in.th/2009/12/17/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-1/?nggpage=2">&#9658;</a></div> 	
</div>




<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.iearn.in.th/2009/12/17/%e0%b9%84%e0%b8%9b%e0%b9%80%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%aa%e0%b8%b4%e0%b8%87%e0%b8%84%e0%b9%82%e0%b8%9b%e0%b8%a3%e0%b9%8c-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install and Deploy Rails with Apache Modrails</title>
		<link>http://www.iearn.in.th/2009/10/15/install-and-deploy-rails-with-apache-modrails/</link>
		<comments>http://www.iearn.in.th/2009/10/15/install-and-deploy-rails-with-apache-modrails/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 18:46:19 +0000</pubDate>
		<dc:creator>nolifelover</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[httpd config]]></category>
		<category><![CDATA[modrails]]></category>
		<category><![CDATA[mod_rails]]></category>
		<category><![CDATA[passenger]]></category>

		<guid isPermaLink="false">http://www.iearn.in.th/?p=598</guid>
		<description><![CDATA[Jaideawhosting ตอนนี้ได้เปลี่ยนมาใช้งาน mod_rails แทน mod_proxy และ fastcgi แล้วเพราะเห็นว่าเจ้า mod_rails มันเสถียรจริงๆ อีกอย่างการ deploy ก็ทำได้ง่ายดายมาก เอาเป็นว่ามาดูวิธิการลงกันเลย Install Passenger 1. ทำการติดตั้ง passenger gem (mod_rails) gem install passenger 2. ติดตั้งเป็น module ของ apache passenger-install-apache2-module เป็นอันว่าเรียบร้อยแล้วสำหรับการลง ง่ายไหมละ Mod-rails Config 1. เปิดไฟล์ httpd.conf ของ apahce มาครับ 2. การ deploy ด้วย virtual host ServerName www.xxx.com ServerAlias www.xxxx.com xxxx.com DocumentRoot /home/xxx/app/public RailsEnv production [...]


Related posts:<ol><li><a href='http://www.iearn.in.th/2010/03/11/deploy-rails-app-on-a-suburi/' rel='bookmark' title='Permanent Link: Deploy rails app on a suburi'>Deploy rails app on a suburi</a> <small>หากใครอยากที่จะ deploy rails สำหรับให้อยู่ในส่วนของ suburi เช่น example.com/app จำเป็นจะต้องมีการใช้งานในส่วนของการสั่งให้ rails ทราบว่าตอนนี้มันกำลังอยู่ใน...</small></li>
<li><a href='http://www.iearn.in.th/2009/09/14/apache-fancyindex-overide-apache-icons/' rel='bookmark' title='Permanent Link: Apache FancyIndex Overide Apache Icons'>Apache FancyIndex Overide Apache Icons</a> <small>เคยเขียนการทำ list ไฟล์ด้วย apache modindexoptions มาแล้วแต่ติดปัญหาเรื่อง icons ที่ไม่ได้เอามาตามที่เราต้องการกลับไปเอา icon ซึ่งเป็น...</small></li>
<li><a href='http://www.iearn.in.th/2009/08/20/install-cups-on-ubuntu-904/' rel='bookmark' title='Permanent Link: Install CUPS on Ubuntu 9.04'>Install CUPS on Ubuntu 9.04</a> <small>Cups ย่อมาจากคำว่า “Common Unix Printing system” เป็นโปรแกรมช่วยจัดการการพิมพ์ของเครื่องพิมพ์ โดยสามารถจัดการคิวงานพิมพ์ รวมทั้งแชร์เครื่องพิมพ์ผ่านเน็ตเวิร์คได้ ขั้นตอนการติดตั้ง...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iearn.in.th/wp-content/uploads/2009/10/mod_rails.jpg"><img src="http://www.iearn.in.th/wp-content/uploads/2009/10/mod_rails-300x221.jpg" alt="mod_rails" title="mod_rails" width="300" height="221" class="aligncenter size-medium wp-image-599" /></a></p>
<p>Jaideawhosting ตอนนี้ได้เปลี่ยนมาใช้งาน mod_rails แทน mod_proxy และ fastcgi แล้วเพราะเห็นว่าเจ้า mod_rails มันเสถียรจริงๆ อีกอย่างการ deploy ก็ทำได้ง่ายดายมาก เอาเป็นว่ามาดูวิธิการลงกันเลย<br />
<span id="more-598"></span><br />
Install Passenger<br />
1. ทำการติดตั้ง passenger gem (mod_rails)<br />
<code>gem install passenger </code><br />
2. ติดตั้งเป็น module ของ apache<br />
<code>passenger-install-apache2-module</code><br />
เป็นอันว่าเรียบร้อยแล้วสำหรับการลง ง่ายไหมละ</p>
<p>Mod-rails Config<br />
1. เปิดไฟล์ httpd.conf ของ apahce มาครับ<br />
2. การ deploy ด้วย virtual host<br />
<code><VirtualHost xx.xx.xx.xx:80><br />
ServerName www.xxx.com<br />
        ServerAlias www.xxxx.com xxxx.com<br />
        DocumentRoot /home/xxx/app/public<br />
        RailsEnv production<br />
</VirtualHost><br />
</code><br />
หลังจากนั้นทำการ reload httpd ก็เรียบร้อยครับ</p>


<p>Related posts:<ol><li><a href='http://www.iearn.in.th/2010/03/11/deploy-rails-app-on-a-suburi/' rel='bookmark' title='Permanent Link: Deploy rails app on a suburi'>Deploy rails app on a suburi</a> <small>หากใครอยากที่จะ deploy rails สำหรับให้อยู่ในส่วนของ suburi เช่น example.com/app จำเป็นจะต้องมีการใช้งานในส่วนของการสั่งให้ rails ทราบว่าตอนนี้มันกำลังอยู่ใน...</small></li>
<li><a href='http://www.iearn.in.th/2009/09/14/apache-fancyindex-overide-apache-icons/' rel='bookmark' title='Permanent Link: Apache FancyIndex Overide Apache Icons'>Apache FancyIndex Overide Apache Icons</a> <small>เคยเขียนการทำ list ไฟล์ด้วย apache modindexoptions มาแล้วแต่ติดปัญหาเรื่อง icons ที่ไม่ได้เอามาตามที่เราต้องการกลับไปเอา icon ซึ่งเป็น...</small></li>
<li><a href='http://www.iearn.in.th/2009/08/20/install-cups-on-ubuntu-904/' rel='bookmark' title='Permanent Link: Install CUPS on Ubuntu 9.04'>Install CUPS on Ubuntu 9.04</a> <small>Cups ย่อมาจากคำว่า “Common Unix Printing system” เป็นโปรแกรมช่วยจัดการการพิมพ์ของเครื่องพิมพ์ โดยสามารถจัดการคิวงานพิมพ์ รวมทั้งแชร์เครื่องพิมพ์ผ่านเน็ตเวิร์คได้ ขั้นตอนการติดตั้ง...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.iearn.in.th/2009/10/15/install-and-deploy-rails-with-apache-modrails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
