<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Yaser Sulaiman&#8217;s Blog</title>
	<atom:link href="https://yaserxp.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://yaserxp.wordpress.com</link>
	<description>Exploring the mysterious worlds of AI, free and open source software, and the Web</description>
	<lastBuildDate>Wed, 13 Jan 2010 06:33:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<site xmlns="com-wordpress:feed-additions:1">1308026</site><cloud domain='yaserxp.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://s0.wp.com/i/buttonw-com.png</url>
		<title>Yaser Sulaiman&#8217;s Blog</title>
		<link>https://yaserxp.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://yaserxp.wordpress.com/osd.xml" title="Yaser Sulaiman&#039;s Blog" />
	<atom:link rel='hub' href='https://yaserxp.wordpress.com/?pushpress=hub'/>
	<item>
		<title>5 Must-Have Gedit Plugins for Programmers</title>
		<link>https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/</link>
					<comments>https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/#comments</comments>
		
		<dc:creator><![CDATA[Yaser Sulaiman]]></dc:creator>
		<pubDate>Wed, 03 Sep 2008 13:48:15 +0000</pubDate>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[gedit]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<guid isPermaLink="false">http://yaserxp.wordpress.com/?p=120</guid>

					<description><![CDATA[Many users think that gedit &#8211; the default text editor for the GNOME desktop environment &#8211; is a simple editor that can only do some basic editing. In reality, there is more to gedit than meets the eye. It has many features that makes it a good choice for programmers: syntax highlighting, auto indentation, bracket [&#8230;]]]></description>
										<content:encoded><![CDATA[<p style="text-align:justify;">Many users think that <a href="http://www.gnome.org/projects/gedit/">gedit</a> &#8211; the default text editor for the <a href="http://www.gnome.org/">GNOME</a> desktop environment &#8211; is a simple editor that can only do some basic editing. In reality, there is more to gedit than meets the eye. It has many features that makes it a good choice for programmers: syntax highlighting, auto indentation, bracket matching, etc. But perhaps the most important feature of gedit is its powerful plugin system. There are <a href="http://live.gnome.org/Gedit/Plugins">many useful plugins out there</a> for regular users and programmers alike, but in this post <strong>I&#8217;ll concentrate on 5 gedit plugins that are essential for programmers.</strong> I consider them essential because <strong>they can greatly increase your programming productivity</strong> and make your life easier (<em>well, your programming life at least!</em>).</p>
<p style="text-align:justify;">Gedit comes with several plugins enabled by default (<em>the list of enabled plugins varies from one Linux distribution to another</em>). Additional plugins are available in the <a href="http://live.gnome.org/GeditPlugins"><em>gedit-plugins</em> package</a>. In Ubuntu, this package can be easily installed by running the following command:</p>
<p style="text-align:justify;"><code>sudo apt-get install gedit-plugins</code></p>
<p style="text-align:justify;">To access the list of plugins, select <em>Edit -&gt; Preferences</em>, and then select the <em>Plugins</em> tab. Here, you can enable, disable, configure, and get more info about the available plugins.</p>
<h4 style="text-align:justify;">1. <a href="http://live.gnome.org/Gedit/Plugins/Snippets">Snippets</a></h4>
<p style="text-align:justify;"><strong>Reduce the amount of typing you have to do by using Snippets, the auto-text insertion tool for gedit.</strong> It enables you to store &#8220;<em>snippets</em>&#8221; (<em>frequently-used pieces of text</em>), and insert them quickly into your file. Insertions can be done using a keyboard shortcut or a &#8220;<em>tab trigger</em>&#8220;. A tab trigger enables you to type a few characters and then hit the <em>Tab</em> key to insert the entire snippet (<em>e.g. a switch statement or a for loop</em>). The plugin comes with a number of built-in snippets for many programming languages. You can edit them and add your own by selecting <em>Tools -&gt; Manage Snippets</em>.</p>
<p style="text-align:justify;"><a href="https://yaserxp.wordpress.com/wp-content/uploads/2008/09/snippets.png"><img class="aligncenter" src="https://yaserxp.wordpress.com/wp-content/uploads/2008/09/snippets-small.png?w=400&#038;h=283" alt="Snippets Manager" width="400" height="283" /></a></p>
<h4 style="text-align:justify;">2. <a href="http://live.gnome.org/Gedit/ToolLauncherPlugin">External Tools</a></h4>
<p style="text-align:justify;">Regarded by many as the most useful one, <strong>External Tools enables you to run any external command or shell script,</strong> specifying the keyboard shortcut, the input (<em>if any</em>), and where to display the output. It comes with a couple of useful programs pre-installed: Build, Open terminal here, Remove trailing spaces, and Run command. You can add your own by selecting <em>Tools -&gt; External Tools</em>. For example, I&#8217;ve added a tool that invokes the Ruby interpreter on the current file and displays the output in the bottom pane.</p>
<p style="text-align:justify;"><img class="aligncenter" src="https://yaserxp.wordpress.com/wp-content/uploads/2008/09/externaltoolsruby-thumb.png?w=271&#038;h=357" alt="Ruby interpreter within External Tools" width="271" height="357" /></p>
<h4 style="text-align:justify;">3. Embedded Terminal</h4>
<p style="text-align:justify;">If you are not comfortable with the command line, then you are NOT a real programmer! This plugin <strong>adds a full instance of the Bash terminal in the bottom pane of gedit,</strong> complete with your modifications.</p>
<p style="text-align:justify;"><img class="aligncenter" src="https://yaserxp.wordpress.com/wp-content/uploads/2008/09/embeddedterminal2-thumb.png?w=404&#038;h=172" alt="Embedded Terminal" width="404" height="172" /></p>
<h4 style="text-align:justify;">4. Session Saver</h4>
<p style="text-align:justify;">A very useful plugin, <strong>especially if you are working on a project requiring multiple files to be open at once.</strong> Sessions can be saved and loaded from <em>File -&gt; Saved sessions</em>.</p>
<h4 style="text-align:justify;">5. Code Comment</h4>
<p style="text-align:justify;">Can you remember the last time you edited a source file without commenting at least one line of code? <strong>Code Comment enables you to comment/uncomment blocks of code quickly:</strong> <em>Ctrl+M</em> to comment and <em>Ctrl+Shift+M</em> to uncomment.</p>
<p style="text-align:justify;">Remember that <a href="http://live.gnome.org/Gedit/Plugins">there are many more gedit plugins</a>, some of which are targeted to a specific language (<em>like Python Console, which adds an interactive Python console to the bottom pane</em>). Feel free to try different plugins and transform gedit into an even more powerful IDE that suites your needs.</p>
<p style="text-align:justify;">What are your favorite gedit plugins that you can&#8217;t live without?</p>
<p style="text-align:justify;"><em><strong>If you like this post and want to get more useful content, then please <a href="http://feeds.feedburner.com/yaserxp">subscribe to my full text RSS feed</a>.</strong></em></p>
<p><a href="http://del.icio.us/post?url=https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/;title=5+Must-Have+Gedit+Plugins+for+Programmers"><img src="https://sunburntkamel.files.wordpress.com/2006/11/delicious.gif?w=600" alt="add to del.icio.us" /></a> <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/;Title=5+Must-Have+Gedit+Plugins+for+Programmers"><img src="https://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif?w=600" alt="Add to Blinkslist" /></a> <a href="http://www.furl.net/storeIt.jsp?u=https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/;t=5+Must-Have+Gedit+Plugins+for+Programmers"><img src="https://sunburntkamel.files.wordpress.com/2006/11/furl.gif?w=600" alt="add to furl" /></a> <a href="http://digg.com/submit?phase=2&amp;url=https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/"><img src="https://sunburntkamel.files.wordpress.com/2006/11/digg.gif?w=600" alt="Digg it" /></a> <a href="http://ma.gnolia.com/bookmarklet/add?url=https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/;title=5+Must-Have+Gedit+Plugins+for+Programmers"><img src="https://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif?w=600" alt="add to ma.gnolia" /></a> <a href="http://www.stumbleupon.com/submit?url=https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/&amp;title=5+Must-Have+Gedit+Plugins+for+Programmers"><img src="https://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif?w=600" alt="Stumble It!" /></a> <a href="http://www.simpy.com/simpy/LinkAdd.do?url=https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/;title=5+Must-Have+Gedit+Plugins+for+Programmers"><img src="https://sunburntkamel.files.wordpress.com/2006/11/simpy.png?w=600" alt="add to simpy" /></a> <a href="http://www.newsvine.com/_tools/seed&amp;save?url=https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/;title=5+Must-Have+Gedit+Plugins+for+Programmers"><img src="https://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif?w=600" alt="seed the vine" /></a> <a href="http://reddit.com/submit?url=https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/;title=5+Must-Have+Gedit+Plugins+for+Programmers"><img src="https://sunburntkamel.files.wordpress.com/2006/11/reddit.gif?w=600" alt="" /></a> <a href="http://cgi.fark.com/cgi/fark/edit.pl?new_url=https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/;new_comment=5+Must-Have+Gedit+Plugins+for+Programmers"><img src="https://sunburntkamel.files.wordpress.com/2006/11/fark.png?w=600" alt="" /></a> <a title="TailRank" href="http://tailrank.com/share/?text=&amp;link_href=https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/&amp;title=5+Must-Have+Gedit+Plugins+for+Programmers"><img src="https://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif?w=600" alt="TailRank" /></a> <a href="http://www.facebook.com/sharer.php?u=https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/&amp;t=5+Must-Have+Gedit+Plugins+for+Programmers"><img src="https://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif?w=600" alt="post to facebook" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://yaserxp.wordpress.com/2008/09/03/5-must-have-gedit-plugins-for-programmers/feed/</wfw:commentRss>
			<slash:comments>30</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">120</post-id>
		<media:content url="https://2.gravatar.com/avatar/bfd93a4dcfa58ccd2d2fae16f56416e63dbc5640e77d660b410088bbd4827829?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yaserxp</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/09/snippets-small.png" medium="image">
			<media:title type="html">Snippets Manager</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/09/externaltoolsruby-thumb.png" medium="image">
			<media:title type="html">Ruby interpreter within External Tools</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/09/embeddedterminal2-thumb.png" medium="image">
			<media:title type="html">Embedded Terminal</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif" medium="image">
			<media:title type="html">add to del.icio.us</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif" medium="image">
			<media:title type="html">Add to Blinkslist</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/furl.gif" medium="image">
			<media:title type="html">add to furl</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif" medium="image">
			<media:title type="html">Digg it</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif" medium="image">
			<media:title type="html">add to ma.gnolia</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif" medium="image">
			<media:title type="html">Stumble It!</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/simpy.png" medium="image">
			<media:title type="html">add to simpy</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif" medium="image">
			<media:title type="html">seed the vine</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/fark.png" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif" medium="image">
			<media:title type="html">TailRank</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif" medium="image">
			<media:title type="html">post to facebook</media:title>
		</media:content>
	</item>
		<item>
		<title>Discover the Best Ubuntu Resources on the Web</title>
		<link>https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/</link>
					<comments>https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/#comments</comments>
		
		<dc:creator><![CDATA[Yaser Sulaiman]]></dc:creator>
		<pubDate>Thu, 29 May 2008 15:22:48 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<guid isPermaLink="false">http://yaserxp.wordpress.com/?p=109</guid>

					<description><![CDATA[Whether you are trying Ubuntu for the first time or you are a long-time Ubuntu power user, you will find below a list of the best Ubuntu resources on the Web. You name it: websites, forums, wikis, blogs and podcasts. There are many Linux resources out there, but in this post, I tried to only [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" class="alignleft" style="float:left;margin:10px;" src="https://yaserxp.wordpress.com/wp-content/uploads/2008/05/156076496-2ec615eb9c-m.jpg?w=240&#038;h=180" alt="Ubuntu Help" width="240" height="180" align="left" /></p>

<p style="text-align:justify;">Whether you are trying Ubuntu for the first time or you are a long-time Ubuntu power user, you will find below a list of the best Ubuntu resources on the Web. You name it: websites, forums, wikis, blogs and podcasts. There are many Linux resources out there, but in this post, I tried to only include links to resources that are mainly focused on Ubuntu. <strong>I&#8217;ll update it whenever I discover a new resource,</strong> so keep your eye on it! (<em>Image Credit: </em><a href="http://www.flickr.com/photos/thefishbowl/156076496/"><em>Fishbowl Collective</em></a>)</p>
<h4 style="text-align:justify;">Official</h4>
<p style="text-align:justify;">If it has &#8220;<em>ubuntu.com</em>&#8221; in its URL, it is official!</p>
<ul style="text-align:justify;">
<li><a title="https://wiki.ubuntu.com/" href="https://www.ubuntu.com/">Ubuntu Home Page</a> &#8211; the official website of Ubuntu, where you can get the latest official news and download various Ubuntu releases.</li>
<li><a title="https://help.ubuntu.com/" href="https://help.ubuntu.com/">Ubuntu Documentation</a> &#8211; the official documentation developed and maintained by the Ubuntu Documentation Project.</li>
<li><a title="https://help.ubuntu.com/community/" href="https://help.ubuntu.com/community/">Ubuntu Community Docs</a> &#8211; the community documentation for Ubuntu, created by Ubuntu users themselves.</li>
<li><a title="http://ubuntuforums.org/" href="http://ubuntuforums.org/">Ubuntu Forums</a> &#8211; a great place to get help on even the most difficult issues. (<em>forums.ubuntu.com redirects to ubuntuforums.org. So, it is official after all!</em>)</li>
<li><a href="https://lists.ubuntu.com/">Ubuntu Mailing Lists</a> &#8211; news, announcements, development and community support.</li>
<li><a href="https://help.ubuntu.com/community/InternetRelayChat">Ubuntu IRC</a> &#8211; this page contains information about the Ubuntu IRC channels, where you can ask for (<em>and offer</em>) help.</li>
<li><a title="http://screencasts.ubuntu.com/" href="http://screencasts.ubuntu.com/">Ubuntu Screencasts</a> &#8211; the official video screencast website for Ubuntu.</li>
<li><a title="http://brainstorm.ubuntu.com/" href="http://brainstorm.ubuntu.com/">Ubuntu Brainstorm</a> &#8211; a website where users can add their ideas and vote for their favorites.</li>
<li><a title="https://wiki.ubuntu.com/" href="https://wiki.ubuntu.com/">Ubuntu Team Wiki</a> &#8211; a place for the Ubuntu community to discuss ideas and store team-related information.</li>
<li><a href="https://wiki.ubuntu.com/UbuntuWeeklyNewsletter">Ubuntu Weekly Newsletter</a> &#8211; &#8220;<em>Reporting all of this week&#8217;s Ubuntu, Kubuntu, Edubuntu and Xubuntu action.</em>&#8220;</li>
<li><a href="http://planet.ubuntu.com/">Planet Ubuntu</a> &#8211; &#8220;<em>a window into the world, work and lives of Ubuntu developers and contributors.</em>&#8220;</li>
</ul>
<h4 style="text-align:justify;">Unofficial</h4>
<p style="text-align:justify;">It certainly doesn&#8217;t have to be official to be helpful!</p>
<ul style="text-align:justify;">
<li><a title="https://answers.launchpad.net/ubuntu" href="https://answers.launchpad.net/ubuntu">Questions for Ubuntu</a> &#8211; <a href="https://launchpad.net/">Launchpad</a>&#8216;s Answer Tracker provides a way to build a knowledge-base through community participation.</li>
<li><a title="http://www.howtoforge.com/howtos/linux/ubuntu" href="http://www.howtoforge.com/howtos/linux/ubuntu">Ubuntu | HowtoForge</a> &#8211; one of the best resources for Ubuntu how-to&#8217;s and tutorials.</li>
<li><a title="http://ubuntuknowledge.org/" href="http://ubuntuknowledge.org/">Ubuntu Knowledge</a> &#8211; this sites aims to be a unified Ubuntu documentation site.</li>
<li><a href="http://www.funnestra.org/ubuntu/">Funnestra Ubuntu How-To</a> &#8211; a great collection of how-to&#8217;s, from initial setup to restoring GRUB.</li>
<li><a title="http://www.psychocats.net/ubuntu/" href="http://www.psychocats.net/ubuntu/">Psychocats Ubuntu Linux Resources</a> &#8211; a collection of essential tutorials, how-to&#8217;s and links for users starting with Ubuntu.</li>
<li><a title="http://monkeyblog.org/ubuntu/installing/" href="http://monkeyblog.org/ubuntu/installing/">How to install ANYTHING in Ubuntu!</a> &#8211; an excellent graphical guide for installing applications in Ubuntu.</li>
<li><a title="http://ubuntuguide.org/wiki/Main_Page" href="http://ubuntuguide.org/wiki/Main_Page">Ubuntu Guide</a> &#8211; a wiki that contains guides on how to do many basic things in Ubuntu (<em>and some other Linux distributions</em>).</li>
<li><a title="http://fullcirclemagazine.org/" href="http://fullcirclemagazine.org/">Full Circle Magazine</a> &#8211; the free independent magazine for the Ubuntu Linux community.</li>
<li><a title="http://www.getdeb.net/" href="http://www.getdeb.net/">Getdeb</a> &#8211; provides updates and software that are not yet available on the official Ubuntu repositories.</li>
<li><a href="http://linuxappfinder.com/">Linux App Finder</a> &#8211; a great resource for finding and installing Linux applications. If you like, you can use <a href="http://linuxappfinder.com/filter">the filter</a> to only show applications from the Ubuntu repositories.</li>
<li><a href="http://ubuntu-news.net/">Ubuntu-News.net</a> &#8211; a good place for getting daily news about Ubuntu.</li>
<li><a title="http://www.psychocats.net/ubuntu/" href="http://www.ubuntustory.com/">Ubuntu Story</a> &#8211; a promotional website where you can share your story and tell the world why you use Ubuntu.</li>
<li><a href="http://www.buntfu.com/">Buntfu</a> &#8211; a community based computer vendor with a focus on Ubuntu.</li>
<li><del datetime="2010-01-13T06:27:38+00:00"><a href="http://ubunturesources.ub.ohost.de/ubuntu.html">Ubuntu Resources</a> &#8211; a nice collection of easy-to-follow, up-to-date articles and guides. It was created by Michael Godawski, a member of the Beginners Team in the Ubuntu Forums.</li>
<p></del>
</ul>
<h4 style="text-align:justify;">Blogs</h4>
<p style="text-align:justify;">These excellent blogs offer great Ubuntu tips and how-to&#8217;s. Remember to subscribe to their RSS feeds (<em>don&#8217;t know what is RSS? <a href="https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/">Check my previous post</a> to learn how it can save your life!</em>).</p>
<ul style="text-align:justify;">
<li><a href="http://tombuntu.com/">Tombuntu</a> &#8211; &#8220;<em>News, Tips, and How-Tos for Ubuntu Linux</em>&#8221; (<em>my favorite!</em>).</li>
<li><a title="http://www.ubuntu-unleashed.com/" href="http://www.ubuntu-unleashed.com/">Ubuntu Unleashed</a> &#8211; &#8220;<em>Unleashing Ubuntu knowledge for the open source community</em>&#8220;.</li>
<li><a title="http://ubuntu-tutorials.com/" href="http://ubuntu-tutorials.com/">Ubuntu Tutorials</a> &#8211; &#8220;<em>How to do almost anything on your Ubuntu desktop, laptop or server. Regular tips on installing, configuring and making your Ubuntu system as effective as you need it to be.</em>&#8220;</li>
<li><a title="http://www.ubuntugeek.com/" href="http://www.ubuntugeek.com/">Ubuntu Geek</a> &#8211; &#8220;<em>Ubuntu Linux Tips, Howtos &amp; Tutorials</em>&#8220;.</li>
<li><a href="http://ubuntuos.com/">Ubuntu OS</a> &#8211; &#8220;<em>A blog and podcast with everything you want from Ubuntu</em>&#8220;.</li>
<li><a title="http://ubuntu.wordpress.com/" href="http://ubuntu.wordpress.com/">Ubuntu Blog</a> &#8211; &#8220;<em>Not quite everything about Ubuntu, but close.</em>&#8220;</li>
<li><a title="http://www.ubuntuswitch.com/" href="http://www.ubuntuswitch.com/">Ubuntu Switch</a> &#8211; &#8220;<em>A blog about the experiences of a non-techie, linux noob switching to Ubuntu. Anyone can register and post an experience, tip or other Ubuntu-esq piece with the thought of keeping things as non-technical as possible.</em>&#8220;</li>
<li><a title="http://www.ubuntuhq.com/" href="http://www.ubuntuhq.com/">UbuntuHQ</a> &#8211; &#8220;<em>Our goal is to collect all Ubuntu related articles in one place. Here you can find recent news issues, application reviews, howto&#8217;s and other stories.</em>&#8220;</li>
<li><a href="http://www.workswithu.com/">Works With U</a> &#8211; &#8220;<em>We’re a media company that will track Ubuntu’s strengths, weaknesses and ultimate evolution. And we’re here to connect Ubuntu experts with novices who are ready to give Ubuntu a try.</em>&#8220;</li>
<li><a href="http://ubuntulinuxhelp.com/">Ubuntu Linux Help</a> &#8211; &#8220;<em>Resources, help, how to&#8217;s and tutorials for Ubuntu Linux users!</em>&#8220;</li>
<li><a href="http://thedailyubuntu.blogspot.com/">The Daily Ubuntu</a> &#8211; &#8220;<em>The blog for a featured daily Ubuntu application every day.</em>&#8221; (<em>though it wasn&#8217;t updated since February 23, 2008</em>)</li>
<li><a href="http://ubuntuos.wordpress.com/">Ubuntu OS</a> &#8211; &#8220;<em>another blog about Ubuntu Linux. Parts 1-8 are for new users, the rest is just a mix of How to’s, Guides and general info.</em>&#8220;</li>
<li><a href="http://shibuvarkala.blogspot.com/search/label/ubuntu">Linux and Microcontroller Tips: ubuntu</a> &#8211; &#8220;<em>tutorials and useful tips  for ubuntu.</em>&#8220;</li>
<li><a href="http://ubuntuextreme.blogspot.com/">Ubuntu Extreme</a> &#8211; &#8220;<em>the quintessential guide to ubuntu hacks.</em>&#8220;</li>
</ul>
<p style="text-align:justify;">It is worth mentioning that <a href="http://ubuntu.wordpress.com/">Ubuntu Blog</a> created <a href="http://ubuntu.wordpress.com/ubuntu-blogs/">a long list of blogs with Ubuntu-related content</a> (<em>and <strong>not</strong> only English ones</em>). <a href="http://www.rewardprograms.org/thefreegeek/">Free Geekery</a> also created <a href="http://www.rewardprograms.org/thefreegeek/features/top-25-ubuntu-blogs-by-the-numbers.html">an interesting list of the top 25 Ubuntu blogs (by the numbers)</a>.</p>
<h4 style="text-align:justify;">Podcasts</h4>
<p style="text-align:justify;">If you only want to listen to podcats about Ubuntu, check out the following great ones:</p>
<ul style="text-align:justify;">
<li><a href="http://ubuntuos.com/index.php?option=com_content&amp;task=blogsection&amp;id=1&amp;Itemid=2">Ubuntu OS</a> &#8211; &#8220;<em>the home of the first, and longest running, Ubuntu Podcast!</em>&#8220;</li>
<li><a href="http://freshubuntu.org/">Fresh Ubuntu</a> &#8211; &#8220;<em>a somewhat weekly account about anything that has to do with Ubuntu.</em>&#8220;</li>
<li><a href="http://podcast.ubuntu-uk.org/">Ubuntu UK</a> &#8211; &#8220;<em>from the newest user to the oldest coder, from the command line to the latest gui.</em>&#8220;</li>
<li><a href="http://ubuntupodcast.net/">Ubuntu Podcast</a> &#8211; &#8220;<em>Podcasts and Videocasts brought to you by Georgia and Florida US LoCos.</em>&#8220;</li>
</ul>
<p style="text-align:justify;">Do you have other Ubuntu resources? What are you favorite ones?</p>
<p style="text-align:justify;"><em><strong>If you like this post and want to get more useful content, then please <a href="http://feeds.feedburner.com/yaserxp">subscribe to my full text RSS feed</a>.</strong></em></p>
<p><a href="http://del.icio.us/post?url=https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/;title=Discover+the+Best+Ubuntu+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/delicious.gif?w=600" alt="add to del.icio.us" /></a> <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/;Title=Discover+the+Best+Ubuntu+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif?w=600" alt="Add to Blinkslist" /></a> <a href="http://www.furl.net/storeIt.jsp?u=https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/;t=Discover+the+Best+Ubuntu+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/furl.gif?w=600" alt="add to furl" /></a> <a href="http://digg.com/submit?phase=2&amp;url=https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/"><img src="https://sunburntkamel.files.wordpress.com/2006/11/digg.gif?w=600" alt="Digg it" /></a> <a href="http://ma.gnolia.com/bookmarklet/add?url=https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/;title=Discover+the+Best+Ubuntu+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif?w=600" alt="add to ma.gnolia" /></a> <a href="http://www.stumbleupon.com/submit?url=https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/&amp;title=Discover+the+Best+Ubuntu+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif?w=600" alt="Stumble It!" /></a> <a href="http://www.simpy.com/simpy/LinkAdd.do?url=https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/;title=Discover+the+Best+Ubuntu+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/simpy.png?w=600" alt="add to simpy" /></a> <a href="http://www.newsvine.com/_tools/seed&amp;save?url=https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/;title=Discover+the+Best+Ubuntu+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif?w=600" alt="seed the vine" /></a> <a href="http://reddit.com/submit?url=https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/;title=Discover+the+Best+Ubuntu+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/reddit.gif?w=600" alt="" /></a> <a href="http://cgi.fark.com/cgi/fark/edit.pl?new_url=https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/;new_comment=Discover+the+Best+Ubuntu+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/fark.png?w=600" alt="" /></a> <a title="TailRank" href="http://tailrank.com/share/?text=&amp;link_href=https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/&amp;title=Discover+the+Best+Ubuntu+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif?w=600" alt="TailRank" /></a> <a href="http://www.facebook.com/sharer.php?u=https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/&amp;t=Discover+the+Best+Ubuntu+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif?w=600" alt="post to facebook" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://yaserxp.wordpress.com/2008/05/29/discover-the-best-ubuntu-resources-on-the-web/feed/</wfw:commentRss>
			<slash:comments>19</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">109</post-id>
		<media:content url="https://2.gravatar.com/avatar/bfd93a4dcfa58ccd2d2fae16f56416e63dbc5640e77d660b410088bbd4827829?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yaserxp</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/05/156076496-2ec615eb9c-m.jpg" medium="image">
			<media:title type="html">Ubuntu Help</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif" medium="image">
			<media:title type="html">add to del.icio.us</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif" medium="image">
			<media:title type="html">Add to Blinkslist</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/furl.gif" medium="image">
			<media:title type="html">add to furl</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif" medium="image">
			<media:title type="html">Digg it</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif" medium="image">
			<media:title type="html">add to ma.gnolia</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif" medium="image">
			<media:title type="html">Stumble It!</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/simpy.png" medium="image">
			<media:title type="html">add to simpy</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif" medium="image">
			<media:title type="html">seed the vine</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/fark.png" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif" medium="image">
			<media:title type="html">TailRank</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif" medium="image">
			<media:title type="html">post to facebook</media:title>
		</media:content>
	</item>
		<item>
		<title>Discover the Best RSS Tools and Resources on the Web</title>
		<link>https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/</link>
					<comments>https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/#comments</comments>
		
		<dc:creator><![CDATA[Yaser Sulaiman]]></dc:creator>
		<pubDate>Fri, 02 May 2008 19:10:45 +0000</pubDate>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[FeedDemon]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[RSS Awareness Day]]></category>
		<category><![CDATA[RSS feeds]]></category>
		<guid isPermaLink="false">http://yaserxp.wordpress.com/?p=106</guid>

					<description><![CDATA[[Update: Added 2 more resources] Whether you are an RSS beginner, user, addict, or developer, you will find below a list of the best RSS tools and resources available on the Web for you. I&#8217;ll update it whenever I discover a new resource, so keep your eye on it! This post is part of my [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" data-attachment-id="112" data-permalink="https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/feed-icon_orange-128px/" data-orig-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/06/feed-icon_orange-128px.png" data-orig-size="128,128" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="feed-icon_orange-128px" data-image-description="" data-image-caption="&lt;p&gt;RSS Feed Icon&lt;/p&gt;
" data-medium-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/06/feed-icon_orange-128px.png?w=128" data-large-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/06/feed-icon_orange-128px.png?w=128" class="alignleft alignnone size-full wp-image-112" style="float:left;margin:10px;" src="https://yaserxp.wordpress.com/wp-content/uploads/2008/06/feed-icon_orange-128px.png?w=600" alt="RSS Feed Icon"   /></p>
<p>[<em><strong>Update:</strong> Added 2 more resources</em>]</p>
<p>Whether you are an RSS beginner, user, addict, or developer, you will find below a list of the best RSS tools and resources available on the Web for you. <strong>I&#8217;ll update it whenever I discover a new resource,</strong> so keep your eye on it! This post is part of my participation in the <a href="http://rssday.org/">RSS Awareness Day</a> &#8211; an <a href="http://www.dailyblogtips.com/may-1st-rss-awareness-day-get-involved/">initiative by Daily Blog Tips</a> to raise awareness about RSS. (<em>Yes, I was supposed to publish this yesterday, but it wasn&#8217;t ready yet. My bad</em>)</p>
<h4>For Beginners</h4>
<p>Don&#8217;t know what RSS is? <em><strong>R</strong>eally <strong>S</strong>imple <strong>S</strong>yndication</em> is a way to publish and subscribe to frequently updated content such as blog entries, news headlines, and podcasts. <strong>If you follow a lot of frequently updated sites and you are not using RSS, then you are probably wasting a lot of time.</strong></p>
<p>The following excellent video &#8211; from <a href="http://www.commoncraft.com/show">the CommonCraft Show</a> &#8211; explains what RSS is, why it is important, and how to start using it:</p>
<iframe class="youtube-player" width="600" height="338" src="https://www.youtube.com/embed/0klgLsSxGsU?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe>
<ul>
<li><a href="http://reviews.cnet.com/4520-10088_7-5143656-1.html"><strong>RSS &#8211; news you choose</strong></a><strong>:</strong> CNET Reviews explains why RSS is important and how to read it.</li>
<li><a href="http://en.wikipedia.org/wiki/RSS_(file_format)"><strong>RSS &#8211; Wikipedia</strong></a><strong>:</strong> if you want to know even more about RSS.</li>
<li><a href="http://www.whatisrss.com/"><strong>What Is RSS? RSS Explained</strong></a><strong>:</strong> provides a &#8220;<em>one page quick introduction to RSS</em>&#8220;.</li>
<li><a href="http://jpsgoddamnblog.blogspot.com/2006/03/why-arent-you-using-rss.html"><strong>Why aren&#8217;t you using RSS?</strong></a><strong>:</strong> a nice introduction to RSS. This post was featured in <a href="http://lifehacker.com/software/rss/intro-to-rss-158917.php">Lifehacker</a> and <a href="http://blogcritics.org/archives/2006/03/05/165927.php">Blogcritics</a>.</li>
</ul>
<h4>Web-Based vs. Desktop-Based</h4>
<p>Can&#8217;t decide whether to go for a Web-based or desktop-based RSS reader? The following blog posts might be helpful:</p>
<ul>
<li><a href="http://lifehacker.com/346023/the-web+based-vs-desktop+based-newsreader-showdown"><strong>The Web-Based vs. Desktop-Based Newsreader Showdown</strong></a><strong>:</strong> Lifehacker compares Google Reader (<em>arguably the most popular web-based newsreader</em>) with the freeware, desktop-based readers from <a href="http://www.newsgator.com/">Newsgator</a>.</li>
<li><a href="http://www.labnol.org/software/tutorials/feeddemon-rss-feeds-reader-software-review/2058/"><strong>Why FeedDemon is Better Than Google Reader and Bloglines</strong></a><strong>:</strong> Digital Inspiration discusses 10 features in <a href="http://www.newsgator.com/individuals/feeddemon/default.aspx">FeedDemon</a> (<em>my favorite RSS reader</em>) that makes it better than online news readers.</li>
<li><a href="http://nick.typepad.com/blog/2008/01/why-use-a-deskt.html"><strong>Why Use a Desktop RSS Reader?</strong></a><strong>:</strong> Nick Bradbury (<em>the creator of FeedDemon</em>) makes the case for desktop-based readers.</li>
</ul>
<h4>For People with RSS Addiction/Overload</h4>
<p>Can&#8217;t stop subscribing to those feeds? Too much of anything can be bad, and this include RSS! If you are an RSS addict (<em>like me</em>), you are probably <a href="https://yaserxp.wordpress.com/2008/02/08/mission-impossible-keeping-up-with-the-web/">trying to accomplish an impossible mission</a>. I tried that too, but I finally decided to <a href="https://yaserxp.wordpress.com/2008/02/17/if-a-feed-is-too-hot-just-drop-it/">hit the &#8220;Mark all as read&#8221; button</a>. The following resources might help us in our struggle:</p>
<ul>
<li><a href="http://www.aiderss.com/"><strong>AideRSS</strong></a><strong>:</strong> an RSS-feed filtering service that uses a proprietary system called PostRank to determine the best posts on each blog.</li>
<li><a href="http://feedrinse.com/"><strong>Feed Rinse</strong></a><strong>:</strong> an advanced web-based tool that lets you filter out syndicated content that you aren&#8217;t interested in.</li>
<li><a href="http://labnol.blogspot.com/2007/01/how-to-reduce-rss-stress-in-your.html"><strong>How to Reduce RSS Stress In Your Online Life</strong></a><strong>:</strong> Digital Inspiration offers some tips to beat the RSS stress and manage your RSS subscriptions more effectively.</li>
<li><a href="http://www.readwriteweb.com/archives/tips_for_making_the_most_of_rss.php"><strong>Seven Tips for Making the Most of Your RSS Reader</strong></a><strong>:</strong> ReadWriteWeb offers seven methods for making the most of RSS.</li>
</ul>
<h4>For Sites with no RSS Feeds</h4>
<p>Arrived at a website that has no feeds? There are several ways to deal with this situation:</p>
<ul>
<li><a href="http://www.dapper.net/"><strong>Dapper</strong></a><strong>:</strong> a free web application that helps users in creating a feed for websites that lack one. Dapper is quite advanced and offers many customization options.</li>
<li><a href="http://feed43.com/"><strong>Feed43</strong></a><strong>:</strong> a free online service to convert any webpage to an RSS feed on the fly.</li>
<li><a href="http://www.feedity.com/"><strong>Feedity</strong></a><strong>:</strong> an RSS generator for web pages without syndication.</li>
<li><a href="http://www.feedyes.com/"><strong>FeedYes</strong></a><strong>:</strong> a service to create an RSS feed from webpage even if they don&#8217;t offer them.</li>
<li><a href="http://www.makeuseof.com/tag/how-to-monitor-websites-that-dont-have-rss-feeds/"><strong>How to Monitor Websites that don’t have RSS Feeds</strong></a><strong>:</strong> Make Use Of mentions some ways to get notified about site updates when the site doesn’t offer RSS feeds.</li>
<li><a href="http://page2rss.com/"><strong>Page2RSS</strong></a><strong>:</strong> a service that helps you monitor web sites that do not publish feeds.</li>
</ul>
<h4>For Developers</h4>
<p>Want to develop an RSS-related application? Check the list below for some useful resources:</p>
<ul>
<li><a href="http://www-128.ibm.com/developerworks/library/x-ajaxrss/index.html"><strong>Ajax RSS Reader</strong></a><strong>:</strong> IBM&#8217;s developerWorks shows you how to build an Asynchronous JavaScript and XML (<em>Ajax</em>) RSS reader.</li>
<li><a href="http://www.ibm.com/developerworks/library/wa-aj-rssphp/index.html?S_TACT=105AGX44&amp;S_CMP=EDU"><strong>Build a customizable RSS feed aggregator in PHP</strong></a><strong>:</strong> another article from developerWorks that shows how to use PHP-based server-side functions to develop a customizable RSS feed aggregator.</li>
<li><a href="http://www.oreillynet.com/rss/"><strong>RSS DevCenter</strong></a><strong>:</strong> O&#8217;Reilly Network&#8217;s source for RSS developer news and information.</li>
<li><a href="http://simplepie.org/"><strong>SimplePie</strong></a><strong>:</strong> an RSS parser written in PHP.</li>
<li><a href="http://loadaveragezero.com/app/drx/Data_Formats/Metadata/RSS"><strong>Web Developer Resource Index &#8211; RSS</strong></a><strong>:</strong> a very comprehensive list of RSS development resources.</li>
</ul>
<h4>Miscellaneous tools</h4>
<p>Want to use RSS in a new way? There are many innovative tools and services out there:</p>
<ul>
<li><a href="http://www.feedblitz.com/"><strong>FeedBlitz</strong></a><strong>:</strong> a popular RSS to e-mail converters that enables publishers to offer RSS by email to their subscribers.</li>
<li><a href="http://feed.informer.com/"><strong>Feed Informer</strong></a><strong>:</strong> a professional service that blends and converts RSS feeds to other formats for publishing.</li>
<li><a href="http://feedjournal.com/"><strong>FeedJournal</strong></a><strong>:</strong> a Web application to generate personalized newspaper-formatted PDFs from RSS feeds.</li>
<li><a href="http://freemyfeed.com/"><strong>FreeMyFeed</strong></a><strong>:</strong> a service that allows you to bypass password-protected feeds.</li>
<li><strong><a href="http://readburner.com/">ReadBurner</a>:</strong> a website that aggregates popular Google Reader Shared Items.</li>
<li><a href="http://rss2pdf.com/"><strong>RSS 2 PDF</strong></a><strong>:</strong> An online utility that can convert RSS feeds into PDF files.</li>
<li><a href="http://www.rss2image.com/"><strong>RSS2Image</strong></a><strong>:</strong> a service that takes an RSS feed and converts it to an image that can be displayed anywhere on the Web.</li>
<li><a href="http://www.rssfwd.com/"><strong>RSSFWD</strong></a><strong>:</strong> a service to deliver updates from RSS feeds straight to your email.</li>
<li><a href="http://www.rssmix.com/"><strong>RSS Mix</strong></a><strong>:</strong> a web service that mixes multiple RSS feeds together into one new feed.</li>
<li><span style="text-decoration:line-through;"><a href="http://www.sendmerss.com/"><strong>SendMeRSS</strong></a><strong>:</strong> a free service that lets you read your RSS feeds in your inbox.</span> [<em><strong>Update:</strong> <a href="http://www.labnol.org/internet/nbc-shuts-send-rss-email-service/5103/">NBC has shut down SendMeRSS</a></em>]</li>
</ul>
<h4>All-Star</h4>
<p>Can&#8217;t write a list about RSS resources without mentioning these:</p>
<ul>
<li><a href="http://www.makeuseof.com/tag/14-other-ways-to-use-rss-feeds/"><strong>14 “OTHER” Ways to Use RSS Feeds</strong></a><strong>:</strong> Make Use Of discusses several other ways you can make use of RSS feeds.</li>
<li><span style="text-decoration:underline;"><strong><span style="color:#ff0000;"> </span></strong></span><strong><a href="http://www.webmaster-source.com/2008/05/01/30-rss-resources-for-the-feed-addicted-blogger/">30 RSS Resources For the Feed-Addicted Blogger</a>:</strong> Webmaster-Source lists links for bloggers who are addicted to RSS and want their readers to be as well.</li>
<li><a href="http://mashable.com/2007/06/11/rss-toolbox/"><strong>The Ultimate RSS Toolbox &#8211; 120+ RSS Resources</strong></a><strong>:</strong> Mashable made a comprehensive list of all the RSS readers, tools, browser plugins, tips, hacks and directories available on the web.</li>
</ul>
<p>If you got any other useful RSS tools and resources, please mention them in the comments.</p>
<p><em><strong>If you like this post and want to get more useful content, then please <a href="http://feeds.feedburner.com/yaserxp">subscribe to my full text RSS feed</a>.</strong></em></p>
<p><a href="http://del.icio.us/post?url=https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/;title=Discover+the+Best+RSS+Tools+and+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/delicious.gif?w=600" alt="add to del.icio.us" /></a> <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/;Title=Discover+the+Best+RSS+Tools+and+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif?w=600" alt="Add to Blinkslist" /></a> <a href="http://www.furl.net/storeIt.jsp?u=https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/;t=Discover+the+Best+RSS+Tools+and+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/furl.gif?w=600" alt="add to furl" /></a> <a href="http://digg.com/submit?phase=2&amp;url=https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/"><img src="https://sunburntkamel.files.wordpress.com/2006/11/digg.gif?w=600" alt="Digg it" /></a> <a href="http://ma.gnolia.com/bookmarklet/add?url=https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/;title=Discover+the+Best+RSS+Tools+and+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif?w=600" alt="add to ma.gnolia" /></a> <a href="http://www.stumbleupon.com/submit?url=https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/&amp;title=Discover+the+Best+RSS+Tools+and+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif?w=600" alt="Stumble It!" /></a> <a href="http://www.simpy.com/simpy/LinkAdd.do?url=https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/;title=Discover+the+Best+RSS+Tools+and+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/simpy.png?w=600" alt="add to simpy" /></a> <a href="http://www.newsvine.com/_tools/seed&amp;save?url=https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/;title=Discover+the+Best+RSS+Tools+and+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif?w=600" alt="seed the vine" /></a> <a href="http://reddit.com/submit?url=https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/;title=Discover+the+Best+RSS+Tools+and+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/reddit.gif?w=600" alt="" /></a> <a href="http://cgi.fark.com/cgi/fark/edit.pl?new_url=https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/;new_comment=Discover+the+Best+RSS+Tools+and+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/fark.png?w=600" alt="" /></a> <a title="TailRank" href="http://tailrank.com/share/?text=&amp;link_href=https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/&amp;title=Discover+the+Best+RSS+Tools+and+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif?w=600" alt="TailRank" /></a> <a href="http://www.facebook.com/sharer.php?u=https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/&amp;t=Discover+the+Best+RSS+Tools+and+Resources+on+the+Web"><img src="https://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif?w=600" alt="post to facebook" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://yaserxp.wordpress.com/2008/05/02/discover-the-best-rss-tools-and-resources-on-the-web/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">106</post-id>
		<media:content url="https://2.gravatar.com/avatar/bfd93a4dcfa58ccd2d2fae16f56416e63dbc5640e77d660b410088bbd4827829?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yaserxp</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/06/feed-icon_orange-128px.png" medium="image">
			<media:title type="html">RSS Feed Icon</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif" medium="image">
			<media:title type="html">add to del.icio.us</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif" medium="image">
			<media:title type="html">Add to Blinkslist</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/furl.gif" medium="image">
			<media:title type="html">add to furl</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif" medium="image">
			<media:title type="html">Digg it</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif" medium="image">
			<media:title type="html">add to ma.gnolia</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif" medium="image">
			<media:title type="html">Stumble It!</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/simpy.png" medium="image">
			<media:title type="html">add to simpy</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif" medium="image">
			<media:title type="html">seed the vine</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/fark.png" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif" medium="image">
			<media:title type="html">TailRank</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif" medium="image">
			<media:title type="html">post to facebook</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Make Your Web Browsing Useful to Others</title>
		<link>https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/</link>
					<comments>https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/#respond</comments>
		
		<dc:creator><![CDATA[Yaser Sulaiman]]></dc:creator>
		<pubDate>Fri, 11 Apr 2008 21:31:42 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[del.icio.us]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[FeedDemon]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[RSS feeds]]></category>
		<category><![CDATA[shared items]]></category>
		<category><![CDATA[social bookmarking]]></category>
		<category><![CDATA[TinyURL]]></category>
		<category><![CDATA[Tweetburner]]></category>
		<category><![CDATA[Twitter]]></category>
		<guid isPermaLink="false">http://yaserxp.wordpress.com/?p=94</guid>

					<description><![CDATA[[Update: I have added two more ways to make your Web browsing useful to others: Tweet and Email] You usually browse the Web to find something useful to you, but have you ever thought about making it useful to others? The following methods might be obvious to many &#8220;power users&#8220;, but there is definitely someone [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>[<em><strong>Update:</strong> I have added two more ways to make your Web browsing useful to others: Tweet and Email</em>]</p>
<p style="text-align:justify;">You usually browse the Web to find something useful to you, but have you ever thought about making it useful to others? The following methods might be obvious to many &#8220;<em>power users</em>&#8220;, but there is definitely someone out there who doesn&#8217;t know them.</p>
<h3>1. Hit the &#8220;<em>Share</em>&#8221; Button in Your RSS Reader</h3>
<p style="text-align:justify;">(<em>Yes, I consider reading RSS feeds as Web browsing!</em>)</p>
<p style="text-align:justify;">In many RSS readers, there is a way to share items that you see &#8220;<em>share-worthy</em>&#8220;. In <a href="http://reader.google.com/">Google Reader</a>, you can hit the &#8220;<em>Share</em>&#8221; button (<em>or Shift+S on your keyboard</em>) to share the current item.</p>
<p style="text-align:center;"><img loading="lazy" data-attachment-id="95" data-permalink="https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/greadershare/" data-orig-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/greadershare.png" data-orig-size="274,36" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="greadershare" data-image-description="" data-image-caption="&lt;p&gt;Google Reader&amp;#8217;s Share Button&lt;/p&gt;
" data-medium-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/greadershare.png?w=274" data-large-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/greadershare.png?w=274" class="alignnone size-full wp-image-95" src="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/greadershare.png?w=600" alt="Google Reader\'s Share Button"   srcset="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/greadershare.png 274w, https://yaserxp.wordpress.com/wp-content/uploads/2008/04/greadershare.png?w=150&amp;h=20 150w" sizes="(max-width: 274px) 100vw, 274px" /></p>
<p style="text-align:justify;">In <a href="http://www.newsgator.com/individuals/feeddemon/default.aspx">FeedDemon</a>, you can create a new clippings folder and enable sharing it as an RSS feed. To share an item, just add it to this folder.</p>
<p style="text-align:center;"><img loading="lazy" data-attachment-id="97" data-permalink="https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/fdsharedclippings1/" data-orig-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/fdsharedclippings1.png" data-orig-size="400,295" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="fdsharedclippings1" data-image-description="" data-image-caption="&lt;p&gt;FeedDemon&amp;#8217;s Shared Clippings Folder&lt;/p&gt;
" data-medium-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/fdsharedclippings1.png?w=300" data-large-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/fdsharedclippings1.png?w=400" class="alignnone size-full wp-image-97" src="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/fdsharedclippings1.png?w=600" alt="FeedDemon\'s Shared Clippings Folder"   srcset="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/fdsharedclippings1.png 400w, https://yaserxp.wordpress.com/wp-content/uploads/2008/04/fdsharedclippings1.png?w=150&amp;h=111 150w, https://yaserxp.wordpress.com/wp-content/uploads/2008/04/fdsharedclippings1.png?w=300&amp;h=221 300w" sizes="(max-width: 400px) 100vw, 400px" /></p>
<p><a href="https://yaserxp.wordpress.com/wp-admin/None"></a></p>
<p style="text-align:justify;">All what you have to do now is to give the link to that feed to others (<em>by publishing it on your blog for example</em>). <a href="http://services.newsgator.com/ngws/svc/ClippingsRSS.aspx?uid=1051317&amp;fid=6342990">Here is my shared items feed</a>.</p>
<p style="text-align:justify;">Remember: <strong>don&#8217;t overdo it!</strong> Most probably, your subscribers got their hands full with too many feeds, and you don&#8217;t want to make it worse for them. Of course, you are free to share whatever you like, but as a general rule, <strong>the number of shared items should be less than the number of starred items</strong> (<em>your private, favorite items</em>). I usually ask myself before I hit the &#8220;<em>Share</em>&#8221; button: &#8220;<em>Will I write about the topic(s) of this post in my own blog?</em>&#8220;. If the answer is yes, this will encourage me to share it (<em>but it doesn&#8217;t mean that I&#8217;ll definitely do it!</em>).</p>
<h3>2. Use Social Bookmarking</h3>
<p style="text-align:justify;">Not only can <a href="http://del.icio.us/">del.icio.us</a> be used to save bookmarks on the Web, it can be used to <strong>share links and create networks between users</strong>, and that is why it is called &#8220;s<em>ocial</em>&#8221; in the first place. When you come across a special, important, useful, or even interesting website, and you think that someone else might be interested in it too, bookmark it. If you find a user that has similar interests to yours, add him/her to your network, then follow your entire network via its RSS feed.</p>
<p style="text-align:center;"><img loading="lazy" data-attachment-id="98" data-permalink="https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/addtodeliciousnetwork/" data-orig-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/addtodeliciousnetwork.png" data-orig-size="400,114" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="addtodeliciousnetwork" data-image-description="" data-image-caption="&lt;p&gt;Adding someone to your network on del.icio.us&lt;/p&gt;
" data-medium-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/addtodeliciousnetwork.png?w=300" data-large-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/addtodeliciousnetwork.png?w=400" class="alignnone size-full wp-image-98" src="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/addtodeliciousnetwork.png?w=600" alt="Adding someone to your network on del.icio.us"   srcset="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/addtodeliciousnetwork.png 400w, https://yaserxp.wordpress.com/wp-content/uploads/2008/04/addtodeliciousnetwork.png?w=150&amp;h=43 150w, https://yaserxp.wordpress.com/wp-content/uploads/2008/04/addtodeliciousnetwork.png?w=300&amp;h=86 300w" sizes="(max-width: 400px) 100vw, 400px" /></p>
<p style="text-align:justify;">Remember to share your del.icio.us page with others. <a href="http://del.icio.us/yaserxp">Here is my page</a>.</p>
<p style="text-align:justify;">Of course, del.icio.us is not the only web site that offers social bookmarking services. Look for <a href="http://en.wikipedia.org/wiki/List_of_social_software#Social_bookmarking">similar services</a> and choose the one(s) that suits your needs.</p>
<h3>3. Blog</h3>
<p style="text-align:justify;">This might be helpful when you don&#8217;t have the time to write a long post. Instead of leaving your blog without updates for the week, <strong>why don&#8217;t you write a short post containing links to some useful websites, blogs, or articles you recently came across?</strong> (<em>I know I should do this more often!</em>)</p>
<h3>4. Tweet</h3>
<p style="text-align:justify;">Are you on <a href="http://twitter.com/">Twitter</a>? If yes, <strong>make your tweets more useful and interesting by posting links to useful websites from time to time.</strong></p>
<p style="text-align:center;"><img loading="lazy" data-attachment-id="100" data-permalink="https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/twurl/" data-orig-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/twurl.png" data-orig-size="400,167" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="twurl" data-image-description="" data-image-caption="&lt;p&gt;A Tweet with a link shortened using Tweetburner&lt;/p&gt;
" data-medium-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/twurl.png?w=300" data-large-file="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/twurl.png?w=400" class="alignnone size-full wp-image-100 aligncenter" src="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/twurl.png?w=600" alt="A Tweet with a link shortened using Tweetburner"   srcset="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/twurl.png 400w, https://yaserxp.wordpress.com/wp-content/uploads/2008/04/twurl.png?w=150&amp;h=63 150w, https://yaserxp.wordpress.com/wp-content/uploads/2008/04/twurl.png?w=300&amp;h=125 300w" sizes="(max-width: 400px) 100vw, 400px" /></p>
<p style="text-align:justify;">Because of the 140-character limit, you might want to use one of the URL shortening services. I personally prefer <a href="http://tweetburner.com/">Tweetburner</a> because it can be used to track what happens with the links you share on Twitter.</p>
<p style="text-align:justify;">(<em>On a side note, <a href="http://tinyurl.com/">TinyURL</a> is blocked in Saudi Arabia! I was missing a lot of good stuff because of that, but I recently discovered <a href="http://ghill.customer.netspace.net.au/embiggen/">Embiggen TinyURL</a> bookmarklet for expanding those TinyURLs, and it works fine with me!</em>)</p>
<h3>5. Email</h3>
<p style="text-align:justify;">If you come across an interesting article on some blog and you realize that one of your friends will find it really useful, look around for an envelope icon, an &#8220;<em>Email this</em>&#8221; link, or a &#8220;<em>Send to friend</em>&#8221; link and click it to <strong>send the link to your friend. </strong>Of course, you can send the link from your own email account if you prefer to do so.</p>
<p style="text-align:justify;">Do you have any other tips to make our web browsing useful to others?</p>
<p><a href="http://del.icio.us/post?url=https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/;title=How+to+Make+Your+Web+Browsing+Useful+to+Others"><img src="https://sunburntkamel.files.wordpress.com/2006/11/delicious.gif?w=600" alt="add to del.icio.us" /></a> <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/;Title=How+to+Make+Your+Web+Browsing+Useful+to+Others"><img src="https://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif?w=600" alt="Add to Blinkslist" /></a> <a href="http://www.furl.net/storeIt.jsp?u=https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/;t=How+to+Make+Your+Web+Browsing+Useful+to+Others"><img src="https://sunburntkamel.files.wordpress.com/2006/11/furl.gif?w=600" alt="add to furl" /></a> <a href="http://digg.com/submit?phase=2&amp;url=https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/"><img src="https://sunburntkamel.files.wordpress.com/2006/11/digg.gif?w=600" alt="Digg it" /></a> <a href="http://ma.gnolia.com/bookmarklet/add?url=https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/;title=How+to+Make+Your+Web+Browsing+Useful+to+Others"><img src="https://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif?w=600" alt="add to ma.gnolia" /></a> <a href="http://www.stumbleupon.com/submit?url=https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/&amp;title=How+to+Make+Your+Web+Browsing+Useful+to+Others"><img src="https://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif?w=600" alt="Stumble It!" /></a> <a href="http://www.simpy.com/simpy/LinkAdd.do?url=https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/;title=How+to+Make+Your+Web+Browsing+Useful+to+Others"><img src="https://sunburntkamel.files.wordpress.com/2006/11/simpy.png?w=600" alt="add to simpy" /></a> <a href="http://www.newsvine.com/_tools/seed&amp;save?url=https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/;title=How+to+Make+Your+Web+Browsing+Useful+to+Others"><img src="https://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif?w=600" alt="seed the vine" /></a> <a href="http://reddit.com/submit?url=https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/;title=How+to+Make+Your+Web+Browsing+Useful+to+Others"><img src="https://sunburntkamel.files.wordpress.com/2006/11/reddit.gif?w=600" alt="" /></a> <a href="http://cgi.fark.com/cgi/fark/edit.pl?new_url=https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/;new_comment=How+to+Make+Your+Web+Browsing+Useful+to+Others"><img src="https://sunburntkamel.files.wordpress.com/2006/11/fark.png?w=600" alt="" /></a> <a title="TailRank" href="http://tailrank.com/share/?text=&amp;link_href=https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/&amp;title=How+to+Make+Your+Web+Browsing+Useful+to+Others"><img src="https://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif?w=600" alt="TailRank" /></a> <a href="http://www.facebook.com/sharer.php?u=https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/&amp;t=How+to+Make+Your+Web+Browsing+Useful+to+Others"><img src="https://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif?w=600" alt="post to facebook" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://yaserxp.wordpress.com/2008/04/12/how-to-make-your-web-browsing-useful-to-others/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">94</post-id>
		<media:content url="https://2.gravatar.com/avatar/bfd93a4dcfa58ccd2d2fae16f56416e63dbc5640e77d660b410088bbd4827829?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yaserxp</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/greadershare.png" medium="image">
			<media:title type="html">Google Reader\&#039;s Share Button</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/fdsharedclippings1.png" medium="image">
			<media:title type="html">FeedDemon\&#039;s Shared Clippings Folder</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/addtodeliciousnetwork.png" medium="image">
			<media:title type="html">Adding someone to your network on del.icio.us</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/04/twurl.png" medium="image">
			<media:title type="html">A Tweet with a link shortened using Tweetburner</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif" medium="image">
			<media:title type="html">add to del.icio.us</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif" medium="image">
			<media:title type="html">Add to Blinkslist</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/furl.gif" medium="image">
			<media:title type="html">add to furl</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif" medium="image">
			<media:title type="html">Digg it</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif" medium="image">
			<media:title type="html">add to ma.gnolia</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif" medium="image">
			<media:title type="html">Stumble It!</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/simpy.png" medium="image">
			<media:title type="html">add to simpy</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif" medium="image">
			<media:title type="html">seed the vine</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/fark.png" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif" medium="image">
			<media:title type="html">TailRank</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif" medium="image">
			<media:title type="html">post to facebook</media:title>
		</media:content>
	</item>
		<item>
		<title>If a Feed is Too Hot, Just Drop it!</title>
		<link>https://yaserxp.wordpress.com/2008/02/17/if-a-feed-is-too-hot-just-drop-it/</link>
					<comments>https://yaserxp.wordpress.com/2008/02/17/if-a-feed-is-too-hot-just-drop-it/#comments</comments>
		
		<dc:creator><![CDATA[Yaser Sulaiman]]></dc:creator>
		<pubDate>Sun, 17 Feb 2008 11:09:23 +0000</pubDate>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Engadget]]></category>
		<category><![CDATA[feed overload]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[information overload]]></category>
		<category><![CDATA[Mark all as read]]></category>
		<category><![CDATA[peace of mind]]></category>
		<category><![CDATA[RSS feeds]]></category>
		<guid isPermaLink="false">http://yaserxp.wordpress.com/?p=89</guid>

					<description><![CDATA[a.k.a hit the &#8220;Mark all as read&#8221; button. &#160; Yes, you will feel bad about it. Yes, you will miss things that are great, helpful, amazing, interesting, and cool. Still, you will survive (at least I did). Why should you do it? Think about it: How can you find peace of mind when you are [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>a.k.a <b>hit the &#8220;<i>Mark all as read</i>&#8221; button.</b></p>
<div style="text-align:center;"><img src="https://yaserxp.wordpress.com/wp-content/uploads/2008/02/markallasread.png?w=600" alt="markallasread.png" /></div>
<p><b></b></p>
<p align="justify">&nbsp;</p>
<p>Yes, you will feel bad about it. Yes, you will miss things that are great, helpful, amazing, interesting, and cool. Still, you will survive (<i>at least I did</i>).</p>
<div align="justify"></div>
<p align="justify">Why should you do it? Think about it:<b> How can you find peace of mind when you are being constantly reminded that you have 1000+ items to read?</b> Maybe you are an information junkie, but <b>information overload can have <a href="http://en.wikipedia.org/wiki/Information_overload#Psychological_Effects">drastic effects</a>.</b> For many of us, <b>life&#8217;s just too short.</b></p>
<div style="text-align:center;"><img src="https://yaserxp.wordpress.com/wp-content/uploads/2008/02/manyunreaditems.png?w=600" alt="1000 plus unread items" /></div>
<div align="center"><i>Before: Too many items!</i></div>
<div align="center"><img src="https://yaserxp.wordpress.com/wp-content/uploads/2008/02/0unreaditems.png?w=600" alt="zero unread items" /></div>
<div align="center"><i>After: Peace of Mind</i></div>
<div align="justify"></div>
<p align="justify">I used to keep good, long articles that needed concentration unmarked to read them on a later time, but the number of unread items kept increasing. <a href="http://www.google.com/reader">Google Reader</a> automatically marks an item as read after 30 days. So eventually, those articles were marked as read and <b>I never got the chance to read them.</b></p>
<div align="justify"></div>
<p align="justify"><a href="http://www.engadget.com/">Engadget</a> is a great blog, but I only manged to keep their RSS feed in my subscription list for less than a week. It was just overwhelming to receive around 40 posts/day from a single site. Armed with that little button, I will subscribe to it again.</p>
<div align="justify"></div>
<p align="justify">What if you are not comfortable at all with hitting the &#8220;<i>Mark all as read</i>&#8221; button? You can <b>subscribe to category feed(s) instead of the main one.</b> This will reduce the number of posts you have to read and will help you avoid the ones that you are not interest in.</p>
<p align="justify">&nbsp;</p>
<div style="text-align:center;"><img src="https://yaserxp.wordpress.com/wp-content/uploads/2008/02/lifehackertags.png?w=600" alt="Lifehacker’s tags" /></div>
<div align="justify"></div>
<p align="justify">If you have 300+ subscriptions and you are able to manage them with ease, or if you don&#8217;t mind having 1000+ unread items all the time, then you don&#8217;t have to do it. But remember: When things get overwhelming, the &#8220;<i>Mark all as read</i>&#8221; button will always be there for you (<i>hopefully!</i>).</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yaserxp.wordpress.com/2008/02/17/if-a-feed-is-too-hot-just-drop-it/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">89</post-id>
		<media:content url="https://2.gravatar.com/avatar/bfd93a4dcfa58ccd2d2fae16f56416e63dbc5640e77d660b410088bbd4827829?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yaserxp</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/02/markallasread.png" medium="image">
			<media:title type="html">markallasread.png</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/02/manyunreaditems.png" medium="image">
			<media:title type="html">1000 plus unread items</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/02/0unreaditems.png" medium="image">
			<media:title type="html">zero unread items</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/02/lifehackertags.png" medium="image">
			<media:title type="html">Lifehacker’s tags</media:title>
		</media:content>
	</item>
		<item>
		<title>Mission Impossible: Keeping up with the Web</title>
		<link>https://yaserxp.wordpress.com/2008/02/08/mission-impossible-keeping-up-with-the-web/</link>
					<comments>https://yaserxp.wordpress.com/2008/02/08/mission-impossible-keeping-up-with-the-web/#comments</comments>
		
		<dc:creator><![CDATA[Yaser Sulaiman]]></dc:creator>
		<pubDate>Fri, 08 Feb 2008 14:10:18 +0000</pubDate>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[Lifehacker]]></category>
		<category><![CDATA[RSS feeds]]></category>
		<category><![CDATA[Statistics]]></category>
		<guid isPermaLink="false">http://yaserxp.wordpress.com/?p=86</guid>

					<description><![CDATA[30: the number of days I set to accomplish the mission. 158: the number of subscriptions in my Google Reader account. 0: the number of unread items I was hoping to reach at the end of the 30-day period. 3780: the number of items I read. 126: average number of items read per day. 255: [&#8230;]]]></description>
										<content:encoded><![CDATA[<div style="text-align:center;"><img src="https://yaserxp.wordpress.com/wp-content/uploads/2008/02/greadertrends.png?w=600" alt="greadertrends.png" /></div>
<p>30: the number of days I set to accomplish the mission.</p>
<p>158: the number of subscriptions in my <a href="http://www.google.com/reader">Google Reader</a> account.</p>
<p><b>0</b>: the number of unread items I was hoping to reach at the end of the 30-day period.</p>
<p>3780: the number of items I read.</p>
<p>126: average number of items read per day.</p>
<p><b>255</b>: the number of <font color="#ff0000">unread items</font> at the end of the 30-day period.</p>
<p>Conclusion: <u><b>Keeping up with the Web is impossible!</b></u></p>
<p>At first, it was quite easy, but things got complicated as I entered my final exams period. The whole thing fall apart after I spent an entire day without an Internet connection. I tried to make up in the last day, but after reading 316 items, I raised the white flag!</p>
<div style="text-align:center;"><img src="https://yaserxp.wordpress.com/wp-content/uploads/2008/02/greadersubtrends.png?w=600" alt="greadersubtrends.png" /></div>
<p><a href="http://lifehacker.com/">Lifehacker</a> was (<i>and still</i>) the most frequently updated among my subscriptions with an average of 16.5 items/day. It is repeated in the list because I subscribed to their <a href="http://feeds.gawker.com/lifehacker/full">full feed</a> recently.</p>
<p>What should I do now? Maybe I should organize the subscriptions according to their priority.</p>
<p>How about you? How many items do you read per day?</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yaserxp.wordpress.com/2008/02/08/mission-impossible-keeping-up-with-the-web/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">86</post-id>
		<media:content url="https://2.gravatar.com/avatar/bfd93a4dcfa58ccd2d2fae16f56416e63dbc5640e77d660b410088bbd4827829?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yaserxp</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/02/greadertrends.png" medium="image">
			<media:title type="html">greadertrends.png</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2008/02/greadersubtrends.png" medium="image">
			<media:title type="html">greadersubtrends.png</media:title>
		</media:content>
	</item>
		<item>
		<title>Who Said that Muslims can&#8217;t be Green?</title>
		<link>https://yaserxp.wordpress.com/2007/10/15/who-said-that-muslims-cant-be-green/</link>
					<comments>https://yaserxp.wordpress.com/2007/10/15/who-said-that-muslims-cant-be-green/#comments</comments>
		
		<dc:creator><![CDATA[Yaser Sulaiman]]></dc:creator>
		<pubDate>Mon, 15 Oct 2007 09:10:21 +0000</pubDate>
				<category><![CDATA[Environment]]></category>
		<category><![CDATA[Blog Action Day]]></category>
		<category><![CDATA[Environmental Tips]]></category>
		<category><![CDATA[Going Green]]></category>
		<category><![CDATA[Green Muslims]]></category>
		<guid isPermaLink="false">http://yaserxp.wordpress.com/2007/10/15/how-said-that-muslims-cant-be-green/</guid>

					<description><![CDATA[Every morning, Wasi Ahmed Yousaf, 37, of Manhattan Beach, Calif., puts on his sneakers and helmet and commutes to work on his bicycle. Yousaf ditched his car two months ago in favor of a more eco-friendly mode of transportation. &#8220;I realized that global warming, pollution and other environmental issues are something that everyone has to [&#8230;]]]></description>
										<content:encoded><![CDATA[<p align="justify">Every morning, Wasi Ahmed Yousaf, 37, of Manhattan Beach, Calif., puts on his sneakers and helmet and <strong><span style="color:#008040;">commutes to work on his bicycle. </span></strong>Yousaf ditched his car two months ago in favor of a more eco-friendly mode of transportation.</p>
<p align="justify">&#8220;<em>I realized that global warming, pollution and other environmental issues are something that <strong>everyone has to pitch in [and do something about]</strong>, and it’s a serious issue, but <strong>we can still resolve it</strong></em>&#8221; Yousaf said.</p>
<p align="justify">Yousaf has also made many other changes in his life. This includes <strong><span style="color:#008040;">no longer using those little, white, seemingly harmless Styrofoam cups to drink coffee or water</span></strong> at work. &#8220;<em>Styrofoam is one of those materials that doesn’t get decomposed even if you leave it in the ground for 50 years</em>&#8221; Yousaf said. &#8220;<em>It is a non-biodegradable product. </em><em>So, why are we simply wasting it? <strong><span style="color:#008040;">I stopped wasting it and took a ceramic cup from home.</span></strong></em>&#8220;</p>
<p align="justify">He’s also <strong><span style="color:#008040;">stopped drinking bottled water</span>.</strong> Bottled water wastes fossil fuels and water in production and transport, and when bottled water is used, its disposal becomes a major source of waste, according to Food and Water Watch. The group said it requires more than 47 million gallons of oil to produce plastic water bottles for Americans each year.</p>
<p align="justify">Instead, Yousaf has switched to Nalgene bottles, and even his kids are using them. Nalgene bottles are inexpensive and can be used over and over, and are recyclable. Yousaf has also <strong><span style="color:#008040;">switched to energy-efficient light bulbs</span></strong> and is more energy conscious in general. For example, he <strong><span style="color:#008040;">won’t do half loads of laundry or run a half-filled dishwasher.</span></strong> And <strong><span style="color:#008040;">standing by the faucet as the water runs in the sink or taking long showers is a no-no</span></strong> in the Yousaf household.</p>
<p align="justify">&#8220;<em>I’m trying to teach my kids. <strong>I am trying to influence them to take responsibility.</strong> The big question is what type of a world are we going to leave for our kids? I want to teach them so they can have an example.</em>&#8220;</p>
<h3>Going Green = Islam</h3>
<p align="justify"><strong>Caring about the environment is a large part of the Islamic faith.</strong> Sadullah Khan, director of the <a href="http://www.islamiccenterofirvine.com/" target="_blank">Islamic Center of Irvine</a>, said there are more than 500 verses in the Qur’an dealing directly with nature, the environment and natural phenomena. Many &#8220;<em>surahs</em>&#8221; or Qur’anic chapters are titled after animals or natural phenomena. &#8220;<em>These references to the natural world around us aim at making us conscious of the Creator of creations, making us cognizant of our inextricable relationship with, and instilling in us a sense of respect for, Allah’s creation, nature</em>&#8221; Khan said.</p>
<p align="justify">&#8220;<em><span style="text-decoration:underline;"><strong>Do you not observe that God sends down rain from the sky, so that in the morning <span style="color:#008040;">the earth becomes green</span>?</strong></span></em>&#8221; [Surah 22:63].</p>
<p align="justify">The Prophet Muhammad, peace be upon him, is reported to have said, &#8220;<em><span style="text-decoration:underline;"><strong>Whoever <span style="color:#008040;">plants trees</span>, God will give him reward to the extent of their fruit.</strong></span></em>&#8221; (Musnad)</p>
<p align="justify">&#8220;<em>The Prophet is quoted as saying, ‘<span style="text-decoration:underline;"><strong>When doomsday comes, <span style="color:#008040;">if someone has a plant seed in his hand, he should plant it</span></strong></span>’ suggesting that even when all hope is lost for mankind, one should sustain nature’s growth</em>&#8221; Khan said. &#8220;<em>He believed nature remains a good in itself, even if man does not benefit from it.</em>&#8220;</p>
<p align="justify">Muzammal Hussain, founder of the <a href="http://www.lineonweb.org.uk/" target="_blank">London Islamic Network for the Environment</a> (<em>LINE</em>), described creation as existing as &#8220;<em>one interlocking system, with human beings a part of it.</em>&#8221; He said the concept of creation reflects the principle of oneness or tawhid, which is at the center of the Islamic faith.</p>
<p align="justify">&#8220;<em>By ‘going green’ and living in harmony with the wider creation, we are honoring this principle, whereas if we live as though we are separate from the rest of creation, we would be going against what Islam teaches us</em>&#8221; Hussain said. &#8220;<em><strong>Being ‘green’ is thus at the very heart of Islam. Effort is, however, needed for it to be in the heart of many more Muslims,</strong> as well as more Muslim organizations.</em>&#8220;</p>
<h3>It is easy being green</h3>
<p align="justify">Yousaf believes <strong>every little step counts.</strong> He also <strong><span style="color:#008040;">recycles soda cans</span></strong> and tries to reduce waste in general.</p>
<p align="justify">Paper or plastic? Yousaf <strong><span style="color:#008040;">carries his own canvas bag for his grocery shopping.</span></strong> For produce, he steers clear of supermarkets. &#8220;<em>I routinely go to the Farmer’s Market</em>&#8221; Yousaf said. &#8220;<em>I’m getting produce fresh from the field, and, somehow, I feel satisfied helping those smaller guys who are not chain stores.</em>&#8220;</p>
<p align="justify">By <strong><span style="color:#008040;">choosing local and organic products</span></strong>, <a href="http://www.worldwatch.org/" target="_blank">World Watch</a>’s spokesperson Chafe said, fewer chemicals and pesticides will be consumed and kept from entering the ecosystems, local economies will be supported, and the carbon emissions associated with the transport of food minimized.</p>
<p align="justify">Chafe said <strong>&#8220;<em>going green</em>&#8221; can take many forms, and each person should consider what is appropriate for his or her life and interests. </strong>&#8220;<em>The great news is that these decisions often have positive impacts that ripple far wider than our immediate communities and local environment</em>&#8221; Chafe said.</p>
<p align="justify">For Yousaf, living green has not required making drastic changes to his lifestyle. He now feels healthier and has a more positive outlook because he knows that for every small change he has made, he is contributing to the greater good of saving the planet.</p>
<p align="justify">&#8220;<em>I believe <strong>this is exactly what my religion wants me to do, to take care of everybody, myself, my surroundings. This world, that Allah created so beautiful, how can we mess it up?</strong></em>&#8220;</p>
<p align="justify">(<em>Taken from <a href="http://www.infocusnews.net/content/view/16399/135/" target="_blank">Southern California InFocus</a>. For the full article, <a href="http://www.infocusnews.net/content/view/16399/135/" target="_blank">click here</a></em>)</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yaserxp.wordpress.com/2007/10/15/who-said-that-muslims-cant-be-green/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">84</post-id>
		<media:content url="https://2.gravatar.com/avatar/bfd93a4dcfa58ccd2d2fae16f56416e63dbc5640e77d660b410088bbd4827829?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yaserxp</media:title>
		</media:content>
	</item>
		<item>
		<title>A New Approach for Spam Filtering</title>
		<link>https://yaserxp.wordpress.com/2007/09/30/a-new-approach-for-spam-filtering/</link>
					<comments>https://yaserxp.wordpress.com/2007/09/30/a-new-approach-for-spam-filtering/#comments</comments>
		
		<dc:creator><![CDATA[Yaser Sulaiman]]></dc:creator>
		<pubDate>Sun, 30 Sep 2007 16:24:11 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[keyword comparison]]></category>
		<category><![CDATA[keyword extraction]]></category>
		<category><![CDATA[senior project]]></category>
		<category><![CDATA[spam filtering]]></category>
		<guid isPermaLink="false">http://yaserxp.wordpress.com/2007/09/30/a-new-approach-for-spam-filtering/</guid>

					<description><![CDATA[In addition to being a nuisance, spam (junk) emails waste user time, disk space and network bandwidth. On my way back to KFUPM after the summer vacation, a simple idea regarding spam filtering hit me. &#160; It all began with a simple question: &#8220;Why don&#8217;t you want to see spam emails?&#8220;. The answer was straightforward: [&#8230;]]]></description>
										<content:encoded><![CDATA[<p align="justify"><img src="https://yaserxp.wordpress.com/wp-content/uploads/2007/09/no-spam.JPG?w=600" alt="no-spam.JPG" align="left" />In addition to being a nuisance, spam (<em>junk</em>) emails waste user time, disk space and network bandwidth. On my way back to <a href="http://www.kfupm.edu.sa/" target="_blank">KFUPM</a> after the summer vacation, a simple idea regarding spam filtering hit me.</p>
<p align="justify">&nbsp;</p>
<p align="justify">It all began with a simple question: &#8220;<em>Why don&#8217;t you want to see spam emails?</em>&#8220;. The answer was straightforward: &#8220;<em>Because I&#8217;m <strong>not interested in whatever subjects the email is talking about</strong></em>&#8220;. Then, I started thinking:</p>
<blockquote><p>We can&#8217;t use the subject header of the email because it can be totally unrelated to the body. So, we have to look at the content itself. How about if we <strong>extracted keywords</strong> that represent the <strong>main subject(s) of the email</strong>, and then <strong>compared</strong> them with keywords that represent the <strong>subjects that the user is interested in</strong>? After that, we should come up with a <strong>predicted &#8220;<em>level of interest</em>&#8220;.</strong> If it is too low, then the user will (<em>most probably</em>) not be interested in seeing this email (<em>i.e. it&#8217;s spam</em>).</p></blockquote>
<p align="justify">This idea is now the core of <strong>my senior project.</strong> It will be a research-oriented, AI-related project. Regarding the first phase (<em>keyword extraction</em>), my teammate and I will most probably use some of the available services. We will focus our efforts on the second phase (<em>keyword comparison</em>). We have to figure out exactly how to do it and how to incorporate machine learning in it. We also might improve it by using <a href="http://en.wikipedia.org/wiki/Bayesian_network" target="_blank">Bayesian Belief Networks</a> and/or Functional Network classifiers.</p>
<p align="justify">Spam filtering is one of the hot topics in the application of data mining and AI techniques. By working in this project, we hope that we can <strong>contribute to the ongoing research</strong> and develop an approach that will hopefully be taken as a basis for a new filtering technique or as an addition to existing ones.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yaserxp.wordpress.com/2007/09/30/a-new-approach-for-spam-filtering/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">81</post-id>
		<media:content url="https://2.gravatar.com/avatar/bfd93a4dcfa58ccd2d2fae16f56416e63dbc5640e77d660b410088bbd4827829?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yaserxp</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2007/09/no-spam.JPG" medium="image">
			<media:title type="html">no-spam.JPG</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Reduce Firefox&#8217;s Memory Usage when Minimized</title>
		<link>https://yaserxp.wordpress.com/2007/09/20/how-to-reduce-firefoxs-memory-usage-when-minimized/</link>
					<comments>https://yaserxp.wordpress.com/2007/09/20/how-to-reduce-firefoxs-memory-usage-when-minimized/#comments</comments>
		
		<dc:creator><![CDATA[Yaser Sulaiman]]></dc:creator>
		<pubDate>Thu, 20 Sep 2007 15:36:11 +0000</pubDate>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Software]]></category>
		<guid isPermaLink="false">http://yaserxp.wordpress.com/2007/09/20/how-to-reduce-firefoxs-memory-usage-when-minimized/</guid>

					<description><![CDATA[Firefox is my default web browser and I use it a lot. One thing that I don&#8217;t like about it though is its memory usage. It is true that I&#8217;m using around 20 extensions (some of them can cause memory leaks and crashes), but consuming about 100 MB of memory while only 8 tabs are [&#8230;]]]></description>
										<content:encoded><![CDATA[<p align="justify"><a href="http://www.mozilla.com/firefox/" target="_blank">Firefox</a> is my default web browser and I use it a lot. One thing that I don&#8217;t like about it though is its memory usage. It is true that I&#8217;m using around 20 extensions (<em>some of them can </em><a href="http://cybernetnews.com/2007/09/05/cybernotes-firefox-extensions-cause-memory-leaks-and-crashes/" target="_blank"><em>cause memory leaks and crashes</em></a>), but consuming about 100 MB of memory while only 8 tabs are open is quite irritating.</p>
<p style="text-align:center;"><img src="https://yaserxp.wordpress.com/wp-content/uploads/2007/09/maximized.jpg?w=600" alt="Maximized Firefox Memory Usage" /></p>
<p align="justify">By default, Firefox doesn&#8217;t reduce its memory usage when it is minimized (<em>unlike Internet Explorer</em>). Nevertheless, there is a trick to make it do so. Just do the following:</p>
<ol>
<li>In the Firefox address bar, type &#8220;about:config&#8221; and then press Enter.</li>
<li>Right click anywhere in the page and select New -&gt; Boolean.</li>
<li>Type &#8220;config.trim_on_minimize&#8221; in the box that pops up and then press Enter.</li>
<li>Select True and then press Enter.</li>
<li>Restart Firefox.</li>
</ol>
<p align="justify">Now when you minimize Firefox, its memory usage should drop to about 10 MB.</p>
<p style="text-align:center;"><img src="https://yaserxp.wordpress.com/wp-content/uploads/2007/09/minimized.jpg?w=600" alt="Minimized Firefox Memory Usage" /></p>
<p align="justify">Although the memory usage will gradually increase even when Firefox is kept minimized, this is a good way to &#8220;<em>manually</em>&#8221; free some memory out of Firefox&#8217;s grip. Hopefully, this issue will be resolved in <a href="http://wiki.mozilla.org/Firefox3" target="_blank">Firefox 3</a>.</p>
<p align="justify">(via <a href="http://www.feelfirefox.net/blog/reduce-firefox%e2%80%99s-memory-usage-when-minimized/" target="_blank">FeelFirefox</a>)</p>
<p align="justify"><u><strong>Note:</strong></u> For some reason, this <strong>didn&#8217;t work under Windows Vista!</strong> (<em>Currently, I don&#8217;t have other </em><em>operating systems installed</em><em> to test this trick under them</em>)</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yaserxp.wordpress.com/2007/09/20/how-to-reduce-firefoxs-memory-usage-when-minimized/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">78</post-id>
		<media:content url="https://2.gravatar.com/avatar/bfd93a4dcfa58ccd2d2fae16f56416e63dbc5640e77d660b410088bbd4827829?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yaserxp</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2007/09/maximized.jpg" medium="image">
			<media:title type="html">Maximized Firefox Memory Usage</media:title>
		</media:content>

		<media:content url="https://yaserxp.wordpress.com/wp-content/uploads/2007/09/minimized.jpg" medium="image">
			<media:title type="html">Minimized Firefox Memory Usage</media:title>
		</media:content>
	</item>
		<item>
		<title>A Vacation with Minimum Technology</title>
		<link>https://yaserxp.wordpress.com/2007/09/11/a-vacation-with-minimum-technology/</link>
					<comments>https://yaserxp.wordpress.com/2007/09/11/a-vacation-with-minimum-technology/#respond</comments>
		
		<dc:creator><![CDATA[Yaser Sulaiman]]></dc:creator>
		<pubDate>Tue, 11 Sep 2007 20:05:41 +0000</pubDate>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Thoughts]]></category>
		<guid isPermaLink="false">http://yaserxp.wordpress.com/2007/09/11/a-vacation-with-minimum-technology/</guid>

					<description><![CDATA[Phew!! I was so close to forget that I have a blog that needed to be maintained regularly! I didn&#8217;t intend to leave my blog for more than two weeks without updating it, but things got out of my hands&#8230; sort of! I had two weeks to spend relaxing in Syria before coming back for [&#8230;]]]></description>
										<content:encoded><![CDATA[<p align="justify"><em>Phew!!</em> I was so close to forget that I have a blog that needed to be maintained regularly! I didn&#8217;t intend to leave my blog for more than two weeks without updating it, but things got out of my hands&#8230; <em>sort of!</em></p>
<p align="justify">I had two weeks to spend relaxing in Syria before coming back for my last semester as an undergraduate. For my surprise, my PC there (<em>an old one</em>) wasn&#8217;t working properly. I tried to fix it myself but I didn&#8217;t have the necessary equipment. I didn&#8217;t take to be repaired because I was&#8230; too relaxed! I said to myself: &#8220;<em>I can survive two weeks without a PC, <strong>I only need to go to an Internet café from time to time</strong></em>&#8220;.</p>
<p align="justify">My first (<em>and only</em>) visit to the café was terrible! <strong>The DSL connection was literally slower than a dial-up!</strong> I started to panic: &#8220;<em>I HAVE TO <strong>check my e-mail, publish a post on my blog and update my status on Facebook.</strong> I just HAVE TO!</em>&#8220;. Then, it hit me: &#8220;<em>What if I left everything and tried to <strong>enjoy my vacation without worrying about anything related to technology</strong> for once?</em>&#8220;.</p>
<p align="justify">And that was exactly what I did. To tell you the truth, <strong>I can&#8217;t remember the last time I felt this relaxed before.</strong> I admit that catching up will be hard (<em><strong>1000+</strong> unread items in my <a href="http://www.google.com/reader" target="_blank">Google Reader</a>!!</em>), but it was worth it.</p>
<p align="justify">Now that I&#8217;m back online, I&#8217;ll continue blogging regularly. <u>I won&#8217;t be publishing posts at the same rate as I did in the summer</u> though, because I have a lot to deal with right now <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f626.png" alt="😦" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://yaserxp.wordpress.com/2007/09/11/a-vacation-with-minimum-technology/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">77</post-id>
		<media:content url="https://2.gravatar.com/avatar/bfd93a4dcfa58ccd2d2fae16f56416e63dbc5640e77d660b410088bbd4827829?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yaserxp</media:title>
		</media:content>
	</item>
	</channel>
</rss>
