<?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>Mon, 05 Apr 2010 06:29:45 +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>How To Share Dialup Internet Connection On Ubuntu Server</title>
		<link>http://www.basoro.com/how-to-share-dialup-internet-connection-on-ubuntu-server.html</link>
		<comments>http://www.basoro.com/how-to-share-dialup-internet-connection-on-ubuntu-server.html#comments</comments>
		<pubDate>Fri, 19 Feb 2010 02:17:07 +0000</pubDate>
		<dc:creator>IM 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 > /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/how-to-share-dialup-internet-connection-on-ubuntu-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to recover images from formatted memory card</title>
		<link>http://www.basoro.com/how-to-recover-images-from-formatted-memory-card.html</link>
		<comments>http://www.basoro.com/how-to-recover-images-from-formatted-memory-card.html#comments</comments>
		<pubDate>Mon, 15 Feb 2010 02:05:39 +0000</pubDate>
		<dc:creator>IM 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/how-to-recover-images-from-formatted-memory-card.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simple WordPress Themes</title>
		<link>http://www.basoro.com/simple-wordpress-themes.html</link>
		<comments>http://www.basoro.com/simple-wordpress-themes.html#comments</comments>
		<pubDate>Sun, 14 Feb 2010 17:12:30 +0000</pubDate>
		<dc:creator>IM 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.<br />
<span id="more-244"></span><br />
File index.php</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&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;
&nbsp;
	&lt;title&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/title&gt;
&nbsp;
	&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'html_type'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>; charset=<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'charset'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;	
	&lt;meta name=&quot;generator&quot; content=&quot;WordPress <span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'version'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt; &lt;!-- leave this for stats please --&gt;
&nbsp;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'stylesheet_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&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;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'rss2_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;
	&lt;link rel=&quot;alternate&quot; type=&quot;text/xml&quot; title=&quot;RSS .92&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'rss_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;
	&lt;link rel=&quot;alternate&quot; type=&quot;application/atom+xml&quot; title=&quot;Atom 0.3&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'atom_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;
	&lt;link rel=&quot;pingback&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'pingback_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_get_archives<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'type=monthly&amp;format=link'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">//comments_popup_script(); // off by default ?&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_head<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/head&gt;
&lt;body&gt;
&nbsp;
&lt;div id=&quot;wrapper&quot;&gt;
&nbsp;
&lt;div id=&quot;header&quot;&gt;
       &lt;h1&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/a&gt;&lt;/h1&gt;
       &lt;p&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'description'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/p&gt;
&lt;/div&gt;
&nbsp;
&lt;div id=&quot;menu&quot;&gt;
       &lt;ul&gt;
             &lt;li class=&quot;gohome&quot;&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_option<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'home'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
             <span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_list_pages<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'depth=1&amp;title_li='</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
       &lt;/ul&gt;
&lt;/div&gt;
&nbsp;
&lt;div id=&quot;container&quot;&gt;
&nbsp;
&lt;div id=&quot;content&quot;&gt;
        <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
        &lt;div class=&quot;post&quot;&gt;
                &lt;h2&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; title=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/a&gt;&lt;/h2&gt;
                &lt;div class=&quot;post-date&quot;&gt;Posted on <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_time<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'F jS, Y'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> <span style="color: #000000; font-weight: bold;">&lt;?php</span> edit_post_link<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Edit Post'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'['</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">']'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/div&gt;
                &lt;div class=&quot;post-content&quot;&gt;
                       <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
                       <span style="color: #000000; font-weight: bold;">&lt;?</span>wp_link_pages<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
                &lt;/div&gt;
                &lt;div class=&quot;post-meta&quot;&gt;Posted by <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_author<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> under <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">','</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> with <span style="color: #000000; font-weight: bold;">&lt;?php</span> comments_popup_link<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'No Comments'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'1 Comment'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'% Comments'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/div&gt;
        &lt;/div&gt;
        <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
        &lt;div class=&quot;page-navigation&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> posts_nav_link<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/div&gt;
        <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
