<?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; Tutorial</title>
	<atom:link href="http://www.shishirsharma.com/category/tutorial/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>Power Programming with Tags</title>
		<link>http://www.shishirsharma.com/2011/08/24/power-programming-with-tags/</link>
		<comments>http://www.shishirsharma.com/2011/08/24/power-programming-with-tags/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 12:10:10 +0000</pubDate>
		<dc:creator>Shishir Sharma 'criss'</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[CTags]]></category>
		<category><![CDATA[Source navigation]]></category>
		<category><![CDATA[TextMate]]></category>
		<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://shishirsharma.com/?p=1024</guid>
		<description><![CDATA[Source tagging is very powerful source code navigation system, it beats any state of the art IDE. If you are using Emacs, Vim and TextMate then you can use source tagging for navigation. Here are the few simple steps to &#8230; <a href="http://www.shishirsharma.com/2011/08/24/power-programming-with-tags/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Source tagging is very powerful source code navigation system, it beats any state of the art IDE. If you are using Emacs, Vim and TextMate then you can use source tagging for navigation. Here are the few simple steps to do it.</p>
<p>Step 1. Install ctags in your system. For mac</p>
<pre>$ sudo port install ctags</pre>
<p>Step 2. Create A tag file</p>
<pre>$ cd /Users/username/Workspace/rails-project
$ ctags -e -a --Ruby-kinds=+f -o TAGS -R app/ lib/ config/</pre>
<p>It is best to add this in crontab for this around 11:30am</p>
<p>Step 3.1 emacs</p>
<pre>M-. Follow a tag
M-* Jump back to source.</pre>
<p>Step 3.2 vim<br />
just add this in your ~/.vimrc</p>
<pre>set tags=TAGS;/</pre>
<p>Once this is done you can navigate to source of tag by using.</p>
<pre>C-] - go to definition
C-T - Jump back from the definition.
C-W C-] - Open the definition in a horizontal split</pre>
<p>Hope you will be able to use this awesome feature.<br />
<cite>C is ctrl<br />
M is Meta/Alt/Ecs</cite></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shishirsharma.com/2011/08/24/power-programming-with-tags/feed/</wfw:commentRss>
		<slash:comments>0</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>मौकों</title>
		<link>http://www.shishirsharma.com/2009/02/13/moukon/</link>
		<comments>http://www.shishirsharma.com/2009/02/13/moukon/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 06:32:15 +0000</pubDate>
		<dc:creator>Shishir Sharma 'criss'</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[occasion]]></category>

		<guid isPermaLink="false">http://shishirsharma.com/2009/02/13/%e0%a4%ae%e0%a5%8c%e0%a4%95%e0%a5%8b/</guid>
		<description><![CDATA[मौकों मैं शिरकत ना होती, नज़रों मैं नज़ारे ना होते &#124; जो हम ना होते इस दुनिया में, इन हुस्न वालों के गुज़रे ना होते &#124;&#124; &#8211; शिशिर शर्मा &#8216;क्रिस&#8217;(1) मैं चाहता था की मैं हिंदी मैं बहुत कुछ लिखूं, &#8230; <a href="http://www.shishirsharma.com/2009/02/13/moukon/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>मौकों मैं शिरकत ना होती, नज़रों मैं नज़ारे ना होते |<br />
जो हम ना होते इस दुनिया में, इन हुस्न वालों के गुज़रे ना होते ||<br />
&#8211; शिशिर शर्मा &#8216;क्रिस&#8217;<sup>(<a href="http://www.shishirsharma.com/2009/02/13/moukon/#footnote_0_384" id="identifier_0_384" class="footnote-link footnote-identifier-link" title="Shishir Sharma &amp;#8216;criss&amp;#8217;">1</a>)</sup></p>
<p>मैं चाहता था की मैं हिंदी मैं बहुत कुछ लिखूं, पर मैं हाल फिलहाल तो कुछ नहीं लिख पा रहा | पर हो सकता है मैं कुछ समय निकाल कर हिंदी मैं और भी कुछ लिखूं | तब तक के लिए अलविदा |</p>
<ol class="footnotes"><li id="footnote_0_384" class="footnote">Shishir Sharma &#8216;criss&#8217;</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.shishirsharma.com/2009/02/13/moukon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows GUI example code</title>
		<link>http://www.shishirsharma.com/2008/07/31/windows-gui-example-code/</link>
		<comments>http://www.shishirsharma.com/2008/07/31/windows-gui-example-code/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 03:06:19 +0000</pubDate>
		<dc:creator>Shishir Sharma 'criss'</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[GDI]]></category>
		<category><![CDATA[windows gui]]></category>
		<category><![CDATA[windows programming]]></category>

		<guid isPermaLink="false">http://shishirsharma.com/wp/?p=39</guid>
		<description><![CDATA[Windows GUI programming code with GDI. <a href="http://www.shishirsharma.com/2008/07/31/windows-gui-example-code/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Windows GUI example code. To download the Full code in one file click <a href="http://shishirsharma.com/files/winexample.cpp" target="_blank">here</a>.<br />
<span id="more-39"></span></p>
<pre lang="cpp" lineno=1>#include < windows.h >

/*  Declare Windows procedure  */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);

/*  Make the class name into a global variable  */
char szClassName[ ] = "WindowsExApp";

int WINAPI WinMain (HINSTANCE hThisInstance,
                    HINSTANCE hPrevInstance,
                    LPSTR lpszArgument,
                    int nFunsterStil)

{
    HWND hwnd;               /* This is the handle for our window */
    MSG messages;            /* Here messages to the application are saved */
    WNDCLASSEX wincl;        /* Data structure for the windowclass */

    /* The Window structure */
    wincl.hInstance = hThisInstance;
    wincl.lpszClassName = szClassName;
    wincl.lpfnWndProc = WindowProcedure;      /* This function is called by windows */
    wincl.style = CS_DBLCLKS;                 /* Catch double-clicks */
    wincl.cbSize = sizeof (WNDCLASSEX);

    /* Use default icon and mouse-pointer */
    wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
    wincl.lpszMenuName = NULL;                 /* No menu */
    wincl.cbClsExtra = 0;                      /* No extra bytes after the window class */
    wincl.cbWndExtra = 0;                      /* structure or the window instance */
    /* Use Windows's default color as the background of the window */
    wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;

    /* Register the window class, and if it fails quit the program */
    if (!RegisterClassEx (&#038;wincl))
        return 0;

    /* The class is registered, let's create the program*/
    hwnd = CreateWindowEx (
           0,                   /* Extended possibilites for variation */
           szClassName,         /* Classname */
           "Windows App",       /* Title Text */
           WS_OVERLAPPEDWINDOW, /* default window */
           CW_USEDEFAULT,       /* Windows decides the position */
           CW_USEDEFAULT,       /* where the window ends up on the screen */
           544,                 /* The programs width */
           375,                 /* and height in pixels */
           HWND_DESKTOP,        /* The window is a child-window to desktop */
           NULL,                /* No menu */
           hThisInstance,       /* Program Instance handler */
           NULL                 /* No Window Creation data */
           );

    /* Make the window visible on the screen */
    ShowWindow (hwnd, nFunsterStil);

    /* Run the message loop. It will run until GetMessage() returns 0 */
    while (GetMessage (&#038;messages, NULL, 0, 0))
    {
        /* Translate virtual-key messages into character messages */
        TranslateMessage(&#038;messages);
        /* Send message to WindowProcedure */
        DispatchMessage(&#038;messages);
    }

    /* The program return-value is 0 - The value that PostQuitMessage() gave */
    return messages.wParam;
}

/*  This function is called by the Windows function DispatchMessage()  */

LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
    HDC hDC;
    PAINTSTRUCT Ps;

    switch (message)                  /* handle the messages */
    {
        case WM_PAINT:
            hDC = BeginPaint(hwnd, &#038;Ps);
            MoveToEx(hDC, 160, 120, NULL);
            LineTo(hDC, 364, 222);
            MoveToEx(hDC, 60, 20, NULL);
            LineTo(hDC, 60, 122);
            LineTo(hDC, 264, 122);
            LineTo(hDC, 60, 20);
            EndPaint(hwnd, &#038;Ps);
            break;
        case WM_DESTROY:
            PostQuitMessage (0);       /* send a WM_QUIT to the message queue */
            break;
        default:                      /* for messages that we don't deal with */
            return DefWindowProc (hwnd, message, wParam, lParam);
    }

    return 0;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.shishirsharma.com/2008/07/31/windows-gui-example-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Dev-C++ 4.9.9.2</title>
		<link>http://www.shishirsharma.com/2008/07/29/install-dev-c-4992/</link>
		<comments>http://www.shishirsharma.com/2008/07/29/install-dev-c-4992/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 09:05:28 +0000</pubDate>
		<dc:creator>Shishir Sharma 'criss'</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Dev-C++]]></category>
		<category><![CDATA[Install]]></category>

		<guid isPermaLink="false">http://shishirsharma.com/wp/?p=29</guid>
		<description><![CDATA[How to install Dev-Cpp <a href="http://www.shishirsharma.com/2008/07/29/install-dev-c-4992/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It usually involves next, next. Click on the installer.</p>
<p style="text-align: center;"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/07/1.jpg" rel="lightbox[29]" title="1"><img class="aligncenter size-medium wp-image-15" title="1" src="http://shishirsharma.com/wp/wp-content/uploads/2008/07/1-300x56.jpg" alt="dev-cpp install 1" width="300" height="56" /></a></p>
<p>Click on <span style="color: #ff6600;">OK</span></p>
<p style="text-align: center;"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/07/2.jpg" rel="lightbox[29]" title="2"><img class="aligncenter" title="2" src="http://shishirsharma.com/wp/wp-content/uploads/2008/07/2.jpg" alt="dev-cpp install 2" width="293" height="160" /></a></p>
<p><span id="more-29"></span><br />
Select your language, in my case English. Now Click on <span style="color: #ff6600;">OK</span>.</p>
<p style="text-align: center;"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/07/3.jpg" rel="lightbox[29]" title="3"><img title="3" src="http://shishirsharma.com/wp/wp-content/uploads/2008/07/3-300x234.jpg" alt="dev-cpp install 3" width="300" height="234" /></a></p>
<p style="text-align: left;">Click on <span style="color: #ff6600;">I Agree</span>.</p>
<p style="text-align: center;"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/07/4.jpg" rel="lightbox[29]" title="4"><img class="aligncenter" title="4" src="http://shishirsharma.com/wp/wp-content/uploads/2008/07/4-300x234.jpg" alt="dev-cpp install 4" width="300" height="234" /></a></p>
<p style="text-align: left;">Select the components you need. If you don&#8217;t understand what it is leave it as it is. Click on <span style="color: #ff6600;">Next &gt;</span></p>
<p style="text-align: center;"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/07/5.jpg" rel="lightbox[29]" title="5"><img class="aligncenter" title="5" src="http://shishirsharma.com/wp/wp-content/uploads/2008/07/5-300x234.jpg" alt="dev-cpp install 5" width="300" height="234" /></a></p>
<p style="text-align: left;">Select the location of installation of your copy of Dev-C++. If you don&#8217;t understand this leave it as it is.</p>
<p style="text-align: center;"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/07/6.jpg" rel="lightbox[29]" title="6"><img class="aligncenter" title="6" src="http://shishirsharma.com/wp/wp-content/uploads/2008/07/6-300x234.jpg" alt="dev-cpp install 6" width="300" height="234" /></a></p>
<p style="text-align: left;">Click <span style="color: #ff6600;">Yes </span>or <span style="color: #ff6600;">No</span></p>
<p style="text-align: center;"><a href="http://shishirsharma.com/wp/wp-content/uploads/2008/07/7.jpg" rel="lightbox[29]" title="7"><img class="aligncenter" title="7" src="http://shishirsharma.com/wp/wp-content/uploads/2008/07/7-300x234.jpg" alt="dev-cpp install 7" width="300" height="234" /></a></p>
<p style="text-align: left;">Click <span style="color: #ff6600;">Finish</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shishirsharma.com/2008/07/29/install-dev-c-4992/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

