<?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"
	>

<channel>
	<title>Silverf0x</title>
	<atom:link href="http://www.silverf0x.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.silverf0x.com</link>
	<description></description>
	<pubDate>Thu, 28 Aug 2008 07:17:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Format Teks - Huruf (Font)</title>
		<link>http://www.silverf0x.com/2008/08/format-teks-huruf-font/</link>
		<comments>http://www.silverf0x.com/2008/08/format-teks-huruf-font/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 06:57:50 +0000</pubDate>
		<dc:creator>silverf0x</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<category><![CDATA[font]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[teks]]></category>

		<guid isPermaLink="false">http://www.silverf0x.com/?p=38</guid>
		<description><![CDATA[Postingan ini lanjutan dari seri HTML sebelumnya, format teks Heading &#38; Paragraf.
Untuk mengatur tampilan teks, salah satu yang memegang peran besar adalah huruf (font). Dalam HTML semua jenis huruf bisa ditampilkan, dengan syarat huruf (font) tersebut telah di-install di komputer yang membaca HTML (client), bukan di web server. Jadi walaupun di web server telah ter-install [...]]]></description>
			<content:encoded><![CDATA[<p>Postingan ini lanjutan dari seri HTML sebelumnya, <a href="http://www.silverf0x.com/2008/08/format-teks-heading-paragraf/" target="_blank">format teks Heading &amp; Paragraf.</a></p>
<p style="text-align: justify;">Untuk mengatur tampilan teks, salah satu yang memegang peran besar adalah huruf (<em>font</em>). Dalam HTML semua jenis huruf bisa ditampilkan, dengan syarat huruf (font) tersebut telah di-<em>install</em> di komputer yang membaca HTML (<em>client</em>), bukan di <em>web server</em>. Jadi walaupun di web server telah ter-<em>install</em> <em>font</em> tersebut, digunakan pada file HTML, tapi tidak ter-<em>install</em> di <em>client</em>, maka font tersebut akan otomatis akan ditampilkan dalam bentuk <em>default</em>-nya, yaitu font Times New Roman. Oleh karena itu disarankan untuk memilih jenis-jenis font yang <em>default</em> telah ter-<em>install</em> pada Windows, Linux atau MAC.<br />
<span id="more-38"></span></p>
<p>Untuk mengatur bentuk font pada HTML, digunakan tag FONT, dengan format sebagai berikut :</p>
<blockquote><p>&lt;FONT&gt;Teks yang hendak diatur tampilan huruf (font)&lt;/FONT&gt;</p></blockquote>
<p>Atribut-atribut yang sering digunakan pada tag FONT adalah :</p>
<ul type="square">
<li style="text-align: justify;">FACE : untuk mendefinisikan jenis font apa yang akan digunakan. Biasanya nilainya berupa nama jenis font, seperti : Arial, Verdana, Tahoma, Courier New, dan nama-nama font lainnya.</li>
<li style="text-align: justify;">COLOR : untuk menentukan warna. Nilai berupa nilai hexadecimal warna yang diinginkan, dengan diawali tanda #. Contoh : untuk warna putih, COLOR=&#8221;#FFFFFF&#8221;.</li>
<li>SIZE : untuk menentukan ukuran teks. Kemungkinan nilai dari atribut ini adalah :
<ul type="disc">
<li>Bilangan 1,2,3,4,5,6, dan 7</li>
<li style="text-align: justify;">+n atau -n, dimana bilangan n menunjukkan bilangan sebagai ukuran huruf tertentu.<br />
+n menunjukkan bahwa ukuran font adalah sebesar +n dari ukuran default font. Contoh, misalnya ukuran default font adalah 1, maka jika nilainya +2, maka ukuran font yang ditampilkan adalah 3. Begitu juga jika nilai -n. Apabila nilai -n lebih kecil daripada 1, maka ukuran font nya menjadi 1.</li>
</ul>
<p style="text-align: justify;">Ukuran default dapat dipandang dari 2 sisi. Satu dari sisi pemakai (user) dan satu lagi dari sisi pembuat file HTML. Dari sisi user, default diatur pada browser, sedangkan dari sisi pembuat HTML, default diatur dengan menggunakan perintah (tag) BASEFONT. Tag BASEFONT tidak berpengaruh pada teks yang diatur dengan tag Heading. Jadi apabila ada tag &lt;BASEFONT SIZE=&#8221;2&#8243;&gt;, kemudian diikuti dengan perintah &lt;FONT SIZE=&#8221;2&#8243;&gt;, maka font tersebut akan ditampilkan dengan ukuran font = 4.</p>
</li>
</ul>
<p>Selain attribut di atas, teks juga dapat diatur dengan dekorasi teks (font) lainnya. Beberapa dekorasi teks yang sering digunakan antara lain :</p>
<ol>
<li>&lt;b&gt;Teks&lt;/b&gt; : untuk menampilkan cetak tebal (Bold)</li>
<li>&lt;strong&gt;Teks&lt;/strong&gt; : untuk menampilkan cetak tebal (Bold)</li>
<li>&lt;i&gt;Teks&lt;/i&gt; : untuk menampilkan cetak miring (Italics)</li>
<li>&lt;em&gt;Teks&lt;/em&gt; : untuk menampilkan cetak miring (Italics)</li>
<li>&lt;u&gt;Teks&lt;/u&gt; : untuk mengaris bawahi teks</li>
<li>&lt;strike&gt;Teks&lt;/strike&gt; : untuk mencoret teks</li>
<li>&lt;s&gt;Teks&lt;/s&gt; : untuk mencoret teks</li>
<li>&lt;tt&gt;Teks&lt;/tt&gt; : untuk menampilkan huruf teks seperti teks yang diketik pada mesin tik</li>
<li>&lt;big&gt;Tkes&lt;/big&gt; : untuk menampilkan teks dalam ukuran besar</li>
<li>&lt;small&gt;Tkes&lt;/small&gt; : untuk menampilkan teks dalam ukuran kecil</li>
<li>&lt;sub&gt;Teks&lt;/sub&gt; : untuk menampilkan teks subscript (sedikit ke bawah)</li>
<li>&lt;sup&gt;Teks&lt;/sup&gt; : untuk menampilkan teks superscript (sedikit ke atas)</li>
</ol>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/share_save?sitename=Silverf0x&amp;siteurl=http%3A%2F%2Fwww.silverf0x.com%2F&amp;linkname=Format%20Teks%20-%20Huruf%20%28Font%29&amp;linkurl=http%3A%2F%2Fwww.silverf0x.com%2F2008%2F08%2Fformat-teks-huruf-font%2F" style=";background:url(http://www.silverf0x.com/wp-content/plugins/add-to-any/favicon.png) no-repeat scroll 0px 0px !important;padding:1px 5px 5px 22px">Share/Save</a>
    <script type="text/javascript">
		a2a_linkname="Format Teks - Huruf (Font)";
		a2a_linkurl="http://www.silverf0x.com/2008/08/format-teks-huruf-font/";
						    </script>
    <script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://www.silverf0x.com/2008/08/format-teks-huruf-font/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Global Warming</title>
		<link>http://www.silverf0x.com/2008/08/global-warming/</link>
		<comments>http://www.silverf0x.com/2008/08/global-warming/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 06:25:23 +0000</pubDate>
		<dc:creator>silverf0x</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<category><![CDATA[global warming]]></category>

		<guid isPermaLink="false">http://www.silverf0x.com/?p=37</guid>
		<description><![CDATA[Menurut informasi dari TV, ratusan rumah di Deli Serdang, Sumatra Utara, Selasa (26/8/2008), terendam banjir akibat meluapnya Sungai Galang. Beberapa daerah di Sulawesi juga terendam banjir karena curah hujan yang tinggi. Sungguh sangat aneh, karena di P. Jawa khususnya kota Bandung, cuaca malah panas terik. Masa sih sesama daerah di Indonesia tidak kompak, satu panas [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><img class="alignleft" style="border: 0pt none; margin: 3px; float: left;" src="http://i135.photobucket.com/albums/q142/silverf0x/24012008.gif" alt="" width="400" />Menurut informasi dari TV, ratusan rumah di Deli Serdang, Sumatra Utara, Selasa (26/8/2008), terendam banjir akibat meluapnya Sungai Galang. Beberapa daerah di Sulawesi juga terendam banjir karena curah hujan yang tinggi. Sungguh sangat aneh, karena di P. Jawa khususnya kota Bandung, cuaca malah panas terik. Masa sih sesama daerah di Indonesia tidak kompak, satu panas terik, yang lain malah hujan deras. Para ahli lingkungan hidup di dunia sering menyebutkan fenomena ini sebagai efek dari pemanasan global atau bahasa keren nya, Global Warming.<br />
<span id="more-37"></span></p>
<p style="text-align: justify;">Gambar di atas merupakan gambar karikatur Pak Bas, yang sering muncul di koran harian Global di kota Medan. Gambar tersebut saya copy dari <a href="http://kartunmedan.blogspot.com" target="_blank">blog Kartun Medan</a>, blog yang mengumpulkan karikatur Pak Tuntung dan Pak Bas.</p>
<p style="text-align: justify;">Gambar tersebut cukup menggambarkan apa penyebab dan efek dari Global Warming tersebut. Tindakan oknum-oknum yang tidak bertanggung jawab (illegal logging) justru mempercepat proses global warming. Demi kesenangan/kepentingan pribadi, oknum-oknum tersebut merugikan banyak orang, bahkan merugikan manusia di seluruh dunia beserta dengan flora dan fauna.</p>
<p style="text-align: justify;">Mungkin sudah saat nya kita melestarikan lingkungan, tapi sering kita bertanya-tanya, &#8220;Apa yang dapat saya lakukan untuk turut berperan dalam pelestarian lingkungan dan pencegahan global warming ??&#8221;<br />
Sebenarnya banyak hal yang bisa kita lakukan, hal-hal sederhana, tapi jika dilakukan secara bersama-sama dan sistematis, bisa menjadi hal yang besar , seperti Slogan para lebah-Bee, di film Bee Movie <img src='http://www.silverf0x.com/smilies/yahoo_smiley.gif' alt='&#58;&#41;' class='wp-smiley' width='18' height='18' title='&#58;&#41;' />. Untuk kalimat lengkapnya mungkin bisa didengar sendiri dari film Bee Movie. Apa sajakah hal-hal simple yang bisa kita lakukan ? Akan segera saya bahas di postingan selanjutnya.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/share_save?sitename=Silverf0x&amp;siteurl=http%3A%2F%2Fwww.silverf0x.com%2F&amp;linkname=Global%20Warming&amp;linkurl=http%3A%2F%2Fwww.silverf0x.com%2F2008%2F08%2Fglobal-warming%2F" style=";background:url(http://www.silverf0x.com/wp-content/plugins/add-to-any/favicon.png) no-repeat scroll 0px 0px !important;padding:1px 5px 5px 22px">Share/Save</a>
    <script type="text/javascript">
		a2a_linkname="Global Warming";
		a2a_linkurl="http://www.silverf0x.com/2008/08/global-warming/";
						    </script>
    <script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://www.silverf0x.com/2008/08/global-warming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>1st AutoRun Express 3.0</title>
		<link>http://www.silverf0x.com/2008/08/1st-autorun-express-30/</link>
		<comments>http://www.silverf0x.com/2008/08/1st-autorun-express-30/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 05:45:58 +0000</pubDate>
		<dc:creator>silverf0x</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[autorun]]></category>

		<category><![CDATA[autorun cd]]></category>

		<guid isPermaLink="false">http://www.silverf0x.com/?p=36</guid>
		<description><![CDATA[Want to create autorun CD but don&#8217;t know how to make autorun.inf file ?
Now, you don&#8217;t have to know what command you must type in autorun.inf file. You can use this software : 1st AutoRun Express 3.0 to create autorun CD. You just need to running this program and its wizard will guide you how [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Want to create autorun CD but don&#8217;t know how to make autorun.inf file ?<br />
Now, you don&#8217;t have to know what command you must type in autorun.inf file. You can use this software : 1st AutoRun Express 3.0 to create autorun CD. You just need to running this program and its wizard will guide you how to make autorun CD. The wizard will ask you what application must be running after CD inserted in CD rom.</p>
<p>For details information, <a href="http://www.autoruntools.com/express/" target="_blank">visit the official website here</a>.</p>
<p>To download the free version, <a href="http://www.autoruntools.com/express/autorun-express.exe">just click here</a>.</p>
<p></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/share_save?sitename=Silverf0x&amp;siteurl=http%3A%2F%2Fwww.silverf0x.com%2F&amp;linkname=1st%20AutoRun%20Express%203.0&amp;linkurl=http%3A%2F%2Fwww.silverf0x.com%2F2008%2F08%2F1st-autorun-express-30%2F" style=";background:url(http://www.silverf0x.com/wp-content/plugins/add-to-any/favicon.png) no-repeat scroll 0px 0px !important;padding:1px 5px 5px 22px">Share/Save</a>
    <script type="text/javascript">
		a2a_linkname="1st AutoRun Express 3.0";
		a2a_linkurl="http://www.silverf0x.com/2008/08/1st-autorun-express-30/";
						    </script>
    <script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://www.silverf0x.com/2008/08/1st-autorun-express-30/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Download Accelerator Plus 8.7.0.1</title>
		<link>http://www.silverf0x.com/2008/08/download-accelerator-plus-8701/</link>
		<comments>http://www.silverf0x.com/2008/08/download-accelerator-plus-8701/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 17:27:16 +0000</pubDate>
		<dc:creator>silverf0x</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[accelerator]]></category>

		<category><![CDATA[download]]></category>

		<guid isPermaLink="false">http://www.silverf0x.com/?p=35</guid>
		<description><![CDATA[Download Accelerator Plus leverages patented technology, easy management of downloads and rich features and includes an upgraded download window for faster downloads with ease and simplicity, improved management window, ability to upload and send large files, and the SpeedBit Video Accelerator expansions.

Download Accelerator Plus (DAP) 8.7 - is the leading download manager with over 160 [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Download Accelerator Plus leverages patented technology, easy management of downloads and rich features and includes an upgraded download window for faster downloads with ease and simplicity, improved management window, ability to upload and send large files, and the SpeedBit Video Accelerator expansions.<br />
<span id="more-35"></span></p>
<p style="text-align: justify;"><strong>Download Accelerator Plus</strong> (DAP) 8.7 - is the leading download manager with over 160 million registered users worldwide. DAP leverages patented technology, ease of use and rich features including: multi-connections for the fastest downloads from most responsive servers, auto-recovery from lost connections and errors, Always Resume feature (where server-resume is not supported), scheduling, file management tools, privacy and security features, and much more. DAP integrates with Internet Explorer, Firefox, Netscape and is compatible with Windows Vista. DAP is available in 10 languages including German, Dutch, French, Chinese (traditional), Spanish, Portuguese, Japanese, Russian and Italian. New features in DAP 8.7 includes an upgraded download window for faster downloads with ease and simplicity, improved management window, the ability to upload and send large files and the SpeedBit Video Accelerator expansions to reduce buffering problems and video &#8220;hiccups&#8221; from over 100 video sites!</p>
<p>More info, <a href="http://www.brothersoft.com/download-accelerator-plus-71682.html" target="_blank">visit the official website</a>.</p>
<p>You can download <a href="http://www.brothersoft.com/download-accelerator-plus-download-71682.html" target="_blank">Download Accelerator Plus 8.7.0.1 (Free) here</a>. Now, version 8.7.0.3 also available.</p>
<p></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/share_save?sitename=Silverf0x&amp;siteurl=http%3A%2F%2Fwww.silverf0x.com%2F&amp;linkname=Download%20Accelerator%20Plus%208.7.0.1&amp;linkurl=http%3A%2F%2Fwww.silverf0x.com%2F2008%2F08%2Fdownload-accelerator-plus-8701%2F" style=";background:url(http://www.silverf0x.com/wp-content/plugins/add-to-any/favicon.png) no-repeat scroll 0px 0px !important;padding:1px 5px 5px 22px">Share/Save</a>
    <script type="text/javascript">
		a2a_linkname="Download Accelerator Plus 8.7.0.1";
		a2a_linkurl="http://www.silverf0x.com/2008/08/download-accelerator-plus-8701/";
						    </script>
    <script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://www.silverf0x.com/2008/08/download-accelerator-plus-8701/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Alison Carroll, The New Face of Lara Croft</title>
		<link>http://www.silverf0x.com/2008/08/alison-carroll-the-new-face-of-lara-croft/</link>
		<comments>http://www.silverf0x.com/2008/08/alison-carroll-the-new-face-of-lara-croft/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 08:14:21 +0000</pubDate>
		<dc:creator>silverf0x</dc:creator>
		
		<category><![CDATA[Games]]></category>

		<category><![CDATA[Movie]]></category>

		<category><![CDATA[allison carrol]]></category>

		<category><![CDATA[lara croft]]></category>

		<category><![CDATA[tomb raider]]></category>

		<guid isPermaLink="false">http://www.silverf0x.com/?p=31</guid>
		<description><![CDATA[Last week, I saw news in games.tv about the New Lara Croft (I will miss Angelina Jolie as Lara Croft). If you want see this news too, you can see it in Youtube.
Featuring the essential characteristics at the core of Lara Croft’s personality &#8212; brawn, brains and beauty &#8212; Alison Carroll particularly compliments this iteration [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://www.silverf0x.com/wp-content/uploads/2008/08/alison.jpg"><img class="alignleft size-medium wp-image-32" style="margin: 3px; float: left;" title="alison" src="http://www.silverf0x.com/wp-content/uploads/2008/08/alison-300x225.jpg" alt="" width="300" height="225" /></a>Last week, I saw news in games.tv about the New Lara Croft (I will miss <strong>Angelina Jolie</strong> as <strong>Lara Croft</strong>). If you want see this news too, you can see it in <a href="http://www.youtube.com/watch?v=AYURnwvQ5i0" target="_blank">Youtube</a>.</p>
<p style="text-align: justify;">Featuring the essential characteristics at the core of Lara Croft’s personality &#8212; brawn, brains and beauty &#8212; <strong>Alison Carroll</strong> particularly compliments this iteration of Ms. Croft. <strong>Tomb Raider: Underworld</strong> is the first Tomb Raider game designed to fully reflect the physical athleticism and real-world skills required of a world-class adventurer.<br />
<span id="more-31"></span></p>
<p style="text-align: justify;">With an all-new engine built specifically to exploit the capabilities of the latest game consoles, <strong>Tomb Raider: Underworld</strong> depicts Lara as we have never seen her before with movements and skills reminiscent of a highly skilled gymnast.</p>
<p style="text-align: justify;">Sharing Lara’s strength and grace, Alison is an experienced competitive gymnast who has performed and competed across the globe.  Her more than 12 years of gymnastics training align perfectly with the game’s enhanced movement set. For more info, visit <a href="http://www.tombraider.com/" target="_blank">Tomb Raider website</a>.</p>
<p><a href="http://www.silverf0x.com/wp-content/uploads/2008/08/tru_alison_carroll_a_2000.jpg"><img class="aligncenter size-full wp-image-33" title="alison_carroll_a_2000" src="http://www.silverf0x.com/wp-content/uploads/2008/08/tru_alison_carroll_a_2000.jpg" alt="" width="500" height="666" /></a></p>
<p><a href="http://www.silverf0x.com/wp-content/uploads/2008/08/tru_alison_carroll_b_2000.jpg"><img class="aligncenter size-full wp-image-34" title="alison_carroll_b_2000" src="http://www.silverf0x.com/wp-content/uploads/2008/08/tru_alison_carroll_b_2000.jpg" alt="" width="500" height="375" /></a></p>
<p>I can&#8217;t wait to see this <strong>New Lara Croft Movie</strong>. It will be release on November 2008. Which one is sexier, <strong>Allison Carrol</strong> or <strong>Angeline Jolie</strong> ?? Don&#8217;t be shy to make your opinion ??</p>
<p></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/share_save?sitename=Silverf0x&amp;siteurl=http%3A%2F%2Fwww.silverf0x.com%2F&amp;linkname=Alison%20Carroll%2C%20The%20New%20Face%20of%20Lara%20Croft&amp;linkurl=http%3A%2F%2Fwww.silverf0x.com%2F2008%2F08%2Falison-carroll-the-new-face-of-lara-croft%2F" style=";background:url(http://www.silverf0x.com/wp-content/plugins/add-to-any/favicon.png) no-repeat scroll 0px 0px !important;padding:1px 5px 5px 22px">Share/Save</a>
    <script type="text/javascript">
		a2a_linkname="Alison Carroll, The New Face of Lara Croft";
		a2a_linkurl="http://www.silverf0x.com/2008/08/alison-carroll-the-new-face-of-lara-croft/";
						    </script>
    <script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://www.silverf0x.com/2008/08/alison-carroll-the-new-face-of-lara-croft/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mengapa Selalu PSMS Mania ?</title>
		<link>http://www.silverf0x.com/2008/08/mengapa-selalu-psms-mania/</link>
		<comments>http://www.silverf0x.com/2008/08/mengapa-selalu-psms-mania/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 19:33:52 +0000</pubDate>
		<dc:creator>silverf0x</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[migrain]]></category>

		<category><![CDATA[psms]]></category>

		<category><![CDATA[vertigo]]></category>

		<guid isPermaLink="false">http://www.silverf0x.com/?p=29</guid>
		<description><![CDATA[Seiring dengan bergulirnya Indonesia Super Liga, setiap kali PSMS maen, saya selalu mendukung walaupun sudah lama berdomisili di Bandung. Saya sering bertanya-tanya, &#8220;Kok bisa sih selalu mendukung PSMS ?&#8221;
&#8220;Kok saya BT ketika Markus, Saktiawan pindah ke tim laen ?&#8221;
Hari ini saya menemukan jawabannya. Sebenarnya saya sudah sangat mencintai kultur masyarakat Sumut, makanya menyukai PSMS yang [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Seiring dengan bergulirnya <a href="http://www.superliga-indonesia.com/" target="_blank">Indonesia Super Liga</a>, setiap kali <strong><a href="http://www.kampakfc.com/" target="_blank">PSMS</a></strong> maen, saya selalu mendukung walaupun sudah lama berdomisili di Bandung. Saya sering bertanya-tanya, &#8220;Kok bisa sih selalu mendukung <strong>PSMS </strong>?&#8221;<br />
&#8220;Kok saya BT ketika Markus, Saktiawan pindah ke tim laen ?&#8221;</p>
<p style="text-align: justify;">Hari ini saya menemukan jawabannya. <span id="more-29"></span>Sebenarnya saya sudah sangat mencintai kultur masyarakat Sumut, makanya menyukai PSMS yang gaya sepakbolanya mewakili masyarakat Sumut. Saya menemukan jawaban ini ketika hari ini, saya diberi saran (sebenarnya sih lebih tepat disebut sebagai sindiran/kritik) dari teman baru blogger dari Sumut, <a href="http://adieska.net" target="_blank">Adieska</a>. Beliau ini tidak segan-segan langsung menyindir, <a href="http://www.silverf0x.com/2008/08/dopdf-61-free-pdf-converter/#comments" target="_self">&#8220;Masa sih blog PR 2 baru ada 19 postingan ?&#8221;</a>. Ketika membacanya, &#8220;Wow, ini nih yang gua cari. Kritik/masukan tajam tanpa basa basi yang cenderung membangun. Ini yang selama ini hilang&#8221;.</p>
<p style="text-align: justify;">Di Jawa, tepatnya Jawa Barat, budayanya sangat berbeda. Masyarat Jawa Barat sangat ramah dan selalu berusaha tidak menyakiti perasaan Anda, sehingga sangat jarang saya menerima perlakuan seperti itu. Ketika ada yang tidak beres, sangat susah mendapat masukan/kritik setajam seperti itu. Saya hanya bisa menerka-nerka atau menebak-nebak, &#8220;Saya salah di mana yah ?&#8221;</p>
<p style="text-align: justify;">Mungkin ini yang memicu sakit kepala selama ini saya derita, kadang sakit kepalanya serasa seperti <a href="http://en.wikipedia.org/wiki/Vertigo" target="_blank">Vertigo</a> (kalau ada yang ngomong serasa penyakit akik-akik alias kakek-kakek, gua sumpahin vertigo juga&#58;&#80<img src='http://www.silverf0x.com/smilies/yahoo_wink.gif' alt='&#59;&#41;' class='wp-smiley' width='18' height='18' title='&#59;&#41;' />, kadang juga serasa seperti <a href="http://en.wikipedia.org/wiki/Migren" target="_blank">migrain/migren</a>. Banyak pertanyaan yang terkecambuk di kepalaku ini untuk mencari-cari &#8220;apa yang salah&#8221; tersebut, sampai-sampai dokter menyatakan saya stress dan disarankan untuk istirahat/rileks.</p>
<p style="text-align: justify;">Sindiran bro Adieska hari ini serasa menghilangkan sebagian sakit kepala ini dan sekaligus mendorong untuk membuat postingan lebih banyak lagi. Terima kasih banyak Lae. <strong>Teman Sejati Adalah Teman Yang Menegur Anda Ketika Anda Salah</strong> (lupa <em>quotation</em> nya sapa&#58;&#45;&#68<img src='http://www.silverf0x.com/smilies/yahoo_wink.gif' alt='&#59;&#41;' class='wp-smiley' width='18' height='18' title='&#59;&#41;' /><br />
Ternyata saya masih &#8220;Sumut Inside&#8221;.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/share_save?sitename=Silverf0x&amp;siteurl=http%3A%2F%2Fwww.silverf0x.com%2F&amp;linkname=Mengapa%20Selalu%20PSMS%20Mania%20%3F&amp;linkurl=http%3A%2F%2Fwww.silverf0x.com%2F2008%2F08%2Fmengapa-selalu-psms-mania%2F" style=";background:url(http://www.silverf0x.com/wp-content/plugins/add-to-any/favicon.png) no-repeat scroll 0px 0px !important;padding:1px 5px 5px 22px">Share/Save</a>
    <script type="text/javascript">
		a2a_linkname="Mengapa Selalu PSMS Mania ?";
		a2a_linkurl="http://www.silverf0x.com/2008/08/mengapa-selalu-psms-mania/";
						    </script>
    <script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://www.silverf0x.com/2008/08/mengapa-selalu-psms-mania/feed/</wfw:commentRss>
		</item>
		<item>
		<title>LimeWire 4.18</title>
		<link>http://www.silverf0x.com/2008/08/limewire-418/</link>
		<comments>http://www.silverf0x.com/2008/08/limewire-418/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 19:05:38 +0000</pubDate>
		<dc:creator>silverf0x</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[file-sharing]]></category>

		<category><![CDATA[limewire]]></category>

		<category><![CDATA[p2p]]></category>

		<guid isPermaLink="false">http://www.silverf0x.com/?p=27</guid>
		<description><![CDATA[LimeWire is the world&#8217;s fastest P2P file-sharing application for all types of computer files, including music, video, pictures, games, and text documents. Other features include dynamic querying, file previews during download, advanced techniques for locating rare files, and an easy, clean user interface.

LimeWire&#8217;s new spam blocker gets rid of junk results, and automatic updates will [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://www.silverf0x.com/wp-content/uploads/2008/08/limewire.jpg"><img class="alignleft size-medium wp-image-28" style="margin: 3px; float: left;" title="LimeWire" src="http://www.silverf0x.com/wp-content/uploads/2008/08/limewire.jpg" alt="" width="288" height="133" /></a><strong>LimeWire</strong> is the world&#8217;s fastest <strong>P2P file-sharing application</strong> for all types of computer files, including music, video, pictures, games, and text documents. Other features include dynamic querying, file previews during download, advanced techniques for locating rare files, and an easy, clean user interface.<br />
<span id="more-27"></span></p>
<p style="text-align: justify;">LimeWire&#8217;s new spam blocker gets rid of junk results, and automatic updates will keep you sharing faster than ever with the latest version. You can search for Creative Commons and Weedshare licensed files, and publish your own creative works with Creative Commons licensing. LimeWire continues its guarantee of no adware or spyware. Includes a built-in bittorent support. Version 4.18 may include unspecified updates, enhancements, or bug fixes.</p>
<p>The latest and greatest new additions to LimeWire :</p>
<ul>
<li class="tls"> <strong>Protection Against Identity Theft</strong><br />
New ways to control your sensitive material.</li>
<li class="sharing"> <strong>Even Better Control Over Shared Files</strong><br />
Easily see and control what files you are sharing.</li>
<li class="browser"> <strong>Built-In Browser</strong>*<br />
Browse the Web, right from LimeWire</li>
</ul>
<p>For more information, <a href="http://www.limewire.com" target="_blank">visit the official website</a>.</p>
<p>To download, <a href="http://dw.com.com/redir?edId=3&amp;siteId=4&amp;oId=3000-2166_4-10051892&amp;ontId=2166_4&amp;spi=360fc1b55f13c988900b2cdbf2d5fb6e&amp;lop=link&amp;tag=tdw_dltext&amp;ltype=dl_dlnow&amp;pid=10847936&amp;mfgId=76079&amp;merId=76079&amp;pguid=ziiy@QoPjAMAADTs48IAAABo&amp;destUrl=http%3A%2F%2Fwww.download.com%2F3001-2166_4-10847936.html%3Fspi%3D360fc1b55f13c988900b2cdbf2d5fb6e" target="_blank">visit this page</a>.</p>
<p></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/share_save?sitename=Silverf0x&amp;siteurl=http%3A%2F%2Fwww.silverf0x.com%2F&amp;linkname=LimeWire%204.18&amp;linkurl=http%3A%2F%2Fwww.silverf0x.com%2F2008%2F08%2Flimewire-418%2F" style=";background:url(http://www.silverf0x.com/wp-content/plugins/add-to-any/favicon.png) no-repeat scroll 0px 0px !important;padding:1px 5px 5px 22px">Share/Save</a>
    <script type="text/javascript">
		a2a_linkname="LimeWire 4.18";
		a2a_linkurl="http://www.silverf0x.com/2008/08/limewire-418/";
						    </script>
    <script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://www.silverf0x.com/2008/08/limewire-418/feed/</wfw:commentRss>
		</item>
		<item>
		<title>doPDF 6.1 : Free PDF Converter</title>
		<link>http://www.silverf0x.com/2008/08/dopdf-61-free-pdf-converter/</link>
		<comments>http://www.silverf0x.com/2008/08/dopdf-61-free-pdf-converter/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 07:50:01 +0000</pubDate>
		<dc:creator>silverf0x</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[doc pdf converter]]></category>

		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://www.silverf0x.com/?p=25</guid>
		<description><![CDATA[ doPDF is a free PDF converter for both personal and commercial use. Using doPDF you can create PDF files by selecting the &#8220;Print&#8221; command from virtually any application. With one click you can convert your Microsoft Excel, Word or PowerPoint documents or your emails and favorite web sites to PDF files.
To convert document (.doc) [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a title="Free PDF Creator, doPDF" href="http://www.dopdf.com"><img src="http://www.dopdf.com/images/banner_dopdf_148_116_exp.png" alt="" hspace="3" vspace="3" align="left" /></a> doPDF is a free PDF converter for both personal and commercial use. Using doPDF you can create PDF files by selecting the &#8220;Print&#8221; command from virtually any application. With one click you can convert your Microsoft Excel, Word or PowerPoint documents or your emails and favorite web sites to PDF files.</p>
<p style="text-align: justify;">To convert document (.doc) to PDF, you just have to print the document to doPDF, the free pdf converter.          <strong>Open</strong> a document (with Microsoft Word, WordPad, NotePad or any other software), choose <strong>Print</strong> and select <strong>doPDF</strong>. It will ask you where to save the PDF file and when finished, the PDF file will be automatically opened in your default PDF viewer.<span id="more-25"></span></p>
<p style="text-align: justify;">doPDF is a free PDF converter, it is not a PDF viewer.        To view PDF files you will need PDF viewer, such as Adobe Reader, or if you like the lighter one, you can use FoxitReader as your PDF viewer.</p>
<p style="text-align: justify;">For more information, <a href="http://www.dopdf.com/" target="_blank">visit the official website</a>.</p>
<p style="text-align: justify;">To download, <a href="http://www.download.com/doPDF-Free-PDF-Converter/3000-10743_4-10648880.html?part=dl-10648880&amp;subj=dl&amp;tag=button" target="_blank">visit this page</a>.</p>
<p style="text-align: justify;">
<p></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/share_save?sitename=Silverf0x&amp;siteurl=http%3A%2F%2Fwww.silverf0x.com%2F&amp;linkname=doPDF%206.1%20%3A%20Free%20PDF%20Converter&amp;linkurl=http%3A%2F%2Fwww.silverf0x.com%2F2008%2F08%2Fdopdf-61-free-pdf-converter%2F" style=";background:url(http://www.silverf0x.com/wp-content/plugins/add-to-any/favicon.png) no-repeat scroll 0px 0px !important;padding:1px 5px 5px 22px">Share/Save</a>
    <script type="text/javascript">
		a2a_linkname="doPDF 6.1 : Free PDF Converter";
		a2a_linkurl="http://www.silverf0x.com/2008/08/dopdf-61-free-pdf-converter/";
						    </script>
    <script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://www.silverf0x.com/2008/08/dopdf-61-free-pdf-converter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Camfrog Video Chat 5.1.128</title>
		<link>http://www.silverf0x.com/2008/08/camfrog-video-chat-51128/</link>
		<comments>http://www.silverf0x.com/2008/08/camfrog-video-chat-51128/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 09:25:26 +0000</pubDate>
		<dc:creator>silverf0x</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[chatting]]></category>

		<category><![CDATA[web cam]]></category>

		<category><![CDATA[yahoo intai]]></category>

		<guid isPermaLink="false">http://www.silverf0x.com/?p=24</guid>
		<description><![CDATA[Camfrog Video Chat allows you to join real streaming video chat rooms where you can hear, see, and chat with many people at a time. Instant message a user to get to know them before you Webcam chat, and add them to your contact list. This videoconferencing software also works behind most firewalls and routers. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Camfrog Video Chat allows you to join real streaming video chat rooms where you can hear, see, and chat with many people at a time. Instant message a user to get to know them before you Webcam chat, and add them to your contact list. This videoconferencing software also works behind most firewalls and routers. Camfrog Video Chat allows multi-user videoconferencing where you can join a room with up to 1000 users and just click a user name to begin seeing someone. Press the &#8216;talk&#8217; button to talk to the entire room with audio.<br />
<span id="more-24"></span></p>
<p style="text-align: justify;">The video chat rooms are hosted by broadband users who are running the Camfrog Video Chat Room Server software so any user can set up their own multi-user video conference for other users to join. No Webcam is required to see people, but some rooms might not allow users without Webcams. Camfrog Video Chat is optimized for broadband users so it has fast video.</p>
<p>Version 5.1.128 may include unspecified updates, enhancements, or bug fixes</p>
<p>More information, visit <a href="http://www.camfrog.com/" target="_blank">the official website</a>.</p>
<p>For download, visit <a href="http://dw.com.com/redir?edId=3&amp;siteId=4&amp;oId=3000-2348_4-10265538&amp;ontId=2348_4&amp;spi=fe2da6cb7a69f78d0b242d3602077adb&amp;lop=link&amp;tag=tdw_dltext&amp;ltype=dl_dlnow&amp;pid=10872333&amp;mfgId=6252671&amp;merId=6252671&amp;pguid=eWKQ4QoPjAQAAFrKmzYAAAA2&amp;destUrl=http%3A%2F%2Fwww.download.com%2F3001-2348_4-10872333.html%3Fspi%3Dfe2da6cb7a69f78d0b242d3602077adb" target="_blank">this page</a>.</p>
<p style="text-align: justify;">This software usually be used to watch the &#8220;show&#8221; (u know what I mean) in internet. It always used as alternative from <a href="http://intai.combinasi.com/" target="_blank">Y! Intai</a> (all content is not my responsible, be wise).</p>
<p>This review of software dedicated to nojhiko and mr.wong. Enjoy it !!.</p>
<p></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/share_save?sitename=Silverf0x&amp;siteurl=http%3A%2F%2Fwww.silverf0x.com%2F&amp;linkname=Camfrog%20Video%20Chat%205.1.128&amp;linkurl=http%3A%2F%2Fwww.silverf0x.com%2F2008%2F08%2Fcamfrog-video-chat-51128%2F" style=";background:url(http://www.silverf0x.com/wp-content/plugins/add-to-any/favicon.png) no-repeat scroll 0px 0px !important;padding:1px 5px 5px 22px">Share/Save</a>
    <script type="text/javascript">
		a2a_linkname="Camfrog Video Chat 5.1.128";
		a2a_linkurl="http://www.silverf0x.com/2008/08/camfrog-video-chat-51128/";
						    </script>
    <script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://www.silverf0x.com/2008/08/camfrog-video-chat-51128/feed/</wfw:commentRss>
		</item>
		<item>
		<title>IrfanView 4.2</title>
		<link>http://www.silverf0x.com/2008/08/irfanview-42/</link>
		<comments>http://www.silverf0x.com/2008/08/irfanview-42/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 06:53:08 +0000</pubDate>
		<dc:creator>silverf0x</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[image viewer]]></category>

		<category><![CDATA[irfanview]]></category>

		<guid isPermaLink="false">http://www.silverf0x.com/?p=23</guid>
		<description><![CDATA[The image viewer that I use until now. I prefer Irfanview than ACDSee because Irfanview use less memory than ACDSee, so it&#8217;s not make my computer slower.
Some description for Irfanview :
IrfanView is a fast and compact image viewer/converter. It is trying to be simple for beginners and powerful for professionals. Many supported file formats and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The image viewer that I use until now. I prefer Irfanview than ACDSee because Irfanview use less memory than ACDSee, so it&#8217;s not make my computer slower.</p>
<p>Some description for Irfanview :</p>
<p style="text-align: justify;">IrfanView is a fast and compact image viewer/converter. It is trying to be simple for beginners and powerful for professionals. Many supported file formats and features. Features include: multi-language support, Thumbnail option, Painting, slideshow, toolbar skins, fast directory browsing, batch conversion/editing, multipage editing, file search, change color depth, scanning, cut/crop, IPTC edit, capturing, lossless JPG operations, effects, ICC support, EXE/SCR creating, many hotkeys, command line options and plugins.</p>
<p>Version 4.2 adds Basic Unicode support and new options.</p>
<p>For more information, visit <a href="http://www.irfanview.com/" target="_blank">the official website</a>.</p>
<p>For download, <a href="http://www.irfanview.com/main_download_engl.htm" target="_blank">visit this page</a>.</p>
<p></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/share_save?sitename=Silverf0x&amp;siteurl=http%3A%2F%2Fwww.silverf0x.com%2F&amp;linkname=IrfanView%204.2&amp;linkurl=http%3A%2F%2Fwww.silverf0x.com%2F2008%2F08%2Firfanview-42%2F" style=";background:url(http://www.silverf0x.com/wp-content/plugins/add-to-any/favicon.png) no-repeat scroll 0px 0px !important;padding:1px 5px 5px 22px">Share/Save</a>
    <script type="text/javascript">
		a2a_linkname="IrfanView 4.2";
		a2a_linkurl="http://www.silverf0x.com/2008/08/irfanview-42/";
						    </script>
    <script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://www.silverf0x.com/2008/08/irfanview-42/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