&lt;div id=&quot;comments&quot;&gt;
       <span style="color: #000000; font-weight: bold;">&lt;?php</span> comments_template<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/div&gt;
&nbsp;
&lt;/div&gt;
&nbsp;
&lt;div class=&quot;sidebar&quot;&gt;
       &lt;ul&gt;
&nbsp;
             &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;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'home'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;
                             &lt;div&gt;
                                    &lt;input type=&quot;text&quot; value=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> wp_specialchars<span style="color: #009900;">&#40;</span><span style="color: #000088;">$s</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&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;
              <span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_list_pages<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'title_li=&lt;h2&gt;Pages&lt;/h2&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
              <span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_list_categories<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'title_li=&lt;h2&gt;Categories&lt;/h2&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
              &lt;li id=&quot;archives&quot;&gt;&lt;h2&gt;Archives&lt;/h2&gt;
                      &lt;ul&gt;
                             <span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_get_archives<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'type=monthly'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
                      &lt;/ul&gt;
              &lt;/li&gt;
             <span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_list_bookmarks<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
             &lt;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;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'rss2_url'</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;Posts RSS&lt;/a&gt;&lt;/li&gt;
                             &lt;li&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'comments_rss2_url'</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&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;
                             <span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_register<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
                             &lt;li&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_loginout<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/li&gt;
                             <span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_meta<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
                     &lt;/ul&gt;
             &lt;/li&gt;
&nbsp;
       &lt;/ul&gt;
&lt;/div&gt;
&nbsp;
&lt;/div&gt;
&nbsp;
&lt;div id=&quot;footer&quot;&gt;
       &lt;p&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_footer<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;span class=&quot;alignleft&quot;&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/a&gt; Proudly Powered by &lt;a href=&quot;http://www.wordpress.org/&quot;&gt;WordPress <span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'version'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&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;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre></td></tr></table></div>

