<?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>WheeQo.web.id &#187; Design</title>
	<atom:link href="http://wheeqo.web.id/category/design/feed" rel="self" type="application/rss+xml" />
	<link>http://wheeqo.web.id</link>
	<description>Sharing Knowledge to the World</description>
	<lastBuildDate>Sat, 17 Jul 2010 14:12:37 +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>Non-System Web Font with HTML5 @font-face Syntax</title>
		<link>http://wheeqo.web.id/tutorial/non-system-web-font-with-html5-font-face-syntax</link>
		<comments>http://wheeqo.web.id/tutorial/non-system-web-font-with-html5-font-face-syntax#comments</comments>
		<pubDate>Sat, 03 Jul 2010 03:14:01 +0000</pubDate>
		<dc:creator>R. Bambang Widiatmoko</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[@font-face]]></category>
		<category><![CDATA[eot]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[otf]]></category>
		<category><![CDATA[ttf]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[yikes]]></category>

		<guid isPermaLink="false">http://wheeqo.web.id/?p=455</guid>
		<description><![CDATA[In this post I just want to try the new feature of HTML5 that is non-system web font support, to be used in my blog which is using WordPress. Well I&#8217;ve read some reference to implement this feature which will use @font-face syntax. You can read: Bulletproof @font-face syntax article for the tutorial and @font-face [...]


Related posts:<ol><li><a href='http://wheeqo.web.id/tutorial/insert-facebook-like-button-to-wordpress' rel='bookmark' title='Permanent Link: Insert Facebook Like Button to WordPress'>Insert Facebook Like Button to WordPress</a> <small>Taken from Cordobo.com, Integrate Facebook’s “Like” Plugin into WordPress. The...</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>In this post I just want to try the new feature of HTML5 that is non-system web font support, to be used in my blog which is using <a href="http://wheeqo.web.id/category/wordpress">WordPress</a>. Well I&#8217;ve read some reference to implement this feature which will use <strong>@font-face</strong> syntax. You can read:<br />
<a href="http://paulirish.com/2009/bulletproof-font-face-implementation-syntax/">Bulletproof @font-face syntax</a> article for the tutorial and <a href="http://www.fontsquirrel.com/fontface/generator">@font-face Generator</a> which will generate files like .eot (used by Internet Explorer to support css @font-face declarations), .svg, .html, and .css; so that you can learn @font-face syntax from those files. For converter .ttf or .otf to .eot you can use <a href="http://code.google.com/p/ttf2eot/">application to convert TTF files to EOT</a>. Don&#8217;t forget to read the <a href="http://code.google.com/p/ttf2eot/wiki/Demo">wiki how to use the application</a>.</p>
<p>I will show short tutorial how to implement @font-face syntax. Prepare <strong>.ttf</strong> or <strong>.otf</strong> font and <strong>.eot</strong> file. Upload it to folder of your template where there is css file. For the example I use <a href="http://www.dafont.com/yikes.font">Yikes font</a>.</p>
<p>Edit css and insert this code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">@</span>font<span style="color: #339933;">-</span>face <span style="color: #009900;">&#123;</span>
	font<span style="color: #339933;">-</span>family<span style="color: #339933;">:</span> <span style="color: #0000ff;">'Yikes'</span><span style="color: #339933;">;</span>
	src<span style="color: #339933;">:</span> url<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'yikes.eot'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	src<span style="color: #339933;">:</span> local<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'☺'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> url<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'yikes.ttf'</span><span style="color: #009900;">&#41;</span> format<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'truetype'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	font<span style="color: #339933;">-</span>weight<span style="color: #339933;">:</span> normal<span style="color: #339933;">;</span>
	font<span style="color: #339933;">-</span>style<span style="color: #339933;">:</span> normal<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #339933;">.</span>yikes1 <span style="color: #009900;">&#123;</span>font<span style="color: #339933;">:</span> 2em <span style="color: #0000ff;">'Yikes'</span><span style="color: #339933;">,</span> Arial<span style="color: #339933;">,</span> sans<span style="color: #339933;">-</span>serif<span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span></pre></div></div>

<p>If you use wordpress change to HTML mode when create new post, then insert this code (for example):</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>p <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;yikes1&quot;</span><span style="color: #339933;">&gt;</span>R<span style="color: #339933;">.</span> Bambang Widiatmoko<span style="color: #339933;">&lt;</span>br <span style="color: #339933;">/&gt;</span>Featuring Yikes font<span style="color: #339933;">&lt;/</span>p<span style="color: #339933;">&gt;</span></pre></div></div>

<p>And here is the result:</p>
<p class="yikes1">R. Bambang Widiatmoko<br />Featuring Yikes font</p>
<p>Try to select the text ^^</p>


<p>Related posts:<ol><li><a href='http://wheeqo.web.id/tutorial/insert-facebook-like-button-to-wordpress' rel='bookmark' title='Permanent Link: Insert Facebook Like Button to WordPress'>Insert Facebook Like Button to WordPress</a> <small>Taken from Cordobo.com, Integrate Facebook’s “Like” Plugin into WordPress. The...</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><p><a href="http://wheeqo.web.id/tutorial/non-system-web-font-with-html5-font-face-syntax" rel="bookmark">Non-System Web Font with HTML5 @font-face Syntax</a> was originally appeared on <a href="http://wheeqo.web.id">WheeQo.web.id</a>  posted by R. Bambang Widiatmoko on 3 July 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://wheeqo.web.id/tutorial/non-system-web-font-with-html5-font-face-syntax/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Perbandingan Font untuk Menulis Arab</title>
		<link>http://wheeqo.web.id/islam/perbandingan-font-untuk-menulis-arab</link>
		<comments>http://wheeqo.web.id/islam/perbandingan-font-untuk-menulis-arab#comments</comments>
		<pubDate>Mon, 28 Jun 2010 08:35:51 +0000</pubDate>
		<dc:creator>R. Bambang Widiatmoko</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Islam]]></category>
		<category><![CDATA[arab]]></category>
		<category><![CDATA[arabic typesetting]]></category>
		<category><![CDATA[compare]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[html 5]]></category>
		<category><![CDATA[sifr]]></category>
		<category><![CDATA[traditional arabic]]></category>

		<guid isPermaLink="false">http://wheeqo.web.id/?p=436</guid>
		<description><![CDATA[Bila Anda sering menulis atau mendesain dengan tulisan Arab di komputer, ada baiknya untuk memperhatikan font yang digunakan agar pembaca tidak kesulitan dan mengurangi kesalahan membaca tulisan Arab tersebut. Berikut contoh tulisan arab dari al-Quran surat al-Fatihah ayat 7 menggunakan empat font yang berbeda, Arial, Traditional Arabic, Arabic Typesetting, dan Andalus klik untuk perbesar gambar [...]


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>Bila Anda sering menulis atau mendesain dengan tulisan Arab di komputer, ada baiknya untuk memperhatikan font yang digunakan agar pembaca tidak kesulitan dan mengurangi kesalahan membaca tulisan Arab tersebut. Berikut contoh tulisan arab dari al-Quran surat al-Fatihah ayat 7 menggunakan empat font yang berbeda, Arial, Traditional Arabic, Arabic Typesetting, dan Andalus<br />
<a href="http://i50.tinypic.com/dfu7fa.jpg"><img src="http://i50.tinypic.com/dfu7fa.jpg" alt="al-Fatihah surat 7 - empat font berbeda" /> </a><br />
<em>klik untuk perbesar gambar</em></p>
<p>Font arab Arial dengan Times New Roman tidak jauh berbeda. Menurut saya font Traditional Arabic dan Arabic Typesetting mempunyai tingkat kejelasan yang terbaik, perbedaannya kalau Arabic Typesetting terlihat lebih rapat. Namun untuk penggunaan tasydid dan kasroh, Arabic Typesetting terlihat lebih tepat peletakannya seperti mushaf saat ini.</p>
<p>Lalu bagaimana untuk penggunaan di web? <del datetime="2010-07-03T07:57:06+00:00">Untungnya font seperti Arabic Typesetting merupakan salah satu font standard web, jadi kita bisa menggunakan dalam coding desain web.</del> Contohnya sebagai berikut.<br />
Di file css:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">.</span>arab1 <span style="color: #009900;">&#123;</span>font<span style="color: #339933;">:</span> 3em Arabic Typesetting<span style="color: #339933;">,</span> Arial<span style="color: #339933;">,</span> sans<span style="color: #339933;">-</span>serif<span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span></pre></div></div>

<p>Lalu di file html:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>p <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;arab1&quot;</span><span style="color: #339933;">&gt;</span>صِرَاطَ الَّذِينَ أَنْعَمْتَ عَلَيْهِمْ غَيْرِ الْمَغْضُوبِ عَلَيْهِمْ وَلَا الضَّالِّينَ<span style="color: #339933;">&lt;/</span>p<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Tulisan arab bisa diedit di word lalu copas ke HTML editor. Contoh jadinya:</p>
<p class="arab1">صِرَاطَ الَّذِينَ أَنْعَمْتَ عَلَيْهِمْ غَيْرِ الْمَغْضُوبِ عَلَيْهِمْ وَلَا الضَّالِّينَ</p>
<p><strong>Update</strong>:<br />
Ternyata font Arabic Typesetting bukan font standard web jadi kalau dilihat di komputer yang tidak terinstall font tersebut, tulisan arabnya tidak seperti di screenshot. Jadi solusinya adalah dengan memanfaatkan <a href="http://wheeqo.web.id/tutorial/non-system-web-font-with-html5-font-face-syntax">fitur @font-face HTML5 (lihat tutorialnya)</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><p><a href="http://wheeqo.web.id/islam/perbandingan-font-untuk-menulis-arab" rel="bookmark">Perbandingan Font untuk Menulis Arab</a> was originally appeared on <a href="http://wheeqo.web.id">WheeQo.web.id</a>  posted by R. Bambang Widiatmoko on 28 June 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://wheeqo.web.id/islam/perbandingan-font-untuk-menulis-arab/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Islamic Wallpaper &#8211; al Qiyaamah</title>
		<link>http://wheeqo.web.id/islam/islamic-wallpaper-al-qiyaamah</link>
		<comments>http://wheeqo.web.id/islam/islamic-wallpaper-al-qiyaamah#comments</comments>
		<pubDate>Sat, 08 May 2010 14:57:40 +0000</pubDate>
		<dc:creator>R. Bambang Widiatmoko</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Islam]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[wallpaper]]></category>
		<category><![CDATA[islamic wallpaper]]></category>

		<guid isPermaLink="false">http://wheeqo.web.id/?p=403</guid>
		<description><![CDATA[Available in 1280&#215;800 Available in 1440&#215;900 Download all Islamic Wallpaper &#8211; al Qiyaamah You can see my other Islamic wallpaper Related posts:Islamic Wallpaper 6 &#8211; Sayyidul Istighfar Du&#8217;aa Sayyidul Istighfar &#8212; HR. al-Bukhari, kitab ad-Da&#8217;awaat, bab Maa... Islamic Wallpaper 2 1. Available in 1920&#215;1200, 1280&#215;800, 1024&#215;768 Download: HERE 2. Available... Islamic Wallpaper 3 1. Available [...]


Related posts:<ol><li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-6-sayyidul-istighfar' rel='bookmark' title='Permanent Link: Islamic Wallpaper 6 &#8211; Sayyidul Istighfar'>Islamic Wallpaper 6 &#8211; Sayyidul Istighfar</a> <small>Du&#8217;aa Sayyidul Istighfar &#8212; HR. al-Bukhari, kitab ad-Da&#8217;awaat, bab Maa...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-2' rel='bookmark' title='Permanent Link: Islamic Wallpaper 2'>Islamic Wallpaper 2</a> <small>1. Available in 1920&#215;1200, 1280&#215;800, 1024&#215;768 Download: HERE 2. Available...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-3' rel='bookmark' title='Permanent Link: Islamic Wallpaper 3'>Islamic Wallpaper 3</a> <small>1. Available in 1920×1200, 1280×800, 1024×768 Download: HERE Download in...</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><img src="http://i43.tinypic.com/8zfsoz.jpg" alt="al Qiyaamah coming soon 1280x800" /><br />
Available in 1280&#215;800</p>
<p><img src="http://i41.tinypic.com/do3u3s.jpg" alt="al Qiyaamah coming soon 1440x900" /><br />
Available in 1440&#215;900</p>
<p>Download all <a href="http://www.mediafire.com/file/wydovjqq5jw/IslamicWallpaper16.zip">Islamic Wallpaper &#8211; al Qiyaamah</a></p>
<p>You can see my other <a href="http://wheeqo.web.id/page/tag/islamic-wallpaper">Islamic wallpaper</a></p>


<p>Related posts:<ol><li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-6-sayyidul-istighfar' rel='bookmark' title='Permanent Link: Islamic Wallpaper 6 &#8211; Sayyidul Istighfar'>Islamic Wallpaper 6 &#8211; Sayyidul Istighfar</a> <small>Du&#8217;aa Sayyidul Istighfar &#8212; HR. al-Bukhari, kitab ad-Da&#8217;awaat, bab Maa...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-2' rel='bookmark' title='Permanent Link: Islamic Wallpaper 2'>Islamic Wallpaper 2</a> <small>1. Available in 1920&#215;1200, 1280&#215;800, 1024&#215;768 Download: HERE 2. Available...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-3' rel='bookmark' title='Permanent Link: Islamic Wallpaper 3'>Islamic Wallpaper 3</a> <small>1. Available in 1920×1200, 1280×800, 1024×768 Download: HERE Download in...</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><p><a href="http://wheeqo.web.id/islam/islamic-wallpaper-al-qiyaamah" rel="bookmark">Islamic Wallpaper &#8211; al Qiyaamah</a> was originally appeared on <a href="http://wheeqo.web.id">WheeQo.web.id</a>  posted by R. Bambang Widiatmoko on 8 May 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://wheeqo.web.id/islam/islamic-wallpaper-al-qiyaamah/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Insert Facebook Like Button to WordPress</title>
		<link>http://wheeqo.web.id/tutorial/insert-facebook-like-button-to-wordpress</link>
		<comments>http://wheeqo.web.id/tutorial/insert-facebook-like-button-to-wordpress#comments</comments>
		<pubDate>Sat, 24 Apr 2010 01:17:04 +0000</pubDate>
		<dc:creator>R. Bambang Widiatmoko</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[like button]]></category>

		<guid isPermaLink="false">http://wheeqo.web.id/?p=387</guid>
		<description><![CDATA[Taken from Cordobo.com, Integrate Facebook’s “Like” Plugin into WordPress. The original code can be generated from Facebook&#8217;s Like Button generator. Here is how to insert the code. Update: One of the WordPress social bookmark plugin, Digg Digg, now add Facebook Like Button. Insert the Code 1. Edit your theme. Appearance -> Editor -> Single Post [...]


Related posts:<ol><li><a href='http://wheeqo.web.id/tutorial/tips-insert-image-in-joomla' rel='bookmark' title='Permanent Link: Tips Insert Image in Joomla!'>Tips Insert Image in Joomla!</a> <small>There are many ways to insert image(s) in Joomla!. The...</small></li>
<li><a href='http://wheeqo.web.id/tutorial/non-system-web-font-with-html5-font-face-syntax' rel='bookmark' title='Permanent Link: Non-System Web Font with HTML5 @font-face Syntax'>Non-System Web Font with HTML5 @font-face Syntax</a> <small>In this post I just want to try the new...</small></li>
<li><a href='http://wheeqo.web.id/tutorial/fix-rss-feed-error-in-wordpress' rel='bookmark' title='Permanent Link: Fix RSS Feed Error in WordPress'>Fix RSS Feed Error in WordPress</a> <small>Recently I got error when I try to validate my...</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><img src="http://i39.tinypic.com/2eezsq9.jpg" alt="Facebook Like Button" /><br />
Taken from Cordobo.com, <a href="http://cordobo.com/1608-facebook-like-plugin-wordpress/">Integrate Facebook’s “Like” Plugin into WordPress</a>.</p>
<p>The original code can be generated from <a href="http://developers.facebook.com/docs/reference/plugins/like">Facebook&#8217;s Like Button generator</a>. Here is how to insert the code.</p>
<p><strong>Update</strong>: One of the WordPress social bookmark plugin, <a href="http://www.mkyong.com/blog/digg-digg-wordpress-plugin"><strong>Digg Digg</strong></a>, now add Facebook Like Button.<br />
<span id="more-387"></span></p>
<h3>Insert the Code</h3>
<p>1. Edit your theme. <strong>Appearance</strong> -> <strong>Editor</strong> -> <strong>Single Post (single.php)</strong><br />
2. For example I insert the code after the content:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;div class=&quot;content&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;div class=&quot;fixed&quot;&gt;&lt;/div&gt;
&lt;insert the code here&gt;
&lt;/div&gt;
&lt;div class=&quot;under&quot;&gt;</pre></div></div>

<p>3. Here is the code to be inserted:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span>get_permalink<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;amp;layout=standard&amp;amp;show-faces=true&amp;amp;width=500&amp;amp;action=like&amp;amp;colorscheme=light&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; allowTransparency=&quot;true&quot; style=&quot;border:none; overflow:hidden; width:500px; height:60px&quot;&gt;&lt;/iframe&gt;</pre></div></div>

<p>4. So the final code would be:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;div class=&quot;content&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;div class=&quot;fixed&quot;&gt;&lt;/div&gt;		
&nbsp;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span>get_permalink<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;amp;layout=standard&amp;amp;show-faces=true&amp;amp;width=500&amp;amp;action=like&amp;amp;colorscheme=light&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; allowTransparency=&quot;true&quot; style=&quot;border:none; overflow:hidden; width:500px; height:60px&quot;&gt;&lt;/iframe&gt;
&nbsp;
&lt;/div&gt;
&lt;div class=&quot;under&quot;&gt;</pre></div></div>

<p>5. See the different from original code generated by Facebook?<br />
Original:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">href<span style="color: #339933;">=</span>http<span style="color: #339933;">%</span>3A<span style="color: #339933;">%</span>2F<span style="color: #339933;">%</span>2Fwheeqo<span style="color: #339933;">.</span>web<span style="color: #339933;">.</span>id<span style="color: #339933;">%</span>2F<span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;</span></pre></div></div>

<p>Modified:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">href=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span>get_permalink<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;amp;</pre></div></div>



<p>Related posts:<ol><li><a href='http://wheeqo.web.id/tutorial/tips-insert-image-in-joomla' rel='bookmark' title='Permanent Link: Tips Insert Image in Joomla!'>Tips Insert Image in Joomla!</a> <small>There are many ways to insert image(s) in Joomla!. The...</small></li>
<li><a href='http://wheeqo.web.id/tutorial/non-system-web-font-with-html5-font-face-syntax' rel='bookmark' title='Permanent Link: Non-System Web Font with HTML5 @font-face Syntax'>Non-System Web Font with HTML5 @font-face Syntax</a> <small>In this post I just want to try the new...</small></li>
<li><a href='http://wheeqo.web.id/tutorial/fix-rss-feed-error-in-wordpress' rel='bookmark' title='Permanent Link: Fix RSS Feed Error in WordPress'>Fix RSS Feed Error in WordPress</a> <small>Recently I got error when I try to validate my...</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><p><a href="http://wheeqo.web.id/tutorial/insert-facebook-like-button-to-wordpress" rel="bookmark">Insert Facebook Like Button to WordPress</a> was originally appeared on <a href="http://wheeqo.web.id">WheeQo.web.id</a>  posted by R. Bambang Widiatmoko on 24 April 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://wheeqo.web.id/tutorial/insert-facebook-like-button-to-wordpress/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Global Warming Wallpaper &#8211; Awareness Can Save the Earth</title>
		<link>http://wheeqo.web.id/download/global-warming-wallpaper-awareness-can-save-the-earth</link>
		<comments>http://wheeqo.web.id/download/global-warming-wallpaper-awareness-can-save-the-earth#comments</comments>
		<pubDate>Sun, 28 Mar 2010 14:57:06 +0000</pubDate>
		<dc:creator>R. Bambang Widiatmoko</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[wallpaper]]></category>
		<category><![CDATA[global warming]]></category>
		<category><![CDATA[penguin]]></category>
		<category><![CDATA[save the earth]]></category>
		<category><![CDATA[stop global warming]]></category>

		<guid isPermaLink="false">http://wheeqo.web.id/?p=381</guid>
		<description><![CDATA[Taken from: good50x70.org License: Creative Commons — Attribution-Non-Commercial-Share Alike 2.5 Generic Available in: 2560&#215;1600, 1920&#215;1200, 1280&#215;800 Download: HERE Related posts:Islamic Wallpaper 3 1. Available in 1920×1200, 1280×800, 1024×768 Download: HERE Download in... Islamic Wallpaper 4 **Indonesia language only** 1. Do&#8217;a memohon ilmu yg bermanfaat, rizki... Islamic Wallpaper 2 1. Available in 1920&#215;1200, 1280&#215;800, 1024&#215;768 Download: [...]


Related posts:<ol><li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-3' rel='bookmark' title='Permanent Link: Islamic Wallpaper 3'>Islamic Wallpaper 3</a> <small>1. Available in 1920×1200, 1280×800, 1024×768 Download: HERE Download in...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-4' rel='bookmark' title='Permanent Link: Islamic Wallpaper 4'>Islamic Wallpaper 4</a> <small>**Indonesia language only** 1. Do&#8217;a memohon ilmu yg bermanfaat, rizki...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-2' rel='bookmark' title='Permanent Link: Islamic Wallpaper 2'>Islamic Wallpaper 2</a> <small>1. Available in 1920&#215;1200, 1280&#215;800, 1024&#215;768 Download: HERE 2. Available...</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>Taken from: <a href="http://good50x70.org/2008/gallery/gallery02/">good50x70.org</a><br />
<strong>License</strong>: Creative Commons — Attribution-Non-Commercial-Share Alike 2.5 Generic<br />
<img src="http://i44.tinypic.com/14b48pe.jpg" alt="Stop Global Warming - Awareness Can Save the Earth" /><br />
Available in: 2560&#215;1600, 1920&#215;1200, 1280&#215;800<br />
Download: <a href="http://www.mediafire.com/file/zz2m2jwdgyt/gw_pinguin_awarness.zip">HERE</a></p>


<p>Related posts:<ol><li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-3' rel='bookmark' title='Permanent Link: Islamic Wallpaper 3'>Islamic Wallpaper 3</a> <small>1. Available in 1920×1200, 1280×800, 1024×768 Download: HERE Download in...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-4' rel='bookmark' title='Permanent Link: Islamic Wallpaper 4'>Islamic Wallpaper 4</a> <small>**Indonesia language only** 1. Do&#8217;a memohon ilmu yg bermanfaat, rizki...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-2' rel='bookmark' title='Permanent Link: Islamic Wallpaper 2'>Islamic Wallpaper 2</a> <small>1. Available in 1920&#215;1200, 1280&#215;800, 1024&#215;768 Download: HERE 2. Available...</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><p><a href="http://wheeqo.web.id/download/global-warming-wallpaper-awareness-can-save-the-earth" rel="bookmark">Global Warming Wallpaper &#8211; Awareness Can Save the Earth</a> was originally appeared on <a href="http://wheeqo.web.id">WheeQo.web.id</a>  posted by R. Bambang Widiatmoko on 28 March 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://wheeqo.web.id/download/global-warming-wallpaper-awareness-can-save-the-earth/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Islamic Wallpaper &#8211; Du&#8217;aa for Bride n Groom after Nikah</title>
		<link>http://wheeqo.web.id/islam/islamic-wallpaper-duaa-for-bride-groom-after-nikah</link>
		<comments>http://wheeqo.web.id/islam/islamic-wallpaper-duaa-for-bride-groom-after-nikah#comments</comments>
		<pubDate>Sun, 28 Mar 2010 14:45:04 +0000</pubDate>
		<dc:creator>R. Bambang Widiatmoko</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Islam]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[wallpaper]]></category>
		<category><![CDATA[islamic wallpaper]]></category>

		<guid isPermaLink="false">http://wheeqo.web.id/?p=375</guid>
		<description><![CDATA[Du&#8217;aa for Bride n Groom after Nikah &#8211; Shahiih Sunan Abii Daawud (II/400) Available in: 1280×800 and 1900×1200. Download English language: HERE Download Bahasa Indonesia: cekidot You can see my other Islamic wallpaper: here Related posts:Islamic Wallpaper 3 1. Available in 1920×1200, 1280×800, 1024×768 Download: HERE Download in... Islamic Wallpaper 6 &#8211; Sayyidul Istighfar Du&#8217;aa [...]


Related posts:<ol><li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-3' rel='bookmark' title='Permanent Link: Islamic Wallpaper 3'>Islamic Wallpaper 3</a> <small>1. Available in 1920×1200, 1280×800, 1024×768 Download: HERE Download in...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-6-sayyidul-istighfar' rel='bookmark' title='Permanent Link: Islamic Wallpaper 6 &#8211; Sayyidul Istighfar'>Islamic Wallpaper 6 &#8211; Sayyidul Istighfar</a> <small>Du&#8217;aa Sayyidul Istighfar &#8212; HR. al-Bukhari, kitab ad-Da&#8217;awaat, bab Maa...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-4' rel='bookmark' title='Permanent Link: Islamic Wallpaper 4'>Islamic Wallpaper 4</a> <small>**Indonesia language only** 1. Do&#8217;a memohon ilmu yg bermanfaat, rizki...</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>Du&#8217;aa for Bride n Groom after Nikah &#8211; <em>Shahiih Sunan Abii Daawud</em> (II/400)<br />
Available in: 1280×800 and 1900×1200.<br />
<img src="http://i41.tinypic.com/6g97yc.jpg" alt="Du'aa for Bride n Groom after Nikah" /><br />
Download English language: <a href="http://www.mediafire.com/file/umgwtz1xyhq/IslamicWallpaper15.zip">HERE</a><br />
<img src="http://i41.tinypic.com/2vv2bm9.jpg" alt="Du'aa for Bride n Groom after Nikah" /><br />
Download Bahasa Indonesia: <a href="http://www.mediafire.com/?2ugtgnzy22q">cekidot</a><br />
You can see my other Islamic wallpaper: <a href="http://wheeqo.web.id/page/tag/islamic-wallpaper">here</a></p>


<p>Related posts:<ol><li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-3' rel='bookmark' title='Permanent Link: Islamic Wallpaper 3'>Islamic Wallpaper 3</a> <small>1. Available in 1920×1200, 1280×800, 1024×768 Download: HERE Download in...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-6-sayyidul-istighfar' rel='bookmark' title='Permanent Link: Islamic Wallpaper 6 &#8211; Sayyidul Istighfar'>Islamic Wallpaper 6 &#8211; Sayyidul Istighfar</a> <small>Du&#8217;aa Sayyidul Istighfar &#8212; HR. al-Bukhari, kitab ad-Da&#8217;awaat, bab Maa...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-4' rel='bookmark' title='Permanent Link: Islamic Wallpaper 4'>Islamic Wallpaper 4</a> <small>**Indonesia language only** 1. Do&#8217;a memohon ilmu yg bermanfaat, rizki...</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><p><a href="http://wheeqo.web.id/islam/islamic-wallpaper-duaa-for-bride-groom-after-nikah" rel="bookmark">Islamic Wallpaper &#8211; Du&#8217;aa for Bride n Groom after Nikah</a> was originally appeared on <a href="http://wheeqo.web.id">WheeQo.web.id</a>  posted by R. Bambang Widiatmoko on 28 March 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://wheeqo.web.id/islam/islamic-wallpaper-duaa-for-bride-groom-after-nikah/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inkscape Tutorial: Create Letterpress Text Effect</title>
		<link>http://wheeqo.web.id/tutorial/inkscape-tutorial-create-letterpress-text-effect</link>
		<comments>http://wheeqo.web.id/tutorial/inkscape-tutorial-create-letterpress-text-effect#comments</comments>
		<pubDate>Sun, 21 Feb 2010 15:34:51 +0000</pubDate>
		<dc:creator>R. Bambang Widiatmoko</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[blur]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[inkscape]]></category>
		<category><![CDATA[letterpress]]></category>
		<category><![CDATA[myriad pro]]></category>
		<category><![CDATA[shadow]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://wheeqo.web.id/?p=350</guid>
		<description><![CDATA[This effect is become famous nowadays especially in web design. Yet very few tutorial with Inkscape. I will show you the ways. I assume you have know basic operation in Inkscape. Preview: The Steps 1. Create rounded rectangle 512x512px. Feel free with the fill color. Mine is blue vertical gradient, the bottom is 00001e and [...]


Related posts:<ol><li><a href='http://wheeqo.web.id/tutorial/create-glassy-effect-on-coreldraw' rel='bookmark' title='Permanent Link: Create Glassy Effect on CorelDRAW'>Create Glassy Effect on CorelDRAW</a> <small>On this tutorial shows how to add a glassy effect...</small></li>
<li><a href='http://wheeqo.web.id/tutorial/convert-full-color-image-to-a-3-color-separation-in-gimp' rel='bookmark' title='Permanent Link: Convert Full Color Image to a 3 Color Separation in GIMP'>Convert Full Color Image to a 3 Color Separation in GIMP</a> <small>I will show how to convert from full color image...</small></li>
<li><a href='http://wheeqo.web.id/tutorial/create-slide-show-on-windows-7-desktop-background' rel='bookmark' title='Permanent Link: Create Slide Show on Windows 7 Desktop Background'>Create Slide Show on Windows 7 Desktop Background</a> <small>Windows 7 has a feature to change the desktop background...</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>This effect is become famous nowadays especially in web design. Yet very few tutorial with Inkscape. I will show you the ways. I assume you have know basic operation in <a href="http://www.inkscape.org">Inkscape</a>.<br />
<strong>Preview</strong>:<br />
<img src="http://i46.tinypic.com/op4ju1.jpg" alt="Letterpress effect" /><br />
<span id="more-350"></span></p>
<h3>The Steps</h3>
<p>1. Create rounded rectangle 512x512px. Feel free with the fill color. Mine is blue vertical gradient, the bottom is <strong>00001e</strong> and the top is <strong>00005a</strong>.<br />
<img src="http://i47.tinypic.com/9zmvlz.png" alt="Blue vertical gradient" /><br />
2. Create text in middle of rectangle. I use <strong>Myriad Pro</strong> bold font. If you want to control the kerning, edit the text, then use <strong>alt</strong> + <strong>arrow</strong>. Use gray gradient color, the bottom is <strong>1a1a1a</strong> and the top is <strong>666666</strong>.<br />
<img src="http://i46.tinypic.com/1zmnwub.png" alt="Gray vertical gradient" /><br />
3. <em>Step 3 &#8211; 7 see picture below</em>. We will create the white shadow. <strong>Duplicate</strong> (<strong>ctrl</strong> + <strong>D</strong>) the text. Choose the duplicate one.<br />
<img src="http://i50.tinypic.com/30aew3o.png" alt="Create white shadow" /><br />
4. Color it <strong>white</strong>.<br />
5. <strong>Lower it one step</strong>, so it under the gray-gradient text.<br />
6. Move it <strong>right 1px</strong> (x: +1) and <strong>down 1px</strong> (y: -1). Move it by change the coordinate in toolbar.<br />
7. Change the <strong>blur</strong> to 1.<br />
8. Last create inner shadow on gray-gradient text (the original one). Select gray-gradient text. Go to menu <strong>Filter</strong> -> <strong>Shadows and Glows</strong> -> <strong>Inner Shadow</strong>.<br />
<img src="http://i47.tinypic.com/xbycg5.jpg" alt="Inner shadow on gray text" /></p>
<p>Done!</p>
<p><strong>Inkscape ebook recommendation</strong><br />
<iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&amp;bc1=000000&amp;IS2=1&amp;bg1=FFFFFF&amp;fc1=555555&amp;lc1=2970A6&amp;t=wheewebidshar-20&amp;o=1&amp;p=8&amp;l=as1&amp;m=amazon&amp;f=ifr&amp;asins=1593271816" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&amp;bc1=000000&amp;IS2=1&amp;bg1=FFFFFF&amp;fc1=555555&amp;lc1=2970A6&amp;t=wheewebidshar-20&amp;o=1&amp;p=8&amp;l=as1&amp;m=amazon&amp;f=ifr&amp;asins=0137051735" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&amp;bc1=000000&amp;IS2=1&amp;bg1=FFFFFF&amp;fc1=555555&amp;lc1=2970A6&amp;t=wheewebidshar-20&amp;o=1&amp;p=8&amp;l=as1&amp;m=amazon&amp;f=ifr&amp;asins=1430225130" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>


<p>Related posts:<ol><li><a href='http://wheeqo.web.id/tutorial/create-glassy-effect-on-coreldraw' rel='bookmark' title='Permanent Link: Create Glassy Effect on CorelDRAW'>Create Glassy Effect on CorelDRAW</a> <small>On this tutorial shows how to add a glassy effect...</small></li>
<li><a href='http://wheeqo.web.id/tutorial/convert-full-color-image-to-a-3-color-separation-in-gimp' rel='bookmark' title='Permanent Link: Convert Full Color Image to a 3 Color Separation in GIMP'>Convert Full Color Image to a 3 Color Separation in GIMP</a> <small>I will show how to convert from full color image...</small></li>
<li><a href='http://wheeqo.web.id/tutorial/create-slide-show-on-windows-7-desktop-background' rel='bookmark' title='Permanent Link: Create Slide Show on Windows 7 Desktop Background'>Create Slide Show on Windows 7 Desktop Background</a> <small>Windows 7 has a feature to change the desktop background...</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><p><a href="http://wheeqo.web.id/tutorial/inkscape-tutorial-create-letterpress-text-effect" rel="bookmark">Inkscape Tutorial: Create Letterpress Text Effect</a> was originally appeared on <a href="http://wheeqo.web.id">WheeQo.web.id</a>  posted by R. Bambang Widiatmoko on 21 February 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://wheeqo.web.id/tutorial/inkscape-tutorial-create-letterpress-text-effect/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2 Free High Quality Inkscape Icons</title>
		<link>http://wheeqo.web.id/download/2-free-high-quality-inkscape-icons</link>
		<comments>http://wheeqo.web.id/download/2-free-high-quality-inkscape-icons#comments</comments>
		<pubDate>Fri, 19 Feb 2010 01:57:27 +0000</pubDate>
		<dc:creator>R. Bambang Widiatmoko</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[512x512]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[inkscape]]></category>
		<category><![CDATA[letterpress]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[resolution]]></category>

		<guid isPermaLink="false">http://wheeqo.web.id/?p=343</guid>
		<description><![CDATA[2 free Inkscape icons available in .png 32bit and in resolution 512x512px. Fully designed with Inkscape itself with letterpress effect. Preview: See Inkscape tutorial: Create Letterpress Text Effect Inkscape ebook recommendation Related posts:Download Free CV Template 1 The CV design is inspired from Smashing Magazine. Designed with... Related posts brought to you by Yet Another [...]


Related posts:<ol><li><a href='http://wheeqo.web.id/download/download-free-cv-template-1' rel='bookmark' title='Permanent Link: Download Free CV Template 1'>Download Free CV Template 1</a> <small>The CV design is inspired from Smashing Magazine. Designed with...</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>2 free <a href="http://www.inkscape.org">Inkscape</a> icons available in .png 32bit and in resolution 512x512px. Fully designed with Inkscape itself with letterpress effect.<br />
<strong>Preview</strong>:<br />
<img src="http://i45.tinypic.com/2hqqm1e.jpg" alt="Inkscape letterpress logo"><br />
<a href="http://www.mediafire.com/file/n4nmmztkzqk/inkscape_letterpress.zip"><img src="http://wheeqo.web.id/wp-content/uploads/2009/11/download.gif" alt="Download Here"></a><br />
<span id="more-343"></span><br />
See <a href="http://wheeqo.web.id/tutorial/inkscape-tutorial-create-letterpress-text-effect">Inkscape tutorial: Create Letterpress Text Effect</a> </p>
<p><strong>Inkscape ebook recommendation</strong><br />
<iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&amp;bc1=000000&amp;IS2=1&amp;bg1=FFFFFF&amp;fc1=555555&amp;lc1=2970A6&amp;t=wheewebidshar-20&amp;o=1&amp;p=8&amp;l=as1&amp;m=amazon&amp;f=ifr&amp;asins=1593271816" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&amp;bc1=000000&amp;IS2=1&amp;bg1=FFFFFF&amp;fc1=555555&amp;lc1=2970A6&amp;t=wheewebidshar-20&amp;o=1&amp;p=8&amp;l=as1&amp;m=amazon&amp;f=ifr&amp;asins=0137051735" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&amp;bc1=000000&amp;IS2=1&amp;bg1=FFFFFF&amp;fc1=555555&amp;lc1=2970A6&amp;t=wheewebidshar-20&amp;o=1&amp;p=8&amp;l=as1&amp;m=amazon&amp;f=ifr&amp;asins=1430225130" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>


<p>Related posts:<ol><li><a href='http://wheeqo.web.id/download/download-free-cv-template-1' rel='bookmark' title='Permanent Link: Download Free CV Template 1'>Download Free CV Template 1</a> <small>The CV design is inspired from Smashing Magazine. Designed with...</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><p><a href="http://wheeqo.web.id/download/2-free-high-quality-inkscape-icons" rel="bookmark">2 Free High Quality Inkscape Icons</a> was originally appeared on <a href="http://wheeqo.web.id">WheeQo.web.id</a>  posted by R. Bambang Widiatmoko on 19 February 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://wheeqo.web.id/download/2-free-high-quality-inkscape-icons/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert Full Color Image to a 3 Color Separation in GIMP</title>
		<link>http://wheeqo.web.id/tutorial/convert-full-color-image-to-a-3-color-separation-in-gimp</link>
		<comments>http://wheeqo.web.id/tutorial/convert-full-color-image-to-a-3-color-separation-in-gimp#comments</comments>
		<pubDate>Wed, 10 Feb 2010 02:35:47 +0000</pubDate>
		<dc:creator>R. Bambang Widiatmoko</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[alpha channel]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[color separation]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[inkscape]]></category>
		<category><![CDATA[layer]]></category>
		<category><![CDATA[threshold]]></category>
		<category><![CDATA[vectorized]]></category>

		<guid isPermaLink="false">http://wheeqo.web.id/?p=277</guid>
		<description><![CDATA[I will show how to convert from full color image to a 3 color separation in GIMP. After learning the tutorial you can make 4, 5, and so on; color separation. With a few color it is also easier to vectorized it, such as with Inkscape. The 3 colors are: white, gray, and black. Before: [...]


Related posts:<ol><li><a href='http://wheeqo.web.id/tutorial/inkscape-tutorial-create-letterpress-text-effect' rel='bookmark' title='Permanent Link: Inkscape Tutorial: Create Letterpress Text Effect'>Inkscape Tutorial: Create Letterpress Text Effect</a> <small>This effect is become famous nowadays especially in web design....</small></li>
<li><a href='http://wheeqo.web.id/tutorial/transparent-image-in-office-2007' rel='bookmark' title='Permanent Link: Transparent Image in Office 2007'>Transparent Image in Office 2007</a> <small>White Background on Image When we inserting image, except png...</small></li>
<li><a href='http://wheeqo.web.id/tutorial/tips-insert-image-in-joomla' rel='bookmark' title='Permanent Link: Tips Insert Image in Joomla!'>Tips Insert Image in Joomla!</a> <small>There are many ways to insert image(s) in Joomla!. The...</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>I will show how to convert from full color image to a 3 color separation in <a href="http://www.gimp.org">GIMP</a>. After learning the tutorial you can make 4, 5, and so on; color separation. With a few color it is also easier to vectorized it, such as with <a href="http://www.inkscape.org">Inkscape</a>.<br />
The 3 colors are: white, gray, and black.<br />
Before:<br />
<img src="http://i48.tinypic.com/264oqkn.png" alt="Bus Full Color" /><br />
After:<br />
<img src="http://i48.tinypic.com/e9d6jn.png" alt="Bus 3 Color" /><br />
<span id="more-277"></span></p>
<h3>The Steps</h3>
<p>1. Duplicate into 3 layer. Rename it each one with <strong>white</strong>, <strong>gray</strong>, and <strong>black</strong>.<br />
<img src="http://i48.tinypic.com/t00y9g.png" alt="Duplicate into 3 layer" /></p>
<p>2. We will start with the gray layer. Select gray layer and hide the other layer. Go to menu <strong>Colors</strong> -> <strong>Threshold&#8230;</strong>.<br />
<img src="http://i48.tinypic.com/5vwy03.png" alt="Threshold GIMP menu" /></p>
<p>3. Fill the left value <strong>85</strong> and the right value <strong>170</strong>. Click <strong>OK</strong>. See image below.<br />
<a href="http://i47.tinypic.com/16is7yt.png"><img src="http://i47.tinypic.com/16is7yt.png" alt="left value 85 right value 170" /></a><br />
<em>Click to see larger image.</em><br />
Now all midtone color will be seen in white color.</p>
<p>4. Now we must delete the black color and change the white color into gray. With <strong>Select by Color Tool</strong> click on black color area.<br />
<img src="http://i47.tinypic.com/2yltdgh.png" alt="Select by Color Tool" /></p>
<p>5. With the black color selected, go to menu <strong>Layer</strong> -> <strong>Transparency</strong> -> <strong>Add Alpha Channel</strong>. Then <strong>delete</strong>. The black color will be deleted.</p>
<p>6. Right click on gray layer -> <strong>Alpha to Selection</strong>.<br />
<a href="http://i50.tinypic.com/258p9aq.png"><img src="http://i50.tinypic.com/258p9aq.png" alt="Alpha to Selection" /></a><br />
<em>Click to see larger image.</em><br />
All the white color will be selected.</p>
<p>7. Change the <strong>Foreground color</strong> with gray. Then go to menu <strong>Edit</strong> -> <strong>Fill with FG Color</strong>.<br />
<a href="http://i48.tinypic.com/140c60m.png"><img src="http://i48.tinypic.com/140c60m.png" alt="Fill with FG Color" /></a><br />
<em>Click to see larger image.</em></p>
<p>8. The white color area will be changed to gray color.<br />
<img src="http://i48.tinypic.com/653hoo.png" alt="grey area" /></p>
<p>9. Now select white layer and hide the other layer. Go to menu <strong>Colors</strong> -> <strong>Threshold&#8230;</strong>. Fill the left value <strong>170</strong> and the right value <strong>255</strong>. Click <strong>OK</strong>. See image below.<br />
<a href="http://i45.tinypic.com/2lcwi2v.png"><img src="http://i45.tinypic.com/2lcwi2v.png" alt="left value 170 right value 255" /></a><br />
<em>Click to see larger image.</em><br />
Now all light color will be seen in white color. </p>
<p>10. Since the light color already in white, you only have to delete the black color. The process just like the gray layer.<br />
<img src="http://i45.tinypic.com/9acvbs.png" alt="white color area" /></p>
<p>11. Now select black layer and hide the other layer. Go to menu <strong>Colors</strong> -> <strong>Threshold&#8230;</strong>. Fill the left value <strong>0</strong> and the right value <strong>85</strong>. Click <strong>OK</strong>. See image below.<br />
<a href="http://i45.tinypic.com/2ufc715.png"><img src="http://i45.tinypic.com/2ufc715.png" alt="left value 0 right value 85" /></a><br />
<em>Click to see larger image.</em><br />
Now all dark color will be seen in white color.</p>
<p>12. Now you must delete the black color and change the white color into black color. The process just like the gray layer.<br />
<img src="http://i47.tinypic.com/ephusm.png" alt="black color area" /></p>
<p>13. Last step, unhide all layer except the original layer. Don&#8217;t forget to save it in GIMP format (<strong>.xcf</strong>)<br />
<img src="http://i48.tinypic.com/e9d6jn.png" alt="3 color bus picture" /></p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab" id="Player_8a90aad6-9982-4700-a21a-f5e28174c526"  width="600px" height="200px"><param name="movie" value="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&#038;MarketPlace=US&#038;ID=V20070822%2FUS%2Fwheewebidshar-20%2F8010%2F8a90aad6-9982-4700-a21a-f5e28174c526&#038;Operation=GetDisplayTemplate"><param name="quality" value="high"><param name="bgcolor" value="#FFFFFF"><param name="allowscriptaccess" value="always"><embed src="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&#038;MarketPlace=US&#038;ID=V20070822%2FUS%2Fwheewebidshar-20%2F8010%2F8a90aad6-9982-4700-a21a-f5e28174c526&#038;Operation=GetDisplayTemplate" id="Player_8a90aad6-9982-4700-a21a-f5e28174c526" quality="high" bgcolor="#ffffff" name="Player_8a90aad6-9982-4700-a21a-f5e28174c526" allowscriptaccess="always"  type="application/x-shockwave-flash" align="middle" height="200px" width="600px"></embed></object> <noscript><a href="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&#038;MarketPlace=US&#038;ID=V20070822%2FUS%2Fwheewebidshar-20%2F8010%2F8a90aad6-9982-4700-a21a-f5e28174c526&#038;Operation=NoScript">Amazon.com Widgets</a></noscript></p>


<p>Related posts:<ol><li><a href='http://wheeqo.web.id/tutorial/inkscape-tutorial-create-letterpress-text-effect' rel='bookmark' title='Permanent Link: Inkscape Tutorial: Create Letterpress Text Effect'>Inkscape Tutorial: Create Letterpress Text Effect</a> <small>This effect is become famous nowadays especially in web design....</small></li>
<li><a href='http://wheeqo.web.id/tutorial/transparent-image-in-office-2007' rel='bookmark' title='Permanent Link: Transparent Image in Office 2007'>Transparent Image in Office 2007</a> <small>White Background on Image When we inserting image, except png...</small></li>
<li><a href='http://wheeqo.web.id/tutorial/tips-insert-image-in-joomla' rel='bookmark' title='Permanent Link: Tips Insert Image in Joomla!'>Tips Insert Image in Joomla!</a> <small>There are many ways to insert image(s) in Joomla!. The...</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><p><a href="http://wheeqo.web.id/tutorial/convert-full-color-image-to-a-3-color-separation-in-gimp" rel="bookmark">Convert Full Color Image to a 3 Color Separation in GIMP</a> was originally appeared on <a href="http://wheeqo.web.id">WheeQo.web.id</a>  posted by R. Bambang Widiatmoko on 10 February 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://wheeqo.web.id/tutorial/convert-full-color-image-to-a-3-color-separation-in-gimp/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Islamic Wallpaper 6 &#8211; Sayyidul Istighfar</title>
		<link>http://wheeqo.web.id/islam/islamic-wallpaper-6-sayyidul-istighfar</link>
		<comments>http://wheeqo.web.id/islam/islamic-wallpaper-6-sayyidul-istighfar#comments</comments>
		<pubDate>Sat, 02 Jan 2010 10:22:41 +0000</pubDate>
		<dc:creator>R. Bambang Widiatmoko</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Islam]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[wallpaper]]></category>
		<category><![CDATA[islamic wallpaper]]></category>

		<guid isPermaLink="false">http://wheeqo.web.id/?p=265</guid>
		<description><![CDATA[Du&#8217;aa Sayyidul Istighfar &#8212; HR. al-Bukhari, kitab ad-Da&#8217;awaat, bab Maa Yaquulu idzaa Ashbaha. Available in: 1280&#215;800 and 1600&#215;1200. Download: HERE You can see my other Islamic wallpaper: here Related posts:Islamic Wallpaper &#8211; al Qiyaamah Available in 1280&#215;800 Available in 1440&#215;900 Download all Islamic Wallpaper... Islamic Wallpaper 2 1. Available in 1920&#215;1200, 1280&#215;800, 1024&#215;768 Download: HERE [...]


Related posts:<ol><li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-al-qiyaamah' rel='bookmark' title='Permanent Link: Islamic Wallpaper &#8211; al Qiyaamah'>Islamic Wallpaper &#8211; al Qiyaamah</a> <small>Available in 1280&#215;800 Available in 1440&#215;900 Download all Islamic Wallpaper...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-2' rel='bookmark' title='Permanent Link: Islamic Wallpaper 2'>Islamic Wallpaper 2</a> <small>1. Available in 1920&#215;1200, 1280&#215;800, 1024&#215;768 Download: HERE 2. Available...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-3' rel='bookmark' title='Permanent Link: Islamic Wallpaper 3'>Islamic Wallpaper 3</a> <small>1. Available in 1920×1200, 1280×800, 1024×768 Download: HERE Download in...</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>Du&#8217;aa Sayyidul Istighfar &#8212; HR. al-Bukhari, kitab <em>ad-Da&#8217;awaat</em>, bab <em>Maa Yaquulu idzaa Ashbaha</em>.<br />
<img src="http://i50.tinypic.com/xdtcaf.jpg" alt="Islamic Wallpaper 14 Sayyidul Istighfar" /><br />
Available in: 1280&#215;800 and 1600&#215;1200.<br />
Download: <a href="http://www.mediafire.com/file/xzkynk2wfte/IslamicWallpaper14.zip">HERE</a><br />
You can see my other Islamic wallpaper: <a href="/page/tag/islamic-wallpaper">here</a></p>


<p>Related posts:<ol><li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-al-qiyaamah' rel='bookmark' title='Permanent Link: Islamic Wallpaper &#8211; al Qiyaamah'>Islamic Wallpaper &#8211; al Qiyaamah</a> <small>Available in 1280&#215;800 Available in 1440&#215;900 Download all Islamic Wallpaper...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-2' rel='bookmark' title='Permanent Link: Islamic Wallpaper 2'>Islamic Wallpaper 2</a> <small>1. Available in 1920&#215;1200, 1280&#215;800, 1024&#215;768 Download: HERE 2. Available...</small></li>
<li><a href='http://wheeqo.web.id/islam/islamic-wallpaper-3' rel='bookmark' title='Permanent Link: Islamic Wallpaper 3'>Islamic Wallpaper 3</a> <small>1. Available in 1920×1200, 1280×800, 1024×768 Download: HERE Download in...</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><p><a href="http://wheeqo.web.id/islam/islamic-wallpaper-6-sayyidul-istighfar" rel="bookmark">Islamic Wallpaper 6 &#8211; Sayyidul Istighfar</a> was originally appeared on <a href="http://wheeqo.web.id">WheeQo.web.id</a>  posted by R. Bambang Widiatmoko on 2 January 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://wheeqo.web.id/islam/islamic-wallpaper-6-sayyidul-istighfar/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
