<?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>tidBITS</title>
	<atom:link href="http://sayakbiswas.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sayakbiswas.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 12 Aug 2011 06:43:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sayakbiswas.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>tidBITS</title>
		<link>http://sayakbiswas.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sayakbiswas.wordpress.com/osd.xml" title="tidBITS" />
	<atom:link rel='hub' href='http://sayakbiswas.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Playing MP3 files with java&#8230;</title>
		<link>http://sayakbiswas.wordpress.com/2011/08/12/playing-mp3-files-with-java/</link>
		<comments>http://sayakbiswas.wordpress.com/2011/08/12/playing-mp3-files-with-java/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 06:42:23 +0000</pubDate>
		<dc:creator>Sayak Biswas</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://sayakbiswas.wordpress.com/?p=210</guid>
		<description><![CDATA[For a language as popular as Java, lack of standard ways of implementing mp3 playback is disappointing. This is understandable though, due to horde of patent and licensing issues relating to MP3 as a format. A bit of googling and I found two methods: using the Java Sound API along with the MP3 plugin and using [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=210&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For a language as popular as Java, lack of standard ways of implementing mp3 playback is disappointing. This is understandable though, due to horde of patent and licensing issues relating to MP3 as a format. A bit of googling and I found two methods: using the Java Sound API along with the MP3 plugin and using the third party JLayer API from JavaZoom. Here I&#8217;m using JLayer as it seems to be the more popular alternative.</p>
<p>First we need to download the jlayer from <a href="http://www.javazoom.net/javalayer/sources.html" target="_blank">here</a>. Extract it and add the <strong>jl1.0.1.jar</strong> to the project. When using an IDE like eclipse adding the jar to the build path suffices otherwise  <strong>jl1.0.1.jar </strong>should be added to the CLASSPATH.</p>
<p>JLayer provides two built in players that play mp3s using the library: <strong>javazoom.jl.player </strong>and <strong>javazoom.jl.player.advanced</strong>. I&#8217;m using the Player class.</p>
<p>Create an instance of the Player class while providing a FileInputStream object of the mp3 file. Then use the play() method of the class to start playback.</p>
<p>Below is a very basic implementation of the playback process:</p>
<p><code>import java.io.*;<br />
import javazoom.jl.player.Player;</code></p>
<p><code>public class JavaPlayerTest {</code></p>
<p><code>public static void main(String[] args) {<br />
try<br />
{<br />
FileInputStream mp3file = new FileInputStream(args[0]);<br />
Player playmp3 = new Player(mp3file);<br />
playmp3.play();<br />
}catch (Exception e) {<br />
System.out.println(e);<br />
}<br />
}<br />
}</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sayakbiswas.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sayakbiswas.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sayakbiswas.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sayakbiswas.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sayakbiswas.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sayakbiswas.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sayakbiswas.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sayakbiswas.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sayakbiswas.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sayakbiswas.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sayakbiswas.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sayakbiswas.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sayakbiswas.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sayakbiswas.wordpress.com/210/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=210&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sayakbiswas.wordpress.com/2011/08/12/playing-mp3-files-with-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dca53ca43180af473989d96df282cedd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">armageddon</media:title>
		</media:content>
	</item>
		<item>
		<title>Set up C/C++ environment with vim &amp; mingw</title>
		<link>http://sayakbiswas.wordpress.com/2011/08/08/set-up-cc-environment-with-vim-mingw/</link>
		<comments>http://sayakbiswas.wordpress.com/2011/08/08/set-up-cc-environment-with-vim-mingw/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 15:09:55 +0000</pubDate>
		<dc:creator>Sayak Biswas</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://sayakbiswas.wordpress.com/?p=204</guid>
		<description><![CDATA[For those who love writing code in vi/vim(let&#8217;s face it its the greatest code editor in the world) and miss it while using Windows, it is possible to set up vim in Windows. Here are the steps to install and set up Vim with MinGW(gcc/g++). 1. Download and install gVim from here. 2. Download MinGW [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=204&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For those who love writing code in vi/vim(let&#8217;s face it its the greatest code editor in the world) and miss it while using Windows, it is possible to set up vim in Windows. Here are the steps to install and set up Vim with MinGW(gcc/g++).</p>
<p>1. Download and install gVim from <a href="http://www.vim.org/download.php#pc">here</a>.</p>
<p>2. Download MinGW automated installer from <a href="http://sourceforge.net/projects/mingw/files/Automated%20MinGW%20Installer/mingw-get-inst/">here</a> and run the installer.</p>
<p>3. Select the package repository and the directory to install(default is C:\MinGW, I recommend leaving it as it is).</p>
<p>4. Select the optional components like C++, Fortran and MSYS base(this is useful; it provides the various bash shell tools like ls,grep,make,gawk etc).</p>
<p>5. The installer then downloads the latest version of the packages and installs them.</p>
<p>6. Finally, add MinGW&#8217;s bin directory to the PATH environment variable.</p>
<p>7. To test if MinGW is set up correctly, go to the command prompt and type <code>g++ --version</code>. If you see the version number as output, then congratulations.</p>
<p>Hope, this post has been helpful.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sayakbiswas.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sayakbiswas.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sayakbiswas.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sayakbiswas.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sayakbiswas.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sayakbiswas.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sayakbiswas.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sayakbiswas.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sayakbiswas.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sayakbiswas.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sayakbiswas.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sayakbiswas.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sayakbiswas.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sayakbiswas.wordpress.com/204/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=204&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sayakbiswas.wordpress.com/2011/08/08/set-up-cc-environment-with-vim-mingw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dca53ca43180af473989d96df282cedd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">armageddon</media:title>
		</media:content>
	</item>
		<item>
		<title>HTML Entities&#8230;&#8230;..</title>
		<link>http://sayakbiswas.wordpress.com/2011/03/17/html-entities/</link>
		<comments>http://sayakbiswas.wordpress.com/2011/03/17/html-entities/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 03:27:40 +0000</pubDate>
		<dc:creator>Sayak Biswas</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://sayakbiswas.wordpress.com/?p=184</guid>
		<description><![CDATA[Entities are essentially symbols in HTML jargon. Here is a list of entities and their codes courtesy Tizag . Symbol Definition Numeric Value Correlating Name Non-Breaking Space &#38;nbsp; &#60; Less Than &#60; &#38;lt; &#62; Greater Than &#62; &#38;gt; &#8220; Quotation Mark &#8220; &#38;quot; ¡ Inverted Exclamation ¡ &#38;iexcl; ¢ Cent ¢ &#38;cent; £ English Pound [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=184&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Entities are essentially symbols in HTML jargon. Here is a list of entities and their codes courtesy <a href="http://www.tizag.com">Tizag</a> .</p>
<table>
<tbody>
<tr>
<th>Symbol</th>
<th>Definition</th>
<th>Numeric Value</th>
<th>Correlating Name</th>
</tr>
<tr>
<td></td>
<td>Non-Breaking Space</td>
<td></td>
<td>&amp;nbsp;</td>
</tr>
<tr>
<td>&lt;</td>
<td>Less Than</td>
<td>&lt;</td>
<td>&amp;lt;</td>
</tr>
<tr>
<td>&gt;</td>
<td>Greater Than</td>
<td>&gt;</td>
<td>&amp;gt;</td>
</tr>
<tr>
<td>&#8220;</td>
<td>Quotation Mark</td>
<td>&#8220;</td>
<td>&amp;quot;</td>
</tr>
<tr>
<td>¡</td>
<td>Inverted Exclamation</td>
<td>¡</td>
<td>&amp;iexcl;</td>
</tr>
<tr>
<td>¢</td>
<td>Cent</td>
<td>¢</td>
<td>&amp;cent;</td>
</tr>
<tr>
<td>£</td>
<td>English Pound</td>
<td>£</td>
<td>&amp;pound;</td>
</tr>
<tr>
<td>¤</td>
<td>Currency</td>
<td>¤</td>
<td>&amp;curren;</td>
</tr>
<tr>
<td>¥</td>
<td>Yen</td>
<td>¥</td>
<td>&amp;yen;</td>
</tr>
<tr>
<td>¦</td>
<td>Broken Vertical Bar</td>
<td>¦</td>
<td>&amp;brvbar;</td>
</tr>
<tr>
<td>§</td>
<td>Section</td>
<td>§</td>
<td>&amp;sect;</td>
</tr>
<tr>
<td>¨</td>
<td>Double Dot</td>
<td>¨</td>
<td>&amp;uml;</td>
</tr>
<tr>
<td>©</td>
<td>Copyright</td>
<td>©</td>
<td>&amp;copy;</td>
</tr>
<tr>
<td>ª</td>
<td>Feminine Ordinal Indicator</td>
<td>ª</td>
<td>&amp;ordf;</td>
</tr>
<tr>
<td>«</td>
<td>Left Angle Quotation Mark</td>
<td>«</td>
<td>&amp;laquo;</td>
</tr>
<tr>
<td>»</td>
<td>Right Angle Quotation Mark</td>
<td>»</td>
<td>&amp;raquo;</td>
</tr>
<tr>
<td>¬</td>
<td>Negation</td>
<td>¬</td>
<td>&amp;not;</td>
</tr>
<tr>
<td>®</td>
<td>Registered Trademark</td>
<td>®</td>
<td>&amp;reg;</td>
</tr>
<tr>
<td>¯</td>
<td>Spacing Macron</td>
<td>¯</td>
<td>&amp;macr;</td>
</tr>
<tr>
<td>°</td>
<td>Degree(s)</td>
<td>°</td>
<td>&amp;deg;</td>
</tr>
<tr>
<td>±</td>
<td>Plus or Minus</td>
<td>±</td>
<td>&amp;plusmn;</td>
</tr>
<tr>
<td>²</td>
<td>Superscript 2</td>
<td>²</td>
<td>&amp;sup2;</td>
</tr>
<tr>
<td>³</td>
<td>Superscript 3</td>
<td>³</td>
<td>&amp;sup3;</td>
</tr>
<tr>
<td>´</td>
<td>Spacing Acute</td>
<td>´</td>
<td>&amp;acute;</td>
</tr>
<tr>
<td>µ</td>
<td>Micro</td>
<td>µ</td>
<td>&amp;micro;</td>
</tr>
<tr>
<td>¶</td>
<td>Paragraph</td>
<td>¶</td>
<td>&amp;para;</td>
</tr>
<tr>
<td>·</td>
<td>Middle Dot</td>
<td>·</td>
<td>&amp;middot;</td>
</tr>
<tr>
<td>¸</td>
<td>Spacing Cedilla</td>
<td>¸</td>
<td>&amp;cedil;</td>
</tr>
<tr>
<td>¹</td>
<td>Superscript 1</td>
<td>¹</td>
<td>&amp;sup1;</td>
</tr>
<tr>
<td>º</td>
<td>Masculine Ordinal Indicator</td>
<td>º</td>
<td>&amp;ordm;</td>
</tr>
<tr>
<td>¼</td>
<td>¼ Fraction</td>
<td>¼</td>
<td>&amp;frac14;</td>
</tr>
<tr>
<td>½</td>
<td>½ Fraction</td>
<td>½</td>
<td>&amp;frac12;</td>
</tr>
<tr>
<td>¾</td>
<td>¾ Fraction</td>
<td>¾</td>
<td>&amp;frac34;</td>
</tr>
<tr>
<td>¿</td>
<td>Inverted Question Mark</td>
<td>¿</td>
<td>&amp;iquest;</td>
</tr>
<tr>
<td>À</td>
<td>Grave Accent-Captial A</td>
<td>À</td>
<td>&amp;Agrave;</td>
</tr>
<tr>
<td>Á</td>
<td>Acute Accent-Capital A</td>
<td>Á</td>
<td>&amp;Aacute;</td>
</tr>
<tr>
<td>Â</td>
<td>Circumflex Accent-Capital A</td>
<td>Â</td>
<td>&amp;Acirc;</td>
</tr>
<tr>
<td>Ã</td>
<td>Tilde-Capital A</td>
<td>Ã</td>
<td>&amp;Atilde;</td>
</tr>
<tr>
<td>Ä</td>
<td>Umlaut Mark-Capital A</td>
<td>Ä</td>
<td>&amp;Auml;</td>
</tr>
<tr>
<td>Å</td>
<td>Ring-Capital A</td>
<td>Å</td>
<td>&amp;Aring;</td>
</tr>
<tr>
<td>Æ</td>
<td>Capital ae</td>
<td>Æ</td>
<td>&amp;AElig;</td>
</tr>
<tr>
<td>Ç</td>
<td>Cedilla-Capital C</td>
<td>Ç</td>
<td>&amp;Ccedil;</td>
</tr>
<tr>
<td>È</td>
<td>Grave Accent-Capital E</td>
<td>È</td>
<td>&amp;Egrave;</td>
</tr>
<tr>
<td>É</td>
<td>Acute Accent-Capital E</td>
<td>É</td>
<td>&amp;Eacute;</td>
</tr>
<tr>
<td>Ê</td>
<td>Circumflex Accent-Capital E</td>
<td>Ê</td>
<td>&amp;Ecirc;</td>
</tr>
<tr>
<td>Ë</td>
<td>Umlaut Mark-Capital E</td>
<td>Ë</td>
<td>&amp;Eml;</td>
</tr>
<tr>
<td>Ì</td>
<td>Grave Accent-Capital I</td>
<td>Ì</td>
<td>&amp;Igrave;</td>
</tr>
<tr>
<td>Í</td>
<td>Acute Accent-Capital I</td>
<td>Í</td>
<td>&amp;Iacute;</td>
</tr>
<tr>
<td>Î</td>
<td>Circumflex Accent-Capital I</td>
<td>Î</td>
<td>&amp;Icirc;</td>
</tr>
<tr>
<td>Ï</td>
<td>Umlaut Mark-Capital I</td>
<td>Ï</td>
<td>&amp;Iuml;</td>
</tr>
<tr>
<td>Ð</td>
<td>Capital eth</td>
<td>Ð</td>
<td>∓ETH;</td>
</tr>
<tr>
<td>Ñ</td>
<td>Tilde-Capital N</td>
<td>Ñ</td>
<td>∓Ntilde;</td>
</tr>
<tr>
<td>Ò</td>
<td>Grave Accent-Capital O</td>
<td>Ò</td>
<td>&amp;Ograve;</td>
</tr>
<tr>
<td>Ó</td>
<td>Acute Accent-Capital O</td>
<td>Ó</td>
<td>&amp;Oacute;</td>
</tr>
<tr>
<td>Ô</td>
<td>Circumflex Accent-Capital O</td>
<td>Ô</td>
<td>&amp;Ocirc;</td>
</tr>
<tr>
<td>Õ</td>
<td>Tilde-Capital O</td>
<td>Õ</td>
<td>&amp;Otilde;</td>
</tr>
<tr>
<td>Ö</td>
<td>Umlaut Mark-Capital O</td>
<td>Ö</td>
<td>%amp;)uml;</td>
</tr>
<tr>
<td>×</td>
<td>Multiplication</td>
<td>×</td>
<td>&amp;times;</td>
</tr>
<tr>
<td>Ø</td>
<td>Slash-Capital O</td>
<td>Ø</td>
<td>&amp;Oslash;</td>
</tr>
<tr>
<td>Ù</td>
<td>Grave Accent-Capital U</td>
<td>Ù</td>
<td>&amp;Ugrave;</td>
</tr>
<tr>
<td>Ú</td>
<td>Acute Accent-Captital U</td>
<td>Ú</td>
<td>&amp;Uacute;</td>
</tr>
<tr>
<td>Û</td>
<td>Circumflex Accent-Capital U</td>
<td>Û</td>
<td>&amp;Ucirc;</td>
</tr>
<tr>
<td>Ü</td>
<td>Umlaut Mark-Capital U</td>
<td>Ü</td>
<td>&amp;Uuml;</td>
</tr>
<tr>
<td>Ý</td>
<td>Acute Accent-Capital Y</td>
<td>Ý</td>
<td>&amp;Yacute;</td>
</tr>
<tr>
<td>Þ</td>
<td>Thorn</td>
<td>Þ</td>
<td>&amp;THORN;</td>
</tr>
<tr>
<td>ß</td>
<td>Small Sharp</td>
<td>ß</td>
<td>&amp;szlig;</td>
</tr>
<tr>
<td>æ</td>
<td>Small ae</td>
<td>æ</td>
<td>&amp;aelig;</td>
</tr>
<tr>
<td>ð</td>
<td>Small eth</td>
<td>ð</td>
<td>&amp;eth;</td>
</tr>
<tr>
<td>ø</td>
<td>Slash-Small o</td>
<td>ø</td>
<td>&amp;oslash;</td>
</tr>
<tr>
<td>þ</td>
<td>Small Thorn</td>
<td>þ</td>
<td>&amp;thorn;</td>
</tr>
<tr>
<td>Œ</td>
<td>Capital Ligature</td>
<td>Œ</td>
<td>&amp;OElig;</td>
</tr>
<tr>
<td>œ</td>
<td>Small Ligature</td>
<td>œ</td>
<td>&amp;oelig;</td>
</tr>
<tr>
<td>ˆ</td>
<td>Modifier Circumflex Accent</td>
<td>ˆ</td>
<td>&amp;circ;</td>
</tr>
<tr>
<td>˜</td>
<td>Small Tilde</td>
<td>˜</td>
<td>&amp;tilde;</td>
</tr>
<tr>
<td>‍</td>
<td>Zero Width Joiner</td>
<td>‍</td>
<td>&amp;zwj;</td>
</tr>
<tr>
<td>–</td>
<td>En Dash</td>
<td>–</td>
<td>&amp;ndash;</td>
</tr>
<tr>
<td>—</td>
<td>Em Dash</td>
<td>—</td>
<td>&amp;mdash;</td>
</tr>
<tr>
<td>‘</td>
<td>Left Single Quote</td>
<td>‘</td>
<td>&amp;lsquo;</td>
</tr>
<tr>
<td>’</td>
<td>Right Single Quote</td>
<td>’</td>
<td>&amp;rsquo;</td>
</tr>
<tr>
<td>‚</td>
<td>Single Low Quote</td>
<td>‚</td>
<td>&amp;sbquo;</td>
</tr>
<tr>
<td>“</td>
<td>Left Double Quote</td>
<td>“</td>
<td>&amp;ldquo;</td>
</tr>
<tr>
<td>”</td>
<td>Right Double Quote</td>
<td>”</td>
<td>&amp;rdquo;</td>
</tr>
<tr>
<td>„</td>
<td>Double Low Quote</td>
<td>„</td>
<td>&amp;bdquo;</td>
</tr>
<tr>
<td>†</td>
<td>Dagger</td>
<td>†</td>
<td>&amp;dagger;</td>
</tr>
<tr>
<td>‡</td>
<td>Double Dagger</td>
<td>‡</td>
<td>&amp;Dagger;</td>
</tr>
<tr>
<td>‰</td>
<td>Per Mile</td>
<td>‰</td>
<td>&amp;permil;</td>
</tr>
<tr>
<td>‹</td>
<td>Left Single Arrow Quote</td>
<td>‹</td>
<td>&amp;lsaquo;</td>
</tr>
<tr>
<td>›</td>
<td>Right Single Arrow Quote</td>
<td>›</td>
<td>&amp;rsaquo;</td>
</tr>
<tr>
<td>€</td>
<td>Euro Mark</td>
<td>€</td>
<td>&amp;euro;</td>
</tr>
<tr>
<td>™</td>
<td>TradeMark</td>
<td>™</td>
<td>&amp;trade;</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sayakbiswas.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sayakbiswas.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sayakbiswas.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sayakbiswas.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sayakbiswas.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sayakbiswas.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sayakbiswas.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sayakbiswas.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sayakbiswas.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sayakbiswas.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sayakbiswas.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sayakbiswas.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sayakbiswas.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sayakbiswas.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=184&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sayakbiswas.wordpress.com/2011/03/17/html-entities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dca53ca43180af473989d96df282cedd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">armageddon</media:title>
		</media:content>
	</item>
		<item>
		<title>Chrome on Ubuntu 9.10</title>
		<link>http://sayakbiswas.wordpress.com/2009/11/04/chrome-on-ubuntu-9-10/</link>
		<comments>http://sayakbiswas.wordpress.com/2009/11/04/chrome-on-ubuntu-9-10/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 07:09:39 +0000</pubDate>
		<dc:creator>Sayak Biswas</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[9.10]]></category>
		<category><![CDATA[chromium]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[koala]]></category>

		<guid isPermaLink="false">http://sayakbiswas.wordpress.com/?p=121</guid>
		<description><![CDATA[In my previous post, I gave a how-to of installing Chromium browser(development version of Google Chrome) on Arch Linux. In this post I&#8217;ll show you how to install Chromium on Ubuntu 9.10(Karmic Koala). 1. Go to System-&#62;Administration-&#62;Software Sources. Go to tab &#8220;Other Software&#8221;. 2. Click Add. In &#8216;APT Line&#8217; paste the following: deb http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=121&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In my previous post, I gave a how-to of installing Chromium browser(development version of Google Chrome) on Arch Linux. In this post I&#8217;ll show you how to install Chromium on Ubuntu 9.10(Karmic Koala).<br />
1. Go to System-&gt;Administration-&gt;Software Sources. Go to tab &#8220;Other Software&#8221;.<br />
2. Click Add. In &#8216;APT Line&#8217; paste the following:<br />
<code>deb http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main</code><br />
Click Add again and paste the following:<br />
<code>deb-src http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main</code><br />
Click Close and Reload.<br />
3. In a terminal paste the following:<br />
<code>sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xfbef0d696de1c72ba5a835fe5a9bf3bb4e5e17b5 &amp;&amp; sudo apt-get update</code><br />
4. Install chromium using the following command:<br />
<code>sudo apt-get install chromium-browser</code></p>
<p>That&#8217;s it. You&#8217;re done.<br />
I&#8217;ve also made a screen-cast of the procedure. Yay! My first youtube video. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
<span style="text-align:center; display: block;"><a href="http://sayakbiswas.wordpress.com/2009/11/04/chrome-on-ubuntu-9-10/"><img src="http://img.youtube.com/vi/GK86JZzIaMw/2.jpg" alt="" /></a></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sayakbiswas.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sayakbiswas.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sayakbiswas.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sayakbiswas.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sayakbiswas.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sayakbiswas.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sayakbiswas.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sayakbiswas.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sayakbiswas.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sayakbiswas.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sayakbiswas.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sayakbiswas.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sayakbiswas.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sayakbiswas.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=121&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sayakbiswas.wordpress.com/2009/11/04/chrome-on-ubuntu-9-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dca53ca43180af473989d96df282cedd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">armageddon</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Chrome on Arch..</title>
		<link>http://sayakbiswas.wordpress.com/2009/10/24/google-chrome-on-arch/</link>
		<comments>http://sayakbiswas.wordpress.com/2009/10/24/google-chrome-on-arch/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 15:29:44 +0000</pubDate>
		<dc:creator>Sayak Biswas</dc:creator>
				<category><![CDATA[Arch]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://sayakbiswas.wordpress.com/?p=118</guid>
		<description><![CDATA[Actually its not the official Chrome, but the open-source development version, better known as Chromium. I installed chromium from aur as follows: yaourt chromium-browser-bin After trying it out for a few minutes, I knew it was going to replace Firefox as my default Web Browser. It has certainly improved quite a lot since I last [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=118&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Actually its not the official Chrome, but the open-source development version, better known as Chromium. I installed chromium from aur as follows:<br />
<code>yaourt chromium-browser-bin</code><br />
After trying it out for a few minutes, I knew it was going to replace Firefox as my default Web Browser. It has certainly improved quite a lot since I last tried it on Ubuntu. It used to crash a lot then. Now, it has become rock stable(well, almost). It&#8217;s fast and snappy.  It has got some great themes. On first start, it imported all my Firefox bookmarks. Also, another thing that I liked was the Opera-style speed dial that I always longed for in Firefox (Opera never quite did it for me). Overall its great, though there is one thing from Firefox that I still require on Chromium &#8211; something like the DownloadThemAll! addon for firefox. Hopefully, it will be developed ASAP. Till then I&#8217;ll go back to &#8220;The Fox&#8221; for big downloads.</p>
<p>Cheers!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sayakbiswas.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sayakbiswas.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sayakbiswas.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sayakbiswas.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sayakbiswas.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sayakbiswas.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sayakbiswas.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sayakbiswas.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sayakbiswas.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sayakbiswas.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sayakbiswas.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sayakbiswas.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sayakbiswas.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sayakbiswas.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=118&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sayakbiswas.wordpress.com/2009/10/24/google-chrome-on-arch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dca53ca43180af473989d96df282cedd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">armageddon</media:title>
		</media:content>
	</item>
		<item>
		<title>KDE 4 on my Lappy&#8230;</title>
		<link>http://sayakbiswas.wordpress.com/2009/10/24/kde-4-on-my-lappy/</link>
		<comments>http://sayakbiswas.wordpress.com/2009/10/24/kde-4-on-my-lappy/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 08:24:44 +0000</pubDate>
		<dc:creator>Sayak Biswas</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://sayakbiswas.wordpress.com/?p=115</guid>
		<description><![CDATA[Here is a collage of various KDE 4 screenshots from my laptop: Enjoy.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=115&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a collage of various KDE 4 screenshots from my laptop:<br />
<a target="_blank" href="http://a.imagehost.org/view/0063/Screenshots"><img src="http://a.imagehost.org/t/0063/Screenshots.jpg" border="0" width="150" height="94" alt="Screenshots.jpg (1.7 MB)" /></a></p>
<p>Enjoy. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sayakbiswas.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sayakbiswas.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sayakbiswas.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sayakbiswas.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sayakbiswas.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sayakbiswas.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sayakbiswas.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sayakbiswas.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sayakbiswas.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sayakbiswas.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sayakbiswas.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sayakbiswas.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sayakbiswas.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sayakbiswas.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=115&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sayakbiswas.wordpress.com/2009/10/24/kde-4-on-my-lappy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dca53ca43180af473989d96df282cedd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">armageddon</media:title>
		</media:content>

		<media:content url="http://a.imagehost.org/t/0063/Screenshots.jpg" medium="image">
			<media:title type="html">Screenshots.jpg (1.7 MB)</media:title>
		</media:content>
	</item>
		<item>
		<title>Plymouth on Arch</title>
		<link>http://sayakbiswas.wordpress.com/2009/10/22/plymouth-on-arch/</link>
		<comments>http://sayakbiswas.wordpress.com/2009/10/22/plymouth-on-arch/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 16:08:58 +0000</pubDate>
		<dc:creator>Sayak Biswas</dc:creator>
				<category><![CDATA[Arch]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://sayakbiswas.wordpress.com/?p=112</guid>
		<description><![CDATA[I&#8217;m now enjoying beautiful splashes at boot on my Arch box. Yes, plymouth works quite well on Arch. To get it working well, execute the folowing steps: 1. First get KMS enabled in your kernel. 2. Next install plymouth-git from aur: yaourt -S plymouth-git 3. Then edit /etc/mkinitcpio.conf and add &#8216;plymouth&#8217; (without the quotes) in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=112&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m now enjoying beautiful splashes at boot on my Arch box. Yes, plymouth works quite well on Arch. To get it working well, execute the folowing steps:<br />
1. First get <a href="http://wiki.archlinux.org/index.php?title=Special%3ASearch&amp;search=KMS&amp;go=Go">KMS</a> enabled in your kernel.<br />
2. Next install plymouth-git from aur:<br />
<code>yaourt -S plymouth-git</code><br />
3. Then edit /etc/mkinitcpio.conf and add &#8216;plymouth&#8217; (without the quotes) in the HOOKS line after base, udev and autodetect.<br />
4. Rebuild initrd using(as root):<br />
<code>mkinitcpio -p kernel26</code><br />
5. To change themes, do:<br />
<code>sudo plymouth-set-default-theme  --rebuild-initrd</code><br />
You can find themes in /usr/share/plymouth/themes.<br />
6. Reboot<br />
The only problem I have with this method is that plymouthd does not get stopped even after plymouth splash ends. For that I have to do (as root)<br />
<code>killall plymouthd</code><br />
everytime I login(not a very viable solution). So, if you guys have any better solution, feel free to tell me.</p>
<p>Cheers!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sayakbiswas.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sayakbiswas.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sayakbiswas.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sayakbiswas.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sayakbiswas.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sayakbiswas.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sayakbiswas.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sayakbiswas.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sayakbiswas.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sayakbiswas.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sayakbiswas.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sayakbiswas.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sayakbiswas.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sayakbiswas.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=112&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sayakbiswas.wordpress.com/2009/10/22/plymouth-on-arch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dca53ca43180af473989d96df282cedd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">armageddon</media:title>
		</media:content>
	</item>
		<item>
		<title>Increased Boot-Up Speed&#8230;.</title>
		<link>http://sayakbiswas.wordpress.com/2009/10/22/increased-boot-up-speed/</link>
		<comments>http://sayakbiswas.wordpress.com/2009/10/22/increased-boot-up-speed/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 15:18:24 +0000</pubDate>
		<dc:creator>Sayak Biswas</dc:creator>
				<category><![CDATA[Arch]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://sayakbiswas.wordpress.com/?p=99</guid>
		<description><![CDATA[I found out a way to increase boot-up speed in Arch. Previously, I used to load the &#8216;network&#8217; daemon in /etc/rc.conf &#8216;Daemons&#8217; array. The &#8216;network&#8217; daemon used to take quite a bit of time to load and also sometimes fail killing splashy(giving a message: &#8220;Something failed, killing splashy&#8221;) and falling back to text mode. But [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=99&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I found out a way to increase boot-up speed in Arch. Previously, I used to load the &#8216;network&#8217; daemon in /etc/rc.conf &#8216;Daemons&#8217; array. The &#8216;network&#8217; daemon used to take quite a bit of time to load and also sometimes fail killing splashy(giving a message: &#8220;Something failed, killing splashy&#8221;) and falling back to text mode. But now I replaced the &#8216;network&#8217; daemon with &#8216;networkmanager&#8217; daemon and it works like a charm. Boot-up speed has increased and splashy does not crash anymore. It&#8217;s great.</p>
<p>To manage network with networkmanager in KDE4, install &#8216;kdemod-networkmanager-git&#8217; and &#8216;kdemod-networkmanagement-knetworkmanager-kde4&#8242; and reboot. You&#8217;ll see the &#8216;knetworkmanager&#8217; icon in the System Tray. That&#8217;s it.</p>
<p>But one thing which I don&#8217;t understand is why &#8216;network&#8217; daemon takes so much time to load and &#8216;networkmanager&#8217; lesser.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sayakbiswas.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sayakbiswas.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sayakbiswas.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sayakbiswas.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sayakbiswas.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sayakbiswas.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sayakbiswas.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sayakbiswas.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sayakbiswas.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sayakbiswas.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sayakbiswas.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sayakbiswas.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sayakbiswas.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sayakbiswas.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=99&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sayakbiswas.wordpress.com/2009/10/22/increased-boot-up-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dca53ca43180af473989d96df282cedd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">armageddon</media:title>
		</media:content>
	</item>
		<item>
		<title>Installed Arch Linux&#8230;.</title>
		<link>http://sayakbiswas.wordpress.com/2009/10/19/installed-arch-linux/</link>
		<comments>http://sayakbiswas.wordpress.com/2009/10/19/installed-arch-linux/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 07:27:34 +0000</pubDate>
		<dc:creator>Sayak Biswas</dc:creator>
				<category><![CDATA[Arch]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://sayakbiswas.wordpress.com/?p=91</guid>
		<description><![CDATA[I&#8217;ve moved over to Arch Linux. A really short review follows: Its awesome. Installation was easy and for configuring the system for audio, video etc, the Beginners&#8217; Guide in the Arch Wiki is sufficient. It makes setting up an Arch system a breeze. I&#8217;ve set up my archbox with KDEMod4 and I shoud say KDEMod [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=91&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve moved over to Arch Linux. A really short review follows:</p>
<p>Its awesome. Installation was easy and for configuring the system for audio, video etc, the Beginners&#8217; Guide in the Arch Wiki is sufficient. It makes setting up an Arch system a breeze.</p>
<p>I&#8217;ve set up my archbox with KDEMod4 and I shoud say KDEMod 4.3.2 rocks!! Its stable and zippy especially when you use it in conjuction with Compiz Fusion.</p>
<p>Another thing I liked in Arch was the BSD-style init scripts. All my system&#8217;s settings are stored in one file &#8211; in /etc/rc.conf. And that&#8217;s awesome.</p>
<p>I&#8217;ve saved the best for the last. Pacman. Yes, Pacman is the best thing that has ever happened to my system. It is zippy, it is easy and it keeps rolling. That means all the latest and greatest software is available without doing any reinstallation, which I could not have on Ubuntu and others.</p>
<p>Well, that&#8217;s it for now. Till then keep rollin&#8217; and rockin&#8217;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sayakbiswas.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sayakbiswas.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sayakbiswas.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sayakbiswas.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sayakbiswas.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sayakbiswas.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sayakbiswas.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sayakbiswas.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sayakbiswas.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sayakbiswas.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sayakbiswas.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sayakbiswas.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sayakbiswas.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sayakbiswas.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=91&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sayakbiswas.wordpress.com/2009/10/19/installed-arch-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dca53ca43180af473989d96df282cedd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">armageddon</media:title>
		</media:content>
	</item>
		<item>
		<title>I&#8217;m an SCJP&#8230;. :)</title>
		<link>http://sayakbiswas.wordpress.com/2009/10/08/im-an-scjp/</link>
		<comments>http://sayakbiswas.wordpress.com/2009/10/08/im-an-scjp/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 14:53:41 +0000</pubDate>
		<dc:creator>Sayak Biswas</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://sayakbiswas.wordpress.com/?p=89</guid>
		<description><![CDATA[Yay!! I passed the SCJP exam with 93% marks. I&#8217;m awesomely happy about it. Right now I&#8217;m awaiting my certificate which I&#8217;ll be getting in a few months. Other SCJPs share your experiences. Yay again!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=89&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yay!! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
I passed the SCJP exam with 93% marks. I&#8217;m awesomely happy about it. Right now I&#8217;m awaiting my certificate which I&#8217;ll be getting in a few months.<br />
Other SCJPs share your experiences.<br />
Yay again!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sayakbiswas.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sayakbiswas.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sayakbiswas.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sayakbiswas.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sayakbiswas.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sayakbiswas.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sayakbiswas.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sayakbiswas.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sayakbiswas.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sayakbiswas.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sayakbiswas.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sayakbiswas.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sayakbiswas.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sayakbiswas.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sayakbiswas.wordpress.com&amp;blog=4923998&amp;post=89&amp;subd=sayakbiswas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sayakbiswas.wordpress.com/2009/10/08/im-an-scjp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dca53ca43180af473989d96df282cedd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">armageddon</media:title>
		</media:content>
	</item>
	</channel>
</rss>