<p>File style.css</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/*
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/
*/</span>
&nbsp;
body<span style="color: #00AA00;">,</span> h1<span style="color: #00AA00;">,</span> h2<span style="color: #00AA00;">,</span> h3<span style="color: #00AA00;">,</span> h4<span style="color: #00AA00;">,</span> h5<span style="color: #00AA00;">,</span> h6<span style="color: #00AA00;">,</span> address<span style="color: #00AA00;">,</span> blockquote<span style="color: #00AA00;">,</span> dd<span style="color: #00AA00;">,</span> dl<span style="color: #00AA00;">,</span> hr<span style="color: #00AA00;">,</span> p<span style="color: #00AA00;">,</span> form <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
body <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-family</span> <span style="color: #00AA00;">:</span> Arial<span style="color: #00AA00;">,</span> helvetica<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">13px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">text-align</span> <span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">vertical-align</span> <span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#111</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
table <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
a <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">text-decoration</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#8f3939</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
a<span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">text-decoration</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#111</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
a img <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">border</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
dd <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
p <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
p img <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">max-width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
img<span style="color: #6666ff;">.centered</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">margin-left</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin-right</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">display</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
img<span style="color: #6666ff;">.alignright</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">2px</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#ededed</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">display</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">inline</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
img<span style="color: #6666ff;">.alignleft</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #933;">10px</span> <span style="color: #933;">2px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#ededed</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">display</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">inline</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.alignleft</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span> <span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.alignright</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span> <span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.clear</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">clear</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">both</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
small <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">11px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
h1<span style="color: #00AA00;">,</span> h2<span style="color: #00AA00;">,</span> h3<span style="color: #00AA00;">,</span> h4<span style="color: #00AA00;">,</span> h5<span style="color: #00AA00;">,</span> h6 <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">16px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
blockquote <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-top</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">2px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#ddd</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#f5f5f5</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
blockquote p <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
blockquote blockquote <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
form<span style="color: #00AA00;">,</span> input<span style="color: #00AA00;">,</span> textarea <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#wrapper</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-top</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#666</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">text-align</span> <span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#header</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">860px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#header</span> h1 <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-family</span> <span style="color: #00AA00;">:</span> Georgia<span style="color: #00AA00;">,</span> <span style="color: #ff0000;">&quot;Times New Roman&quot;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">serif</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">32px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#header</span> p <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span> <span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-family</span> <span style="color: #00AA00;">:</span> Georgia<span style="color: #00AA00;">,</span> <span style="color: #ff0000;">&quot;Times New Roman&quot;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">serif</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #933;">40px</span> <span style="color: #933;">20px</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">16px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-style</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">italic</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#menu</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span> <span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-top</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#ccc</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-bottom</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#ccc</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#f3f3f3</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#menu</span> ul <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">860px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">list-style</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#menu</span> ul li <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span> <span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#menu</span> ul li a <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">display</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span> <span style="color: #933;">15px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-right</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#ccc</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">text-decoration</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#111</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#menu</span> ul li a<span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ddd</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#menu</span> li<span style="color: #6666ff;">.gohome</span> a <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">border-left</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#ccc</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#menu</span> li<span style="color: #6666ff;">.current_page_item</span> a <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ccc</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#breadcrumb</span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span> <span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> arial<span style="color: #00AA00;">,</span> helvetica<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">11px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#111</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#breadcrumb</span> p<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">840px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">15px</span> <span style="color: #933;">10px</span> <span style="color: #933;">5px</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#breadcrumb</span> a <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#8f3939</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#container</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">860px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#content</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span> <span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">530px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.page-navigation</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span> <span style="color: #933;">10px</span> <span style="color: #933;">6px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">line-height</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">24px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.post</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.post</span> h2 <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-family</span> <span style="color: #00AA00;">:</span> Georgia<span style="color: #00AA00;">,</span> <span style="color: #ff0000;">&quot;Times New Roman&quot;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">serif</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">24px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.post</span> h2 a <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">color</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.post-date</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#666</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.post-content</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">line-height</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">21px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">13px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.post-content</span> h2<span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.post-content</span> h3<span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.post-content-h4</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.post-content</span> h5 <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.post-content</span> h2 a <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">color</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#8f3939</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.post-content</span> h3 <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">18px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.post-content</span> h5 <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">14px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.post-content</span> h6 <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.post-meta</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">line-height</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">24px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.sidebar</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span> <span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">298px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#ddd</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background-color</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#f3f3f3</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.sidebar</span> ul <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">list-style</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.sidebar</span> ul <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.sidebar</span> ul li <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.sidebar</span> ul li h2 <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">border-bottom</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#ddd</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-family</span> <span style="color: #00AA00;">:</span> Georgia<span style="color: #00AA00;">,</span> <span style="color: #ff0000;">&quot;Times New Roman&quot;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">serif</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">8px</span> <span style="color: #933;">10px</span> <span style="color: #933;">9px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">18px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#444</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-style</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">italic</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.sidebar</span> ul ul <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">6px</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">line-height</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">24px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.sidebar</span> ul ul li <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.sidebar</span> ul ul ul <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#comments</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#f5f5f5</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#comment</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">450px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#comments</span> ol <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">list-style</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#comments</span> ol li <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">list-style</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-bottom</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#ededed</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">line-height</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">24px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#comments</span> span<span style="color: #6666ff;">.comment-author</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#respond</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#f9f9f9</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.recentcomments</span> a <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">display</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">inline</span> !important <span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> !important <span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> !important <span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#footer</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span> <span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">15px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">20px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-top</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#aaa</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">text-align</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">line-height</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">24px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#555</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#footer</span> a <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">text-decoration</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span> <span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#eeeeee</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#footer</span> p <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">860px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-family</span> <span style="color: #00AA00;">:</span> Georgia<span style="color: #00AA00;">,</span> <span style="color: #ff0000;">&quot;Times New Roman&quot;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">serif</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-size</span> <span style="color: #00AA00;">:</span> <span style="color: #933;">14px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-style</span> <span style="color: #00AA00;">:</span> <span style="color: #993333;">italic</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<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/simple-wordpress-themes.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Breadcrumbs without plugins on WordPress</title>
		<link>http://www.basoro.com/how-to-add-breadcrumbs-without-plugins-on-wordpress.html</link>
		<comments>http://www.basoro.com/how-to-add-breadcrumbs-without-plugins-on-wordpress.html#comments</comments>
		<pubDate>Sat, 13 Feb 2010 04:56:03 +0000</pubDate>
		<dc:creator>IM Basoro</dc:creator>
				<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>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> get_wp_breadcrumbs<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>is_home<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'You are here: '</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;a href=&quot;'</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">echo</span> get_option<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'home'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&quot;&gt;'</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'Home'</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;/a&gt; » &quot;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_category<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			the_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">' &amp;raquo; '</span><span style="color: #339933;">,</span>multiple<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; » &quot;</span><span style="color: #339933;">;</span>
				the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span> <span style="color: #009900;">&#40;</span>is_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #b1b100;">echo</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span> 
	<span style="color: #b1b100;">echo</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'You are here: '</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;a href=&quot;'</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> get_option<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'home'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&quot;&gt;'</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'Home'</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;/a&gt; » &quot;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>And then add the following code in the &#8220;<code>header.php</code>&#8221; file.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>108
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> get_wp_breadcrumbs<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<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/how-to-add-breadcrumbs-without-plugins-on-wordpress.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Howto Fix login delay after upgrade to Lucid Lynx</title>
		<link>http://www.basoro.com/howto-fix-login-delay-after-upgrade-to-lucid-lynx.html</link>
		<comments>http://www.basoro.com/howto-fix-login-delay-after-upgrade-to-lucid-lynx.html#comments</comments>
		<pubDate>Fri, 12 Feb 2010 00:51:23 +0000</pubDate>
		<dc:creator>IM 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/howto-fix-login-delay-after-upgrade-to-lucid-lynx.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Ubuntu Lucid Lyxn Via Debootstrap</title>
		<link>http://www.basoro.com/install-ubuntu-lucid-lyxn-via-debootstrap.html</link>
		<comments>http://www.basoro.com/install-ubuntu-lucid-lyxn-via-debootstrap.html#comments</comments>
		<pubDate>Sat, 06 Feb 2010 07:31:15 +0000</pubDate>
		<dc:creator>IM 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/install-ubuntu-lucid-lyxn-via-debootstrap.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forgiven But Not Forgotten</title>
		<link>http://www.basoro.com/forgiven-but-not-forgotten.html</link>
		<comments>http://www.basoro.com/forgiven-but-not-forgotten.html#comments</comments>
		<pubDate>Sat, 25 Apr 2009 08:30:27 +0000</pubDate>
		<dc:creator>IM 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/forgiven-but-not-forgotten.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Facebook dan Guru Terbaikku</title>
		<link>http://www.basoro.com/facebook-dan-guru-terbaikku.html</link>
		<comments>http://www.basoro.com/facebook-dan-guru-terbaikku.html#comments</comments>
		<pubDate>Sun, 19 Apr 2009 15:26:10 +0000</pubDate>
		<dc:creator>IM 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/facebook-dan-guru-terbaikku.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Kue Nastar WordPress Theme</title>
		<link>http://www.basoro.com/kue-nastar-wordpress-theme.html</link>
		<comments>http://www.basoro.com/kue-nastar-wordpress-theme.html#comments</comments>
		<pubDate>Mon, 13 Apr 2009 16:02:55 +0000</pubDate>
		<dc:creator>IM Basoro</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Nastar]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.basoro.com/?p=146</guid>
		<description><![CDATA[Ini bukan bercerita tentang kue nastar yang biasa disajikan saat lebaran. Apalagi berharap ada salinan resep disini. Bukan.. bukan itu yang ingin saya tulisakan disini. Kali ini bercerita tentang Theme WordPress yang saya beri nama Nastar (Kue Nastar). Nah kali ini istriku bikin buat camilan sehari-hari. Sebagai pengisi waktu luang sambil nunggu kue mateng, iseng-iseng [...]]]></description>
			<content:encoded><![CDATA[<p>Ini bukan bercerita tentang kue nastar yang biasa disajikan saat lebaran. Apalagi berharap ada salinan resep disini. Bukan.. bukan itu yang ingin saya tulisakan disini. Kali ini bercerita tentang Theme WordPress yang saya beri nama <a href="http://www.google.co.id/search?hl=id&#038;q=kue+nastar&#038;btnG=Telusuri&#038;meta=">Nastar (Kue Nastar)</a>. Nah kali ini istriku bikin buat camilan sehari-hari. Sebagai pengisi waktu luang sambil nunggu kue mateng, iseng-iseng bukan laptop. Buka editor vim di Ubuntu Linux. Sim salabim.. jadilah theme ini.</p>
<p><a href="http://www.basoro.com/themes/nastar/">Nastar WordPress Themes</a> hanya terdiri dari 2 file yaitu <code>index.php</code> dan <code>style.css</code>. Ditambah 1 file <code>screenshoot.png</code> jadi tiga. Besarnya hanya 62kb. Cocok untuk yang mau otak-atik dan belajar theme WordPress biar sesuai dengan keinginan.</p>
<p>Kedepannya saya pingin ngoprek theme ini ke seni standart web. Ini juga atas saran dari <a href="http://daniiswara.net">mas Dani</a>. Mungkin <a href="http://daniiswara.net/2008/05/30/kriteria-universal-design-award-dari-accessitesorg/">Kriteria Universal Design Web dari Accessites.org</a> bisa sebagai acuan. Kita tunggu&#8230; toh sama-sama belajar.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.basoro.com/kue-nastar-wordpress-theme.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Facebook Influenza</title>
		<link>http://www.basoro.com/facebook-influenza.html</link>
		<comments>http://www.basoro.com/facebook-influenza.html#comments</comments>
		<pubDate>Tue, 03 Mar 2009 20:31:58 +0000</pubDate>
		<dc:creator>IM Basoro</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Friendster]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordBook]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.basoro.com/?p=132</guid>
		<description><![CDATA[Kali ini saya mencoba layanan Facebook. Semata-mata karena &#8220;desakan&#8221; istri untuk mencicipi layanan jejaring sosial ini. Dari awal sejak kemunculan friendster, tidak ada niatan dan ketertarikan untuk ikut-ikutan latah menggunakan layanan ini. Pun untuk kasus Facebook. Untuk sementara saya keliling dulu di layanan facebook ini setelah beberapa waktu lalu sempat register. Saya bolak-balik fitur-fiturnya. Ternyata [...]]]></description>
			<content:encoded><![CDATA[<p>Kali ini saya mencoba layanan Facebook. Semata-mata karena &#8220;desakan&#8221; istri untuk mencicipi layanan jejaring sosial ini. Dari awal sejak kemunculan friendster, tidak ada niatan dan ketertarikan untuk ikut-ikutan latah menggunakan layanan ini. Pun untuk kasus Facebook.</p>
<p>Untuk sementara saya keliling dulu di layanan facebook ini setelah beberapa waktu lalu sempat register. Saya bolak-balik fitur-fiturnya. Ternyata banyak apps yang ditawarkan. Bagaimana dengan layanan Blog wordpress? Adakah aplikasi yang sudah dibuat? Ternyata ada. Sedikit coba-coba pake WordBook plugins dari WordPress. Tapi sampai tulisan ini dibuat, kok postingan di blog saya ngga&#8217; muncul juga di halaman depan facebook.</p>
<p>Updated: Postingan dah muncul kok.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.basoro.com/facebook-influenza.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
