<?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>Web Development and Programming Help.</title>
	<atom:link href="http://www.memo8.com/toolkits/feed" rel="self" type="application/rss+xml" />
	<link>http://www.memo8.com/toolkits</link>
	<description>Wep Programming-Mobile Programming-Windows Programming</description>
	<lastBuildDate>Wed, 01 Feb 2012 08:52:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Javascript ดึงชื่อไฟล์และนามสกุลจาก URL</title>
		<link>http://www.memo8.com/toolkits/archives/1192</link>
		<comments>http://www.memo8.com/toolkits/archives/1192#comments</comments>
		<pubDate>Wed, 01 Feb 2012 08:44:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.memo8.com/toolkits/?p=1192</guid>
		<description><![CDATA[ขอยกตัวอย่างนะครับเช่น http://www.memo8.com/toolkits/home.html ก็จะได้

filename1 = &#8216;home.html&#8217; (ชื่อไฟล์+นามสกุล)
filename2 = &#8216;home&#8217; (เฉพาะชื่อไฟล์ไม่มีนามสกุล)
file_extension =&#8217;html&#8217; (เฉพาะนามสกุล)


url = window.location.pathname;
filename1 = url.match(/.*\/(.*)$/)[1];// ชื่อไฟล์+นามสกุล home.html
filename2 = filename.split(/\./)[0]; // ชื่อไฟล์ไม่มีนามสกุล home
file_extension = filename.split(/\./)[1]; // นามสกุลไฟล์ html
]]></description>
			<content:encoded><![CDATA[<p>ขอยกตัวอย่างนะครับเช่น http://www.memo8.com/toolkits/home.html ก็จะได้</p>
<ul>
<li>filename1 = &#8216;home.html&#8217; (ชื่อไฟล์+นามสกุล)</li>
<li>filename2 = &#8216;home&#8217; (เฉพาะชื่อไฟล์ไม่มีนามสกุล)</li>
<li>file_extension =&#8217;html&#8217; (เฉพาะนามสกุล)</li>
</ul>
<p><span id="more-1192"></span></p>
<pre class="code">url = window.location.pathname;
filename1 = url.match(/.*\/(.*)$/)[1];// ชื่อไฟล์+นามสกุล home.html
filename2 = filename.split(/\./)[0]; // ชื่อไฟล์ไม่มีนามสกุล home
file_extension = filename.split(/\./)[1]; // นามสกุลไฟล์ html</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.memo8.com/toolkits/archives/1192/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>รูปแบบ Cursor Styles ใน CSS2 และ CSS3</title>
		<link>http://www.memo8.com/toolkits/archives/1177</link>
		<comments>http://www.memo8.com/toolkits/archives/1177#comments</comments>
		<pubDate>Tue, 17 Jan 2012 09:25:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.memo8.com/toolkits/?p=1177</guid>
		<description><![CDATA[ใช้ css มาก็บ่อย บางทีใช้ Cursor Styles ก็ไปค้นในเน็ตเริ่มเสียเวลาเอามาไว้ในเว็บนี้เลยแล้วกัน และด้านล่างนี้เป็นรูปแบบ CSS Cursor แบบต่างๆตั้งแต่ CSS2-CSS3 ลองเอาไปปรับใช้ให้เหมาะกับอินเตอร์เฟสในหน้าเว็บครับ
CSS2 Cursor Styles
cursor: auto
cursor: inherit
cursor: crosshair
cursor: default
cursor: help
cursor: move
cursor: pointer
cursor: progress
cursor: text
cursor: wait
cursor: e-resize
cursor: ne-resize
cursor: nw-resize
cursor: n-resize
cursor: se-resize
cursor: sw-resize
cursor: s-resize
cursor: w-resize

CSS3 Cursor Styles
cursor: none (not IE, Safari, Opera)
cursor: context-menu (not Firefox, Chrome)
cursor: cell (not Safari)
cursor: vertical-text
cursor: alias (not Safari)
cursor: copy (not Safari)
cursor: no-drop
cursor: [...]]]></description>
			<content:encoded><![CDATA[<p>ใช้ css มาก็บ่อย บางทีใช้ Cursor Styles ก็ไปค้นในเน็ตเริ่มเสียเวลาเอามาไว้ในเว็บนี้เลยแล้วกัน และด้านล่างนี้เป็นรูปแบบ CSS Cursor แบบต่างๆตั้งแต่ CSS2-CSS3 ลองเอาไปปรับใช้ให้เหมาะกับอินเตอร์เฟสในหน้าเว็บครับ<span id="more-1177"></span></p>
<h2>CSS2 Cursor Styles</h2>
<pre class="code" style=" cursor:auto;margin:1px 0;border: 1px solid #000">cursor: auto</pre>
<pre class="code" style=" cursor:inherit;margin:1px 0;border: 1px solid #000">cursor: inherit</pre>
<pre class="code" style=" cursor:crosshair;margin:1px 0;border: 1px solid #000">cursor: crosshair</pre>
<pre class="code" style=" cursor:default;margin:1px 0;border: 1px solid #000">cursor: default</pre>
<pre class="code" style=" cursor:help;margin:1px 0;border: 1px solid #000">cursor: help</pre>
<pre class="code" style=" cursor:move;margin:1px 0;border: 1px solid #000">cursor: move</pre>
<pre class="code" style=" cursor:pointer;margin:1px 0;border: 1px solid #000">cursor: pointer</pre>
<pre class="code" style=" cursor:progress;margin:1px 0;border: 1px solid #000">cursor: progress</pre>
<pre class="code" style=" cursor:text;margin:1px 0;border: 1px solid #000">cursor: text</pre>
<pre class="code" style=" cursor:wait;margin:1px 0;border: 1px solid #000">cursor: wait</pre>
<pre class="code" style=" cursor:e-resize;margin:1px 0;border: 1px solid #000">cursor: e-resize</pre>
<pre class="code" style=" cursor:ne-resize;margin:1px 0;border: 1px solid #000">cursor: ne-resize</pre>
<pre class="code" style=" cursor:nw-resize;margin:1px 0;border: 1px solid #000">cursor: nw-resize</pre>
<pre class="code" style=" cursor:n-resize;margin:1px 0;border: 1px solid #000">cursor: n-resize</pre>
<pre class="code" style=" cursor:se-resize;margin:1px 0;border: 1px solid #000">cursor: se-resize</pre>
<pre class="code" style=" cursor:sw-resize;margin:1px 0;border: 1px solid #000">cursor: sw-resize</pre>
<pre class="code" style=" cursor:s-resize;margin:1px 0;border: 1px solid #000">cursor: s-resize</pre>
<pre class="code" style=" cursor:w-resize;margin:1px 0;border: 1px solid #000">cursor: w-resize</pre>
<h2></h2>
<h2>CSS3 Cursor Styles</h2>
<pre class="code" style=" cursor:none;margin:1px 0;border: 1px solid #000">cursor: none (not IE, Safari, Opera)</pre>
<pre class="code" style=" cursor:context-menu;margin:1px 0;border: 1px solid #000">cursor: context-menu (not Firefox, Chrome)</pre>
<pre class="code" style=" cursor:cell;margin:1px 0;border: 1px solid #000">cursor: cell (not Safari)</pre>
<pre class="code" style=" cursor:vertical-text;margin:1px 0;border: 1px solid #000">cursor: vertical-text</pre>
<pre class="code" style=" cursor:alias;margin:1px 0;border: 1px solid #000">cursor: alias (not Safari)</pre>
<pre class="code" style=" cursor:copy;margin:1px 0;border: 1px solid #000">cursor: copy (not Safari)</pre>
<pre class="code" style=" cursor:no-drop;margin:1px 0;border: 1px solid #000">cursor: no-drop</pre>
<pre class="code" style=" cursor:not-allowed;margin:1px 0;border: 1px solid #000">cursor: not-allowed</pre>
<pre class="code" style=" cursor:ew-resize;margin:1px 0;border: 1px solid #000">cursor: ew-resize</pre>
<pre class="code" style=" cursor:ns-resize;margin:1px 0;border: 1px solid #000">cursor: ns-resize</pre>
<pre class="code" style=" cursor:nesw-resize;margin:1px 0;border: 1px solid #000">cursor: nesw-resize</pre>
<pre class="code" style=" cursor:nwse-resize;margin:1px 0;border: 1px solid #000">cursor: nwse-resize</pre>
<pre class="code" style=" cursor:col-resize;margin:1px 0;border: 1px solid #000">cursor: col-resize</pre>
<pre class="code" style=" cursor:row-resize;margin:1px 0;border: 1px solid #000">cursor: row-resize</pre>
<pre class="code" style=" cursor:all-scroll;margin:1px 0;border: 1px solid #000">cursor: all-scroll</pre>
<p>ข้อมูลจาก : <a href="http://www.sitepoint.com/css3-cursor-styles/" target="_blank">http://www.sitepoint.com/css3-cursor-styles/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.memo8.com/toolkits/archives/1177/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>เพิ่ม IGNORE หลังคำสั่ง INSERT เมื่อต้องการละเว้นการ Duplicate entry</title>
		<link>http://www.memo8.com/toolkits/archives/1166</link>
		<comments>http://www.memo8.com/toolkits/archives/1166#comments</comments>
		<pubDate>Tue, 17 Jan 2012 07:12:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.memo8.com/toolkits/?p=1166</guid>
		<description><![CDATA[บางครั้งมีการ insert โดย database มีการ set unique key values เพื่อไม่ให้ข้อมูลซ้ำกัน หลายครั้งพอเริ่มคำสั่ง sql เมื่อเจอรายการที่ซ้ำ (Duplicate entry) คำสั่งก็จะหยุดทำงาน อาจจะไม่เหมาะสม ในกรณีข้อมูลเยอะแล้วต้องมาไล่ดูว่ารายการไหนซ้ำ งั้นลองเพิ่ม IGNORE หลังคำสั่ง INSERT เพื่อละเว้นการหยุดการทำงานในกรณี Duplicate entry ตัวอย่างตามด้านล่างครับ
INSERT  IGNORE INTO TB_NAME (COLUMN) VALUES (DATA);
]]></description>
			<content:encoded><![CDATA[<p>บางครั้งมีการ insert โดย database มีการ set unique key values เพื่อไม่ให้ข้อมูลซ้ำกัน หลายครั้งพอเริ่มคำสั่ง sql เมื่อเจอรายการที่ซ้ำ (Duplicate entry) คำสั่งก็จะหยุดทำงาน อาจจะไม่เหมาะสม ในกรณีข้อมูลเยอะแล้วต้องมาไล่ดูว่ารายการไหนซ้ำ งั้นลองเพิ่ม IGNORE หลังคำสั่ง INSERT เพื่อละเว้นการหยุดการทำงานในกรณี Duplicate entry ตัวอย่างตามด้านล่างครับ</p>
<pre class="code">INSERT  IGNORE INTO TB_NAME (COLUMN) VALUES (DATA);</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.memo8.com/toolkits/archives/1166/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code PHP สำหรับค้นหาวันที่สุดท้ายของเดือน</title>
		<link>http://www.memo8.com/toolkits/archives/1162</link>
		<comments>http://www.memo8.com/toolkits/archives/1162#comments</comments>
		<pubDate>Thu, 22 Dec 2011 09:44:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.memo8.com/toolkits/?p=1162</guid>
		<description><![CDATA[โค้ดตามด้านล่างครับ
$LastDate = date(&#8217;Y-m-d&#8217;,strtotime(&#8217;-1 second&#8217;,strtotime(&#8217;+1 month&#8217;,strtotime(date(&#8217;m').&#8217;/01/&#8217;.date(&#8217;Y').&#8217; 00:00:00&#8242;))));
ที่มา http://ullu.wordpress.com/2007/02/28/find-last-day-of-the-month-in-php/
]]></description>
			<content:encoded><![CDATA[<p>โค้ดตามด้านล่างครับ</p>
<p class="code">$LastDate = date(&#8217;Y-m-d&#8217;,strtotime(&#8217;-1 second&#8217;,strtotime(&#8217;+1 month&#8217;,strtotime(date(&#8217;m').&#8217;/01/&#8217;.date(&#8217;Y').&#8217; 00:00:00&#8242;))));</p>
<p>ที่มา <a href="http://ullu.wordpress.com/2007/02/28/find-last-day-of-the-month-in-php/" target="_blank">http://ullu.wordpress.com/2007/02/28/find-last-day-of-the-month-in-php/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.memo8.com/toolkits/archives/1162/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript auto uppercase .</title>
		<link>http://www.memo8.com/toolkits/archives/1145</link>
		<comments>http://www.memo8.com/toolkits/archives/1145#comments</comments>
		<pubDate>Fri, 09 Sep 2011 09:34:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.memo8.com/toolkits/?p=1145</guid>
		<description><![CDATA[ฟังก์ชั่นเปลี่ยนตัวอักษรเป็นตัวพิมพ์ใหญ่อัตโนมัติ ขณะพิมพ์ในช่อง textbox ลองเอาไปปรับใช้ดูครับ

HTML Head
&#60;script type="text/javascript"&#62;
function f(o){o.value=o.value.toUpperCase().replace(/([^0-9A-Z])/g,"");}
&#60;/script&#62;
HTML Body
&#60;input type="text" onkeydown="f(this)" onkeyup="f(this)" onblur="f(this)" onclick="f(this)" /&#62;
ที่มา : http://snipplr.com/view/1151/
]]></description>
			<content:encoded><![CDATA[<p>ฟังก์ชั่นเปลี่ยนตัวอักษรเป็นตัวพิมพ์ใหญ่อัตโนมัติ ขณะพิมพ์ในช่อง textbox ลองเอาไปปรับใช้ดูครับ</p>
<p><span id="more-1145"></span><br />
<strong>HTML Head</strong></p>
<pre class="code">&lt;script type="text/javascript"&gt;
function f(o){o.value=o.value.toUpperCase().replace(/([^0-9A-Z])/g,"");}
&lt;/script&gt;</pre>
<p><strong>HTML Body</strong></p>
<pre class="code">&lt;input type="text" onkeydown="f(this)" onkeyup="f(this)" onblur="f(this)" onclick="f(this)" /&gt;</pre>
<p>ที่มา : <a href="http://snipplr.com/view/1151/" target="_blank">http://snipplr.com/view/1151/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.memo8.com/toolkits/archives/1145/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse Android error : An SDK Target must be specified.</title>
		<link>http://www.memo8.com/toolkits/archives/1131</link>
		<comments>http://www.memo8.com/toolkits/archives/1131#comments</comments>
		<pubDate>Wed, 07 Sep 2011 11:20:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.memo8.com/toolkits/?p=1131</guid>
		<description><![CDATA[พอดีเจอปัญหา Error &#8220;An SDK Target must be specified.&#8221; ในขณะที่เริ่มต้นสร้าง Android Project บน Eclipse ตามรูปด้านล่างครับ


ซึ่ง Error ดังกล่าวเกิดจาก Eclipes ไม่สามารถหาโฟลเดอร์ Install ของ SDK เจอ ดังนั้นเราต้องไปกำหนดให้ Eclipes รู้เสียก่อนดังนี้
เข้าไปที่เมนู Window -&#62; Preferences. จะมีหน้าต่างใหม่ขึ้นมา ให้เลือก Android (ด้านซ้าย) ให้กด Browse เพื่อเลือก โฟลเดอร์ SDK ที่เรา Download ดูรูปด้านล่างประกอบ

หรือลองดูขั้นตอนการติดตั้งแบบเริ่มต้นที่นี่ เริ่มต้นเขียนโปรแกรมบน Android ต้องติดตั้งอะไรบ้าง?
ที่มา : http://flummox-engineering.blogspot.com/2011/04/eclipse-android-error-sdk-target-must.html
]]></description>
			<content:encoded><![CDATA[<p>พอดีเจอปัญหา Error <strong>&#8220;An SDK Target must be specified.&#8221; </strong>ในขณะที่เริ่มต้นสร้าง Android Project บน Eclipse ตามรูปด้านล่างครับ</p>
<p><span id="more-1131"></span></p>
<p><a href="http://www.memo8.com/toolkits/wp-content/uploads/2011/09/Eclipse-Android-error-An-SDK-Target-must-be-specified.png" rel="lightbox"><img class="aligncenter size-full wp-image-1138" title="Eclipse Android error - An SDK Target must be specified" src="http://www.memo8.com/toolkits/wp-content/uploads/2011/09/Eclipse-Android-error-An-SDK-Target-must-be-specified.png" alt="Eclipse Android error - An SDK Target must be specified" width="523" height="444" /></a></p>
<p>ซึ่ง Error ดังกล่าวเกิดจาก Eclipes ไม่สามารถหาโฟลเดอร์ Install ของ SDK เจอ ดังนั้นเราต้องไปกำหนดให้ Eclipes รู้เสียก่อนดังนี้</p>
<p>เข้าไปที่เมนู <strong>Window -&gt; Preferences</strong>. จะมีหน้าต่างใหม่ขึ้นมา ให้เลือก<strong> </strong><strong>Android </strong>(ด้านซ้าย) ให้กด Browse เพื่อเลือก โฟลเดอร์ SDK ที่เรา Download ดูรูปด้านล่างประกอบ</p>
<p><strong><a href="http://www.memo8.com/toolkits/wp-content/uploads/2011/09/Select-Android-SDK.png" rel="lightbox"><img class="aligncenter size-medium wp-image-1139" title="Select Android SDK" src="http://www.memo8.com/toolkits/wp-content/uploads/2011/09/Select-Android-SDK-600x424.png" alt="Select Android SDK" width="600" height="424" /></a></strong></p>
<p>หรือลองดูขั้นตอนการติดตั้งแบบเริ่มต้นที่นี่ <a title="Permanent Link to เริ่มต้นเขียนโปรแกรมบน Android ต้องติดตั้งอะไรบ้าง?" rel="bookmark" href="../archives/1072">เริ่มต้นเขียนโปรแกรมบน Android ต้องติดตั้งอะไรบ้าง?</a></p>
<p style="text-align: left;">ที่มา : <a href="http://flummox-engineering.blogspot.com/2011/04/eclipse-android-error-sdk-target-must.html" target="_blank">http://flummox-engineering.blogspot.com/2011/04/eclipse-android-error-sdk-target-must.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.memo8.com/toolkits/archives/1131/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resize และ Crop รูป ด้วย Quick JPEG Resize and Crop (Freeware)</title>
		<link>http://www.memo8.com/toolkits/archives/1133</link>
		<comments>http://www.memo8.com/toolkits/archives/1133#comments</comments>
		<pubDate>Wed, 07 Sep 2011 11:07:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[FreeDownload]]></category>

		<guid isPermaLink="false">http://www.memo8.com/toolkits/?p=1133</guid>
		<description><![CDATA[โปรแกรมฟรีขนาดเล็กสำหรับ Resize และ Crop รูปภาพนามสกุล jpeg เท่านั้น สามารถกำหนด quality ได้ แนะนำงานเว็บให้ใช้ quality = 90 ครับเพราะจะได้ความละเอียด และขนาดไฟล์ที่เหมาะสมกับงานเว็บสุด


ตัวโปแกรมติดตั้งง่าย Support Windows XP/Vista/7 หน้าจอทำงานมีหน้าต่างเดียว วิธีใช้งานเลือกไฟล์รูปจากเมนู File &#62; Open หรือ จะลากไฟล์รูปมาใส่ในโปรแกรมเลยก็ได้ครับ ส่วนการใช้งานไม่ขออธิบายแล้วกันครับ เพราะหน้าตาโปรแกรมไม่มีอะไรมาก ลองใช้ดูครับกับโปรแกรมฟรีเล็กที่ชื่อ &#8220;Quick JPEG Resize and Crop&#8221;
Download : http://download.cnet.com/Quick-JPEG-Resize-and-Crop/3000-2192_4-10821232.html
]]></description>
			<content:encoded><![CDATA[<p>โปรแกรมฟรีขนาดเล็กสำหรับ Resize และ Crop รูปภาพนามสกุล jpeg เท่านั้น สามารถกำหนด quality ได้ แนะนำงานเว็บให้ใช้ quality = 90 ครับเพราะจะได้ความละเอียด และขนาดไฟล์ที่เหมาะสมกับงานเว็บสุด</p>
<p><span id="more-1133"></span></p>
<p><a href="http://www.memo8.com/toolkits/wp-content/uploads/2011/09/Quick-JPEG-Resize-and-Crop.jpg" rel="lightbox"><img class="aligncenter size-full wp-image-1135" title="Quick-JPEG-Resize-and-Crop" src="http://www.memo8.com/toolkits/wp-content/uploads/2011/09/Quick-JPEG-Resize-and-Crop.jpg" alt="Quick-JPEG-Resize-and-Crop" width="540" height="488" /></a></p>
<p style="text-align: left;">ตัวโปแกรมติดตั้งง่าย Support Windows XP/Vista/7 หน้าจอทำงานมีหน้าต่างเดียว วิธีใช้งานเลือกไฟล์รูปจากเมนู File &gt; Open หรือ จะลากไฟล์รูปมาใส่ในโปรแกรมเลยก็ได้ครับ ส่วนการใช้งานไม่ขออธิบายแล้วกันครับ เพราะหน้าตาโปรแกรมไม่มีอะไรมาก ลองใช้ดูครับกับโปรแกรมฟรีเล็กที่ชื่อ &#8220;Quick JPEG Resize and Crop&#8221;</p>
<p style="text-align: left;">Download : <a title="Quick JPEG Resize and Crop" href="http://download.cnet.com/Quick-JPEG-Resize-and-Crop/3000-2192_4-10821232.html" target="_blank">http://download.cnet.com/Quick-JPEG-Resize-and-Crop/3000-2192_4-10821232.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.memo8.com/toolkits/archives/1133/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>จัดกลุ่ม Icon บน Desktop ให้เป็นระเบียบด้วย Fences</title>
		<link>http://www.memo8.com/toolkits/archives/1122</link>
		<comments>http://www.memo8.com/toolkits/archives/1122#comments</comments>
		<pubDate>Mon, 05 Sep 2011 09:52:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[FreeDownload]]></category>

		<guid isPermaLink="false">http://www.memo8.com/toolkits/?p=1122</guid>
		<description><![CDATA[
Fences เป็นโปรแกรมที่มีทั้งเวอร์ชั่นฟรีและโปร แต่เราใช้ตัวฟรีก็ช่วยให้ชีวิตเราดีขึ้นมากแล้ว Fences เหมาะมากกับคนที่มี Icon หรือ Shortcut วางไว้บน Desktop พอสมควร ขั้นตอน Install เหมือนโปรแกรมทั่วไปไม่ขออธิบายอย่างเคย มาดูการใช้งานเบื้องต้นครับ




 วิธีสร้างกลุ่มพื้นที่ ให้คลิกขวาค้างแล้วลากไปในพื้นที่ว่างบน desktop จะมีเมนูแสดงขึ้นมา &#8220;Create new Fences  here&#8221; ตั้งชื่อและกด ok
วิธีย้ายกลุ่มพื้นที่ ให้นำเมาส์ไปวางบนชื่อกลุ่มแล้วคลิกซ้ายค้างลากเพื่อเคลื่อนย้าย
วิธีปรับขนาดกลุ่มพื้นที่ ให้นำเมาส์ไปวางไว้ที่ขอบของพื้นที่แล้วคลิกซ้ายค้างลากเพื่อเพิ่มลดขนาด
วิธีเปลี่ยนชื่อหรือลบกลุ่มพื้นที่ ให้คลิกขวาก็จะมีเมนูลัดแสดงออกมาใช้ชื่อว่า Rename Fences  และ Remove Fences

ด้านบนเป็นวิธีใช้งานเบื้องต้นยังมี options ต่างๆอีกสำหรับเวอร์ชั่นฟรีเช่นปรับความโปร่งใส หรืออื่นๆ ตรงนี้ลองไปใช้ดูครับ ผมใช้แล้วรู้สึกชอบมากสำหรับโปรแกรมนี้
Download : http://www.stardock.com/products/fences/

]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">
<p style="text-align: left;">Fences เป็นโปรแกรมที่มีทั้งเวอร์ชั่นฟรีและโปร แต่เราใช้ตัวฟรีก็ช่วยให้ชีวิตเราดีขึ้นมากแล้ว Fences เหมาะมากกับคนที่มี Icon หรือ Shortcut วางไว้บน Desktop พอสมควร ขั้นตอน Install เหมือนโปรแกรมทั่วไปไม่ขออธิบายอย่างเคย มาดูการใช้งานเบื้องต้นครับ<span id="more-1122"></span></p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="../wp-content/uploads/2011/09/fences.jpg" rel="lightbox"><img title="fences" src="../wp-content/uploads/2011/09/fences-300x226.jpg" alt="fences" width="300" height="226" /></a></p>
<p style="text-align: left;">
<ul style="text-align: left;">
<li> <span style="text-decoration: underline;">วิธีสร้างกลุ่ม</span><span style="text-decoration: underline;">พื้นที่</span> ให้คลิกขวาค้างแล้วลากไปในพื้นที่ว่างบน desktop จะมีเมนูแสดงขึ้นมา &#8220;Create new Fences  here&#8221; ตั้งชื่อและกด ok</li>
<li><span style="text-decoration: underline;">วิธีย้ายกลุ่ม</span><span style="text-decoration: underline;">พื้นที่</span> ให้นำเมาส์ไปวางบนชื่อกลุ่มแล้วคลิกซ้ายค้างลากเพื่อเคลื่อนย้าย</li>
<li><span style="text-decoration: underline;">วิธีปรับขนาดกลุ่มพื้นที่</span> ให้นำเมาส์ไปวางไว้ที่ขอบของพื้นที่แล้วคลิกซ้ายค้างลากเพื่อเพิ่มลดขนาด</li>
<li><span style="text-decoration: underline;">วิธีเปลี่ยนชื่อหรือลบกลุ่มพื้นที่</span> ให้คลิกขวาก็จะมีเมนูลัดแสดงออกมาใช้ชื่อว่า Rename Fences  และ Remove Fences</li>
</ul>
<p style="text-align: left;">ด้านบนเป็นวิธีใช้งานเบื้องต้นยังมี options ต่างๆอีกสำหรับเวอร์ชั่นฟรีเช่นปรับความโปร่งใส หรืออื่นๆ ตรงนี้ลองไปใช้ดูครับ ผมใช้แล้วรู้สึกชอบมากสำหรับโปรแกรมนี้</p>
<p style="text-align: left;"><strong>Download : </strong><a href="http://www.stardock.com/products/fences/" target="_blank">http://www.stardock.com/products/fences/</a></p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://www.memo8.com/toolkits/archives/1122/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>คำสั่งทดสอบส่ง Email บน Linux อย่างง่าย</title>
		<link>http://www.memo8.com/toolkits/archives/1115</link>
		<comments>http://www.memo8.com/toolkits/archives/1115#comments</comments>
		<pubDate>Tue, 14 Jun 2011 05:54:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.memo8.com/toolkits/?p=1115</guid>
		<description><![CDATA[พิมพ์คำสั่งด้านล่าง กดปุ่ม Enter &#62;&#62; Control+D (ระบุ Cc จะกรอกหรือไม่ก็ได้) &#62;&#62; กดปุ่ม Enter อีกครั้ง
mail -s “Hello Test Email” yourname@yourdomain.com
]]></description>
			<content:encoded><![CDATA[<p>พิมพ์คำสั่งด้านล่าง กดปุ่ม Enter &gt;&gt; Control+D (ระบุ Cc จะกรอกหรือไม่ก็ได้) &gt;&gt; กดปุ่ม Enter อีกครั้ง<span id="more-1115"></span></p>
<div class="code">mail -s “Hello Test Email” yourname@yourdomain.com</div>
]]></content:encoded>
			<wfw:commentRss>http://www.memo8.com/toolkits/archives/1115/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>วิธีทดสอบความเร็วของฮาร์ดดิสก์ด้วยคำสั่ง dd บน Linux</title>
		<link>http://www.memo8.com/toolkits/archives/1110</link>
		<comments>http://www.memo8.com/toolkits/archives/1110#comments</comments>
		<pubDate>Tue, 14 Jun 2011 05:37:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.memo8.com/toolkits/?p=1110</guid>
		<description><![CDATA[วิธีทดสอบความเร็วในการอ่าน/การเขียนไฟล์ขนาด  1GByte (bs=1000000) / bytes ของฮาร์ดดิสก์ด้วยคำสั่ง dd บน Linux

ทดสอบความเร็วในการเขียนไฟล์ขนาด 1GByte
[root@linux ~]# dd if=/dev/zero of=filetest.bin bs=1000000 count=1000
1000+0 records in
1000+0 records out
1000000000 bytes (1.0 GB) copied, 9.14284 seconds, 109 MB/s
ทดสอบความเร็วในการอ่านไฟล์ขนาด 1GByte
[root@linux ~]# dd if=filetest.bin of=/dev/zero bs=1000000 count=1000
1000+0 records in
1000+0 records out
1000000000 bytes (1.0 GB) copied, 1.31867 seconds, 758 MB/s
]]></description>
			<content:encoded><![CDATA[<p>วิธีทดสอบความเร็วในการอ่าน/การเขียนไฟล์ขนาด  1GByte (bs=1000000) / bytes ของฮาร์ดดิสก์ด้วยคำสั่ง dd บน Linux</p>
<p><span id="more-1110"></span></p>
<p><strong>ทดสอบความเร็วในการเขียนไฟล์ขนาด 1GByte</strong></p>
<div class="code">[root@linux ~]# dd if=/dev/zero of=filetest.bin bs=1000000 count=1000<br />
1000+0 records in<br />
1000+0 records out<br />
1000000000 bytes (1.0 GB) copied, 9.14284 seconds, 109 MB/s</div>
<p><strong>ทดสอบความเร็วในการอ่านไฟล์ขนาด 1GByte</strong></p>
<div class="code">[root@linux ~]# dd if=filetest.bin of=/dev/zero bs=1000000 count=1000<br />
1000+0 records in<br />
1000+0 records out<br />
1000000000 bytes (1.0 GB) copied, 1.31867 seconds, 758 MB/s</div>
]]></content:encoded>
			<wfw:commentRss>http://www.memo8.com/toolkits/archives/1110/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

