<?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>Spirit of Change &#187; Serendipity</title>
	<atom:link href="http://vavai.net/category/blog/serendipity/feed/" rel="self" type="application/rss+xml" />
	<link>http://vavai.net</link>
	<description>Masim "Vavai" Sugianto Personal Blog</description>
	<lastBuildDate>Tue, 13 Apr 2010 02:26:59 +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>Solved : PXE Boot Failed, PXE-T01: file not found</title>
		<link>http://vavai.net/2009/01/13/solved-pxe-boot-failed-pxe-t01-file-not-found/</link>
		<comments>http://vavai.net/2009/01/13/solved-pxe-boot-failed-pxe-t01-file-not-found/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 05:45:09 +0000</pubDate>
		<dc:creator>Masim "Vavai" Sugianto</dc:creator>
				<category><![CDATA[Headline]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[Serendipity]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[tftp]]></category>

		<guid isPermaLink="false">http://vavai.net/?p=416</guid>
		<description><![CDATA[Last night I decided to remove old-non openSUSE-operating system on my wife&#8217;s PC. I want to re-install with openSUSE 11.1. The PC is quite compact. No CD/DVD ROM, No Floppy Disk and it has USB problem (can&#8217;t boot from USB). The one-and-only solution is by installing new OS over a network. I set up a [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I decided to remove old-non openSUSE-operating system on my wife&#8217;s PC. I want to re-install with openSUSE 11.1.</p>
<p>The PC is quite compact. No CD/DVD ROM, No Floppy Disk and it has USB problem (can&#8217;t boot from USB). The one-and-only solution is by installing new OS over a network.</p>
<p>I set up a TFTP Server and try to boot from PXE Boot. DHCP client running successfully but it can&#8217;t reached TFTP Server :<br />
<em><br />
PXE-T01: file not found<br />
PXE-E3B-TFTP Error file not found<br />
PXE-M0F exiting Intel boot agent<br />
</em><br />
After investigating DHCP configuration, I found that this error occurred regarding the location of <strong>pxelinux.0 file</strong>. I&#8217;m using /srv/tftp as TFTP base source and the file pxelinux.0 resides on /srv/tftp/tftpboot. On previous configuration, I used complete path :</p>
<pre class="brush: cpp">
subnet 192.168.0.0 netmask 255.255.255.0 {
option broadcast-address 192.168.0.255;
pool {
range 192.168.0.201 192.168.0.211; # only need a few addresses
default-lease-time 180; # no long lease time required for booting
max-lease-time 360;     # booted system does its own dhcp request
server-name &quot;192.168.0.1&quot;; # This happens to be the IP of this server too
next-server 192.168.0.1; # Address of the TFTP server
filename &quot;/srv/tftp/tftpboot/pxelinux.0&quot;;
allow members of &quot;pxe&quot;; # only respond to PXE requests
allow members of &quot;etherboot&quot;; # allow etherboot, too
}
}
</pre>
<p>I solved the the problem by change TFTP base source into /srv/tftp/tftpboot and then change the line</p>
<pre class="brush: cpp">
filename &quot;/srv/tftp/tftpboot/pxelinux.0&quot;;
</pre>
<p>into</p>
<pre class="brush: cpp">
filename &quot;pxelinux.0&quot;;
</pre>
<p>The location of pxelinux.0 must be relative to TFTP base source. You may also used &#8220;/srv&#8221; as TFTP base source and then use relative location filename &#8220;tftp/tftpboot/pxelinux.0&#8243;;</p>
<h3  class="related_post_title">Related Entries</h3><ul class="related_post"><li><a href="http://vavai.net/2009/01/17/tutorial-opensuse-network-install-over-pxe-boot-part-ii/" title="Tutorial : openSUSE Network Install over PXE-Boot Part II">Tutorial : openSUSE Network Install over PXE-Boot Part II</a> (3)</li><li><a href="http://vavai.net/2009/01/17/tutorial-opensuse-network-install-over-pxe-boot-a-complete-guide-part-i/" title="Tutorial : openSUSE Network Install over PXE-Boot Part I">Tutorial : openSUSE Network Install over PXE-Boot Part I</a> (4)</li><li><a href="http://vavai.net/2009/01/04/opensuse-network-installationupgrade-without-cddvd/" title="openSUSE Network Installation/Upgrade Without CD/DVD">openSUSE Network Installation/Upgrade Without CD/DVD</a> (5)</li><li><a href="http://vavai.net/2010/03/31/user-account-integration-between-samba-pdc-zimbra-mail-server-on-opensuse-sles/" title="User Account Integration between Samba PDC &#038; Zimbra Mail Server on openSUSE/SLES">User Account Integration between Samba PDC &#038; Zimbra Mail Server on openSUSE/SLES</a> (2)</li><li><a href="http://vavai.net/2010/03/30/how-to-samba-pdcopenldap-on-opensusesles-part-2-finish/" title="How To : Samba PDC+OpenLDAP on openSUSE/SLES Part 2 (Finish)">How To : Samba PDC+OpenLDAP on openSUSE/SLES Part 2 (Finish)</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2009/01/13/solved-pxe-boot-failed-pxe-t01-file-not-found/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Serendipity to WordPress Migration Toolkit</title>
		<link>http://vavai.net/2008/10/10/serendipity-to-wordpress-migration-toolkit/</link>
		<comments>http://vavai.net/2008/10/10/serendipity-to-wordpress-migration-toolkit/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 05:20:13 +0000</pubDate>
		<dc:creator>Masim "Vavai" Sugianto</dc:creator>
				<category><![CDATA[Serendipity]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://vavai.net/?p=114</guid>
		<description><![CDATA[I&#8217;m a big fans of Serendipity Weblog System. I used Serendipity for almost all of my website. I have no problem with serendipity and it looks like more secure than another blog system, WordPress as an example. I know, WordPress seems to be less secure because WordPress have more user and more popular than Serendipity. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://vavai.net/wp-content/uploads/2008/10/wp-logo.png"><img class="alignleft size-full wp-image-116" style="margin: 5px;;  float: left; padding: 4px; margin: 0 7px 2px 0;" title="WordPress Logo" src="http://vavai.net/wp-content/uploads/2008/10/wp-logo.png" alt="" width="150" height="150" /></a>I&#8217;m a big fans of <a href="http://www.s9y.org">Serendipity Weblog System</a>. I used Serendipity for almost all of my website. I have no problem with serendipity and it looks like more secure than another blog system, WordPress as an example. I know, WordPress seems to be less secure because WordPress have more user and more popular than Serendipity.</p>
<p>One main feature that Serendipity could not fit with all of my requirement is about themes or template. WordPress have a great themes than Serendipity has and it&#8217;s an advantage for WordPress user. After reviewing some Serendipity nice themes (that almost all of them have been applied on my blog), I decided to migrate my personal website on http://www.vavai.net into WordPress and let another primary website (in Indonesian) without change.</p>
<p>The main reason is about Themes. I want to rebuild my website with Magazine Style and I found a nice magazine style, <a href="http://michaelhutagalung.com/2008/05/arthemia-magazine-blog-wordpress-theme-released/">Arthemia2</a> that was created by Michael Jubel Hutagalung. He is a great web designer and I think Arthemia is one of a coolest WordPress magazine style themes.</p>
<p>Another problem came up : How to import and migrate Serendipity post and article, and category, and comment into WordPress ? Serendipity is not supported blog engine which can be imported into WordPress by default. I must take another option to migrate the existing blog content or let it loss and build from scratch. Although vavai.net have only about 40 post and some comment, I most likely to take another choice to migrate and keep them on new blog with WordPress.</p>
<p>Luckily, after various search on Google, I found a better choice. Mike Tyson (Sorry, just kidding. His name is Michael Tyson) has build a useful plugin named &#8220;Serendipity (s9y) importer for WordPress&#8221;. I found another plugin but I choose his plugin because he said,</p>
<blockquote><p>&#8220;In the process of merging this site from Serendipity over to WordPress, I came across an <a onclick="javascript:pageTracker._trackPageview ('/outbound/technosailor.com');" href="http://technosailor.com/2007/01/02/new-version-of-serendipity-s9y-to-wordpress-importer-available/">importer</a> which lets me migrate the data across. Unfortunately it was a bit buggy, not properly assigning categories and timing out when processing the post data.I made some improvements, and here’s the new version&#8221;</p></blockquote>
<p>I got successfully exporting my old post, comment, categories and user from Serendipity into WordPress with the following step :</p>
<ol>
<li>Create wordpress blog within same server (or sub domain) where your current Serendipity weblog hosted</li>
<li>Download the plugin (I save a copy as backup <a href="http://vavai.net/wp-content/uploads/serendipity-import-12.zip">here</a> and <a href="http://vavai.net/wp-content/uploads/serendipityphp11-12patch.zip">here</a>) from <a href="http://michael.tyson.id.au/wp-content/uploads/2008/09/serendipity-import-12.zip">Michael</a> <a href="http://michael.tyson.id.au/wp-content/uploads/2008/09/serendipityphp11-12patch.zip">blog</a>.</li>
<li>Extract the plugin</li>
<li>Copy serendipity.php into your WordPress folder, in wp-admin/import folder</li>
<li>Login to your new WordPress administration panel</li>
<li>Go to Manage | Import</li>
<li>Choose Serendipity and follow the wizard</li>
<li>Serendipity will be exported to WordPress, started with Categories, user, post and then comment</li>
<li>Export WordPress entry (post, comment, categories, page, etc) for another purpose, e.g. : for exporting into another WordPress blog.</li>
</ol>
<p>Happy migrate !</p>
<h3  class="related_post_title">Random Post</h3><ul class="related_post"><li><a href="http://vavai.net/2009/01/02/first-hackfest-for-indonesian-opensuse-community/" title="First Hackfest for Indonesian openSUSE Community">First Hackfest for Indonesian openSUSE Community</a> (3)</li><li><a href="http://vavai.net/2009/12/22/installing-zimbra-6-0-4-on-opensuse-11-1-64-bit-part-1/" title="Installing Zimbra 6.0.4 on openSUSE 11.1 64 bit &#8211; Part 1">Installing Zimbra 6.0.4 on openSUSE 11.1 64 bit &#8211; Part 1</a> (11)</li><li><a href="http://vavai.net/2010/01/12/funny-soldier/" title="Funny Soldier">Funny Soldier</a> (2)</li><li><a href="http://vavai.net/2009/09/05/tips-for-dumping-large-mysql-database/" title="BigDump : Tips for Dumping Large MySQL Database">BigDump : Tips for Dumping Large MySQL Database</a> (4)</li><li><a href="http://vavai.net/2009/03/20/special-costume-for-special-event/" title="Special Costume for Special Event">Special Costume for Special Event</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2008/10/10/serendipity-to-wordpress-migration-toolkit/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Comment Problem in Serendipity Blog</title>
		<link>http://vavai.net/2007/12/13/comment-problem-in-serendipity-blog/</link>
		<comments>http://vavai.net/2007/12/13/comment-problem-in-serendipity-blog/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 10:02:18 +0000</pubDate>
		<dc:creator>Masim "Vavai" Sugianto</dc:creator>
				<category><![CDATA[Serendipity]]></category>

		<guid isPermaLink="false">http://backup.vavai.net/?p=35</guid>
		<description><![CDATA[A friend of mine contacted me last night about how difficult to write a comment in my bridge-blog (my education tools to learning English ). He said that the problem occurred while trying to submit the comment : &#34;Your comment did not contain a Session-Hash. Comments can only be made on this blog when having [...]]]></description>
			<content:encoded><![CDATA[<p>A friend of mine contacted me last night about how difficult to write a comment in my bridge-blog (my education tools to learning English <img src='http://vavai.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ). He said that the problem occurred while trying to submit the comment :</p>
<p><i>&quot;Your comment did not contain a Session-Hash. Comments can only be made on this blog when having cookies enabled!&quot;</i></p>
<p>After searching a resolution for a while, I found the answer from Garvin Hicking in Serendipity Board. The problem itself came from Spam Protector plugin.<br />
<br />To increase spam protection, I&#8217;ve activates CSRF protection for comments option. If enabled, a special hash value will check that only users can submit a comment with a valid session ID. This will decrease spam and prevent users from tricking us into submitting comments via CSRF, but it will also prevent users commenting on our blog without cookies.</p>
<p>There is 2 solution for this problem :
<ol>
<li>Make sure your browser accepts PHP session cookies</li>
<li>Go to your anti-spam plugin (Spam Protector) configuration and disable the option for &quot;Use XSRF/CSRF checks&quot;. </li>
</ol>
<p>Related Entry :
<ol>
<li><a href="http://board.s9y.org/viewtopic.php?t=11567&#038;highlight=comment+contain+sessionhash+comments+made+blog+cookies+enabled">Not Possible to Add Comments Anymore&#8230;</a></li>
</ol>
<h3  class="related_post_title">Random Post</h3><ul class="related_post"><li><a href="http://vavai.net/2010/01/28/tutorial-samba-pdc-openldap-on-opensuse-11-1-%e2%80%93-part-5/" title="Tutorial : Samba PDC + OpenLDAP on openSUSE 11.1 – Part 5">Tutorial : Samba PDC + OpenLDAP on openSUSE 11.1 – Part 5</a> (3)</li><li><a href="http://vavai.net/2010/01/04/tutorial-samba-pdc-openldap-on-opensuse-11-1-part-1/" title="Tutorial : Samba PDC + OpenLDAP on openSUSE 11.1 &#8211; Part 1">Tutorial : Samba PDC + OpenLDAP on openSUSE 11.1 &#8211; Part 1</a> (7)</li><li><a href="http://vavai.net/2010/01/01/solved-problem-installing-vmware-workstation-6-5-3-64-bit-on-opensuse-11-2-64-bit/" title="Solved : Problem Installing VMWare Workstation 6.5.3 64 bit on openSUSE 11.2 64 bit">Solved : Problem Installing VMWare Workstation 6.5.3 64 bit on openSUSE 11.2 64 bit</a> (2)</li><li><a href="http://vavai.net/2009/12/22/times-top-10-everything-of-2009-best-worst-list/" title="Time&#8217;s Top 10 Everything of 2009 : Best &#038; Worst List">Time&#8217;s Top 10 Everything of 2009 : Best &#038; Worst List</a> (0)</li><li><a href="http://vavai.net/2008/10/08/zimbra-collaboration-suite-50-auto-install-script-for-opensuse-103/" title="Zimbra Collaboration Suite 5.0 Auto Install Script for openSUSE 10.3">Zimbra Collaboration Suite 5.0 Auto Install Script for openSUSE 10.3</a> (5)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2007/12/13/comment-problem-in-serendipity-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bleezer, Offline Blog Editor for Linux</title>
		<link>http://vavai.net/2007/11/26/bleezer-offline-blog-editor-for-linux/</link>
		<comments>http://vavai.net/2007/11/26/bleezer-offline-blog-editor-for-linux/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 12:54:56 +0000</pubDate>
		<dc:creator>Masim "Vavai" Sugianto</dc:creator>
				<category><![CDATA[Serendipity]]></category>

		<guid isPermaLink="false">http://backup.vavai.net/?p=26</guid>
		<description><![CDATA[Yesterday, Mr. Yusril Ihza Mahendra asked me about offline blog editor to maintain his personal blog. He tried Microsoft Word to write his post and copy-paste it into his blog editor but this is not really quite simple. It still need some improper steps, and Microsoft Word format seems to be broken if moves to [...]]]></description>
			<content:encoded><![CDATA[<p><img vspace="0" hspace="0" border="0" alt="About Bleezer" src="http://www.vavai.net/uploads/Bleezer1.jpg" title="Bleezer About" />
<p align="left">Yesterday, <a href="http://yusril.ihzamahendra.com">Mr. Yusril Ihza Mahendra</a> asked me about offline blog editor to maintain his personal blog. He tried Microsoft Word to write his post and copy-paste it into his blog editor but this is not really quite simple. It still need some improper steps, and Microsoft Word format seems to be broken if moves to WordPress Editor. Another reason is about offline posting, because writing a long post entry would be better with offline method.</p>
<p align="left">After searching for a while, <a href="http://www.blogdesk.org">Blogdesk</a> and <a href="http://www.scribefire.com">Scribefire</a> maybe a suitable choice for him because he used Windows XP operating system. I&#8217;ve installed Firefox to replace his old browser (Internet Explorer <img src='http://vavai.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' />  ) so ScribeFire would be fit with his requirement. I don&#8217;t want to take another choice with Windows Live Writer because he just need the offline blog editor only, and previously I&#8217;ve suggested him about using Linux as his primary operating system <img src='http://vavai.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> . </p>
<p align="left">Currently, I used OpenSUSE as my primary OS, so I look around offline blog editor for Linux too. I need the offline blog editor which supported Serendipity and WordPress, those two of my blog engine. ScribeFire is OK, but I think it would be better if I get another choice. I&#8217;ve tried <a href="http://www.dropline.net/drivel/">Drivel</a> but I don&#8217;t like it&#8217;s layout.</p>
<p align="left">Today I found about <a href="http://www.bleezer.com/">Bleezer</a>. This is a Java based blog editor, so Bleezer available for Linux, Mac or even Windows. I&#8217;m quite happy with Bleezer because it supported Serendipity and WordPress. Just FYI, Serendipity used same API engine as provided by MovableType. You can found it&#8217;s API on http://yourdomain.com/serendipity_xmlrpc.php</p>
<p align="left">Here is the screenshot of Bleezer :</p>
<p><img src="/uploads/Bleezer2-1.jpg" />
<p align="left" />
<p align="left">So, what is your favorite offline blog editor ?</p>
<div class="bleezer-tags:Blog, Java">
<p style="font-size: 10px; text-align: right;">Technorati: <a rel="tag" href="http://www.technorati.com/tag/Blog">Blog</a> <a rel="tag" href="http://www.technorati.com/tag/Java">Java</a></p>
</div>
<div class="bleezer-powered">
<p style="font-size: 10px; text-align: right;"><i>Powered by <a href="http://www.bleezer.com">Bleezer</a></i></p>
</div>
<h3  class="related_post_title">Random Post</h3><ul class="related_post"><li><a href="http://vavai.net/2009/04/24/hidden-camera-for-home-protection-and-detective-activities/" title="Hidden Camera for Home Protection and Detective Activities :-)">Hidden Camera for Home Protection and Detective Activities :-)</a> (0)</li><li><a href="http://vavai.net/2009/09/07/solved-could-not-connect-to-wicds-d-bus-interface/" title="Solved : Could not connect to wicd&#8217;s D-Bus interface">Solved : Could not connect to wicd&#8217;s D-Bus interface</a> (5)</li><li><a href="http://vavai.net/2007/11/25/kde-40-rc1-koffice-2-alpha5-firefox-30-beta-for-opensuse-103/" title="KDE 4.0 RC1, KOffice 2 Alpha5, Firefox 3.0 Beta for OpenSUSE 10.3">KDE 4.0 RC1, KOffice 2 Alpha5, Firefox 3.0 Beta for OpenSUSE 10.3</a> (0)</li><li><a href="http://vavai.net/2008/10/29/amazing-tips-for-improve-tuning-and-increase-mysql-database-performance/" title="Amazing Tips for Improve, Tuning and Increase MySQL Database Performance">Amazing Tips for Improve, Tuning and Increase MySQL Database Performance</a> (3)</li><li><a href="http://vavai.net/2008/10/24/openoffice-novell-edition-for-windows/" title="OpenOffice Novell Edition for Windows">OpenOffice Novell Edition for Windows</a> (11)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2007/11/26/bleezer-offline-blog-editor-for-linux/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Bulletproof Serendipity Template Framework</title>
		<link>http://vavai.net/2007/10/24/bulletproof-serendipity-template-framework/</link>
		<comments>http://vavai.net/2007/10/24/bulletproof-serendipity-template-framework/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 13:41:09 +0000</pubDate>
		<dc:creator>Masim "Vavai" Sugianto</dc:creator>
				<category><![CDATA[Serendipity]]></category>

		<guid isPermaLink="false">http://backup.vavai.net/?p=20</guid>
		<description><![CDATA[Serendipity ver 1.2 has been launched about 1 month ago. I&#8217;ve applied this version in my personal blogs and quite satisfied with the template. Serendipity v 1.2 proposed new Serendipity default template, Bulletproof. It seems that this templates give more flexibility both to user and template designer. There&#8217;s a nice features to users with the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.s9y.org"><img vspace="5" hspace="5" border="0" align="left" src="/uploads/browser_compat_4.png" alt="Bulletproof" />Serendipity</a> ver 1.2 has been launched about 1 month ago. I&#8217;ve applied this version in my personal blogs and quite satisfied with the template.</p>
<p>Serendipity v 1.2 proposed new Serendipity default template, <a href="http://s9y-bulletproof.com/">Bulletproof</a>. It seems that this templates give more flexibility both to user and template designer. There&#8217;s a nice features to users with the flexibility to define blog layout format, colorset, header, footer, sidebar and another modification without any hard code editing. All of features provided at serendipity Administration Interface. How about the template designer ? Bulletproof website describes a funny analogy :<br />
<blockquote>If you are a s9y template designer, you can use the bp code to produce new templates. You, and the people using your templates, will be able to benefit from all the nice features of bp (unless you decided to disable them), so you can concentrate on designing neat new s9y templates. The code base is already there, your part will be to make it look great. If you want to go with a car comparison: We have built the engine, the transmission and stuff like that. Your job is it to give it a paint job, put some tires on and do the interior</p></blockquote>
<p><img vspace="5" hspace="5" border="0" align="right" src="/uploads/colorset_icons.png" alt="coloset" />If you interested with custom themes creation or modification (ie : for WordPress, Movabletype, Textpattern, etc) or most recently worked as Web Designer, Bulletproof idea should fit with your requirement.</p>
<p>What is the advantage of using Bulletproof template idea ? There are a number of great features like below :</p>
<p><b>1. Flexibility about custom layout.</b> You can choose 2 or 3 columns.</p>
<p><b>2. Flexibility about contents and sidebar position</b>. For 3 columns, you can displayed with Contents first and then sidebar (CF, S, S) or Sidebar-Contents-Sidebar or another options.</p>
<p><b>3. Customizable Navigation</b>, such as Position of the navbar, Navigation links in the footer, quicksearch in the navbar and Title for navigation menu</p>
<p><b>4. Colorset specific Icons and an easy colorset modification</b></p>
<p><b>5. Browser Compatibility</b>. You do not need to worried with various browser. PC or Mac ? Windows or Linux ? Firefox, Internet Explorer, Opera or Safari ?? Browser specific &quot;hacks&quot; that do not validate, or clean code that breaks in non-compliant, or outdated broswers ??? Bulletproof fixed these problems and provided an elegan interface to every users.</p>
<p>You may find a suitable documents about Bulletproof from the <a href="http://s9y-bulletproof.com/">official site</a>.</p>
<h3  class="related_post_title">Random Post</h3><ul class="related_post"><li><a href="http://vavai.net/2009/05/06/omega-3-fatty-acid-from-fish-oil/" title="Omega-3 Fatty Acid from Fish Oil">Omega-3 Fatty Acid from Fish Oil</a> (1)</li><li><a href="http://vavai.net/2009/09/04/suggestion-for-suse-studio-usability/" title="Suggestion for SUSE Studio Usability">Suggestion for SUSE Studio Usability</a> (2)</li><li><a href="http://vavai.net/2008/10/24/openoffice-novell-edition-for-windows/" title="OpenOffice Novell Edition for Windows">OpenOffice Novell Edition for Windows</a> (11)</li><li><a href="http://vavai.net/2010/01/29/tutorial-samba-pdc-openldap-on-opensuse-11-1-%e2%80%93-part-6/" title="Tutorial : Samba PDC + OpenLDAP on openSUSE 11.1 – Part 6">Tutorial : Samba PDC + OpenLDAP on openSUSE 11.1 – Part 6</a> (2)</li><li><a href="http://vavai.net/2009/08/30/zimbra-6-0-rc1-on-opensuse-11-1/" title="Zimbra 6.0 RC1 on openSUSE 11.1">Zimbra 6.0 RC1 on openSUSE 11.1</a> (9)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2007/10/24/bulletproof-serendipity-template-framework/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New Serendipity Themes : Ayumi</title>
		<link>http://vavai.net/2007/07/26/new-serendipity-themes-ayumi/</link>
		<comments>http://vavai.net/2007/07/26/new-serendipity-themes-ayumi/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 13:27:16 +0000</pubDate>
		<dc:creator>Masim "Vavai" Sugianto</dc:creator>
				<category><![CDATA[Serendipity]]></category>

		<guid isPermaLink="false">http://backup.vavai.net/?p=12</guid>
		<description><![CDATA[Yesterday, I found a nice themes while searching WordPress themes for Iin&#8217;s blog. Nurudin Jauhari&#8217;s Ayumi WordPress themes seems very nice. Slightly, simple, sophisticated and having good layout (what&#8217;s more ). I think it&#8217;s a nice idea to applied this themes into my Serendipity blog. Yes, I maintained some community blog using WordPress but primarily [...]]]></description>
			<content:encoded><![CDATA[<p><img vspace="0" hspace="0" border="0" align="bottom" alt="ayumi-themes" src="/uploads/ayumi-sample1.jpg" /><br />Yesterday, I found a nice themes while searching WordPress themes for <a href="http://www.belinejolie.com">Iin&#8217;s blog</a>. <a href="http://www.jauhari.net/themes/ayumi">Nurudin Jauhari&#8217;s Ayumi WordPress themes</a> seems very nice. Slightly, simple, sophisticated and having good layout (what&#8217;s more <img src='http://vavai.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' />  ).</p>
<p>I think it&#8217;s a nice idea to applied this themes into my Serendipity blog. Yes, I maintained some community blog using WordPress but primarily I used Serendipity as my private blog engine.</p>
<p><a href="http://www.carlgalloway.com">Carl Galloway</a> has a nice tutorial about <a href="http://www.carlgalloway.com/archives/78-Porting-WordPress-themes-to-Serendipity-Part-1.html">&quot;Porting WordPress themes into Serendipity&quot;</a> and I used his tutorial to ported Ayumi themes into Serendipity without success, due to my knowledge about PHP and CSS <img src='http://vavai.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> . After some trial and error, I tried another choice, maybe an easy way to get this themes ported without problem. I post a request at Serendipity forum <img src='http://vavai.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> .</p>
<p>I wrote <a href="http://board.s9y.org/viewtopic.php?t=10564&#038;sid=dac9b7d6cb087145e9e72a3ddb43cce2">a simple post</a> about this themes and hope somebody get this themes ported. Maybe it will take a long time or maybe someone can give some clear tutorial.</p>
<p>Surprise, last night I got an email notification about a reply to my posting. Good news, <a href="http://katalog-it.de/">Reinhard</a> make this themes possible to ported into Serendipity within just a few hours. Wow, I&#8217;m very happy applied this themes in my private blog. Download Ayumi themes for Serendipty, <a href="http://katalog-it.de/categories/7-Ayumi">here</a>.</p>
<p>Thanks Reinhard. I don&#8217;t know how to say thanks to his nice job. Maybe I will take a moment to sending him a cup of coffee <img src='http://vavai.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>Thanks to Nurudin Jauhari to this excellent themes. </p>
<h3  class="related_post_title">Random Post</h3><ul class="related_post"><li><a href="http://vavai.net/2007/10/26/kde4-live-beta-3-based-on-opensuse-103/" title="KDE4 Live Beta 3 Based on OpenSUSE 10.3">KDE4 Live Beta 3 Based on OpenSUSE 10.3</a> (0)</li><li><a href="http://vavai.net/2007/07/22/got-trapped-by-akismet-black-list/" title="Got Trapped by Akismet Black List ?">Got Trapped by Akismet Black List ?</a> (6)</li><li><a href="http://vavai.net/2010/01/10/google-not-so-powerful-anymore/" title="Google not so Powerful Anymore?">Google not so Powerful Anymore?</a> (2)</li><li><a href="http://vavai.net/2009/12/21/installing-virtualbox-3-1-2-on-opensuse-11-2/" title="Installing VirtualBox 3.1.2 on openSUSE 11.2">Installing VirtualBox 3.1.2 on openSUSE 11.2</a> (7)</li><li><a href="http://vavai.net/2009/03/05/story-behind-linuxcom-takeover/" title="Story Behind Linux.com Takeover">Story Behind Linux.com Takeover</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2007/07/26/new-serendipity-themes-ayumi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding Adsense Code to Serendipity Blog</title>
		<link>http://vavai.net/2007/04/20/adding-adsense-code-to-serendipity-blog/</link>
		<comments>http://vavai.net/2007/04/20/adding-adsense-code-to-serendipity-blog/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 07:30:27 +0000</pubDate>
		<dc:creator>Masim "Vavai" Sugianto</dc:creator>
				<category><![CDATA[Serendipity]]></category>

		<guid isPermaLink="false">http://backup.vavai.net/?p=5</guid>
		<description><![CDATA[Adding adsense code to your Serendipity blog just need a little step, as easy as 1-2-3. The easiest way of accomplishing this is to use the &#34;Adsense Plugin&#34;. The Adsense plugin isn&#8217;t a terribly complex plugin, it simply allows the user to add a block of adsense code to one of the sidebars on your [...]]]></description>
			<content:encoded><![CDATA[<p>Adding adsense code to your Serendipity blog just need a little step, as easy as 1-2-3. The easiest way of accomplishing this is to use the &quot;Adsense Plugin&quot;. The Adsense plugin isn&#8217;t a terribly complex plugin, it simply allows the user to add a block of adsense code to one of the sidebars on your blog.</p>
<p>Simple step to add your adsense code to your Serendipity blog :</p>
<ul>
<li>Download adsense plugin from <a href="http://spartacus.s9y.org/">Spartacus</a></li>
</ul>
<ul>
<li>Extract and upload adsense plugin folder (serendipity_plugin_google_adsense) to your Serendipty plugin folder.</li>
</ul>
<ul>
<li>Install adsense plugin. Please refer to Installing Plugin at the Serendipity wiki if you need a Serendipity plugin installation how-to.</li>
</ul>
<ul>
<li>Fill out the form</li>
</ul>
<p><b><font face="courier new,courier,monospace">Client-ID : Fill with your adsense ID. Start with pub-<br />Format : Select your Adsense ads format. Refer to Google Adsense ads format<br />Type : Select your ads type, image with text, text only or image only<br />Channel : fill with your tracking channel<br />Number : how many ads you will display</font></b>
<ul>
<li>Save</li>
</ul>
<p>That&#8217;s it. Quite Simple <img src='http://vavai.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>With the entire globe going <a href="http://www.testking.com/Network-Plus-certification-training.htm">network+</a>, it is not exactly a wonder seeing everyone going through <a href="http://www.testking.com/640-802.htm">640-802</a> or <a href="http://www.testking.com/640-863.htm">640-863</a>. In fact, people actually even do <a href="http://www.testking.com/642-372.htm">642-372</a> and its likes, in order to remain competent. There are new certifications like <a href="http://www.testking.com/70-296.htm">70-296</a> and <a href="http://www.testking.com/646-203.htm">646-203</a> that serve the purpose of revision really well. Then there are old courses like <a href="http://www.testking.com/642-901.htm">642-901</a> still available on the block, that are advanced.</p>
<h3  class="related_post_title">Random Post</h3><ul class="related_post"><li><a href="http://vavai.net/2009/09/05/tips-for-dumping-large-mysql-database/" title="BigDump : Tips for Dumping Large MySQL Database">BigDump : Tips for Dumping Large MySQL Database</a> (4)</li><li><a href="http://vavai.net/2009/01/02/how-to-make-opensuse-111-liveusb/" title="How to Make openSUSE 11.1 LiveUSB">How to Make openSUSE 11.1 LiveUSB</a> (53)</li><li><a href="http://vavai.net/2010/01/04/central-java-grand-mosque-indonesia/" title="Central Java Grand Mosque-Indonesia">Central Java Grand Mosque-Indonesia</a> (0)</li><li><a href="http://vavai.net/2010/01/02/zimbra-mail-server-relay-access-denied-error-isp-relay-with-authentication/" title="Zimbra Mail Server Relay Access Denied &#038; ISP Relay with Authentication">Zimbra Mail Server Relay Access Denied &#038; ISP Relay with Authentication</a> (7)</li><li><a href="http://vavai.net/2008/11/02/zimbra-tips-how-to-restricted-user-to-sending-email-for-specified-domain-only/" title="Zimbra Tips : Restricted User to Sending Email for Certain Domain Only">Zimbra Tips : Restricted User to Sending Email for Certain Domain Only</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2007/04/20/adding-adsense-code-to-serendipity-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Serendipity Blog Installation</title>
		<link>http://vavai.net/2007/04/19/serendipity-blog-installation/</link>
		<comments>http://vavai.net/2007/04/19/serendipity-blog-installation/#comments</comments>
		<pubDate>Thu, 19 Apr 2007 08:31:35 +0000</pubDate>
		<dc:creator>Masim "Vavai" Sugianto</dc:creator>
				<category><![CDATA[Serendipity]]></category>

		<guid isPermaLink="false">http://backup.vavai.net/?p=4</guid>
		<description><![CDATA[Installing Serendipity blog engine is quite easy and need a few step only. Serendipity need webserver with MySQL or PostgreSQL and PHP Support. If you install Serendipity on your local computer, you may use XAMPP. Click here for XAMPP installation assistance. Below are step-by-step how to install your Serendipity blog : 1. Download Serendipity blog [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Serendipity blog engine is quite easy and need a few step only. Serendipity need webserver with MySQL or PostgreSQL and PHP Support. If you install Serendipity on your local computer, you may use XAMPP. <a href="http://www.vavai.com/index.php?/archives/22-SuSE-10.2-Installing-MySQL-Database-Server.html#extended">Click here</a> for XAMPP installation assistance.</p>
<p>Below are step-by-step how to install your Serendipity blog :<b><br />
1. Download Serendipity</b> blog from it&#8217;s website. </p>
<p><b>2. Ekstrak zip / tar.gz file</b>. You will get Serendipity folder contains Serendipity files and modules.</p>
<p><b>3. Upload your Serendipity</b> file to hosting location by FTP. </p>
<p><b>4. Create MySQL / PostgreSQL database</b></p>
<p><b>5. Start installation</b>. Open your favorite browser and type your domain installation. Serendipity will automatically detected your installation proses </p>
<p><font face="times new roman,times,serif"><i>Welcome to the Serendipity Installation.<br />First we will take a look at your current setup and attempt to diagnose any compatibility problems.<br />Errors are displayed in red [!], recommendations in yellow [?] and success in green.<br />- Serendipity v1.1.1 pre-installation report -</i></font><br /><b>7. Make sure you have no option marked in red</b>. You may find this error if Serendipity found an invalid permission for some folder / file(s). To olve this problem, use you FTP client to CHMOD 777 to an error permission item and then click &quot;Recheck&quot;..</p>
<p><b>8. Installation Choice.</b><br />There is 2 (two) installation option, Simple dan Expert Installation. Simple Installation will only display primary option. If you need more installation option, try Expert Installation</p>
<p><b>9. Change Installation Item. </b></p>
<p><b>Database Setting.</b></p>
<p>Database Type : MySQL or PostgreSQL<br />Database Host : Database server location. Database hosting used &quot;localhost&quot; by default.<br />Database User : MySQL or PostgreSQL database user<br />Database Password : Your database password related to database user<br />Database Name : Your database name (created on step 4)</p>
<p><b>General Settings</b><br />Admin User Name : User Administaror nick name<br />Admin Password : Administrator password<br />Real Name : Full name will be displayed as an author on article<br />Blog Name : Your blog name<br />Blog Description : Describe your blog about here<br />Language : Default Language. </p>
<p><b>Appearance &amp; Options</b><br />Use WYSIWYG Editor : Yes, rich text format editor. Only for Firefox, Mozzila and IE only</p>
<p><b>10. Click &quot;Complete Installation&quot;</b>. Serendipity automatically create .htaccess file to protect your blog.</p>
<p><b>11. Open Administration Suite</b>. In Administration Suite, you can make New Entry, Edit or delete existing entry, change themes (Manage Styles), add or mofify plugin and change another option to your Serendipity blog.</p>
<p>Related Link : <a href="http://s9y.org/35.html">Installing Serendipity</a></p>
<h3  class="related_post_title">Random Post</h3><ul class="related_post"><li><a href="http://vavai.net/2010/01/29/tutorial-samba-pdc-openldap-on-opensuse-11-1-%e2%80%93-part-6/" title="Tutorial : Samba PDC + OpenLDAP on openSUSE 11.1 – Part 6">Tutorial : Samba PDC + OpenLDAP on openSUSE 11.1 – Part 6</a> (2)</li><li><a href="http://vavai.net/2009/08/30/zimbra-6-0-rc1-on-opensuse-11-1/" title="Zimbra 6.0 RC1 on openSUSE 11.1">Zimbra 6.0 RC1 on openSUSE 11.1</a> (9)</li><li><a href="http://vavai.net/2007/04/18/serendipity-for-your-adsense-blog/" title="Serendipity for your Adsense Blog">Serendipity for your Adsense Blog</a> (2)</li><li><a href="http://vavai.net/2010/01/16/day-1-of-31-days-to-build-a-better-blog-elevator-pitch/" title="Day #1 of 31 Days to Build a Better Blog : Elevator Pitch">Day #1 of 31 Days to Build a Better Blog : Elevator Pitch</a> (1)</li><li><a href="http://vavai.net/2010/01/06/upgrading-into-wordpress-2-9-1/" title="Upgrading into Wordpress 2.9.1">Upgrading into Wordpress 2.9.1</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2007/04/19/serendipity-blog-installation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Serendipity for your Adsense Blog</title>
		<link>http://vavai.net/2007/04/18/serendipity-for-your-adsense-blog/</link>
		<comments>http://vavai.net/2007/04/18/serendipity-for-your-adsense-blog/#comments</comments>
		<pubDate>Wed, 18 Apr 2007 13:24:28 +0000</pubDate>
		<dc:creator>Masim "Vavai" Sugianto</dc:creator>
				<category><![CDATA[Serendipity]]></category>

		<guid isPermaLink="false">http://backup.vavai.net/?p=3</guid>
		<description><![CDATA[I used Serendipity blog for about 2 years and started 3 months ago I tried to add Google Adsense to my blog. Serendipity seems to fit with our requirement to make our blog profitable with Google Adsense and another ads type. There is hundreds blog engine but I&#8217;ve satisfied with Serendipity blog due to my [...]]]></description>
			<content:encoded><![CDATA[<p>I used Serendipity blog for about 2 years and started 3 months ago I tried to add Google Adsense to my blog. Serendipity seems to fit with our requirement to make our blog profitable with Google Adsense and another ads type.</p>
<p>There is hundreds blog engine but I&#8217;ve satisfied with Serendipity blog due to my experience until now. Here is some interesting reasons to use Serendipity as your blog engine and make it profitable with Google Adsense :</p>
<ul>
<li><b>SEO (Search Engine Optimization) Compliance</b></li>
</ul>
<p>Serendipity link and title has a nice model which compliance to SEO friendly. By default, Serendipity using the title of posting or article to link format.
<ul>
<li><b>Static HTML for Dynamic Content</b></li>
</ul>
<p>Serendipity is a dynamic blog but it has a capability to produced and formatting the content as static content. Cacheable static content make Serendipity a nice speed to display blog contents.
<ul>
<li><b>Google Adsense Support</b></li>
</ul>
<p>Serendipity supporting various Google Adsense type and various location or layout. You can display Google Adsense as sidebar ads, top, bottom, inside, head, footer or end of article.Below are another reasons to used Serendipity (taken from official site of Serendipity) :
<ul>
<li><b>WYSIWYG Editor and HTML Editor HTML</b></li>
</ul>
<p>You can create or modify an entry with WYSIWYG or HTML editor.<b></b>
<ul>
<li><b>Threaded comments</b>, Nested categories and posting to multiple categories are supported.</li>
</ul>
<ul>
<li><b>Anti-Spam / Comment moderation</b>. Through use of a (bundled) plugin you can enable CAPTCHAs, SURBL-blacklisting, automatted comment moderation based on the content of a comment. Highly configurable.</li>
</ul>
<ul>
<li><b>Support for XML-RPC Editing</b>. Support for both the Movable Type? and Blogger XML-RPC APIs.</li>
</ul>
<ul>
<li><b>Dynamic</b>. You don&#8217;t need to constantly wait while your weblogging system regenerates pages. Caching is dynamically managed, so you don&#8217;t need to worry about it when publishing your weblog. Optional advanced URL rewriting rules and customizable permalinks are available.</li>
</ul>
<ul>
<li><b>Trackback and Pingback</b>. Serendipity can accept, send and autodiscover trackbacks and pingbacks. Of course you can also ping common weblog services like technorati, blo.gs, blogger, yahoo and blogg.de.</li>
</ul>
<ul>
<li><b>Plugins</b>. A robust plugin system allows you to modify Serendipity without digging through the core source code. Sidebar plugins allow easy customization of your blog with dozens of features. Event plugins are a powerful method of method callbacks, which can hook in into any place in s9y to make it one of the most flexible APIs available. Our online repository (Spartacus) supports adding plugins within a few mouseclicks and no manual file up/downloading! Powerful plugins exist for maintaining static page content, displaying galleries, making rss aggregators, ldap authentication, customized template view, multilingual content and much more.</li>
</ul>
<ul>
<li><b>Multiple Databases</b>. Serendipity supports MySQL(i), PostgreSQL and SQLlite database backends.</li>
</ul>
<ul>
<li><b>Multiple Users</b>. Multiple users can edit and administrate the weblog. A free permission setup can tell which user is allowed to do what.</li>
</ul>
<ul>
<li><b>Internationalized</b>. Serendipity is available in English, German, Danish, French and many more, and adding new translations is a snap.</li>
</ul>
<ul>
<li><b>Skinable</b>. Templates can easily be added by the magic of CSS. Several templates are included by default. Even visitors of your blog are able to change the layout on-the-fly if you use the template-dropdown plugin. For the advanced user, the full flexibility of the Smarty templating engine allows to change every aspect of the Serendipity look. </li>
</ul>
<ul>
<li><b>Open Source</b>. Serendipity is licensed under the BSD License.</li>
</ul>
<ul>
<li><b>Standards Compliant</b>. Serendipity supports XHTML 1.1, CSS 2.0, RSS 0.93, 1.0, and 2.0, Atom 0.3 and 1.0. Supports conditional GET for caching RSS feeds on the client-side. It also supports UTF-8 environments.</li>
</ul>
<ul>
<li><b>Shared library</b>. You can use Serendipity as a single installation to serve multiple and independent weblogs, but only maintaining a single codebase.</li>
</ul>
<ul>
<li><b>Easy Upgrading</b>. An easy and automatic upgrader helps you in the process of upgrading between Serendipity versions (starting with version 0.5).</li>
</ul>
<ul>
<li><b>Flexible Input/Output</b>. Choose between HTML, Textile, Wiki, BBCode and a boast of other markups. For both users and your editors!</li>
</ul>
<ul>
<li><b>PHP-powered</b> to fulfill the needs of ever-growing PHP-enabled websites and easy integration with support of embedding Serendipity into your webpage.</li>
</ul>
<ul>
<li><b>Actively maintained</b> by some skilled and open-minded developers who enjoy the touch to the actual user and give support on the Forums as well as listen to every new user suggestion.</li>
</ul>
<p><b>Why is Serendipity better than&#8230;</b></p>
<p>First off, choosing the right weblog tool is like choosing your religion. You should be wise in your requirements and where your focus lies.</p>
<p>Serendipity is aimed to make everything possible you ever wish for. It is technically up to par to other well-known weblog scripts like Moveable Type or WordPress.<br /><b>WordPress</b>
<ul>
<li>Easy plugin integration. No hacks, no problems during upgrades, good compatibility and a central plugin repository. Enhance flexibility without the need to touch any core files.</li>
</ul>
<ul>
<li>BSD-licensed, WordPress is only GPL. That means, you can use Serendipity to power your commercial sites without any issues. Of course, the Serendipity team still likes to get credited where credit is due. <img src='http://vavai.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </li>
</ul>
<ul>
<li>Supports a well-known and flexible templating system, the Smarty Framework. No PHP knowledge is required, and its a good established standard for templating.</li>
</ul>
<ul>
<li>Cool plugins that behave well with the Core, like Multilingual Entries, an aggregator plugin and a flickr-like tagging infrastructure.</li>
</ul>
<ul>
<li>Multiple DB support speaks for itself.</li>
</ul>
<ul>
<li>Good PHP code style. Open and responsible release management, covering fast security updates.</li>
</ul>
<p><b>Moveable Type</b>
<ul>
<li>A great plus for Serendipity: BSD-Licensing. PHP instead of PERL, which often is harder to get on shared servers. Also, PHP tends to be better suitable for the web than Perl.</li>
</ul>
<ul>
<li>Easy and extensible plugin API.</li>
</ul>
<ul>
<li>Online Plugin repository.</li>
</ul>
<ul>
<li>Responsive and caring Open Source community instead of the interests of a large company.</li>
</ul>
<p>There is some good point about Serendipity. Click here to read &quot;<a href="http://www.netscape.com/viewstory/2006/09/26/top-5-reasons-why-serendipity-is-better/?url=http%3A%2F%2Ftechnovice.net%2Farchives%2F31-Top-5-Reasons-Why-Serendipity-Is-Better.html&#038;frame=true">Top 5 reasons why Serendipity is Better</a>&quot;</p>
<h3  class="related_post_title">Random Post</h3><ul class="related_post"><li><a href="http://vavai.net/2009/01/17/tutorial-opensuse-network-install-over-pxe-boot-part-ii/" title="Tutorial : openSUSE Network Install over PXE-Boot Part II">Tutorial : openSUSE Network Install over PXE-Boot Part II</a> (3)</li><li><a href="http://vavai.net/2007/07/25/wordpress-nice-themes-from-jauhari-for-iins-blog/" title="Wordpress Nice Themes from Jauhari for Iin&#8217;s Blog">Wordpress Nice Themes from Jauhari for Iin&#8217;s Blog</a> (2)</li><li><a href="http://vavai.net/2008/04/05/opensuse-remastering/" title="OpenSUSE Remastering">OpenSUSE Remastering</a> (0)</li><li><a href="http://vavai.net/2009/01/04/how-to-make-opensuse-111-kde35-livecd-or-livedvd/" title="How to Make openSUSE 11.1 KDE 3.5 LiveCD or LiveDVD">How to Make openSUSE 11.1 KDE 3.5 LiveCD or LiveDVD</a> (19)</li><li><a href="http://vavai.net/2010/01/16/day-1-of-31-days-to-build-a-better-blog-elevator-pitch/" title="Day #1 of 31 Days to Build a Better Blog : Elevator Pitch">Day #1 of 31 Days to Build a Better Blog : Elevator Pitch</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2007/04/18/serendipity-for-your-adsense-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->