<?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>หมุน Archives - KarnLab</title>
	<atom:link href="https://karnlab.com/tag/%e0%b8%ab%e0%b8%a1%e0%b8%b8%e0%b8%99/feed/" rel="self" type="application/rss+xml" />
	<link>https://karnlab.com/tag/หมุน/</link>
	<description>Blog รีวิว หนังสือ เขียนโปรแกรม นานาสาระ</description>
	<lastBuildDate>Mon, 01 Oct 2018 11:50:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.1</generator>

<image>
	<url>https://karnlab.com/wp-content/uploads/2017/12/Logo-150x150.png</url>
	<title>หมุน Archives - KarnLab</title>
	<link>https://karnlab.com/tag/หมุน/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>วาดรูปด้วยภาษาโลโก้ : ตอนที่ 13 – หมุนหมุน</title>
		<link>https://karnlab.com/logo-tutorial-ep13-spinning/</link>
					<comments>https://karnlab.com/logo-tutorial-ep13-spinning/#respond</comments>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Fri, 10 Aug 2018 16:06:21 +0000</pubDate>
				<category><![CDATA[สอนเขียนโปรแกรม]]></category>
		<category><![CDATA[LOGO]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ภาษาโลโก้]]></category>
		<category><![CDATA[วาดรูป]]></category>
		<category><![CDATA[หมุน]]></category>
		<category><![CDATA[เขียนโปรแกรม]]></category>
		<guid isPermaLink="false">http://karnlab.com/?p=1155</guid>

					<description><![CDATA[<p>ในตอนนี้เราจะมาเรียนรู้เทคนิคการวาดรูปแบบหนึ่ง นั่นคือ การหมุน โดยเราจะวาดรูปเรขาคณิตพื้นฐาน จากนั้นหมุนเต่าโลโก้ แล้ววาดรูปนั้นอีกครั้ง ทำเช่นนี้ไปเรื่อยๆ เราจะได้รูปภาพใหม่ที่น่าสนใจครับ คำสั่งที่น้องๆ จะเจอในบทนี้ คำสั่ง ความสามารถ ตัวอย่าง fd ระยะทาง bk ระยะทาง forward = เดินหน้า [&#8230;]</p>
<p>The post <a href="https://karnlab.com/logo-tutorial-ep13-spinning/">วาดรูปด้วยภาษาโลโก้ : ตอนที่ 13 – หมุนหมุน</a> appeared first on <a href="https://karnlab.com">KarnLab</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>ในตอนนี้เราจะมาเรียนรู้เทคนิคการวาดรูปแบบหนึ่ง นั่นคือ การหมุน โดยเราจะวาดรูปเรขาคณิตพื้นฐาน จากนั้นหมุนเต่าโลโก้ แล้ววาดรูปนั้นอีกครั้ง ทำเช่นนี้ไปเรื่อยๆ เราจะได้รูปภาพใหม่ที่น่าสนใจครับ</p>
<p>คำสั่งที่น้องๆ จะเจอในบทนี้</p>
<table>
<tbody>
<tr>
<td width="198"><strong>คำสั่ง</strong></td>
<td width="227"><strong>ความสามารถ</strong></td>
<td width="227"><strong>ตัวอย่าง</strong></td>
</tr>
<tr>
<td width="198">fd ระยะทาง<br />
bk ระยะทาง</td>
<td width="227">forward = เดินหน้า<br />
backward = ถอยหลัง</td>
<td width="227">fd 100 = เดินหน้า 100 pixel<br />
bk 50 = ถอยหลัง 50 pixel</td>
</tr>
<tr>
<td width="198">rt องศา<br />
lt องศา</td>
<td width="227">right turn = หมุนขวา<br />
left turn = หมุนซ้าย</td>
<td width="227">rt 90 = หมุนไปทางขวา 90 องศา<br />
lt 45 = หมุนไปทางซ้าย 45 องศา</td>
</tr>
<tr>
<td width="198">repeat จำนวนครั้ง [ คำสั่ง ]</td>
<td width="227">repeat = ทำคำสั่งต่อไปนี้ ซ้ำ n ครั้ง</td>
<td width="227">repeat 3 [ fd 100 rt 120 ]<br />
repeat 4 [ fd 100 rt 90 ]<br />
repeat 6 [ fd 100 rt 60 ]</td>
</tr>
<tr>
<td width="198">TO ชื่อฟังก์ชัน :ตัวแปร<br />
คำสั่ง<br />
END</td>
<td width="227">function = สร้างชุดคำสั่ง</td>
<td width="227">TO square :size<br />
repeat 4 [ fd :size rt 90 ]<br />
END</td>
</tr>
<tr>
<td width="198">cs<br />
clean</td>
<td width="227">clear screen = ล้างหน้าจอ<br />
clean = ล้างหน้าจอ</td>
<td width="227"></td>
</tr>
<tr>
<td width="198">pu<br />
pd</td>
<td width="227">pen up = ยกปากกา<br />
pen down = วางปากกา</td>
<td width="227"></td>
</tr>
<tr>
<td width="198">ht<br />
st</td>
<td width="227">hide turtle = ซ่อนเต่าโลโก้<br />
show turtle = แสดงเต่าโลโก้</td>
<td width="227"></td>
</tr>
<tr>
<td width="198">setxy พิกัดx พิกัดy</td>
<td width="227">set (x,y) = กำหนดตำแหน่งเต่าโลโก้</td>
<td width="227">setxy 200 100</td>
</tr>
<tr>
<td width="198">setpensize ขนาด<br />
setpencolor รหัสสี<br />
fill<br />
setscreencolor รหัสสี</td>
<td width="227">set pen size = กำหนดขนาดปากกา<br />
set pen color = กำหนดสีปากกา<br />
fill = ระบายสี<br />
set screen color = กำหนดสีพื้นหลัง</td>
<td width="227">setpensize 5<br />
setpencolor 10<br />
fill<br />
setscreencolor 10</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>เริ่มต้นด้วยการหมุนเส้นตรงรูปแบบต่างๆ เราจะได้รูปดอกไม้ไฟที่น่าสนใจครับ</p>
<p>โปรแกรมที่ 13-1</p>
<figure id="attachment_1144" aria-describedby="caption-attachment-1144" style="width: 941px" class="wp-caption alignleft"><img fetchpriority="high" decoding="async" class="size-full wp-image-1144" src="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Line-1.png" alt="LOGO EP13 - Spinning Line 1" width="941" height="445" srcset="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Line-1.png 941w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Line-1-300x142.png 300w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Line-1-768x363.png 768w" sizes="(max-width: 941px) 100vw, 941px" /><figcaption id="caption-attachment-1144" class="wp-caption-text">LOGO EP13 &#8211; Spinning Line 1</figcaption></figure>
<table>
<tbody>
<tr>
<td width="387">TO setup<br />
cs ht<br />
setscreencolor &#8220;#212121<br />
setpencolor &#8220;#EF9A9A<br />
setpensize 5<br />
END</p>
<p>TO line_1<br />
fd 200 bk 200<br />
END</p>
<p>setup<br />
repeat 18 [ line_1 rt 20 ]</td>
</tr>
</tbody>
</table>
<p>อธิบายการทำงานของโปรแกรม</p>
<ul>
<li>ฟังก์ชัน setup ใช้สำหรับกำหนดสีของพื้นหลัง สีของปากกา และขนาดของปากกา</li>
<li>ฟังก์ชัน line_1 ใช้สำหรับวาดเส้นตรง</li>
<li>repeat 18 [ line_1 rt 20 ] คือ การวาดเส้น แล้วหมุนขวา 20 องศา ทำแบบนี้ทั้งหมด 18 ครั้ง</li>
</ul>
<p>&nbsp;</p>
<p>โปรแกรมที่ 13-2</p>
<figure id="attachment_1145" aria-describedby="caption-attachment-1145" style="width: 943px" class="wp-caption alignleft"><img decoding="async" class="size-full wp-image-1145" src="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Line-2.png" alt="LOGO EP13 - Spinning Line 2" width="943" height="443" srcset="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Line-2.png 943w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Line-2-300x141.png 300w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Line-2-768x361.png 768w" sizes="(max-width: 943px) 100vw, 943px" /><figcaption id="caption-attachment-1145" class="wp-caption-text">LOGO EP13 &#8211; Spinning Line 2</figcaption></figure>
<table>
<tbody>
<tr>
<td width="387">TO setup<br />
cs ht<br />
setscreencolor &#8220;#212121<br />
setpencolor &#8220;#CE93D8<br />
setpensize 5<br />
END</p>
<p>TO line_2<br />
pu fd 100 pd fd 100<br />
pu bk 200 pd<br />
END</p>
<p>setup<br />
repeat 36 [ line_2 rt 10 ]</td>
</tr>
</tbody>
</table>
<p>อธิบายการทำงานของโปรแกรม</p>
<ul>
<li>ฟังก์ชัน setup ใช้สำหรับกำหนดสีของพื้นหลัง สีของปากกา และขนาดของปากกา</li>
<li>ฟังก์ชัน line_2 ใช้สำหรับวาดเส้นตรง</li>
<li>repeat 36 [ line_2 rt 10 ] คือ การวาดเส้น แล้วหมุนขวา 10 องศา ทำแบบนี้ทั้งหมด 36 ครั้ง</li>
</ul>
<p>&nbsp;</p>
<p>โปรแกรมที่ 13-3</p>
<figure id="attachment_1146" aria-describedby="caption-attachment-1146" style="width: 944px" class="wp-caption alignleft"><img decoding="async" class="size-full wp-image-1146" src="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Line-3.png" alt="LOGO EP13 - Spinning Line 3" width="944" height="445" srcset="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Line-3.png 944w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Line-3-300x141.png 300w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Line-3-768x362.png 768w" sizes="(max-width: 944px) 100vw, 944px" /><figcaption id="caption-attachment-1146" class="wp-caption-text">LOGO EP13 &#8211; Spinning Line 3</figcaption></figure>
<table>
<tbody>
<tr>
<td width="387">TO setup<br />
cs ht<br />
setscreencolor &#8220;#212121<br />
setpencolor &#8220;#9FA8DA<br />
setpensize 5<br />
END</p>
<p>TO line_3<br />
pu fd 50 pd fd 50<br />
pu fd 50 pd fd 50<br />
pu bk 200 pd<br />
END</p>
<p>setup<br />
repeat 72 [ line_3 rt 5 ]</td>
</tr>
</tbody>
</table>
<p>อธิบายการทำงานของโปรแกรม</p>
<ul>
<li>ฟังก์ชัน setup ใช้สำหรับกำหนดสีของพื้นหลัง สีของปากกา และขนาดของปากกา</li>
<li>ฟังก์ชัน line_3 ใช้สำหรับวาดเส้นตรง</li>
<li>repeat 72 [ line_3 rt 5 ] คือ การวาดเส้น แล้วหมุนขวา 5 องศา ทำแบบนี้ทั้งหมด 72 ครั้ง</li>
</ul>
<p>&nbsp;</p>
<p>ถ้าเราสังเกตคำสั่งดังต่อไปนี้ให้ดี</p>
<ul>
<li>repeat 18 [ line_1 rt 20 ]</li>
<li>repeat 36 [ line_2 rt 10 ]</li>
<li>repeat 72 [ line_3 rt 5 ]</li>
</ul>
<p>เราจะพบว่าการหมุนให้ครบ 1 รอบ มีหลักการง่ายๆ คือ จำนวนครั้ง x องศาที่หมุน = 360 องศา</p>
<ul>
<li>18 x 20 = 360</li>
<li>36 x 10 = 360</li>
<li>72 x 5 = 360</li>
</ul>
<p>&nbsp;</p>
<p>จากนั้นเรามาลองหมุนภาพเรขาคณิต เราจะได้รูปทรงที่น่าสนใจครับ</p>
<p>โปรแกรมที่ 13-5</p>
<figure id="attachment_1149" aria-describedby="caption-attachment-1149" style="width: 941px" class="wp-caption alignleft"><img loading="lazy" decoding="async" class="size-full wp-image-1149" src="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Square.png" alt="LOGO EP13 - Spinning Square" width="941" height="445" srcset="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Square.png 941w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Square-300x142.png 300w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Square-768x363.png 768w" sizes="auto, (max-width: 941px) 100vw, 941px" /><figcaption id="caption-attachment-1149" class="wp-caption-text">LOGO EP13 &#8211; Spinning Square</figcaption></figure>
<table>
<tbody>
<tr>
<td width="387">TO setup<br />
cs ht<br />
setscreencolor &#8220;#F5F5F5<br />
setpencolor &#8220;#009688<br />
setpensize 5<br />
END</p>
<p>TO square<br />
repeat 4 [ fd 150 rt 90 ]<br />
END</p>
<p>setup<br />
repeat 18 [ square rt 20 ]</td>
</tr>
</tbody>
</table>
<p>อธิบายการทำงานของโปรแกรม</p>
<ul>
<li>ฟังก์ชัน setup ใช้สำหรับกำหนดสีของพื้นหลัง สีของปากกา และขนาดของปากกา</li>
<li>ฟังก์ชัน square ใช้สำหรับวาดสี่เหลี่ยมจัตุรัส</li>
<li>repeat 18 [ square rt 20 ] คือ วาดสี่เหลี่ยมจัตุรัส แล้วหมุนขวา 20 องศา ทำแบบนี้ทั้งหมด 18 ครั้ง</li>
</ul>
<p>&nbsp;</p>
<p>โปรแกรมที่ 13-6</p>
<figure id="attachment_1143" aria-describedby="caption-attachment-1143" style="width: 939px" class="wp-caption alignleft"><img loading="lazy" decoding="async" class="size-full wp-image-1143" src="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Hexagon.png" alt="LOGO EP13 - Spinning Hexagon" width="939" height="441" srcset="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Hexagon.png 939w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Hexagon-300x141.png 300w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Hexagon-768x361.png 768w" sizes="auto, (max-width: 939px) 100vw, 939px" /><figcaption id="caption-attachment-1143" class="wp-caption-text">LOGO EP13 &#8211; Spinning Hexagon</figcaption></figure>
<table>
<tbody>
<tr>
<td width="387">TO setup<br />
cs ht<br />
setscreencolor &#8220;#F5F5F5<br />
setpencolor &#8220;#8BC34A<br />
setpensize 5<br />
END</p>
<p>TO hexagon<br />
repeat 6 [ fd 100 rt 60 ]<br />
END</p>
<p>setup<br />
repeat 18 [ hexagon rt 20 ]</td>
</tr>
</tbody>
</table>
<p>อธิบายการทำงานของโปรแกรม</p>
<ul>
<li>ฟังก์ชัน setup ใช้สำหรับกำหนดสีของพื้นหลัง สีของปากกา และขนาดของปากกา</li>
<li>ฟังก์ชัน hexagon ใช้สำหรับวาดหกเหลี่ยม</li>
<li>repeat 18 [ hexagon rt 20 ] คือ วาดหกเหลี่ยม แล้วหมุนขวา 20 องศา ทำแบบนี้ทั้งหมด 18 ครั้ง</li>
</ul>
<p>&nbsp;</p>
<p>โปรแกรมที่ 13-7</p>
<figure id="attachment_1147" aria-describedby="caption-attachment-1147" style="width: 941px" class="wp-caption alignleft"><img loading="lazy" decoding="async" class="size-full wp-image-1147" src="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Octagon.png" alt="LOGO EP13 - Spinning Octagon" width="941" height="442" srcset="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Octagon.png 941w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Octagon-300x141.png 300w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Octagon-768x361.png 768w" sizes="auto, (max-width: 941px) 100vw, 941px" /><figcaption id="caption-attachment-1147" class="wp-caption-text">LOGO EP13 &#8211; Spinning Octagon</figcaption></figure>
<table>
<tbody>
<tr>
<td width="387">TO setup<br />
cs ht<br />
setscreencolor &#8220;#F5F5F5<br />
setpencolor &#8220;#FFEB3B<br />
setpensize 5<br />
END</p>
<p>TO octagon<br />
repeat 8 [ fd 75 rt 45 ]<br />
END</p>
<p>setup<br />
repeat 18 [ octagon rt 20 ]</td>
</tr>
</tbody>
</table>
<p>อธิบายการทำงานของโปรแกรม</p>
<ul>
<li>ฟังก์ชัน setup ใช้สำหรับกำหนดสีของพื้นหลัง สีของปากกา และขนาดของปากกา</li>
<li>ฟังก์ชัน octagon ใช้สำหรับวาดแปดเหลี่ยม</li>
<li>repeat 18 [ octagon rt 20 ] คือ วาดแปดเหลี่ยม แล้วหมุนขวา 20 องศา ทำแบบนี้ทั้งหมด 18 ครั้ง</li>
</ul>
<p>&nbsp;</p>
<p>โปรแกรมที่ 13-8</p>
<figure id="attachment_1148" aria-describedby="caption-attachment-1148" style="width: 942px" class="wp-caption alignleft"><img loading="lazy" decoding="async" class="size-full wp-image-1148" src="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Polygon.png" alt="LOGO EP13 - Spinning Polygon" width="942" height="446" srcset="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Polygon.png 942w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Polygon-300x142.png 300w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Polygon-768x364.png 768w" sizes="auto, (max-width: 942px) 100vw, 942px" /><figcaption id="caption-attachment-1148" class="wp-caption-text">LOGO EP13 &#8211; Spinning Polygon</figcaption></figure>
<table>
<tbody>
<tr>
<td width="387">TO setup<br />
cs ht<br />
setscreencolor &#8220;#F5F5F5<br />
setpencolor &#8220;#FF9800<br />
setpensize 5<br />
END</p>
<p>TO polygon<br />
repeat 12 [ fd 50 rt 30 ]<br />
END</p>
<p>setup<br />
repeat 18 [ polygon rt 20 ]</td>
</tr>
</tbody>
</table>
<p>อธิบายการทำงานของโปรแกรม</p>
<ul>
<li>ฟังก์ชัน setup ใช้สำหรับกำหนดสีของพื้นหลัง สีของปากกา และขนาดของปากกา</li>
<li>ฟังก์ชัน polygon ใช้สำหรับวาดสิบสองเหลี่ยม</li>
<li>repeat 18 [ polygon rt 20 ] คือ วาดสิบสองเหลี่ยม แล้วหมุนขวา 20 องศา ทำแบบนี้ทั้งหมด 18 ครั้ง</li>
</ul>
<p>&nbsp;</p>
<p>โปรแกรมที่ 13-9</p>
<figure id="attachment_1142" aria-describedby="caption-attachment-1142" style="width: 942px" class="wp-caption alignleft"><img loading="lazy" decoding="async" class="size-full wp-image-1142" src="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Circle.png" alt="LOGO EP13 - Spinning Circle" width="942" height="443" srcset="https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Circle.png 942w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Circle-300x141.png 300w, https://karnlab.com/wp-content/uploads/2018/08/LOGO-EP13-Spinning-Circle-768x361.png 768w" sizes="auto, (max-width: 942px) 100vw, 942px" /><figcaption id="caption-attachment-1142" class="wp-caption-text">LOGO EP13 &#8211; Spinning Circle</figcaption></figure>
<table>
<tbody>
<tr>
<td width="387">TO setup<br />
cs ht<br />
setscreencolor &#8220;#F5F5F5<br />
setpencolor &#8220;#795548<br />
setpensize 5<br />
END</p>
<p>TO circle<br />
repeat 360 [ fd 1.5 rt 1 ]<br />
END</p>
<p>setup<br />
repeat 18 [ circle rt 20 ]</td>
</tr>
</tbody>
</table>
<p>อธิบายการทำงานของโปรแกรม</p>
<ul>
<li>ฟังก์ชัน setup ใช้สำหรับกำหนดสีของพื้นหลัง สีของปากกา และขนาดของปากกา</li>
<li>ฟังก์ชัน circle ใช้สำหรับวาดวงกลม</li>
<li>repeat 18 [ circle rt 20 ] คือ วาดวงกลม แล้วหมุนขวา 20 องศา ทำแบบนี้ทั้งหมด 18 ครั้ง</li>
</ul>
<p>&nbsp;</p>
<p>และนี่คือเรื่องราวของเทคนิคการวาดรูปจากหมุนที่นำมาฝากกันในวันนี้ครับ สามารถติดตามตอนต่อไปได้ที่นี่ครับ <a href="https://karnlab.com/tag/ภาษาโลโก้">https://karnlab.com/tag/ภาษาโลโก้</a></p>
<p>&nbsp;</p>
<p>The post <a href="https://karnlab.com/logo-tutorial-ep13-spinning/">วาดรูปด้วยภาษาโลโก้ : ตอนที่ 13 – หมุนหมุน</a> appeared first on <a href="https://karnlab.com">KarnLab</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://karnlab.com/logo-tutorial-ep13-spinning/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 

Served from: karnlab.com @ 2026-07-12 04:21:55 by W3 Total Cache
-->