<?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>CKnol.Com &#187; admin</title>
	<atom:link href="http://www.cknol.com/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cknol.com</link>
	<description>The Center of Knowledges</description>
	<lastBuildDate>Sun, 14 Dec 2008 18:09:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Using CSS to Makes Transparent Element in Mozilla</title>
		<link>http://www.cknol.com/website/using-css-to-makes-transparent-element-in-mozilla.html</link>
		<comments>http://www.cknol.com/website/using-css-to-makes-transparent-element-in-mozilla.html#comments</comments>
		<pubDate>Tue, 18 Dec 2007 17:50:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Mozilla]]></category>

	<!-- AutoMeta Start -->
	<category>blog</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.cknol.com/?p=42</guid>
		<description><![CDATA[Let us play with Mozilla’s CSS again. Now we will try to make a cool transparent element with -moz-opacity property. This property is also available in CSS3 specification with the name opacity. Using this property, you can control how solid your element is. The value is ranged from 0 (full-transparent) to 1 (solid). So, 0.5 [...]]]></description>
			<content:encoded><![CDATA[<p>Let us play with Mozilla’s CSS again. Now we will try to make a cool transparent element with -moz-opacity property. This property is also available in CSS3 specification with the name opacity. Using this property, you can control how solid your element is. The value is ranged from 0 (full-transparent) to 1 (solid). So, 0.5 value means the element is 50% transparent.</p>
<p><span id="more-42"></span></p>
<p>Watch the sample below:</p>
<div id="attachment_43" class="wp-caption aligncenter" style="width: 112px"><a href="http://www.cknol.com/wp-content/uploads/2008/12/transparent-element.gif"><img class="size-thumbnail wp-image-43" title="transparent-element" src="http://www.cknol.com/wp-content/uploads/2008/12/transparent-element.gif" alt="Transparent Element" width="102" height="102" /></a><p class="wp-caption-text">Transparent Element</p></div>
<p>All of the 4 boxes actually have the same color, red. What make each looks different is the -moz-opacity setting. Box number 1 has 25% opacity (0.25), box number 2 has 50% opacity (0.5), box number 3 has 75% opacity (0.75), and the last box number 4 has 100% opacity (1).</p>
<p>Here is the code:</p>
<p><code>[css].bigBox {<br />
background-color: black;<br />
width: 100px;<br />
height: 100px;<br />
border: 1px solid #000;<br />
margin: 0 5px 10px 0;<br />
padding: 0;<br />
float: left;<br />
display: block;<br />
}</code></p>
<p><code>.box1, .box2, .box3, .box4 {<br />
background-color: red;<br />
width: 50px;<br />
height: 50px;<br />
border: 0;<br />
margin: 0;<br />
padding: 0;<br />
float: left;<br />
text-align: center;<br />
color: white;<br />
}</code></p>
<p><code>.box1 {<br />
-moz-opacity: 0.25;<br />
opacity: 0.25;<br />
}</code></p>
<p><code>.box2 {<br />
-moz-opacity: 0.5;<br />
opacity: 0.5;<br />
}</code></p>
<p><code>.box3 {<br />
-moz-opacity: 0.75;<br />
opacity: 0.75;<br />
}</code></p>
<p><code>.box4 {<br />
-moz-opacity: 1;<br />
opacity: 1;<br />
}[/css]</code></p>
<p><code>[html]<br />
1<br />
2<br />
3<br />
4<br />
[/html]</code></p>
<p>Try to combine this with element who has background image and you will surely get a nice effect. Hover will look good too. I already implement this in my comment list element. If you want to see it, just find any post in my blog that has lot of comments, and check out the comment box.</p>
<p>Don’t forget. This is Mozilla/Firefox spesific CSS. Sorry to IE users, get FireFox please.</p>
<p>Good luck!</p>
<img src="http://www.cknol.com/?ak_action=api_record_view&id=42&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cknol.com/website/using-css-to-makes-transparent-element-in-mozilla.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Changing The Style of Highlighted Text in Mozilla</title>
		<link>http://www.cknol.com/website/changing-the-style-of-highlighted-text-in-mozilla.html</link>
		<comments>http://www.cknol.com/website/changing-the-style-of-highlighted-text-in-mozilla.html#comments</comments>
		<pubDate>Mon, 17 Dec 2007 16:16:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home7/antarnis/public_html/cknol.com/wp-content/plugins/autometa/autometa.php</b> on line <b>300</b><br />
		<category><![CDATA[Website]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Mozilla]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.cknol.com/?p=38</guid>
		<description><![CDATA[There are several interesting style on Mozilla’s specific CSS. One of the most interesting trick is changing the style of the text when user highlighted the text using -moz-selection property. Look the sample of code below: [css]::-moz-selection{ background-color: #ff0000; color: #fff; }[/css] now when user selected or highlighted any text, the background color will change [...]]]></description>
			<content:encoded><![CDATA[<p>There are several interesting style on Mozilla’s specific CSS. One of the most interesting trick is changing the style of the text when user highlighted the text using -moz-selection property.</p>
<p>Look the sample of code below:</p>
<p><span id="more-38"></span></p>
<p><code>[css]::-moz-selection{<br />
background-color: #ff0000;<br />
color: #fff;<br />
}[/css]</code></p>
<p>now when user selected or highlighted any text, the background color will change to red (#ff0000) and the text color is white (#fff). I used that style on this site so simply highlighted any text here and see the result.</p>
<p>Do not forget that this is Mozilla’s specific CSS, so it won’t work on Internet Explorer. I hope this property will be included on CSS3 specification draft so more browser will support it.</p>
<img src="http://www.cknol.com/?ak_action=api_record_view&id=38&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cknol.com/website/changing-the-style-of-highlighted-text-in-mozilla.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Read GMail Inbox Using RSS Feed</title>
		<link>http://www.cknol.com/internet/how-to-read-gmail-inbox-using-rss-feed.html</link>
		<comments>http://www.cknol.com/internet/how-to-read-gmail-inbox-using-rss-feed.html#comments</comments>
		<pubDate>Sun, 16 Dec 2007 20:07:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Feed]]></category>
		<category><![CDATA[FeedBurner]]></category>
		<category><![CDATA[GMail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[RSS]]></category>

	<!-- AutoMeta Start -->
	<category></category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.cknol.com/?p=34</guid>
		<description><![CDATA[Do you use free email service from Google which called GMail (link)? I want to tell you about a feature you had probably love to know. The feature will enable you to easily and quickly grab the contents of your GMail inbox using RSS feed. To try that feature, just use this URL as your [...]]]></description>
			<content:encoded><![CDATA[<p>Do you use free email service from Google which called GMail (<a title="GMail" href="http://www.google.com/gmail" target="_blank">link</a>)? I want to tell you about a feature you had probably love to know.</p>
<p>The feature will enable you to easily and quickly grab the contents of your GMail inbox using RSS feed. To try that feature, just use this URL as your RSS feed URL:</p>
<p><span id="more-34"></span></p>
<p><code>https://USERNAME : PASSWORD @  gmail.google.com/gmail/feed/atom</code></p>
<p>Replace the <code>USERNAME</code> with your GMail username, and the <code>PASSWORD</code> with your GMail password. You need to paste that URL into your browser address bar and you can start to read your email. That is so easy.</p>
<p>Otherwise, I think this is not a good idea to have your password shown on the browser. Especially, if you are using public feed aggregator service, like feedburner, since they might get your GMail password.</p>
<img src="http://www.cknol.com/?ak_action=api_record_view&id=34&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cknol.com/internet/how-to-read-gmail-inbox-using-rss-feed.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Associating Yahoo! and Google</title>
		<link>http://www.cknol.com/internet/associating-yahoo-and-google.html</link>
		<comments>http://www.cknol.com/internet/associating-yahoo-and-google.html#comments</comments>
		<pubDate>Sat, 15 Dec 2007 19:22:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home7/antarnis/public_html/cknol.com/wp-content/plugins/autometa/autometa.php</b> on line <b>300</b><br />
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Yahoo!]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.cknol.com/?p=27</guid>
		<description><![CDATA[Everyone in the internet do a lot of searching. There are two big search engines in the internet now. They are Yahoo! and Google. Which one is the best? I don&#8217;t know, and I think this is not important to know. I am using Yahoo! and also Google. How about you? Do you like to [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone in the internet do a lot of searching. There are two big search engines in the internet now. They are Yahoo! and Google.</p>
<p>Which one is the best? I don&#8217;t know, and I think this is not important to know. I am using Yahoo! and also Google. How about you? Do you like to use them at once?</p>
<p><span id="more-27"></span></p>
<p>Someone have making a website named YaGoohoo!gle (<a title="YaGoohoo!gle" href="http://yagoohoogle.com/" target="_blank">link</a>). That website unites Yahoo! and Google search engine in one page. So you can use those two search engine just in one click. No more windows! And, off course, it will saves your time online.</p>
<img src="http://www.cknol.com/?ak_action=api_record_view&id=27&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cknol.com/internet/associating-yahoo-and-google.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Modifying WordPress Related Post Plugins</title>
		<link>http://www.cknol.com/wordpress/how-to-modifying-wordpress-related-post-plugins.html</link>
		<comments>http://www.cknol.com/wordpress/how-to-modifying-wordpress-related-post-plugins.html#comments</comments>
		<pubDate>Fri, 14 Dec 2007 18:41:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Plugins]]></category>

	<!-- AutoMeta Start -->
	<category>download</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.cknol.com/?p=5</guid>
		<description><![CDATA[First, if you do not have Related Post plugins, you can download it from the author&#8217;s website (Link). This little modification will make your Related Post plugin more powerful and useful. Follow these steps to update the plugin: Copy these code: &#60;? if (! function_exists(”related_posts”)) { function related_posts($limit=5, $len=10, $before_title = ”, $after_title = ”, [...]]]></description>
			<content:encoded><![CDATA[<p>First, if you do not have Related Post plugins, you can download it from the author&#8217;s website (<a title="Related Post Plugins" href="http://www.w-a-s-a-b-i.com/archives/2004/05/26/wordpress-related-entries-plugin/" target="_blank">Link</a>). This little modification will make your Related  Post plugin more powerful and useful.</p>
<p><span id="more-5"></span></p>
<p>Follow these steps to update the plugin:</p>
<ol>
<li>Copy these code:</li>
<p><code>&lt;? if (! function_exists(”related_posts”))<br />
{</code></p>
<p><code>function related_posts($limit=5, $len=10, $before_title = ”, $after_title = ”, $before_post = ”, $after_post = ”, $show_pass_post = false, $show_excerpt = false, $before_last_title = ”, $after_last_title = ”) {</code></p>
<p><code>global $wpdb, $post, $tableposts;</code></p>
<p><code>if ($before_last_title == ”) {<br />
$before_last_title = $before_title;<br />
}<br />
if ($after_last_title = ”) {<br />
$after_last_title = $after_title;<br />
}</code></p>
<p><code>$postcustom = get_post_custom_values(’keyword’);<br />
if (!empty($postcustom)) {<br />
$values = array_map(’trim’, $postcustom);<br />
$terms = implode($values, ‘ ‘);<br />
} else {<br />
$terms = str_replace(’-', ‘ ‘, $post-&gt;post_name);<br />
}</code></p>
<p><code>$time_difference = get_settings(’gmt_offset’);<br />
$now = gmdate(”Y-m-d H:i:s”,(time()+($time_difference*3600)));</code></p>
<p><code>$sql = “SELECT ID, post_title, post_content,”<br />
. “MATCH (post_name, post_content) ”<br />
. “AGAINST (’$terms’) AS score ”<br />
. “FROM $tableposts WHERE ”<br />
. “MATCH (post_name, post_content) ”<br />
. “AGAINST (’$terms’) ”<br />
. “AND post_date &lt; = '$now' "<br />
. "AND (post_status = 'publish' &amp;&amp; ID != '$post-&gt;ID’) “;<br />
if (!$show_pass_post) { $sql .= “AND post_password =” “; }<br />
$sql .= “ORDER BY score DESC LIMIT $limit”;<br />
$results = $wpdb-&gt;get_results($sql);<br />
$output = ”;<br />
if ($results) {<br />
$index = 1;<br />
foreach ($results as $result) {<br />
$title = stripslashes(apply_filters(’the_title’, $result-&gt;post_title));<br />
$permalink = get_permalink($result-&gt;ID);<br />
$post_content = strip_tags($result-&gt;post_content);</code></p>
<p><code>$post_content = stripslashes($post_content);<br />
if (($limit&gt;1) &amp;&amp; ($index==$limit)) {<br />
$output .= $before_last_title .’‘ . $title . ‘‘ . $after_last_title;<br />
} else {<br />
$output .= $before_title .’‘ . $title . ‘‘ . $after_title;<br />
}<br />
if ($show_excerpt) {<br />
$words=split(” “,$post_content);<br />
$post_strip = join(” “, array_slice($words,0,$len));<br />
$output .= $before_post . $post_strip . $after_post;<br />
}<br />
$index++;<br />
}<br />
echo $output;<br />
} else {<br />
echo $before_title.’No related posts’.$after_title;<br />
}<br />
}</code></p>
<p><code>// End of related_posts<br />
?&gt;</code></p>
<li>Go to line 52. It should read:<br />
<code>if (!  function_exists("related_posts"))</code></li>
<li>Scroll down a little bit and find line contains:<br />
<code>// End of  related_posts<br />
</code>It should be on around line 110.</li>
<li>Now remove line 52 until above line, and replace it with the new code you have  copied from the point number one. Save your works.</li>
<li>The new related_post function will now have 2 extra parameter,  <strong>$before_last_title</strong> and <strong>$after_last_title</strong>.  Modify your theme to match the new function.<br />
Mine is:<br />
<code>Related Post: &lt;  ?php related_posts(5, 10, '', ', ', '', '', false, false,' and ','.');  ?&gt;</code></li>
</ol>
<p>Good luck!</p>
<img src="http://www.cknol.com/?ak_action=api_record_view&id=5&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cknol.com/wordpress/how-to-modifying-wordpress-related-post-plugins.html/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.cknol.com/blog/hello-world.html</link>
		<comments>http://www.cknol.com/blog/hello-world.html#comments</comments>
		<pubDate>Fri, 14 Dec 2007 18:17:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

	<!-- AutoMeta Start -->
	<category></category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.cknol.com/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
<img src="http://www.cknol.com/?ak_action=api_record_view&id=1&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cknol.com/blog/hello-world.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
