<?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>IM Basoro</title>
	<atom:link href="http://www.basoro.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.basoro.com</link>
	<description>GNU/Linux, WordPress and Dentistry</description>
	<lastBuildDate>Fri, 18 May 2012 21:13:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Complete Nginx On Ubuntu/Debian</title>
		<link>http://www.basoro.com/2012/05/18/complete-nginx-on-ubuntudebian/</link>
		<comments>http://www.basoro.com/2012/05/18/complete-nginx-on-ubuntudebian/#comments</comments>
		<pubDate>Fri, 18 May 2012 09:50:47 +0000</pubDate>
		<dc:creator>basoro</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Opensource]]></category>

		<guid isPermaLink="false">http://www.basoro.com/?p=550</guid>
		<description><![CDATA[Since Apache is most of the time a memory hungy process, people started to look for different ways to host their website. Apache is clearly not the only webserver available. A few good examples are lighttpd and nginx. In this tutorial I will show you how to install it on your Ubuntu server. This tutorial [...]]]></description>
			<content:encoded><![CDATA[<p>Since Apache is most of the time a memory hungy process, people started to look for different ways to host their website. Apache is clearly not the only webserver available. A few good examples are lighttpd and nginx. In this tutorial I will show you how to install it on your Ubuntu server. This tutorial also applies to Debian, though. There is only a very small difference.</p>
<p>Ready? Let&#8217;s begin.</p>
<p>Step 0 &#8211; Preliminary Notes</p>
<p>In order to complete this tutorial, I assume you have installed a base system of Debian or Ubuntu. How this can be done, can be read in different tutorials. This tutorial only focusses on getting nginx+php running without much hassle.</p>
<p>Step 1 &#8211; Nginx</p>
<p>Installing nginx is the first step we have to do. This can be easily done by downloading it from the repository.</p>
<p><code>sudo apt-get install nginx</code></p>
<p>The default vhost has to be changed in order to work properly.</p>
<p><code>sudo vim /etc/nginx/sites-available/default</code></p>
<p>A nice starting point for your config is:</p>
<pre class="brush: php; gutter: true">server {
listen 80;
server_name localhost;
access_log /var/log/nginx/localhost.access.log;

## Default location
location / {
root /var/www;
index index.php;
}

## Images and static content is treated different
location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$ {
access_log off;
expires 30d;
root /var/www;
}

## Parse all .php file in the /var/www directory
location ~ .php$ {
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_pass backend;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www$fastcgi_script_name;
include fastcgi_params;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_intercept_errors on;
fastcgi_ignore_client_abort off;
fastcgi_connect_timeout 60;
fastcgi_send_timeout 180;
fastcgi_read_timeout 180;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;
}

## Disable viewing .htaccess &amp; .htpassword
location ~ /\.ht {
deny all;
}
}
upstream backend {
server 127.0.0.1:9000;
}</pre>
<p>Ok, we&#8217;re done here. Now we&#8217;ll install the needed files for PHP.</p>
<p>Step 3 &#8211; Now let&#8217;s install PHP with FPM:</p>
<p><code><br />
apt-get install python-software-properties<br />
add-apt-repository ppa:brianmercer/php<br />
apt-get update<br />
apt-get install php5-fpm php-apc php5-cgi php5-cli php5-mysql php5-common php-pear php5-curl php5-suhosin php5-gd php5-imagick imagemagick</code></p>
<p><code>echo "apc.shm_size = 64" &gt;&gt; /etc/php5/conf.d/apc.ini<br />
echo "apc.rfc1867 = on" &gt;&gt; /etc/php5/conf.d/apc.ini<br />
sed -i'.original' 's/^# configuration for php imagick module/; configuration for php imagick module/' /etc/php5/conf.d/imagick.ini<br />
/etc/init.d/php5-fpm restart<br />
/etc/init.d/nginx/restart</code></p>
<p>Step 4 &#8211; Installing MySql Server on Ubuntu is a very simple task:</p>
<p><code>sudo apt-get install mysql-server mysql-client</code></p>
<p>One useful utility is the mysql_secure_installation script, which limits access to the ‘root’ account, removes the test database, and removes anonymous accounts.</p>
<p><code>mysql_secure_installation</code></p>
<p>Restart the MySQL Server:</p>
<p><code>/etc/init.d/mysql restart</code></p>
<p>Step 5 -  Postfix</p>
<p>In order to use the mail function you should also install the Postfix server:</p>
<p><code>sudo apt-get install postfix</code></p>
<p>++++++++++++++++++++++++++++++++++++++++++++++++++++++<br />
<code>General type of mail configuration: &lt;-- Internet Site<br />
System mail name: &lt;-- server.basoro.org</code><br />
++++++++++++++++++++++++++++++++++++++++++++++++++++++</p>
<p>For a null client (a server that only sends emails), you replace the existing /etc/postfix/main.cf file with the following:</p>
<pre class="brush: php; gutter: true">myorigin = $mydomain
relayhost =
inet_interfaces = loopback-only
local_transport = error:local delivery is disabled
smtpd_banner = $myhostname ESMTP $mail_name
alias_maps = hash:/etc/aliases
message_size_limit = 104857600</pre>
<p>Edit also the /etc/aliases file accordingly:</p>
<pre class="brush: php; gutter: true">admin: root
root: basoro@basoro.org</pre>
<p>Make changes permanent with:</p>
<p><code>newaliases<br />
/etc/init.d/postfix restart</code></p>
<p>Step 6 &#8211; Install DJBDNS</p>
<p>Asums:<br />
Domain: basoro.org<br />
Another domain: basoro.com<br />
IP Server: 192.168.0.254</p>
<p><code>wget http://www.djbdnsrocks.org/downloads/djbdnsrocks.tar.gz<br />
sudo aptitude install -R build-essential</code></p>
<p>i. Install Daemontools</p>
<p><code># mkdir -p /var/package<br />
# chmod 1755 /var/package<br />
# cd /var/package<br />
# tar zxvf daemontools-0.76.tar.gz<br />
# cd admin<br />
# cd daemontools-0.76<br />
# patch -p1 &lt; daemontools_errnopatch<br />
# package/install</code></p>
<p>ii. Install ucspi-tcp</p>
<p><code># cd /tmp<br />
# tar zxvf ucspi-tcp-0.88.tar.gz<br />
# cd ucspi-tcp-0.88<br />
# patch -p1 &amp;1 | \</code></p>
<p>Start svscan</p>
<p><code>sudo tee /etc/init/svscanstarter.conf &lt;&lt;-\EOA<br />
# /etc/init/svscanstarter.conf<br />
# svscanstarter - keep up daemontools 'svscan /var/service'<br />
description "svscanstarter keep up daemontools"<br />
start on runlevel [2345]<br />
stop on runlevel [!2345]<br />
respawn<br />
exec /var/command/svscanboot<br />
EOA</code></p>
<p><code>sudo start svscanstarter # to stop it use: sudo stop svscanstarter<br />
sudo status svscanstarter # check status<br />
ps -ef | sed '/!d/d;/svscan/!d' # check svscanboot/svscan processes</code></p>
<p>iv. Edit /etc/resolv.conf</p>
<p>– Add in –</p>
<pre class="brush: php; gutter: true">domain basoro.org
nameserver 192.168.0.254</pre>
<p>v. Preparing for djbdns</p>
<p><code># mkdir /var/dns<br />
# groupadd dns<br />
# useradd dnscache -g dns -d /var/dns -s /bin/false<br />
# useradd dnslog -g dns -d /var/dns -s /bin/false<br />
# useradd dns -g dns -d /var/dns -s /bin/false<br />
</code></p>
<p>vi. Install djbdns</p>
<p><code># cd /tmp<br />
# tar xvzf djbdns-1.05.tar.gz<br />
# cd djbdns-1.05<br />
# patch -p1 /var/dns/dnscache/root/servers/basoro.org<br />
# echo 127.0.0.1 &gt; /var/dns/dnscache/root/servers/basoro.com<br />
# echo 127.0.0.1 &gt; /var/dns/dnscache/root/servers/1.0.0.127.in-addr.arpa<br />
# echo 127.0.0.1 &gt; /var/dns/dnscache/root/servers/0.168.192.in-addr.arpa</code></p>
<p>ix. Forwarding ISP external cache</p>
<p><code># echo 202.134.1.10 &gt; /var/dns/dnscache/root/servers/@<br />
# echo 202.134.0.155 &gt;&gt; /var/dns/dnscache/root/servers/@<br />
# echo 1 &gt; /var/dns/dnscache/env/FORWARDONLY<br />
# echo 1000000 &gt; /var/dns/dnscache/env/CACHESIZE<br />
# echo 3000000 &gt; /var/dns/dnscache/env/DATALIMIT<br />
# svc -t /var/service/dnscache</code></p>
<p>Testing :</p>
<p><code># dnsqr a www.basoro.com<br />
1 www.basoro.com:<br />
54 bytes, 1+1+0+0 records, response, noerror<br />
query: 1 www.basoro.com<br />
answer: www.basoro.com 86168 A 192.168.0.254</code></p>
<p>Maintain SVC</p>
<p>Restart Service<br />
<code># svc -t /var/dns/dnscache</code></p>
<p>Stop<br />
<code># svc -d /var/dns/dnscache</code></p>
<p>Done&#8230;!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.basoro.com/2012/05/18/complete-nginx-on-ubuntudebian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Share Dialup Internet Connection On Ubuntu Server</title>
		<link>http://www.basoro.com/2010/02/19/how-to-share-dialup-internet-connection-on-ubuntu-server/</link>
		<comments>http://www.basoro.com/2010/02/19/how-to-share-dialup-internet-connection-on-ubuntu-server/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 02:17:07 +0000</pubDate>
		<dc:creator>basoro</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>

		<guid isPermaLink="false">http://www.basoro.com/?p=261</guid>
		<description><![CDATA[This article explain how to share your dialup internet connection on ubuntu linux. Just to share with the other. Here you are. 1. Change your statict network interface. In this example is eth1. # vim /etc/network/interfaces auto eth1 iface eth1 inet static address 192.168.0.254 netmask 255.255.255.0 broadcast 192.168.0.255 where eth1 is the network card and [...]]]></description>
			<content:encoded><![CDATA[<p>This article explain how to share your dialup internet connection on ubuntu linux. Just to share with the other. Here you are.</p>
<p>1. Change your statict network interface. In this example is eth1.<br />
<code># vim /etc/network/interfaces</code></p>
<p><code>auto eth1<br />
iface eth1 inet static<br />
address 192.168.0.254<br />
netmask 255.255.255.0<br />
broadcast 192.168.0.255</code></p>
<p>where eth1 is the network card and ip is your desired server ip address. I used 192.168.0.254 as IP Address.</p>
<p>2. Configure the NAT:</p>
<p><code># iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE</code></p>
<p>where ppp0 is the network card that the Internet is coming from. Use ppp0 for dialup connection.</p>
<p><code># echo 1 &gt; /proc/sys/net/ipv4/ip_forward</code></p>
<p>3. Install dnsmasq and ipmasq using apt-get:</p>
<p><code># apt-get install dnsmasq ipmasq</code></p>
<p>4. Reconfigure ipmasq to start after networking has been started:</p>
<p><code># dpkg-reconfigure ipmasq</code></p>
<p>5. Add the line &#8220;net.ipv4.ip_forward = 1&#8243; to /etc/sysctl.conf</p>
<p><code># vim /etc/sysctl.conf</code></p>
<p>6. Set your client DNS to 192.168.0.254</p>
]]></content:encoded>
			<wfw:commentRss>http://www.basoro.com/2010/02/19/how-to-share-dialup-internet-connection-on-ubuntu-server/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to recover images from formatted memory card</title>
		<link>http://www.basoro.com/2010/02/15/how-to-recover-images-from-formatted-memory-card/</link>
		<comments>http://www.basoro.com/2010/02/15/how-to-recover-images-from-formatted-memory-card/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 02:05:39 +0000</pubDate>
		<dc:creator>basoro</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>

		<guid isPermaLink="false">http://www.basoro.com/?p=242</guid>
		<description><![CDATA[A few days ago, My friend&#8217;s SD card accidentally formatted. While in the SD card is a memorable photographs of the birth of their first son. To restore these photos I recommend to use the recovery tool. To find the recovery tool, I told him to look for in google. There are some recovery tools [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago, My friend&#8217;s SD card accidentally formatted. While in the SD card is a memorable photographs of the birth of their first son. To restore these photos I recommend to use the recovery tool. To find the recovery tool, I told him to look for in google.</p>
<p>There are some recovery tools that are used. All are Windows programs. However, none of which succeeded. This is because the tool is a trial version. Meanwhile, to get the full version required to buy it. Fortunately I have a Ubuntu Linux machine which Ubuntu Lucid Lynx LTS upgrade from Ubuntu LTS Hardy Heron, minimal installation with LXDE. And finally my friend&#8217;s problem could be solved with the help of my Ubuntu Linux machine.</p>
<p>Here are some things you need to do with simple commands. This tutorial is written for Ubuntu GNU/Linux, but should be similar for most Linux machines.</p>
<p>1. Make a copy of the image of your SD card.<br />
<code>sudo dd if=/dev/sdb of=SDCARD-backup.img bs=1M</code></p>
<p>2. Install recoverjpeg package via apt-get<br />
<code>sudo apt-get install recoverjpeg</code></p>
<p>3. Run the command below.<br />
<code>$ recoverjpeg SDCARD-backup.img<br />
Restored 398 pictures</code></p>
<p>The pictures that have been recovered will be stored in a folder. Please see the recovery that have been made. Good luck &#8230; Go Opensource .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.basoro.com/2010/02/15/how-to-recover-images-from-formatted-memory-card/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Simple WordPress Themes</title>
		<link>http://www.basoro.com/2010/02/15/simple-wordpress-themes/</link>
		<comments>http://www.basoro.com/2010/02/15/simple-wordpress-themes/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 17:12:30 +0000</pubDate>
		<dc:creator>basoro</dc:creator>
				<category><![CDATA[Opensource]]></category>

		<guid isPermaLink="false">http://www.basoro.com/?p=244</guid>
		<description><![CDATA[Simple is my next WordPress themes. Simple WordPress Themes consist of only 2 files, index.php and style.css. Simple WordPress themes is Valid CSS and Valid XHTML 1.0 Transitional. As the previous themes, Simple WordPress Theme is released under a Creative Commons Attribution License 3.0. Here&#8217;s the source code of the Simple WordPress Theme. File index.php [...]]]></description>
			<content:encoded><![CDATA[<p>Simple is my next WordPress themes. Simple WordPress Themes consist of only 2 files, index.php and style.css. Simple WordPress themes is Valid CSS and Valid XHTML 1.0 Transitional.</p>
<p>As the previous themes, Simple WordPress Theme is released under a Creative Commons Attribution License 3.0. Here&#8217;s the source code of the Simple WordPress Theme.</p>
<p><strong>File index.php</strong></p>
<pre class="brush: php; gutter: true">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head profile=&quot;http://gmpg.org/xfn/11&quot;&gt;

	&lt;title&gt;&lt;?php bloginfo(&#039;name&#039;); ?&gt;&lt;?php wp_title(); ?&gt;&lt;/title&gt;

	&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;&lt;?php bloginfo(&#039;html_type&#039;); ?&gt;; charset=&lt;?php bloginfo(&#039;charset&#039;); ?&gt;&quot; /&gt;
	&lt;meta name=&quot;generator&quot; content=&quot;WordPress &lt;?php bloginfo(&#039;version&#039;); ?&gt;&quot; /&gt; &lt;!-- leave this for stats please --&gt;

	&lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?php bloginfo(&#039;stylesheet_url&#039;); ?&gt;&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
	&lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; title=&quot;RSS 2.0&quot; href=&quot;&lt;?php bloginfo(&#039;rss2_url&#039;); ?&gt;&quot; /&gt;
	&lt;link rel=&quot;alternate&quot; type=&quot;text/xml&quot; title=&quot;RSS .92&quot; href=&quot;&lt;?php bloginfo(&#039;rss_url&#039;); ?&gt;&quot; /&gt;
	&lt;link rel=&quot;alternate&quot; type=&quot;application/atom+xml&quot; title=&quot;Atom 0.3&quot; href=&quot;&lt;?php bloginfo(&#039;atom_url&#039;); ?&gt;&quot; /&gt;
	&lt;link rel=&quot;pingback&quot; href=&quot;&lt;?php bloginfo(&#039;pingback_url&#039;); ?&gt;&quot; /&gt;

	&lt;?php wp_get_archives(&#039;type=monthly&amp;format=link&#039;); ?&gt;
	&lt;?php //comments_popup_script(); // off by default ?&gt;
	&lt;?php wp_head(); ?&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;div id=&quot;wrapper&quot;&gt;

&lt;div id=&quot;header&quot;&gt;
       &lt;h1&gt;&lt;a href=&quot;&lt;?php bloginfo(&#039;url&#039;); ?&gt;&quot;&gt;&lt;?php bloginfo(&#039;name&#039;); ?&gt;&lt;/a&gt;&lt;/h1&gt;
       &lt;p&gt;&lt;?php bloginfo(&#039;description&#039;); ?&gt;&lt;/p&gt;
&lt;/div&gt;

&lt;div id=&quot;menu&quot;&gt;
       &lt;ul&gt;
             &lt;li class=&quot;gohome&quot;&gt;&lt;a href=&quot;&lt;?php echo get_option(&#039;home&#039;); ?&gt;/&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
             &lt;?php wp_list_pages(&#039;depth=1&amp;title_li=&#039;); ?&gt;
       &lt;/ul&gt;
&lt;/div&gt;

&lt;div id=&quot;container&quot;&gt;

&lt;div id=&quot;content&quot;&gt;
        &lt;?php if(have_posts()) : ?&gt;
        &lt;?php while(have_posts()) : the_post(); ?&gt;
        &lt;div class=&quot;post&quot;&gt;
                &lt;h2&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
                &lt;div class=&quot;post-date&quot;&gt;Posted on &lt;?php the_time(&#039;F jS, Y&#039;); ?&gt; &lt;?php edit_post_link(&#039;Edit Post&#039;, &#039;[&#039;, &#039;]&#039;); ?&gt;&lt;/div&gt;
                &lt;div class=&quot;post-content&quot;&gt;
                       &lt;?php the_content(); ?&gt;
                       &lt;?wp_link_pages(); ?&gt;
                &lt;/div&gt;
                &lt;div class=&quot;post-meta&quot;&gt;Posted by &lt;?php the_author(); ?&gt; under &lt;?php the_category(&#039;,&#039;) ?&gt; with &lt;?php comments_popup_link(&#039;No Comments&#039;, &#039;1 Comment&#039;, &#039;% Comments&#039;); ?&gt;&lt;/div&gt;
        &lt;/div&gt;
        &lt;?php endwhile; ?&gt;
        &lt;div class=&quot;page-navigation&quot;&gt;&lt;?php posts_nav_link(); ?&gt;&lt;/div&gt;
        &lt;?php endif; ?&gt;

&lt;div id=&quot;comments&quot;&gt;
       &lt;?php comments_template(); ?&gt;
&lt;/div&gt;

&lt;/div&gt;

&lt;div class=&quot;sidebar&quot;&gt;
       &lt;ul&gt;

             &lt;li id=&quot;search&quot;&gt;&lt;h2&gt;Search&lt;/h2&gt;
                      &lt;form method=&quot;get&quot; id=&quot;searchform&quot; action=&quot;&lt;?php bloginfo(&#039;home&#039;); ?&gt;&quot;&gt;
                             &lt;div&gt;
                                    &lt;input type=&quot;text&quot; value=&quot;&lt;?php echo wp_specialchars($s, 1); ?&gt;&quot; name=&quot;s&quot; id=&quot;s&quot; size=&quot;22&quot; /&gt;
                                    &lt;input type=&quot;submit&quot; id=&quot;searchsubmit&quot; value=&quot;Search&quot; /&gt;
                             &lt;/div&gt;
                      &lt;/form&gt;
             &lt;/li&gt;
              &lt;?php wp_list_pages(&#039;title_li=&lt;h2&gt;Pages&lt;/h2&gt;&#039;); ?&gt;
              &lt;?php wp_list_categories(&#039;title_li=&lt;h2&gt;Categories&lt;/h2&gt;&#039;); ?&gt;
              &lt;li id=&quot;archives&quot;&gt;&lt;h2&gt;Archives&lt;/h2&gt;
                      &lt;ul&gt;
                             &lt;?php wp_get_archives(&#039;type=monthly&#039;); ?&gt;
                      &lt;/ul&gt;
              &lt;/li&gt;
             &lt;?php wp_list_bookmarks(); ?&gt;
             &lt;li id=&quot;rss-links&quot;&gt;&lt;h2&gt;RSS Feeds&lt;/h2&gt;
                     &lt;ul&gt;
                             &lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo(&#039;rss2_url&#039;) ?&gt;&quot;&gt;Posts RSS&lt;/a&gt;&lt;/li&gt;
                             &lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo(&#039;comments_rss2_url&#039;) ?&gt;&quot;&gt;Comments RSS&lt;/a&gt;&lt;/li&gt;
                     &lt;/ul&gt;
             &lt;/li&gt;
             &lt;li id=&quot;meta&quot;&gt;&lt;h2&gt;Meta&lt;/h2&gt;
                     &lt;ul&gt;
                             &lt;?php wp_register() ?&gt;
                             &lt;li&gt;&lt;?php wp_loginout() ?&gt;&lt;/li&gt;
                             &lt;?php wp_meta() ?&gt;
                     &lt;/ul&gt;
             &lt;/li&gt;

       &lt;/ul&gt;
&lt;/div&gt;

&lt;/div&gt;

&lt;div id=&quot;footer&quot;&gt;
       &lt;div class=&quot;footer-box&quot;&gt;&lt;?php wp_footer(); ?&gt;&lt;span class=&quot;alignleft&quot;&gt;&lt;a href=&quot;&lt;?php bloginfo(&#039;url&#039;); ?&gt;&quot;&gt;&lt;?php bloginfo(&#039;name&#039;); ?&gt;&lt;/a&gt; Proudly Powered by &lt;a href=&quot;http://www.wordpress.org/&quot;&gt;WordPress &lt;?php bloginfo(&#039;version&#039;); ?&gt;&lt;/a&gt;.&lt;/span&gt; &lt;span class=&quot;alignright&quot;&gt;Using Simple Theme by &lt;a href=&quot;http://www.basoro.com/&quot;&gt;IM Basoro&lt;/a&gt; with &lt;a href=&quot;http://jigsaw.w3.org/css-validator/check/referer&quot; title=&quot;Valid CSS!&quot;&gt;CSS&lt;/a&gt; and &lt;a href=&quot;http://validator.w3.org/check?uri=referer&quot; title=&quot;Valid XHTML 1.0 Transitional&quot;&gt;XHTML&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p><strong>File style.css</strong></p>
<pre class="brush: css; gutter: true">/*
Theme Name: Simple
Theme URI: http://www.basoro.com/themes/simple/
Description: Simple WordPress Themes For Free.
Version: 0.1
Author: IM Basoro
Author URI: http://www.basoro.com/
*/

body, h1, h2, h3, h4, h5, h6, address, blockquote, dd, dl, hr, p, form {
margin : 0;
padding : 0;
}
body {
font-family : Arial, helvetica, sans-serif;
font-size : 13px;
text-align : left;
vertical-align : top;
color : #111;
}
table {
font-size : 12px;
}
a {
text-decoration : none;
color : #8f3939;
}
a:hover {
text-decoration : none;
color : #111;
}
a img {
border : 0;
}
dd {
padding : 0 0 0 20px;
}
p {
padding : 10px 0 5px;
}
p img {
max-width : 100%;
}
img.centered {
margin-left : auto;
margin-right : auto;
display : block;
}
img.alignright {
margin : 3px 0 2px 10px;
padding : 4px;
border : 1px solid #ededed;
display : inline;
}
img.alignleft {
margin : 3px 10px 2px 0;
padding : 4px;
border : 1px solid #ededed;
display : inline;
}
.alignleft {
float : left;
}
.alignright {
float : right;
}
.clear {
margin : 0;
padding : 0;
clear : both;
}
small {
font-size : 11px;
}
h1, h2, h3, h4, h5, h6 {
font-size : 16px;
font-weight : bold;
}
blockquote {
margin : 10px 0 0;
border-top : 2px solid #ddd;
background : #f5f5f5;
}
blockquote p {
padding : 10px;
}
blockquote blockquote {
float : none;
width : auto;
margin : 0 10px;
background : #fff;
}
form, input, textarea {
font-size : 12px;
padding : 3px;
}
#wrapper {
width : 100%;
margin : 0 auto;
padding : 0;
border-top : 10px solid #666;
text-align : left;
background : #fff;
}
#header {
width : 860px;
margin : 0 auto;
padding : 0;
background : #fff;
}
#header h1 {
font-family : Georgia, &quot;Times New Roman&quot;, serif;
padding : 20px 10px 0 10px;
font-size : 32px;
font-weight : normal;
}
#header p {
float : right;
font-family : Georgia, &quot;Times New Roman&quot;, serif;
padding : 10px 40px 20px 10px;
font-size : 16px;
font-weight : normal;
font-style : italic;
}
#menu {
float : left;
width : 100%;
margin : 0 auto;
border-top : 1px solid #ccc;
border-bottom : 1px solid #ccc;
background : #f3f3f3;
}
#menu ul {
width : 860px;
margin : 0 auto;
padding : 0;
list-style : none;
}
#menu ul li {
float : left;
}
#menu ul li a {
display : block;
padding : 9px 15px;
border-right : 1px solid #ccc;
text-decoration : none;
color : #111;
}
#menu ul li a:hover {
background : #ddd;
}
#menu li.gohome a {
border-left : 1px solid #ccc;
}
#menu li.current_page_item a {
background : #ccc;
}
#breadcrumb{
float : left;
width : 100%;
margin : 0 auto;
font-family: arial, helvetica, sans-serif;
font-size: 11px;
font-weight : normal;
color: #111;
}
#breadcrumb p{
width : 840px;
margin : 0 auto;
padding: 15px 10px 5px 20px;
}
#breadcrumb a {
color: #8f3939;
font-weight : bold;
}
#container {
width : 860px;
margin : 0 auto;
padding : 0;
background : #fff;
}
#content {
float : left;
width : 530px;
margin : 0 10px 0 0;
padding : 10px 0 10px 0;
}
.page-navigation {
margin : 10px 10px 0;
padding : 5px 10px 6px;
line-height : 24px;
}
.post {
padding : 10px 20px;
}
.post h2 {
font-family : Georgia, &quot;Times New Roman&quot;, serif;
font-size : 24px;
font-weight : normal;
}
.post h2 a {
color : #000;
}
.post-date {
padding : 10px 10px 0 0;
color : #666;
}
.post-content {
line-height : 21px;
font-size : 13px;
}
.post-content h2, .post-content h3, .post-content-h4, .post-content h5 {
padding : 10px 0 5px;
}
.post-content h2 a {
color : #8f3939;
}
.post-content h3 {
font-size : 18px;
font-weight : normal;
}
.post-content h5 {
font-size : 14px;
}
.post-content h6 {
font-size : 12px;
}
.post-meta {
padding : 10px 0 0 0;
line-height : 24px;
}
.sidebar {
float : left;
width : 300px;
background-color : #f3f3f3;
margin : 10px;
padding : 10px 0 10px 0;
}
.sidebar ul {
list-style : none;
margin : 0;
padding : 0;
}
.sidebar ul {
margin : 0 0 10px;
}
.sidebar ul li {
padding : 10px 10px 0;
}
.sidebar ul li h2 {
border-bottom : 1px solid #ddd;
font-family : Georgia, &quot;Times New Roman&quot;, serif;
padding : 8px 10px 9px;
font-size : 18px;
font-weight : normal;
color : #444;
font-style : italic;
}
.sidebar ul ul {
margin : 0;
padding : 6px 10px 0;
line-height : 24px;
}
.sidebar ul ul li {
padding : 0;
}
.sidebar ul ul ul {
padding : 0 0 0 10px;
}
#comments {
margin : 10px;
padding : 10px;
border : 1px solid #f5f5f5;
}
#comment {
width : 450px;
}
#comments ol {
list-style : none;
margin : 10px 0;
padding : 0;
}
#comments ol li {
list-style : none;
margin : 10px 0 0;
padding : 0 0 10px;
border-bottom : 1px solid #ededed;
line-height : 24px;
}
#comments span.comment-author {
font-weight : bold;
}
#respond {
padding : 10px;
background : #f9f9f9;
}
.recentcomments a {
display : inline !important ;
padding : 0 !important ;
margin : 0 !important ;
}
#footer {
float : left;
width : 100%;
margin : 0 auto;
padding : 15px 0 20px 0;
border-top : 1px solid #aaa;
text-align : center;
line-height : 24px;
background : #eee;
}
#footer a {
text-decoration : none;
color : #555;
}
#footer .footer-box {
width : 860px;
margin : 0 auto;
padding : 0;
font-family : Georgia, &quot;Times New Roman&quot;, serif;
font-size : 14px;
font-weight : normal;
font-style : italic;
}</pre>
<p>For the record, Basoro.COM put links at the bottom of the page that lead to a page Basoro.COM. If you do not like, it allowed to eliminate the link.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.basoro.com/2010/02/15/simple-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to add Breadcrumbs without plugins on WordPress</title>
		<link>http://www.basoro.com/2010/02/13/how-to-add-breadcrumbs-without-plugins-on-wordpress/</link>
		<comments>http://www.basoro.com/2010/02/13/how-to-add-breadcrumbs-without-plugins-on-wordpress/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 04:56:03 +0000</pubDate>
		<dc:creator>basoro</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Opensource]]></category>

		<guid isPermaLink="false">http://www.basoro.com/?p=230</guid>
		<description><![CDATA[Most of the blog with SEO considerations using breadcrumbs. In this article I am going to show you how to do proper, full breadcrumbs in including nested categories and nested pages. Breadcrumbs are a pretty standard design pattern and can be very useful in a lot of website situations. For WordPress users typically use plugins. [...]]]></description>
			<content:encoded><![CDATA[<p>Most of the blog with SEO considerations using breadcrumbs. In this article I am going to show you how to do proper, full breadcrumbs in including nested categories and nested pages. Breadcrumbs are a pretty standard design pattern and can be very useful in a lot of website situations. For WordPress users typically use plugins. But for those who want to add facilities in bredacrumbs WordPress-based blog without using plugins, try my way below.</p>
<p>You can just include this function in your theme’s &#8220;<code>functions.php</code>&#8221; file.</p>
<pre class="brush: php; gutter: true">function get_wp_breadcrumbs() {
	if (!is_home()) {
		echo (&#039;You are here: &#039;);
		echo &#039;&lt;a href=&quot;&#039;;
		echo get_option(&#039;home&#039;);
		echo &#039;&quot;&gt;&#039;;
		echo &#039;Home&#039;;
		echo &quot;&lt;/a&gt; » &quot;;
		if (is_category() || is_single()) {
			the_category(&#039; » &#039;,multiple);
			if (is_single()) {
				echo &quot; » &quot;;
				the_title();
			}
		} elseif (is_page()) {
			echo the_title();
		}

	}
	else {
	echo (&#039;You are here: &#039;);
	echo &#039;&lt;a href=&quot;&#039;;
	echo get_option(&#039;home&#039;);
	echo &#039;&quot;&gt;&#039;;
	echo &#039;Home&#039;;
	echo &quot;&lt;/a&gt; » &quot;;
	}
}</pre>
<p>And then add the following code in the &#8220;<code>header.php</code>&#8221; file.</p>
<pre class="brush: php; gutter: true">&lt;?php get_wp_breadcrumbs(); ?&gt;</pre>
<p>So there you have it. Fully customizable, valid breadcrumbs in WordPress. Please let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.basoro.com/2010/02/13/how-to-add-breadcrumbs-without-plugins-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install Swiftweasel For Optimized Firefox</title>
		<link>http://www.basoro.com/2010/02/12/install-swiftweasel-for-optimized-firefox/</link>
		<comments>http://www.basoro.com/2010/02/12/install-swiftweasel-for-optimized-firefox/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 10:35:58 +0000</pubDate>
		<dc:creator>basoro</dc:creator>
				<category><![CDATA[Uncategories]]></category>

		<guid isPermaLink="false">http://www.basoro.com/?p=215</guid>
		<description><![CDATA[Swiftweasel is a build of Mozilla Firefox source code, which uses non-trademarked graphics and logos. It is optimized for several architectures, and is available for the Linux platform only (original article). The main difference when compared to Firefox is that Swiftweasel is free and open source software dan light, Firefox are full blown huge heavy [...]]]></description>
			<content:encoded><![CDATA[<p>Swiftweasel is a build of Mozilla Firefox source code, which uses non-trademarked graphics and logos. It is optimized for several architectures, and is available for the Linux platform only (original article). The main difference when compared to Firefox is that Swiftweasel is free and open source software dan light, Firefox are full blown huge heavy monster for my Ubuntu BOX.</p>
<p>To install, first download the tar.gz file for your architecture at http://sourceforge.net/projects/swiftweasel/files/, saving it in your home directory. Then run the following commands in the terminal:</p>
<blockquote><p>sudo tar -xvf swiftweasel-*ubuntu.tar.gz -C /opt<br />
rm swiftweasel-*ubuntu.tar.gz<br />
sudo ln -s /opt/swiftweasel/swiftweasel /usr/local/bin/firefox
</p></blockquote>
<p>Then just click the firefox launcher and it will launch Swiftweasel instead. To uninstall and revert all changes, run the following command:</p>
<blockquote><p>sudo rm /usr/local/bin/firefox &amp;&amp; sudo rm -r /opt/swiftweasel</p></blockquote>
<p>Quote:<br />
Note: Swiftweasel profile is saved under ~/.sw*/swiftweasel</p>
]]></content:encoded>
			<wfw:commentRss>http://www.basoro.com/2010/02/12/install-swiftweasel-for-optimized-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto Fix login delay after upgrade to Lucid Lynx</title>
		<link>http://www.basoro.com/2010/02/12/howto-fix-login-delay-after-upgrade-to-lucid-lynx/</link>
		<comments>http://www.basoro.com/2010/02/12/howto-fix-login-delay-after-upgrade-to-lucid-lynx/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 00:51:23 +0000</pubDate>
		<dc:creator>basoro</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>

		<guid isPermaLink="false">http://www.basoro.com/?p=211</guid>
		<description><![CDATA[My Linux Box is Ubuntu LTS 8.04.4 minimal install with LXDE/Openbox as Window Manager. But after upgrading to Ubuntu Lucid Lynx, I noticed that it took an extra 15 &#8211; 20 seconds for it to finish logging me in after I entered my password. This was particularly noticeable to me because I use LXDE/Openbox as [...]]]></description>
			<content:encoded><![CDATA[<p>My Linux Box is Ubuntu LTS 8.04.4 minimal install with LXDE/Openbox as Window Manager. But after upgrading to Ubuntu Lucid Lynx, I noticed that it took an extra 15 &#8211; 20 seconds for it to finish logging me in after I entered my password. This was particularly noticeable to me because I use LXDE/Openbox as my window manager, and normally starts up in less than one second on my hardware. </p>
<p>If you&#8217;re experiencing this problem, there&#8217;s a very easy fix:</p>
<p>sudo mv /usr/bin/xsplash /usr/bin/xsplash_hidden</p>
<p>This just hides xsplash under a different name so that the login manager can&#8217;t find it and run it. I found that it did not cause any problem to have xsplash unavailable. However, the reason I&#8217;ve suggested renaming it rather than deleting it is so that if it does cause a problem, you can just rename it back.</p>
<p>For explanation, it turns out that xsplash has a 15-second delay hardcoded into it before the brown splash screen goes away. If you&#8217;re using Gnome, apparently Gnome has a mechanism to let xsplash know when it&#8217;s done loading, so the brown xsplash screen will go away in less than 15 seconds. But if you&#8217;re using a window manager other than Gnome that doesn&#8217;t support this mechanism, the brown screen will stay there for the full 15 seconds, while you wait for it. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.basoro.com/2010/02/12/howto-fix-login-delay-after-upgrade-to-lucid-lynx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Ubuntu Lucid Lyxn Via Debootstrap</title>
		<link>http://www.basoro.com/2010/02/06/install-ubuntu-lucid-lyxn-via-debootstrap/</link>
		<comments>http://www.basoro.com/2010/02/06/install-ubuntu-lucid-lyxn-via-debootstrap/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 07:31:15 +0000</pubDate>
		<dc:creator>basoro</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>

		<guid isPermaLink="false">http://www.basoro.com/?p=191</guid>
		<description><![CDATA[Just looking for nLite like on Ubuntu/GNU Linux? Please follow my guide. 1. Booting from your ubuntu installation media. 2. Make a new ext3 partition via cfdisk and mkfs.ext3 3. Mount your partition under /mnt/Ubuntu_10.04 4. Copy hardy script to lucid 5. cd /mnt/Ubuntu_10.04 6. debootstrap &#8211;arch=i386 lucid . 7. mount proc proc/ -t proc [...]]]></description>
			<content:encoded><![CDATA[<p>Just looking for nLite like on Ubuntu/GNU Linux? Please follow my guide.</p>
<p>1. Booting from your ubuntu installation media.<br />
2. Make a new ext3 partition via cfdisk and mkfs.ext3<br />
3. Mount your partition under /mnt/Ubuntu_10.04<br />
4. Copy hardy script to lucid<br />
5. cd /mnt/Ubuntu_10.04<br />
6. debootstrap &#8211;arch=i386 lucid .<br />
7. mount proc proc/ -t proc<br />
8. cp /etc/resolv.conf etc/resolv.conf<br />
9. cp /etc/hosts etc/hosts<br />
10. cp /etc/network/interfaces etc/network/interfaces<br />
11. chroot  /mnt/Ubuntu_10.04<br />
12. Install the kernel apt-get install linux-image-generic<br />
13. Fix the sources.list file<br />
deb http://archive.ubuntu.com/ubuntu lucid main restricted<br />
deb-src http://us.archive.ubuntu.com/ubuntu/ lucid main restricted</p>
<p>deb http://us.archive.ubuntu.com/ubuntu/ lucid-updates main restricted<br />
deb-src http://us.archive.ubuntu.com/ubuntu/ lucid-updates main restricted</p>
<p>deb http://us.archive.ubuntu.com/ubuntu/ lucid universe<br />
deb-src http://us.archive.ubuntu.com/ubuntu/ lucid universe</p>
<p>deb http://us.archive.ubuntu.com/ubuntu/ lucid-updates universe<br />
deb-src http://us.archive.ubuntu.com/ubuntu/ lucid-updates universe</p>
<p>deb http://us.archive.ubuntu.com/ubuntu/ lucid multiverse<br />
deb-src http://us.archive.ubuntu.com/ubuntu/ lucid multiverse</p>
<p>deb http://us.archive.ubuntu.com/ubuntu/ lucid-updates multiverse<br />
deb-src http://us.archive.ubuntu.com/ubuntu/ lucid-updates multiverse</p>
<p>#backports<br />
deb http://us.archive.ubuntu.com/ubuntu/ lucid-backports main restricted universe multiverse</p>
<p>#partner repos<br />
deb http://archive.canonical.com/ubuntu lucid partner<br />
deb-src http://archive.canonical.com/ubuntu lucid partner</p>
<p>deb http://security.ubuntu.com/ubuntu lucid-security main restricted<br />
deb-src http://security.ubuntu.com/ubuntu lucid-security main restricted</p>
<p>deb http://security.ubuntu.com/ubuntu lucid-security universe<br />
deb-src http://security.ubuntu.com/ubuntu lucid-security universe</p>
<p>deb http://security.ubuntu.com/ubuntu lucid-security multiverse</p>
<p>deb http://us.archive.ubuntu.com/ubuntu/ lucid-proposed restricted main multiverse universe<br />
deb-src http://security.ubuntu.com/ubuntu lucid-security multiverse</p>
<p>14. Install language pack apt-get install language-pack-en-base<br />
15. Reconfigure locale dpkg-reconfigure locales<br />
16. apt-get clean<br />
17. apt-get install grub<br />
18. grub-install /dev/hda<br />
19. update-grub<br />
20. Exit the chroot</p>
<p>Thanks to CentraBiz Jember for Amazing Internet Connection&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.basoro.com/2010/02/06/install-ubuntu-lucid-lyxn-via-debootstrap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forgiven But Not Forgotten</title>
		<link>http://www.basoro.com/2009/04/25/forgiven-but-not-forgotten/</link>
		<comments>http://www.basoro.com/2009/04/25/forgiven-but-not-forgotten/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 08:30:27 +0000</pubDate>
		<dc:creator>basoro</dc:creator>
				<category><![CDATA[Uncategories]]></category>
		<category><![CDATA[Dsen]]></category>
		<category><![CDATA[Guru]]></category>
		<category><![CDATA[Professor]]></category>

		<guid isPermaLink="false">http://www.basoro.com/?p=170</guid>
		<description><![CDATA[Profesor saya melempar topik panas berkenaan dengan masalah memaafkan dan melupakan. Kalau dalam istilah Maduranya, &#8220;Forgiven Forgotten&#8221;. Topik yang beliau lempar adalah &#8220;Forgiveness will open the doorway of our own love? &#8221; Artinya kita harus bersedia SELALU memaafkan, tidak membalas, tidak mendendam, tidak membenci! Bisa gak ya dilakukan ma kita? Maka sayapun menanggapi dengan statement, [...]]]></description>
			<content:encoded><![CDATA[<p>Profesor saya melempar topik panas berkenaan dengan masalah memaafkan dan melupakan. Kalau dalam istilah Maduranya, &#8220;Forgiven Forgotten&#8221;. Topik yang beliau lempar adalah &#8220;Forgiveness will open the doorway of our own love? &#8221; Artinya kita harus bersedia SELALU memaafkan, tidak membalas, tidak mendendam, tidak membenci! Bisa gak ya dilakukan ma kita?</p>
<p>Maka sayapun menanggapi dengan statement, kalau manusia lebih bersifat emosional. Dan disini berlaku hukum sebab akibat. Jangan lup, ingatan manusia berlaku dua arah. Dimana pada satu sisi lebih kuat arus kognitifnya dan disaat lain sifat emosional akan muncul. Dan celakanya, emosi dalam diri lebih kuat. Keadaan ini malah menimbulkan dendam kusumat. Yang diistilahkan oleh Prof. Dwi sebagai &#8220;Forgivness&#8221;. Coba kalau ingatan manusia hanya kuat disisi kognitifnya, maka dengan mudah kita akan &#8220;melupakan&#8221; kejadian2 yang lalu. Jadi buat yang tingkat emosinya tinggi, yakin deh tak akan pernah bisa memaafkan&#8230;. apalagi melupakan&#8230; Bukan masalah melupakan atau memaafkan, yang terpenting apa hikmah yang bisa diambil. Jangan seperti keledai bodoh yang terperosok pada lobang yang sama. Seperti nyanyian The Corrs dalam lagu Forgiven Not Frogotten.</p>
<blockquote><p>A bleeding heart torn apart, left on an icy grave,<br />
In the room where they once lay, face to face,<br />
Nothing could get in their way, but now the memories of the man<br />
Are haunting her days and the craving never fades,<br />
Shes still dreaming of a man long forgiven, but not forgotten,</p>
<p>Youre forgiven not forgotten<br />
Youre forgiven not forgotten<br />
Youre forgiven not forgotten<br />
Youre not forgotten</p>
<p>Still alone, staring on, wishing her life goodbye<br />
As she goes searching for the man long forgiven, but not forgotten,</p>
<p>Forgiven But Not Forgotten</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.basoro.com/2009/04/25/forgiven-but-not-forgotten/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Facebook dan Guru Terbaikku</title>
		<link>http://www.basoro.com/2009/04/19/facebook-dan-guru-terbaikku/</link>
		<comments>http://www.basoro.com/2009/04/19/facebook-dan-guru-terbaikku/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 15:26:10 +0000</pubDate>
		<dc:creator>basoro</dc:creator>
				<category><![CDATA[Uncategories]]></category>
		<category><![CDATA[Dokter]]></category>
		<category><![CDATA[Dosen]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Guru]]></category>
		<category><![CDATA[PTT]]></category>

		<guid isPermaLink="false">http://www.basoro.com/?p=165</guid>
		<description><![CDATA[Menyoal postingan terdahulu tentang wabah Facebook yang melanda. Hari ini saya merasakan benar-benar manfaatnya. Betapa tidak, salah satu Dosen saya, guru terbaik, menghubungi via Facebook. Ada rasa bangga memang. Betapa tidak, beliau yang selama ini ingin segera saya temui sepulang PTT ternyata lebih cepat menghubungi. Walaupun lewat media maya. Ya.. lewat jejaring sosial Facebook. Beliau [...]]]></description>
			<content:encoded><![CDATA[<p>Menyoal postingan terdahulu tentang <a href="http://www.basoro.com/2009/03/04/facebook-influenza/">wabah Facebook</a> yang melanda. Hari ini saya merasakan benar-benar manfaatnya. Betapa tidak, salah satu Dosen saya, guru terbaik, menghubungi via Facebook. Ada rasa bangga memang. Betapa tidak, beliau yang selama ini ingin segera saya temui sepulang PTT ternyata lebih cepat menghubungi. Walaupun lewat media maya. Ya.. lewat jejaring sosial Facebook.</p>
<p>Beliau bukan sekedar dosen, yang seharusnya sekedar memberikan ilmu. Namun beliau juga mengajari saya &#8220;bagaimana seharusnya&#8221;.<br />
- Bagaimana seharusnya jadi Dokter.<br />
- Bagaimana seharusnya jadi manusia.<br />
- Bagaimana seharusnya disiplin.<br />
- Bagaimana seharusnya bertanggung jawab.<br />
- Bagaimana seharusnya&#8230;&#8230;&#8230;</p>
<p>Hari ini beliau menyapa saya di kotak pesan Facebook. Dengan sapaan sederhana. Tapi cukup membuat saya untuk tertegun sesaat. Ternyata Facebook telah mempertemukan saya dengan Dosen sekaligus Guru kehidupan bagi saya.</p>
<p>Nb. Semasa kuliah, beliau dosen yang paling saya takuti.. hehehheheheh&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.basoro.com/2009/04/19/facebook-dan-guru-terbaikku/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

