<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rocker &#187; Customization</title>
	<atom:link href="http://www.shishirsharma.com/category/customization/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shishirsharma.com</link>
	<description>Everything bloggable around Shishir Sharma.</description>
	<lastBuildDate>Fri, 06 Jan 2012 09:47:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Grab the net with Arduino</title>
		<link>http://www.shishirsharma.com/2011/12/29/grab-the-net-with-arduino/</link>
		<comments>http://www.shishirsharma.com/2011/12/29/grab-the-net-with-arduino/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 12:53:24 +0000</pubDate>
		<dc:creator>Shishir Sharma 'criss'</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Arduino Ethernet Shield]]></category>
		<category><![CDATA[Arduino Html Client]]></category>

		<guid isPermaLink="false">http://www.shishirsharma.com/?p=1114</guid>
		<description><![CDATA[How to access a website with multiple virtual hots from Arduino Ethernet Shield. The problem is if you have used Arduino Ethernet Shield, then you know that you can connect a IP, But if the IP has multiple virtual hosts, &#8230; <a href="http://www.shishirsharma.com/2011/12/29/grab-the-net-with-arduino/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>How to access a website with multiple virtual hots from Arduino Ethernet Shield. The problem is if you have used Arduino Ethernet Shield, then you know that you can connect a IP, But if the IP has multiple virtual hosts, it will only connect to default virtual host. If it is commercial shared VPS, You wont be able to make your site default.</p>
<p>Gist is use of HTTP protocol which allows you to define host in your request on virtual host server. Here are the possible headers.</p>
<p><a href="http://en.wikipedia.org/wiki/List_of_HTTP_headers">http://en.wikipedia.org/wiki/List_of_HTTP_headers</a></p>
<p>You should also provide basic debugging info like &#8220;User-Agent&#8221; etc.</p>
<pre>#include &lt;SPI.h&gt;
#include &lt;Ethernet.h&gt;

// Enter a MAC address and IP address for your controller below.
// The IP address will be dependent on your local network:
byte mac[]            = {  0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte ip[]             = { 192, 168,   6,  30 };

byte server[]         = { ***, ***, 168,  16 }; // Your VPS

// Initialize the Ethernet client library
// with the IP address and port of the server
// that you want to connect to (port 80 is default for HTTP):
Client client(server, 80);

String response = "";

void setup() {
  Ethernet.begin(mac, ip);
  Serial.begin(9600);
  // Give the Ethernet shield a second to initialize
  delay(1000);
  Serial.println("Connecting...");
}

void loop() {
  if (!client.available() &amp;&amp; client.connect()) {
    Serial.println("-- Connected");
    // Make a HTTP request:
    client.println("GET /bot HTTP/1.0");
    client.println("Host: example.com");
    client.println("User-Agent: Arduino/Shishir (mail.mastermind [at] gmail.com)");
    client.println();
  }
  if (client.available()) {
    char c = client.read();
    response.concat(c);
  }
  if(!client.connected()){
    process(response);
    //Serial.print(response);
  }
  if (!client.connected() &amp;&amp; reset == 1) {
    Serial.println("disconnecting.");
    client.stop();
    response = "";
    delay(1000*10);
  }
}
void process(String response) {
  Serial.println(response);
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.shishirsharma.com/2011/12/29/grab-the-net-with-arduino/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IRB Console with history and logging</title>
		<link>http://www.shishirsharma.com/2011/12/28/irb-console-with-history-and-logging/</link>
		<comments>http://www.shishirsharma.com/2011/12/28/irb-console-with-history-and-logging/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 06:58:52 +0000</pubDate>
		<dc:creator>Shishir Sharma 'criss'</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[IRB]]></category>
		<category><![CDATA[Rails Console]]></category>

		<guid isPermaLink="false">http://www.shishirsharma.com/?p=1098</guid>
		<description><![CDATA[I spend most time with IRB or Rails/console. These are good settings on which I have settled with over the time. These will allow you to have basic logging and IRB history. Just put these in the ~/.irbrc file (If &#8230; <a href="http://www.shishirsharma.com/2011/12/28/irb-console-with-history-and-logging/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I spend most time with IRB or Rails/console. These are good settings on which I have settled with over the time. These will allow you to have basic logging and IRB history. Just put these in the ~/.irbrc file (If file doesn&#8217;t exist then create one).</p>
<pre># -*- Ruby-*-
require 'irb/completion'
require 'irb/ext/save-history'

ARGV.concat [ "--readline",
              "--prompt-mode",
              "simple" ]

# 25 entries in the list
IRB.conf[:SAVE_HISTORY] = 100

# Store results in home directory with specified file name
IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb-history"

script_console_running = ENV.include?('RAILS_ENV') &amp;&amp; IRB.conf[:LOAD_MODULES] &amp;&amp; IRB.conf[:LOAD_MODULES].include?('console_with_helpers')
rails_running = ENV.include?('RAILS_ENV') &amp;&amp; !(IRB.conf[:LOAD_MODULES] &amp;&amp; IRB.conf[:LOAD_MODULES].include?('console_with_helpers'))
irb_standalone_running = !script_console_running &amp;&amp; !rails_running

if script_console_running
  require 'logger'
  Object.const_set(:RAILS_DEFAULT_LOGGER, Logger.new(STDOUT))
end</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.shishirsharma.com/2011/12/28/irb-console-with-history-and-logging/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Keep doing!</title>
		<link>http://www.shishirsharma.com/2011/07/12/keep-doing/</link>
		<comments>http://www.shishirsharma.com/2011/07/12/keep-doing/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 06:10:13 +0000</pubDate>
		<dc:creator>Shishir Sharma 'criss'</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[HackDay]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[slideshare]]></category>

		<guid isPermaLink="false">http://shishirsharma.com/?p=911</guid>
		<description><![CDATA[This is a test for the quote post. If you keep on doing what you&#8217;ve always done, you&#8217;ll keep on getting what you&#8217;ve always got. -W. L. Bateman This is really a good step to start with, I am really &#8230; <a href="http://www.shishirsharma.com/2011/07/12/keep-doing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a test for the quote post.</p>
<blockquote><p>If you keep on doing what you&#8217;ve always done, you&#8217;ll keep on getting what you&#8217;ve always got.</p></blockquote>
<p>-W. L. Bateman</p>
<p>This is really a good step to start with, I am really loving this new twenty eleven theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shishirsharma.com/2011/07/12/keep-doing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change</title>
		<link>http://www.shishirsharma.com/2010/12/30/change/</link>
		<comments>http://www.shishirsharma.com/2010/12/30/change/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 08:09:17 +0000</pubDate>
		<dc:creator>Shishir Sharma 'criss'</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[slideshare]]></category>

		<guid isPermaLink="false">http://shishirsharma.com/?p=853</guid>
		<description><![CDATA[Do you really want to change something in yourself. This is a real nice study. Check this out. Top 10 Mistakes in Behavior Change]]></description>
			<content:encoded><![CDATA[<p>Do you really want to change something in yourself. This is a real nice study. Check this out.</p>
<div style="width:425px" id="__ss_6401325"><strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/captology/stanford-6401325" title="Top 10 Mistakes in Behavior Change">Top 10 Mistakes in Behavior Change</a></strong><object id="__sse6401325" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=top10mistakesbehaviorchange-bjfoggv3-101229143325-phpapp02&#038;stripped_title=stanford-6401325&#038;userName=captology" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed name="__sse6401325" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=top10mistakesbehaviorchange-bjfoggv3-101229143325-phpapp02&#038;stripped_title=stanford-6401325&#038;userName=captology" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></div>
]]></content:encoded>
			<wfw:commentRss>http://www.shishirsharma.com/2010/12/30/change/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Style Internet &#8211; The way you wanted it</title>
		<link>http://www.shishirsharma.com/2010/07/09/style-internet/</link>
		<comments>http://www.shishirsharma.com/2010/07/09/style-internet/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 05:00:14 +0000</pubDate>
		<dc:creator>Shishir Sharma 'criss'</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://shishirsharma.com/?p=781</guid>
		<description><![CDATA[I am sure you have seen the Tata Docomo&#8217;s My Song advertisement campaign.  So I am exactly saying see how you would like to see Internet. Lets say you like website A&#8217;s something and you want to read website B &#8230; <a href="http://www.shishirsharma.com/2010/07/09/style-internet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am sure you have seen the Tata Docomo&#8217;s My Song advertisement campaign.  So I am exactly saying <em>see how you would like to see Internet</em>.<span id="more-781"></span></p>
<p>Lets say you like website A&#8217;s something and you want to read website B is exactly in that style. Well if you are a firefox user congratulation you can so do this, rest can either switch to firefox or eat dust.</p>
<p>Requirements:</p>
<ul>
<li>Firefox</li>
<li>Firebug</li>
<li>Stylish</li>
</ul>
<p>Steps:</p>
<ol>
<li>Now all you have to do is to inspect the element of website A you liked most. (you will need to compute it).</li>
<li>Now Create a domain specific style through stylish. Add this style in that.</li>
<li>No third step.</li>
</ol>
<p>Both firebug and stylish are shown as a little icon on right side of status bar. A knowledge of CSS is must for this. Stylish also has a database of user written styles for any domain name like Facebook, youtube etc.</p>
<p>Here are few basic examples of what you can achieve with this.</p>

<a href='http://www.shishirsharma.com/2010/07/09/style-internet/screenshot-larry-walls-home-page-mozilla-firefox/' title='Screenshot-Larry Wall&#039;s Home Page - Mozilla Firefox'><img width="100" height="100" src="http://www.shishirsharma.com/wp/wp-content/uploads/2010/07/Screenshot-Larry-Walls-Home-Page-Mozilla-Firefox-100x100.jpg" class="attachment-thumbnail" alt="Larry Walls Home Page (Modified)" title="Screenshot-Larry Wall&#039;s Home Page - Mozilla Firefox" /></a>
<a href='http://www.shishirsharma.com/2010/07/09/style-internet/screenshot-larry-walls-home-page-mozilla-firefox-1/' title='Screenshot-Larry Wall&#039;s Home Page - Mozilla Firefox-1'><img width="100" height="100" src="http://www.shishirsharma.com/wp/wp-content/uploads/2010/07/Screenshot-Larry-Walls-Home-Page-Mozilla-Firefox-1-100x100.jpg" class="attachment-thumbnail" alt="Larry Walls Home Page (Orignal)" title="Screenshot-Larry Wall&#039;s Home Page - Mozilla Firefox-1" /></a>
<a href='http://www.shishirsharma.com/2010/07/09/style-internet/screenshot-natural-and-artificial-languages-programming-perl-mozilla-firefox/' title='Screenshot-Natural and Artificial Languages (Programming Perl) - Mozilla Firefox'><img width="100" height="100" src="http://www.shishirsharma.com/wp/wp-content/uploads/2010/07/Screenshot-Natural-and-Artificial-Languages-Programming-Perl-Mozilla-Firefox-100x100.jpg" class="attachment-thumbnail" alt="Programming Perl (Orignal)" title="Screenshot-Natural and Artificial Languages (Programming Perl) - Mozilla Firefox" /></a>
<a href='http://www.shishirsharma.com/2010/07/09/style-internet/screenshot-natural-and-artificial-languages-programming-perl-mozilla-firefox-1/' title='Screenshot-Natural and Artificial Languages (Programming Perl) - Mozilla Firefox-1'><img width="100" height="100" src="http://www.shishirsharma.com/wp/wp-content/uploads/2010/07/Screenshot-Natural-and-Artificial-Languages-Programming-Perl-Mozilla-Firefox-1-100x100.jpg" class="attachment-thumbnail" alt="Screenshot-Natural and Artificial Languages (Programming Perl) - Mozilla Firefox-1" title="Screenshot-Natural and Artificial Languages (Programming Perl) - Mozilla Firefox-1" /></a>
<a href='http://www.shishirsharma.com/2010/07/09/style-internet/screenshot-natural-and-artificial-languages-programming-perl-mozilla-firefox-2/' title='Screenshot-Natural and Artificial Languages (Programming Perl) - Mozilla Firefox-2'><img width="100" height="100" src="http://www.shishirsharma.com/wp/wp-content/uploads/2010/07/Screenshot-Natural-and-Artificial-Languages-Programming-Perl-Mozilla-Firefox-2-100x100.jpg" class="attachment-thumbnail" alt="Screenshot-Natural and Artificial Languages (Programming Perl) - Mozilla Firefox-2" title="Screenshot-Natural and Artificial Languages (Programming Perl) - Mozilla Firefox-2" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.shishirsharma.com/2010/07/09/style-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best browser &#8211; Mozilla Firefox</title>
		<link>http://www.shishirsharma.com/2009/11/20/mozilla-firefox/</link>
		<comments>http://www.shishirsharma.com/2009/11/20/mozilla-firefox/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 12:13:34 +0000</pubDate>
		<dc:creator>Shishir Sharma 'criss'</dc:creator>
				<category><![CDATA[Customization]]></category>

		<guid isPermaLink="false">http://shishirsharma.com/?p=454</guid>
		<description><![CDATA[A dream browser - Mozilla Firefox <a href="http://www.shishirsharma.com/2009/11/20/mozilla-firefox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So which browser you all like chrome, Opera, konqueror or MS-IE. I like Firefox, why? &#8230; there are thousand reasons for that, each one of them is singly enough for switching to Firefox. Not convinced humm&#8230; let me explan you.<br />
<span id="more-454"></span><br />
When you download a fresh Firefox installer, it is just a engine with minimalist body but with lots of power like a Porsche. You have to customize it in order to get what you want.</p>
<p>Here is what I have done with my Firefox.</p>
<p><strong>add ons</strong></p>
<ul>
<li>Tiny menu. (Move all the contents of Navigation bar to Menu bar and remove it).</li>
<li>Foxtabs.</li>
<li>Firebug</li>
<li>Fast Dial</li>
<li>Obliquity</li>
<li>Cooliris  (eye candy)</li>
</ul>
<p><strong>Functionality</strong></p>
<ul>
<li>Fireftp</li>
<li>Chatzilla</li>
<li>Spiderzilla (Not active in developement)</li>
</ul>
<p>Try these add ons and tell me if you like them.<!--more--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shishirsharma.com/2009/11/20/mozilla-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Customizing Command Prompt</title>
		<link>http://www.shishirsharma.com/2008/08/03/customizing-command-prompt/</link>
		<comments>http://www.shishirsharma.com/2008/08/03/customizing-command-prompt/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 13:09:55 +0000</pubDate>
		<dc:creator>Shishir Sharma 'criss'</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[command line interface]]></category>
		<category><![CDATA[Command prompt]]></category>
		<category><![CDATA[Multiple Path]]></category>
		<category><![CDATA[Path]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://shishirsharma.com/?p=65</guid>
		<description><![CDATA[Well many times this happens that we want to work with the command prompt. Sometimes we wanna work with many CLI (command line interface). We usually SET the %PATH% variable of system or specific user for this. Things get really worse when we wanna work with more them one version of same Application/Compiler/System. We can't set the variable as all have similar directory structure and almost same binary/executable names. <a href="http://www.shishirsharma.com/2008/08/03/customizing-command-prompt/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Well many times this happens that we want to work with the command prompt. Sometimes we wanna work with many CLI (command line interface). We usually SET the %PATH% variable of system or specific user for this. Things get really worse when we wanna work with more them one version of same Application/Compiler/System. We can&#8217;t set the variable as all have similar directory structure and almost same binary/executable names.<br />
<span id="more-65"></span><br />
<strong>There are three ways out from this:</strong></p>
<ul>
<li>Set all the paths and change names of binaries<br />
(stupid. You would have to remember all names until you use some uniform naming method still you will keep guessing).</li>
<li> Create many users and set different user paths<br />
(Foolish. Then changing version will be like logging as different user).</li>
<li> Use a Customized Command Prompt<br />
(Elegant. Its like some developers are working)</li>
</ul>
<p><strong>How to Customize Command Prompt.</strong></p>
<p style="padding-left: 30px;">Well it involves <strong>1,000</strong> steps:-) no it doesn&#8217;t it involves <strong>2</strong> steps only.</p>
<ol>
<li>Create a file Called YOURSYSTEM-VER-cofig.bat. Where YOURSYSTEM is the name of the system  you are using and VER is the version of that specific system like python-2.6-config.bat.</li>
<li>Now put some codes in the file. Like:</li>
<p><code>@ECHO OFF<br />
@SET PATH= %PATH%;C:\appand\your\path\here;D:\appand\one\more<br />
@SET SOMEVARABLE=E:\some\path<br />
@SET DIRCMD=/D /N<br />
@PROMPT $G<br />
@ECHO Setting environment for YOURSYSTEM VER<br />
@ECHO %TIME% %DATE%<br />
@ECHO Namaskar Criss.</code></p>
<li>Then create a new shortcut Right click on empty space or File -&gt; New -&gt; Shortcut.</li>
</ol>
<div id="attachment_78" class="wp-caption aligncenter" style="width: 310px"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c1.jpg" rel="lightbox[65]" title="create shortcut c1"><img class="size-medium wp-image-78" title="create shortcut c1" src="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c1-300x219.jpg" alt="Create new shortcut " width="300" height="219" /></a><p class="wp-caption-text">Create new shortcut </p></div>
<p>Then type <code>%COMPSPEC% /K "C:\path\to\your\file"</code> in it</p>
<div id="attachment_79" class="wp-caption aligncenter" style="width: 310px"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c2.jpg" rel="lightbox[65]" title="shortcut c2"><img class="size-medium wp-image-79" title="shortcut c2" src="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c2-300x219.jpg" alt="shortcut" width="300" height="219" /></a><p class="wp-caption-text">Creating shortcut</p></div>
<p>Then <strong>Rename </strong>the shortcut to a proper name.</p>
<div id="attachment_80" class="wp-caption aligncenter" style="width: 310px"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c3.jpg" rel="lightbox[65]" title="create shortcut c3"><img class="size-medium wp-image-80" title="create shortcut c3" src="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c3-300x221.jpg" alt="Rename shorcut to a Proper name" width="300" height="221" /></a><p class="wp-caption-text">Rename shorcut to a Proper name</p></div>
<p>Then click on Finish. Now <strong>Right click</strong> on the shortcut.</p>
<div id="attachment_81" class="wp-caption aligncenter" style="width: 310px"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c4.jpg" rel="lightbox[65]" title="shortcut  c4"><img class="size-medium wp-image-81" title="shortcut  c4" src="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c4-300x130.jpg" alt="Command prompt shortcut" width="300" height="130" /></a><p class="wp-caption-text">Command prompt shortcut</p></div>
<p>Select shortcut <strong>properties</strong>.</p>
<div id="attachment_82" class="wp-caption aligncenter" style="width: 310px"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c5.jpg" rel="lightbox[65]" title="shortcut c5"><img class="size-medium wp-image-82" title="shortcut c5" src="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c5-300x113.jpg" alt="Shortcut properties" width="300" height="113" /></a><p class="wp-caption-text">Shortcut properties</p></div>
<p>We can set the Fonts of the Command prompt.</p>
<div id="attachment_83" class="wp-caption aligncenter" style="width: 223px"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c6.jpg" rel="lightbox[65]" title="shortcut properties c6"><img class="size-medium wp-image-83" title="shortcut properties c6" src="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c6-213x300.jpg" alt="Shortcut properties." width="213" height="300" /></a><p class="wp-caption-text">Shortcut properties.</p></div>
<p>We can set the color of the command prompt. like BACKGROUND, FOREGROUND.</p>
<div id="attachment_84" class="wp-caption aligncenter" style="width: 223px"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c7.jpg" rel="lightbox[65]" title="shortcut properties c7"><img class="size-medium wp-image-84" title="shortcut properties c7" src="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c7-213x300.jpg" alt="Shortcut properties " width="213" height="300" /></a><p class="wp-caption-text">Shortcut properties </p></div>
<p>We can even set the buffer and the screen layout of the shell window.</p>
<div id="attachment_85" class="wp-caption aligncenter" style="width: 223px"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c8.jpg" rel="lightbox[65]" title="shorcut properties c8"><img class="size-medium wp-image-85" title="shorcut properties c8" src="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c8-213x300.jpg" alt="Shorcut properties" width="213" height="300" /></a><p class="wp-caption-text">Shortcut properties</p></div>
<p>Example.</p>
<div id="attachment_86" class="wp-caption aligncenter" style="width: 310px"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c9.jpg" rel="lightbox[65]" title="command promptc9"><img class="size-medium wp-image-86" title="command promptc9" src="http://shishirsharma.com/wp/wp-content/uploads/2008/08/c9-300x158.jpg" alt="Costomized command prompt" width="300" height="158" /></a><p class="wp-caption-text">Customized command prompt</p></div>
<p>Now you are ready to enjoy this very good feature.</p>
<blockquote><p>I recommend you to keep all these files in one folder say with name config-all and with attribute as hidden.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.shishirsharma.com/2008/08/03/customizing-command-prompt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

