<?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>Dandekarancha Salla (Dandekar&#039;s Advice)</title>
	<atom:link href="http://akshaydandekar.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://akshaydandekar.wordpress.com</link>
	<description>Dandekar&#039;s Advice</description>
	<lastBuildDate>Mon, 09 Jan 2012 19:45:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='akshaydandekar.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Dandekarancha Salla (Dandekar&#039;s Advice)</title>
		<link>http://akshaydandekar.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://akshaydandekar.wordpress.com/osd.xml" title="Dandekarancha Salla (Dandekar&#039;s Advice)" />
	<atom:link rel='hub' href='http://akshaydandekar.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Shell script to remove system-beeps in Crunchbang Linux</title>
		<link>http://akshaydandekar.wordpress.com/2011/06/30/shell-script-to-remove-system-beeps-in-crunchbang-linux/</link>
		<comments>http://akshaydandekar.wordpress.com/2011/06/30/shell-script-to-remove-system-beeps-in-crunchbang-linux/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 18:57:41 +0000</pubDate>
		<dc:creator>akshaydandekar</dc:creator>
				<category><![CDATA[crunchbang]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[novice]]></category>
		<category><![CDATA[tips and tools]]></category>
		<category><![CDATA[get rid of system beep]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://akshaydandekar.wordpress.com/?p=64</guid>
		<description><![CDATA[I am going to rant some on this post before I get to the solution. I have been a fan of Ubuntu Linux for a long time. In fact Ubuntu was the reason I started using Linux. But ever since Ubuntu 11.04 (Natty Narwhal) came out, I have faced some usability issues. I like the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akshaydandekar.wordpress.com&amp;blog=2229625&amp;post=64&amp;subd=akshaydandekar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am going to rant some on this post before I get to the solution. I have been a fan of Ubuntu Linux for a long time. In fact Ubuntu was the reason I started using Linux. But ever since Ubuntu 11.04 (Natty Narwhal) came out, I have faced some usability issues. I like the new Unity interface and I think that it has great potential. On the other hand Gnome is progressing on its own path of GUI evolution. However, mixing both of these GUI is not working out for me. In my opinion, this mix resulted in a mashup of two very diverging approaches of handling linux GUI. The bottom-line is that I have decided to wait on the fence until this GUI battle is over and then root for the winner later.  So I decided that I need to go to the next level of geek-dom and install a minimal Linux distro. My distro of choice is Crunchbang, just because. Anyways, it is a fun little distro and I still keep my Ubuntu Linux on a separate partition lest I need it someday.</p>
<p>Enough of that though&#8230; as the title states, this post is about a shell script to put an end to all the annoying system beeps you get in Crunchbang linux. The script is given below. (Or you can get it using the <a title="Pastie" href="http://www.pastie.org/2148066" target="_blank">Pastie</a> Link) Copy and paste this to a  file (say &#8216;beepoff.sh&#8217;) and make it executable by using the following command.</p>
<blockquote><p>sudo chmod a+x beepoff.sh</p></blockquote>
<p>Next run the script with root privileges with your username as an argument. So for example, if your username is &#8216;uname&#8217;, the command would be as follows.</p>
<blockquote><p>sudo ./beepoff uname</p></blockquote>
<p>This should get rid of almost all the system beeps. Please note that the script is just a compiled version of a solution that I found <a href="http://crunchbanglinux.org/forums/topic/8543/turning-off-system-beeps/" target="_blank">here </a> on the Crunchbang Forums. So if you prefer to do the typing yourself, you can make all the changes in the forum manually.</p>
<blockquote><p>#! /bin/sh</p>
<p># Shell script to disable (almost) all beeps on Crunchbang Linux</p>
<p># @author: Akshay Dandekar</p>
<p># @version: 0 (there will be no other)</p>
<p># This script is free - do whatever you want with it etc&#8230;</p>
<p># and I am not responsible for the outcome</p>
<p># Blacklist pcspkr</p>
<p>if [ $(grep -c 'blacklist\ pcspkr' /etc/modprobe.d/pcspkr.conf) -eq 0 ]</p>
<p>then</p>
<p>echo &#8216;blacklist pcspkr&#8217; | tee -a /etc/modprobe.d/pcspkr.conf</p>
<p>rmmod pcspkr</p>
<p>else</p>
<p>echo &#8220;blacklist pcspkr in pcspkr configuration&#8221;</p>
<p>fi</p>
<p>#set PC speaker and PC Beep to mute on amixer</p>
<p>amixer set &#8216;PC speaker&#8217; 0% mute</p>
<p>amixer set &#8216;PC Beep&#8217; 0% mute</p>
<p># remove gtk application beeps</p>
<p>if [ $(grep -c 'gtk-error-bell\ \=\ 0' /home/$1/.gtkrc-2.0.mine) -eq 0 ]</p>
<p>then</p>
<p>echo &#8220;gtk-error-bell = 0&#8243; &gt;&gt; /home/$1/.gtkrc-2.0.mine</p>
<p>chmod 755 /home/$1/.gtkrc-2.0.mine</p>
<p>else</p>
<p>echo &#8220;gtk-error-bell already set to zero&#8221;</p>
<p>fi</p>
<p># remove console beeps in X</p>
<p>if [ $(grep -c 'xset\ b\ off' /home/$1/.config/openbox/autostart.sh) -eq 0 ]</p>
<p>then</p>
<p>echo &#8220;\n# remove console beeps in X &#8211;Added by $1 \nxset b off &amp;&#8221; &gt;&gt; /home/$1/.config/openbox/autostart.sh</p>
<p>else</p>
<p>echo &#8220;console beeps already off in autostart script&#8221;</p>
<p>fi</p>
<p># remove bash beeps</p>
<p>sed -i &#8216;s/^#\ set\ bell\-style\ none/set\ bell\-style\ none/g&#8217; /etc/inputrc</p>
<p># remove console beeps from the system console</p>
<p>if [ $(grep -c 'setterm\ -blength\ 0' /etc/profile) -eq 0 ]</p>
<p>then</p>
<p>echo &#8220;setterm -blength 0&#8243; &gt;&gt; /etc/profile</p>
<p>echo &#8220;setterm -bfreq 0&#8243; &gt;&gt; /etc/profile</p>
<p>else</p>
<p>echo &#8220;console beeps already off in /etc/profile&#8221;</p>
<p>fi</p>
<p># remove login sound from gdm</p>
<p>if [ $(grep -c 'SoundOnLogin=False' /etc/gdm/gdm.conf) -eq 0 ]</p>
<p>then</p>
<p>sed -i &#8216;s/\[greeter\]/\[greeter\]\nSoundOnLogin\=False/&#8217; /etc/gdm/gdm.conf</p>
<p>else</p>
<p>echo &#8220;login sound already off from gdm&#8221;</p>
<p>fi</p></blockquote>
<p>Also, an easier but riskier way of getting around the annoying system beeps is by disabling the pc speaker in BIOS. However, I do not know what the implications that would have on your computer. (For example, would the computer beep if you fall asleep on the keyboard? <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  or more seriously if the processor cooler fan stops working?) Also, I dual-boot my machine and would like to keep configuration settings separate for both OSes.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akshaydandekar.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akshaydandekar.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/akshaydandekar.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/akshaydandekar.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/akshaydandekar.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/akshaydandekar.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/akshaydandekar.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/akshaydandekar.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/akshaydandekar.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/akshaydandekar.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/akshaydandekar.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/akshaydandekar.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/akshaydandekar.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/akshaydandekar.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akshaydandekar.wordpress.com&amp;blog=2229625&amp;post=64&amp;subd=akshaydandekar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://akshaydandekar.wordpress.com/2011/06/30/shell-script-to-remove-system-beeps-in-crunchbang-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/609c7ce042228f4b3fd8a4db5755c428?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">akshaydandekar</media:title>
		</media:content>
	</item>
		<item>
		<title>Removing entries from the &#8216;Open with Other Application&#8217; menu in Ubuntu</title>
		<link>http://akshaydandekar.wordpress.com/2010/05/16/removing-entries-from-the-open-with-other-application-menu-in-ubuntu/</link>
		<comments>http://akshaydandekar.wordpress.com/2010/05/16/removing-entries-from-the-open-with-other-application-menu-in-ubuntu/#comments</comments>
		<pubDate>Sun, 16 May 2010 23:49:02 +0000</pubDate>
		<dc:creator>akshaydandekar</dc:creator>
				<category><![CDATA[novice]]></category>
		<category><![CDATA[tips and tools]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[delete entry from menu]]></category>
		<category><![CDATA[delete wine entry from menu]]></category>
		<category><![CDATA[open with other application]]></category>
		<category><![CDATA[remove entries]]></category>

		<guid isPermaLink="false">http://akshaydandekar.wordpress.com/?p=43</guid>
		<description><![CDATA[So recently I decided to remove Wine once and for all&#8230; again. However, after doing so, I realized that the &#8216;Open with Other Application&#8217; menu in Ubuntu 10.04 does not flush all the Wine-related entries in it (this menu can be accessed by right-clicking any file/folder in the file-system). I googled around to find a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akshaydandekar.wordpress.com&amp;blog=2229625&amp;post=43&amp;subd=akshaydandekar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So recently I decided to remove <a title="Wine" href="http://www.winehq.org/" target="_blank">Wine</a> once and for all&#8230; again. However, after doing so, I realized that the &#8216;Open with Other Application&#8217; menu in Ubuntu 10.04 does not flush all the Wine-related entries in it (this menu can be accessed by right-clicking any file/folder in the file-system). I googled around to find a fix for this issue and did not find a good solution. The solution was finally found on some forums and was in a pretty fragmented state. So I am compiling it here.</p>
<p>Go to the &#8216;/home/&lt;username&gt;/.local/share/applications&#8217; directory. Find all the Wine-related documents in there and delete them&#8230; just like that. Then open the &#8216;mimeapps.list&#8217; file in the same folder using gedit (or your favorite text editor). Again find all Wine-related entries in the file and delete them. This can be tricky, so make a backup copy of the file before you change anything. That should get rid of those useless entries once and for all. This solution can probably be used to get rid of any entry. Try it and let me know.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akshaydandekar.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akshaydandekar.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/akshaydandekar.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/akshaydandekar.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/akshaydandekar.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/akshaydandekar.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/akshaydandekar.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/akshaydandekar.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/akshaydandekar.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/akshaydandekar.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/akshaydandekar.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/akshaydandekar.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/akshaydandekar.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/akshaydandekar.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akshaydandekar.wordpress.com&amp;blog=2229625&amp;post=43&amp;subd=akshaydandekar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://akshaydandekar.wordpress.com/2010/05/16/removing-entries-from-the-open-with-other-application-menu-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/609c7ce042228f4b3fd8a4db5755c428?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">akshaydandekar</media:title>
		</media:content>
	</item>
		<item>
		<title>Dandekar&#8217;s Nifty Guide to Indian Politics</title>
		<link>http://akshaydandekar.wordpress.com/2010/03/09/dandekars-nifty-guide-to-indian-politics/</link>
		<comments>http://akshaydandekar.wordpress.com/2010/03/09/dandekars-nifty-guide-to-indian-politics/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 17:33:00 +0000</pubDate>
		<dc:creator>akshaydandekar</dc:creator>
				<category><![CDATA[humour]]></category>
		<category><![CDATA[philosophy]]></category>
		<category><![CDATA[Funny Guide to Politics]]></category>
		<category><![CDATA[Indian Politics]]></category>
		<category><![CDATA[The truth behind Indian Politics]]></category>

		<guid isPermaLink="false">http://akshaydandekar.wordpress.com/?p=33</guid>
		<description><![CDATA[This is a sarcastic look at the state of Indian politics today. The problem is that it is true. First you should ask yourself, are you serious about it? Politics is hard work. Start by noting important points in your notepad such as&#8230; when was the last time you committed a murder? How many kids [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akshaydandekar.wordpress.com&amp;blog=2229625&amp;post=33&amp;subd=akshaydandekar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a sarcastic look at the state of Indian politics today. The problem is that it is true.</p>
<p>First you should ask yourself, are you serious about it? Politics is hard work. Start by noting important points in your notepad such as&#8230; when was the last time you committed a murder? How many kids did you beat up in your school? How many teachers? Passing even one of your school exams without copying your answers instantly disqualifies you. Hell, even passing disqualifies you. Being intelligent disqualifies you. Stop using the computer immediately. Otherwise the only chair you will sit on will be the one in front of your computer. &#8230; If you never participated in college elections, and by that I mean if you never had attempted murder charges on you when you were in college, that disqualifies you. Never having owned a gun disqualifies you. Never having fired one instantly disqualifies you&#8230; Get more weapons&#8230; use them&#8230; at least on endangered animals if not on men and women and babies&#8230; If the only knife you own is the one in the kitchen&#8230; please do not choose this career&#8230; if &#8216;die evil onions&#8217; is a phrase that has ever come to your mind&#8230; you will never do well in politics. I would suggest you completely give up studies and take up some form of a drug habit and work out three hours a day. Try to beat an innocent man daily for starters. Trust me, it will help. Try to hit a petrol pump as well&#8230; How are you going to rig elections and capture ballot boxes if you can&#8217;t hold up a stupid grocery store? Maybe you should also become a ladies man if you know what I mean&#8230; they say it works wonders. How can you ever enter politics if you think all races are equal? And you should not just hate other races&#8230; you should be willing to bash their skulls with blunt weapons&#8230; for it is always &#8216;their fault&#8217;. If you even once think it is your fault&#8230; that spells instant disqualification my friend. Claiming to be a &#8216;defendent&#8217; of a religion, or willing to give up your life for a religion helps, but you should never actually be willing to give up your life for religion. In fact, you should be willing to strap a bomb to the chests of the people that follow your religion and send them to explode. If watching them do this very thing does not delight you. Maybe you should pick a softer career such as an in the armed forces. You should also be willing to kill the leader of your own religion and claim that &#8216;they did it&#8217; at the right time. In fact you should always claim that &#8216;they did it&#8217;. &#8216;They&#8217; can be anybody you desire to get beaten to death in broad daylight. What? You don&#8217;t think anyone deserves to be beaten to death? Pack your bags and go home&#8230; I just hit the buzzer to disqualify you.<br />
Loving money is a necessary condition for holding any post in any government but never sufficient. And by loving money, I mean you should be willing to beat up blind beggars to steal their coins&#8230; In fact try robbing people as a pass-time. If you succeed, you have another career choice, if you get caught and appear on national tv.. Great! You are off to a flying start already. If you are not that great at robbing, that is always an incentive to print your own money. So some form of technical background may help&#8230; but it is rare not to have a technically capable friend in India whom you cannot kidnap or blackmail to do your work for you these days&#8230;Bribing people always helps&#8230; Bribing cops or anybody for that matter is also a necessary condition&#8230; but don&#8217;t get too good at it. How will you take bribes if you give them??? If you are better at giving bribes than taking them.. try your hand at some illegal business maybe&#8230; but not politics&#8230; On the contrary, having an illegal business background helps a lot in politics. You could use your ill-gotten fortune for funding your campaign. Or you could just take a bribe from a friend to facilitate his/her illegal business when elected. But then the funds are always limited in these cases. The advantage in the latter case however is that you can always backtrack on your promises. Which brings me to probably the most important point of all!!! Lying is an absolute MUST in politics! Jot that down in bold letters in your mind. Lying with a straight face is a thing of the past. You should be good at lying with an emotional face and crying out emphatically to make a point you never ever had, to succeed in politics. There are many that have done quite well on this one ability alone&#8230; Always lie daily to practice this. Lie to your parents, lie to your friends, lie to your teachers, lie to people unknown to you. Lie to anybody you come across. Manipulate people into committing crimes. A little pedagogy goes a long way in politics. Lie to your significant other/others(+1point). Fake a prayer to God. Stand in front of the mirror and lie to yourself. If you don&#8217;t see the guy in the mirror clapping in awe, try again. WHAT??? Did you say you cannot lie??? What a big waste of my time?!?! Why are you even reading this then??? What were you thinking? I write this awesome guide and this is what I get. baaah&#8230; I am better off manipulating my resume.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akshaydandekar.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akshaydandekar.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/akshaydandekar.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/akshaydandekar.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/akshaydandekar.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/akshaydandekar.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/akshaydandekar.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/akshaydandekar.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/akshaydandekar.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/akshaydandekar.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/akshaydandekar.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/akshaydandekar.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/akshaydandekar.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/akshaydandekar.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akshaydandekar.wordpress.com&amp;blog=2229625&amp;post=33&amp;subd=akshaydandekar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://akshaydandekar.wordpress.com/2010/03/09/dandekars-nifty-guide-to-indian-politics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/609c7ce042228f4b3fd8a4db5755c428?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">akshaydandekar</media:title>
		</media:content>
	</item>
		<item>
		<title>Removing links from the Ubuntu applications menu</title>
		<link>http://akshaydandekar.wordpress.com/2009/09/20/removing-links-from-the-ubuntu-app-menu/</link>
		<comments>http://akshaydandekar.wordpress.com/2009/09/20/removing-links-from-the-ubuntu-app-menu/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 01:57:43 +0000</pubDate>
		<dc:creator>akshaydandekar</dc:creator>
				<category><![CDATA[novice]]></category>
		<category><![CDATA[tips and tools]]></category>
		<category><![CDATA[delete link]]></category>
		<category><![CDATA[delete link from menu]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://akshaydandekar.wordpress.com/?p=22</guid>
		<description><![CDATA[This post is going to be a short one. Interestingly, I had not learnt how to delete links from the Ubuntu applications menu. So when I needed to do this, it took me a while to find out how to do it. But it is really a very simple task. All you have to do [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akshaydandekar.wordpress.com&amp;blog=2229625&amp;post=22&amp;subd=akshaydandekar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post is going to be a short one. Interestingly, I had not learnt how to delete links from the <a title="Ubuntu" href="http://www.ubuntu.com" target="_blank">Ubuntu</a> applications menu. So when I needed to do this, it took me a while to find out how to do it. But it is really a very simple task. All you have to do is delete the icon or link from &#8220;/usr/share/applications&#8221;. Note that this will not delete the actual application.</p>
<p>I like accessing applications directly from the terminal. So I frequently have to do this. Also, for all the power-users out there, I would suggest that you give <a title="Gnome-do" href="http://do.davebsd.com/" target="_blank">Gnome-do</a> a try.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akshaydandekar.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akshaydandekar.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/akshaydandekar.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/akshaydandekar.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/akshaydandekar.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/akshaydandekar.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/akshaydandekar.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/akshaydandekar.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/akshaydandekar.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/akshaydandekar.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/akshaydandekar.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/akshaydandekar.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/akshaydandekar.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/akshaydandekar.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akshaydandekar.wordpress.com&amp;blog=2229625&amp;post=22&amp;subd=akshaydandekar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://akshaydandekar.wordpress.com/2009/09/20/removing-links-from-the-ubuntu-app-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/609c7ce042228f4b3fd8a4db5755c428?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">akshaydandekar</media:title>
		</media:content>
	</item>
		<item>
		<title>The definition of Success according to me</title>
		<link>http://akshaydandekar.wordpress.com/2009/05/17/the-definition-of-success-according-to-me/</link>
		<comments>http://akshaydandekar.wordpress.com/2009/05/17/the-definition-of-success-according-to-me/#comments</comments>
		<pubDate>Sat, 16 May 2009 22:18:44 +0000</pubDate>
		<dc:creator>akshaydandekar</dc:creator>
				<category><![CDATA[philosophy]]></category>
		<category><![CDATA[definition of success]]></category>
		<category><![CDATA[success]]></category>

		<guid isPermaLink="false">http://akshaydandekar.wordpress.com/?p=17</guid>
		<description><![CDATA[Success can be defined as the achievement of a goal by an entity. The goal and the effort applied to achieve that goal may be material or immaterial, conventional or non-conventional, and individual or collective. The attainment of success can be judged by a number of factors or combinations thereof such as the satisfaction of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akshaydandekar.wordpress.com&amp;blog=2229625&amp;post=17&amp;subd=akshaydandekar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Success can be defined as the achievement of a goal by an entity. The goal and the effort applied to achieve that goal may be material or immaterial, conventional or non-conventional, and individual or collective. The attainment of success can be judged by a number of factors or combinations thereof such as the satisfaction of the entity involved in the pursuit of success, the milestones set by the society, impact created by the goal in the real world etc.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akshaydandekar.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akshaydandekar.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/akshaydandekar.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/akshaydandekar.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/akshaydandekar.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/akshaydandekar.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/akshaydandekar.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/akshaydandekar.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/akshaydandekar.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/akshaydandekar.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/akshaydandekar.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/akshaydandekar.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/akshaydandekar.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/akshaydandekar.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=akshaydandekar.wordpress.com&amp;blog=2229625&amp;post=17&amp;subd=akshaydandekar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://akshaydandekar.wordpress.com/2009/05/17/the-definition-of-success-according-to-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/609c7ce042228f4b3fd8a4db5755c428?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">akshaydandekar</media:title>
		</media:content>
	</item>
	</channel>
</rss>
