<?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>r4g54g4r's h4ckl0g</title>
	<atom:link href="http://ragsagar.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ragsagar.wordpress.com</link>
	<description>an0th3r h4ck3r's w3blog</description>
	<lastBuildDate>Thu, 26 Nov 2009 13:34:23 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ragsagar.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/07dee27bfdce419f802e4d21f1903fc5?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>r4g54g4r's h4ckl0g</title>
		<link>http://ragsagar.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ragsagar.wordpress.com/osd.xml" title="r4g54g4r&#8217;s h4ckl0g" />
		<item>
		<title>Linked list implementation in C</title>
		<link>http://ragsagar.wordpress.com/2009/11/26/linked-list-implementation-in-c/</link>
		<comments>http://ragsagar.wordpress.com/2009/11/26/linked-list-implementation-in-c/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 13:16:09 +0000</pubDate>
		<dc:creator>Rag Sagar.V രാഗ് സാഗര്‍.വി</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[data structures]]></category>
		<category><![CDATA[linked list]]></category>

		<guid isPermaLink="false">http://ragsagar.wordpress.com/?p=152</guid>
		<description><![CDATA[Just thought of sharing the code i written to learn linked list implementation the day before my data structures model practical exam. 

/*
 *      linkedlist.c
 *
 *      Copyright 2009 Rag Sagar.V &#60;ragsagar@gmail.com&#62;
 *
 *      This program is free software; you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=152&subd=ragsagar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Just thought of sharing the code i written to learn linked list implementation the day before my data structures model practical exam. </p>
<pre class="brush: python;">
/*
 *      linkedlist.c
 *
 *      Copyright 2009 Rag Sagar.V &lt;ragsagar@gmail.com&gt;
 *
 *      This program is free software; you can redistribute it and/or modify
 *      it under the terms of the GNU General Public License as published by
 *      the Free Software Foundation; either version 2 of the License, or
 *      (at your option) any later version.
 *
 *      This program is distributed in the hope that it will be useful,
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *      GNU General Public License for more details.
 *
 *      You should have received a copy of the GNU General Public License
 *      along with this program; if not, write to the Free Software
 *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 *      MA 02110-1301, USA.
 */

#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;

typedef struct list
{
	int data;
	struct list *next;
}LIST;
LIST *ptr,*temp,*start=NULL;
void insert_after(int ,int );
void remove_item(int );
void display(void);
int count=0;
int main()
{
	int item,opt,dat;
	system(&quot;clear&quot;);
	ptr=NULL;
	/* printf(&quot;%d&quot;,sizeof(LIST)); */
	do
	{
		printf(&quot;\n########## MENU ##########\n&quot;);
		printf(&quot;1.Insert\n2.Remove\n3.Display\n4.Exit\n&quot;);
		printf(&quot;Enter your option : &quot;);
		scanf(&quot;%d&quot;,&amp;opt);
	 	switch(opt)
	 	{
	 		case 1:
	 		printf(&quot;Enter the data to insert &quot;);
	 		scanf(&quot;%d&quot;,&amp;item);
	 		if(count==0)
	 		{
	 			ptr = (LIST *)malloc(sizeof(LIST));
	 			ptr-&gt;next = NULL;
	 			ptr-&gt;data = item;
	 			start = ptr;
			}
			else
			{
				printf(&quot;Enter the item after which you have to insert new element : &quot;);
				scanf(&quot;%d&quot;,&amp;dat);
				insert_after(dat,item);
			}
			count++;
				break;
	 		case 2:
	 		if(count==0)
	 		{
	 			printf(&quot;\nList is empty\n&quot;); break;
			}
	 		printf(&quot;Enter the item to remove : &quot;);
	 		scanf(&quot;%d&quot;,&amp;item);
	 		remove_item(item);
	 		count--;
	 		break;
	 		case 3:
	 		if(count==0)
	 		{
	 			printf(&quot;\nList is empty\n&quot;);
	 			break;
	 		}
	 		else
	 		{
	 			printf(&quot;List elements are \n&quot;); display();
			}
			break;
	 		case 4: break;
		}
	}while(opt!=4);
	return 0;
}
void insert_after(int data, int item)
{
	LIST *tmp;
	temp=(LIST *)malloc(sizeof(LIST));
	temp-&gt;data=item;
	ptr=start;

	while(ptr!=NULL)
	{
		if(ptr-&gt;data==data)
		{
			tmp=ptr-&gt;next;
			ptr-&gt;next=temp;
			temp-&gt;next=tmp;
			break;
		}
	ptr=ptr-&gt;next;
	}

}	

void remove_item(int item)
{
	ptr=start;
	if(ptr-&gt;data == item)
	{
		start = ptr-&gt;next;
		free(ptr);
	}
	while(ptr-&gt;next!=NULL)
	{
		if((ptr-&gt;next)-&gt;data==item)
		{
			temp=ptr-&gt;next;
			ptr-&gt;next=(ptr-&gt;next)-&gt;next;
			free(temp);
			break;
		}
		ptr=ptr-&gt;next;
	}
}

void display()
{
	ptr = start;
	while(ptr!=NULL)
	{
		printf(&quot;%d -&gt; &quot;,ptr-&gt;data);
		ptr=ptr-&gt;next;
	}
}			
</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=152&subd=ragsagar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ragsagar.wordpress.com/2009/11/26/linked-list-implementation-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a7e8963f353728017ca6f72a2e5ee04?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ragsagar</media:title>
		</media:content>
	</item>
		<item>
		<title>Infix To Postfix conversion in python</title>
		<link>http://ragsagar.wordpress.com/2009/09/22/infix-to-postfix-conversion-in-python/</link>
		<comments>http://ragsagar.wordpress.com/2009/09/22/infix-to-postfix-conversion-in-python/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 17:04:29 +0000</pubDate>
		<dc:creator>Rag Sagar.V രാഗ് സാഗര്‍.വി</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[infix]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[stack]]></category>

		<guid isPermaLink="false">http://ragsagar.wordpress.com/?p=141</guid>
		<description><![CDATA[About Infix and Postfix
In an expression if the operators are placed between the operands, it is known as infix notation ( eg A+B) . On the other hand if the operators are placed after the operands then the expression is in postfix notation .( eg AB+)
Infix Notation                            Postfix Notation
(A-C)*B                                              [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=141&subd=ragsagar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h3><strong>About Infix and Postfix</strong></h3>
<p>In an expression if the operators are placed between the operands, it is known as infix notation ( eg A+B) . On the other hand if the operators are placed after the operands then the expression is in postfix notation .( eg AB+)</p>
<h4><strong>Infix Notation                            Postfix Notation</strong></h4>
<p><em>(A-C)*B                                                   AC-B*</em></p>
<p><em>A+(B*C)                                                  ABC*+</em></p>
<p><em>(A+B)/(C-D)                                            AB+CD-/</em></p>
<h3><strong>Code</strong></h3>
<pre class="brush: python;">
#!/usr/bin/python
#http://ragsagar.wordpress.com

postfix = []
temp = []
operator = -10
operand = -20
leftparentheses = -30
rightparentheses = -40
empty = -50

def precedence(s):
	if s is '(':
		return 0
	elif s is '+' or '-':
		return 1
	elif s is '*' or '/' or '%':
		return 2
	else:
		return 99 

def typeof(s):
	if s is '(':
		return leftparentheses
	elif s is ')':
		return rightparentheses
	elif s is '+' or s is '-' or s is '*' or s is '%' or s is '/':
		return operator
	elif s is ' ':
		return empty
	else :
		return operand							

infix = raw_input(&quot;Enter the infix notation : &quot;)
for i in infix :
	type = typeof(i)
	if type is leftparentheses :
		temp.append(i)
	elif type is rightparentheses :
		next = temp.pop()
		while next is not '(':
			postfix.append(next)
			next = temp.pop()
	elif type is operand:
		postfix.append(i)
	elif type is operator:
		p = precedence(i)
		while len(temp) is not 0 and p &lt;= precedence(temp[-1]) :
			postfix.append(temp.pop())
		temp.append(i)
	elif type is empty:
		continue 

while len(temp) &gt; 0 :
	postfix.append(temp.pop())

print &quot;It's postfix notation is &quot;,''.join(postfix)		
</pre>
<h3><strong>Code Explanation</strong></h3>
<p>Above code converts infix notation in variable <strong>infix</strong> into postfix notation and stores in <strong>postfix</strong> list. This algorithm makes use of list <strong>temp </strong>to hold operators and left parantheses in the infix notation. The <strong>postfix</strong> list will be constructed from left to right using operands from <strong>infix</strong> and operators which are removed from <strong>temp</strong>.</p>
<div id="attachment_149" class="wp-caption alignnone" style="width: 510px"><a href="http://ragsagar.files.wordpress.com/2009/09/infixterminal1.png"><img src="http://ragsagar.files.wordpress.com/2009/09/infixterminal1.png?w=500&#038;h=358" alt="output" title="infixterminal1" width="500" height="358" class="size-full wp-image-149" /></a><p class="wp-caption-text">output</p></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=141&subd=ragsagar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ragsagar.wordpress.com/2009/09/22/infix-to-postfix-conversion-in-python/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a7e8963f353728017ca6f72a2e5ee04?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ragsagar</media:title>
		</media:content>

		<media:content url="http://ragsagar.files.wordpress.com/2009/09/infixterminal1.png" medium="image">
			<media:title type="html">infixterminal1</media:title>
		</media:content>
	</item>
		<item>
		<title>How to make IRC bot in python? &#8211;  my first post in Tuxopia</title>
		<link>http://ragsagar.wordpress.com/2009/09/01/how-to-make-irc-bot-in-python-my-first-post-in-tuxopia/</link>
		<comments>http://ragsagar.wordpress.com/2009/09/01/how-to-make-irc-bot-in-python-my-first-post-in-tuxopia/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 06:58:29 +0000</pubDate>
		<dc:creator>Rag Sagar.V രാഗ് സാഗര്‍.വി</dc:creator>
				<category><![CDATA[Howtos]]></category>
		<category><![CDATA[bot]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[socket]]></category>

		<guid isPermaLink="false">http://ragsagar.wordpress.com/?p=136</guid>
		<description><![CDATA[My first post in tuxopia is a how-to for writing basic IRC bot in python.Thought of sharing the link here   
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=136&subd=ragsagar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>My first post in <a href="http://tuxopia.net">tuxopia</a> is a how-to for writing basic IRC bot in python.Thought of sharing the link <a href="http://www.tuxopia.net/making_an_IRC_bot_in_python">here </a> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/136/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=136&subd=ragsagar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ragsagar.wordpress.com/2009/09/01/how-to-make-irc-bot-in-python-my-first-post-in-tuxopia/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a7e8963f353728017ca6f72a2e5ee04?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ragsagar</media:title>
		</media:content>
	</item>
		<item>
		<title>Weather Info Utility in Python</title>
		<link>http://ragsagar.wordpress.com/2009/07/21/weather-info-utility-in-python/</link>
		<comments>http://ragsagar.wordpress.com/2009/07/21/weather-info-utility-in-python/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 16:07:14 +0000</pubDate>
		<dc:creator>Rag Sagar.V രാഗ് സാഗര്‍.വി</dc:creator>
				<category><![CDATA[My_Works]]></category>
		<category><![CDATA[google api]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[urllib2]]></category>
		<category><![CDATA[weather]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://ragsagar.wordpress.com/?p=118</guid>
		<description><![CDATA[Here is a script to provide weather information of a city with the help of google api.

#!/usr/bin/python
#Rag Sagar &#60;ragsagar @gmail.com&#62;
#Free to copy, modify and redistribute

import sys
from urllib2 import urlopen, URLError
from xml.sax import make_parser
from xml.sax.handler import ContentHandler

class WeatherFinder(ContentHandler):
	&#34;&#34;&#34;the handler class&#34;&#34;&#34;
	def __init__(self):
		self.weather_list = []
		self.go_on = False

	def startElement(self, tag, attrs):
		&#34;handles the opening tags&#34;
		if tag == 'current_conditions':
			self.go_on = True
		if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=118&subd=ragsagar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h5>Here is a script to provide weather information of a city with the help of google api.</h5>
<pre class="brush: python;">
#!/usr/bin/python
#Rag Sagar &lt;ragsagar @gmail.com&gt;
#Free to copy, modify and redistribute

import sys
from urllib2 import urlopen, URLError
from xml.sax import make_parser
from xml.sax.handler import ContentHandler

class WeatherFinder(ContentHandler):
	&quot;&quot;&quot;the handler class&quot;&quot;&quot;
	def __init__(self):
		self.weather_list = []
		self.go_on = False

	def startElement(self, tag, attrs):
		&quot;handles the opening tags&quot;
		if tag == 'current_conditions':
			self.go_on = True
		if self.go_on : # so that only values inside current_conditions tag is appended
			if tag == 'condition' :
				self.weather_list.append('Condition: '+attrs.get('data',&quot;&quot;))
			elif tag == 'humidity' :
				self.weather_list.append(attrs.get('data',&quot;&quot;))
			elif tag == 'temp_c' :
				self.weather_list.append('Temperature:'+attrs.get('data',&quot;&quot;)+'C')
			elif tag == 'wind_condition' :
				self.weather_list.append(attrs.get('data',&quot;&quot;))
		return

	def endElement(self, tag):
		&quot;handles closing tags&quot;
		if tag == 'current_conditions':
			self.go_on = False

if len(sys.argv) is not 2 :
	print &quot;Syntax : &quot;,sys.argv[0],&quot; &lt;city&gt; \n&quot;
	sys.exit(1)
else :
	city = sys.argv[1]
	url = 'http://www.google.com/ig/api?weather='+city
	parser = make_parser()
	obj = WeatherFinder()
	parser.setContentHandler(obj)
	try :
		parser.parse(urlopen(url))
	except URLError:
		print &quot;\n\33[33m Unable to fetch data..\33[0m\n&quot;
		sys.exit(1)
	if obj.weather_list == [] :
		print &quot;\n\33[33m Invalid city name, Try another.. \33[0m\n &quot;
	else :
		print &quot;\33[33mWeather Conditions of&quot;,city,&quot;\33[36m&quot;
		for i in obj.weather_list:
			print i
		print &quot;\33[0m&quot;
</pre>
<p>Checkout its screenshot  </p>
<div id="attachment_120" class="wp-caption alignnone" style="width: 509px"><img src="http://ragsagar.files.wordpress.com/2009/07/screenshot_weather.png?w=499&#038;h=344" alt="Weather utility " title="Weather Utility" width="499" height="344" class="size-full wp-image-120" /><p class="wp-caption-text">Weather utility </p></div>
<p>Thanks to <a href="http://linrdx.blogspot.com">rohit</a><br />
</city></ragsagar></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=118&subd=ragsagar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ragsagar.wordpress.com/2009/07/21/weather-info-utility-in-python/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a7e8963f353728017ca6f72a2e5ee04?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ragsagar</media:title>
		</media:content>

		<media:content url="http://ragsagar.files.wordpress.com/2009/07/screenshot_weather.png" medium="image">
			<media:title type="html">Weather Utility</media:title>
		</media:content>
	</item>
		<item>
		<title>Shell script to count unique words in a file and print them in alphabetical order</title>
		<link>http://ragsagar.wordpress.com/2009/05/30/shell-script-to-count-unique-words-in-a-file-and-print-them-in-alphabetical-order/</link>
		<comments>http://ragsagar.wordpress.com/2009/05/30/shell-script-to-count-unique-words-in-a-file-and-print-them-in-alphabetical-order/#comments</comments>
		<pubDate>Sat, 30 May 2009 13:30:49 +0000</pubDate>
		<dc:creator>Rag Sagar.V രാഗ് സാഗര്‍.വി</dc:creator>
				<category><![CDATA[Shell Scripts]]></category>
		<category><![CDATA[assignment]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[IGNOU]]></category>
		<category><![CDATA[shell script]]></category>
		<category><![CDATA[unique words]]></category>
		<category><![CDATA[unique words count]]></category>

		<guid isPermaLink="false">http://ragsagar.wordpress.com/?p=113</guid>
		<description><![CDATA[Iam back with another shell script written for my sis as part of her assignment. This time what i wanted to do is to count the unique words in a file and to print it in alphabetical order. For that i iterated through the words in the given file using for loop, filtered out the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=113&subd=ragsagar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Iam back with another shell script written for my sis as part of her assignment. This time what i wanted to do is to count the unique words in a file and to print it in alphabetical order. For that i iterated through the words in the given file using for loop, filtered out the unique words using sort -u and counted it using wc -l. </p>
<pre class="brush: bash;">
#!/usr/bin/bash
echo Enter the filename
read fn

for WORD in $(cat $fn)
do
	echo &quot;$WORD&quot;
done | sort -u | wc -l	

 for WORD in $(cat $fn)
 do
  echo &quot;$WORD &quot;
 done | sort -u
</pre>
<p>Hope this will help someone to do his/her assignment <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=113&subd=ragsagar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ragsagar.wordpress.com/2009/05/30/shell-script-to-count-unique-words-in-a-file-and-print-them-in-alphabetical-order/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a7e8963f353728017ca6f72a2e5ee04?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ragsagar</media:title>
		</media:content>
	</item>
		<item>
		<title>Shell Script to cipher a text file (caesar method)</title>
		<link>http://ragsagar.wordpress.com/2009/05/27/shell-script-to-cipher-a-text-file/</link>
		<comments>http://ragsagar.wordpress.com/2009/05/27/shell-script-to-cipher-a-text-file/#comments</comments>
		<pubDate>Wed, 27 May 2009 16:50:18 +0000</pubDate>
		<dc:creator>Rag Sagar.V രാഗ് സാഗര്‍.വി</dc:creator>
				<category><![CDATA[My_Works]]></category>
		<category><![CDATA[Shell Scripts]]></category>

		<guid isPermaLink="false">http://ragsagar.wordpress.com/?p=96</guid>
		<description><![CDATA[Ok here is a script to cipher text contents in a file. It will shift the letters to the fifth letter to its right, ie if a is the letter, it will change it to f.

echo Enter the filename
read fn

while read -n 1 letter
do
  case $letter in
    '')
    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=96&subd=ragsagar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Ok here is a script to cipher text contents in a file. It will shift the letters to the fifth letter to its right, ie if <strong>a</strong> is the letter, it will change it to <strong>f</strong>.</p>
<pre class="brush: bash;">
echo Enter the filename
read fn

while read -n 1 letter
do
  case $letter in
    '')
      echo
    ;;
    ' ')
      printf ' '
    ;;
	'.')
	  printf '.'
	;;
    *)
      asci=$(printf %d \'$letter)
      ((asci+=5))
      fwd_letter=$(printf &quot;\\$(printf &quot;%03o&quot; $asci)&quot;)
      printf &quot;$fwd_letter&quot;
    ;;
  esac
done &lt; $fn
</pre>
<p>You can decipher it by just replacing the <strong>+ in 18th line to <strong>-</strong><br />
Note : This is a assignment my sis got from IGNOU. I hope this will help someone to do his/her assignment <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=96&subd=ragsagar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ragsagar.wordpress.com/2009/05/27/shell-script-to-cipher-a-text-file/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a7e8963f353728017ca6f72a2e5ee04?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ragsagar</media:title>
		</media:content>
	</item>
		<item>
		<title>My h4ckb0x</title>
		<link>http://ragsagar.wordpress.com/2009/05/10/my-h4ckb0x/</link>
		<comments>http://ragsagar.wordpress.com/2009/05/10/my-h4ckb0x/#comments</comments>
		<pubDate>Sun, 10 May 2009 14:57:58 +0000</pubDate>
		<dc:creator>Rag Sagar.V രാഗ് സാഗര്‍.വി</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ragsagar.wordpress.com/?p=93</guid>
		<description><![CDATA[       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=93&subd=ragsagar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div id="attachment_92" class="wp-caption alignnone" style="width: 510px"><img src="http://ragsagar.files.wordpress.com/2009/05/image285.jpg?w=500&#038;h=666" alt="My Intel P4 2.67 ghz  PC with  1gb + 256mb ram " title="My h4ckb0x" width="500" height="666" class="size-full wp-image-92" /><p class="wp-caption-text">My Intel P4 2.67 ghz  PC with  1gb + 256mb ram </p></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=93&subd=ragsagar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ragsagar.wordpress.com/2009/05/10/my-h4ckb0x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a7e8963f353728017ca6f72a2e5ee04?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ragsagar</media:title>
		</media:content>

		<media:content url="http://ragsagar.files.wordpress.com/2009/05/image285.jpg" medium="image">
			<media:title type="html">My h4ckb0x</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing and Setting up Swanalekha in Slackware</title>
		<link>http://ragsagar.wordpress.com/2009/03/24/installing-and-setting-up-swanalekha-in-slackware/</link>
		<comments>http://ragsagar.wordpress.com/2009/03/24/installing-and-setting-up-swanalekha-in-slackware/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 15:24:43 +0000</pubDate>
		<dc:creator>Rag Sagar.V രാഗ് സാഗര്‍.വി</dc:creator>
				<category><![CDATA[Howtos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[malayalam input]]></category>
		<category><![CDATA[malayalam typing]]></category>
		<category><![CDATA[Scim]]></category>
		<category><![CDATA[scim-ml]]></category>
		<category><![CDATA[slackware]]></category>
		<category><![CDATA[slackware binary package]]></category>
		<category><![CDATA[Swanalekha]]></category>
		<category><![CDATA[tgz]]></category>

		<guid isPermaLink="false">http://ragsagar.wordpress.com/?p=81</guid>
		<description><![CDATA[Earlier we saw how to setup swanalekha in gentoo! Now lets see how to setup the same in slackware. Now its pretty easy when compared to what we have done in gentoo.As gentoo dont have any native binary package we downloaded the source from here and installed it.This time no need to install from source [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=81&subd=ragsagar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>E</strong>arlier we saw how to setup<a href="http://ragsagar.wordpress.com/2008/11/20/setting-up-swanalekha-in-gentoo/"> swanalekha in gentoo!</a> Now lets see how to setup the same in slackware. Now its pretty easy when compared to what we have done in gentoo.As gentoo dont have any native binary package we downloaded the source from <a href="http://fci.wikia.com/wiki/SMC/Swanalekha">here</a> and installed it.This time no need to install from source as i made a slackware binary package for swanalekha which makes the installation a piece of cake <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
To install swanalekha, download the binary package from <a href="http://ragsagar.freehostia.com/swanalekha_0.3.1_2.tgz">here</a><br />
<code>$su<br />
#wget http://ragsagar.freehostia.com/swanalekha_0.3.1_2.tgz<br />
#installpkg swanalekha_0.3.1_2.tgz<br />
</code></p>
<p>Hey thats all. We installed swanalekha. Now start typing malayalam in your computer <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
For More Info on typing malayalam using swanalekha, go through <a href="http://ragsagar.wordpress.com/2008/11/20/setting-up-swanalekha-in-gentoo/">this</a> old post.<br />
 .<br />
PS: Make sure that you have <strong>scim</strong> already installed in your computer.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=81&subd=ragsagar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ragsagar.wordpress.com/2009/03/24/installing-and-setting-up-swanalekha-in-slackware/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a7e8963f353728017ca6f72a2e5ee04?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ragsagar</media:title>
		</media:content>
	</item>
		<item>
		<title>Script for appending Title of Song Playing in Rhythmbox as Status Message in Pidgin</title>
		<link>http://ragsagar.wordpress.com/2009/03/10/script-for-appending-song-titile-of-song-playing-in-rhythmbox-as-status-message-in-pidgin/</link>
		<comments>http://ragsagar.wordpress.com/2009/03/10/script-for-appending-song-titile-of-song-playing-in-rhythmbox-as-status-message-in-pidgin/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 17:18:48 +0000</pubDate>
		<dc:creator>Rag Sagar.V രാഗ് സാഗര്‍.വി</dc:creator>
				<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Current Track]]></category>
		<category><![CDATA[dbus]]></category>
		<category><![CDATA[Now Playing]]></category>
		<category><![CDATA[Pidgin]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[rhythmbox]]></category>
		<category><![CDATA[status updating]]></category>

		<guid isPermaLink="false">http://ragsagar.wordpress.com/?p=60</guid>
		<description><![CDATA[Yesterday i installed debian lenny ( thanks to ashik salahudeen who sent me those DVDs for free    ). 
I  was not ready to waste another holiday.So started thinking of doing something and got landed in my usual plugin stuff.This time not audacious,its Rhythmbox.So downloaded my pidgin-audacious now playing code and rewritten [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=60&subd=ragsagar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yesterday i installed debian lenny ( thanks to <a href="http://aashiks.in">ashik salahudeen</a> who sent me those DVDs for free <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   ). </p>
<p>I  was not ready to waste another holiday.So started thinking of doing something and got landed in my usual plugin stuff.This time not audacious,its Rhythmbox.So downloaded my pidgin-audacious now playing code and rewritten it to access rhythmbox methods.This time there is a lot of changes in the code.This code is not going to use &#8216;watch&#8217; command to execute it after a fixed period and another interesting feature is a format specifier kinda thing. ie Just write what you want  in the status message and place a format specifier where you want to see the song title , album title and artist.<br />
Format Specifiers are</p>
<blockquote><p><strong>%rbs   &#8212;&#8212;&#8212;&#8212;&#8211;&gt;  for displaying song title<br />
%rbt    &#8212;&#8212;&#8212;&#8212;&#8211;&gt;  for displaying album title<br />
%rba   &#8212;&#8212;&#8212;&#8212;&#8211;&gt;  for displaying artist name</strong></p></blockquote>
<p>Script will append a seperate string containg songtitle and albumtitle if no format specifier is there in the status message at the time of running the script.</p>
<p>An example for appending status message using format specifier kinda thing:</p>
<blockquote><p><strong>%rbs in %rbt by %rba</strong></p></blockquote>
<div id="attachment_64" class="wp-caption alignnone" style="width: 259px"><img src="http://ragsagar.files.wordpress.com/2009/03/pidb4run3.png?w=249&#038;h=419" alt="pidgin-after-appending-formatspecifier kinda thing in status message" title="pidgin-before-running-script" width="249" height="419" class="size-full wp-image-64" /><p class="wp-caption-text">pidgin after appending format specifier kinda thing in status message</p></div>
<p>Now download the script and run it using these commands</p>
<blockquote><p><strong>$wget http://ragsagar.freehostia.com/pidgin-rb.py<br />
$python pidgin-rb.py</strong></p></blockquote>
<div id="attachment_73" class="wp-caption alignnone" style="width: 510px"><img src="http://ragsagar.files.wordpress.com/2009/03/terminal.png?w=500&#038;h=312" alt="Downloading and running the script" title="Terminal" width="500" height="312" class="size-full wp-image-73" /><p class="wp-caption-text">Downloading and running the script</p></div>
<div id="attachment_65" class="wp-caption alignnone" style="width: 259px"><img src="http://ragsagar.files.wordpress.com/2009/03/pidafterrun.png?w=249&#038;h=419" alt="pidgin after running the script" title="pidgin-after-running-script" width="249" height="419" class="size-full wp-image-65" /><p class="wp-caption-text">pidgin after running the script</p></div>
<p><strong>PS : Run the script only after appending the format specifier kinda thing. You can run the script without appending anything, In this case the script will append status message like &#8221; listening to [songname]  in  [albumname] &#8220;</strong></p>
<blockquote><p>
<strong><a href="http://ragsagar.freehostia.com/pidgin-rb.py">Download Script</a></strong>
</p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=60&subd=ragsagar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ragsagar.wordpress.com/2009/03/10/script-for-appending-song-titile-of-song-playing-in-rhythmbox-as-status-message-in-pidgin/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a7e8963f353728017ca6f72a2e5ee04?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ragsagar</media:title>
		</media:content>

		<media:content url="http://ragsagar.files.wordpress.com/2009/03/pidb4run3.png" medium="image">
			<media:title type="html">pidgin-before-running-script</media:title>
		</media:content>

		<media:content url="http://ragsagar.files.wordpress.com/2009/03/terminal.png" medium="image">
			<media:title type="html">Terminal</media:title>
		</media:content>

		<media:content url="http://ragsagar.files.wordpress.com/2009/03/pidafterrun.png" medium="image">
			<media:title type="html">pidgin-after-running-script</media:title>
		</media:content>
	</item>
		<item>
		<title>A Not-So-Useful Script For Encoding &amp; Decoding String!</title>
		<link>http://ragsagar.wordpress.com/2009/02/24/a-not-so-useful-script-for-encoding-decoding-string/</link>
		<comments>http://ragsagar.wordpress.com/2009/02/24/a-not-so-useful-script-for-encoding-decoding-string/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 15:09:11 +0000</pubDate>
		<dc:creator>Rag Sagar.V രാഗ് സാഗര്‍.വി</dc:creator>
				<category><![CDATA[My_Works]]></category>

		<guid isPermaLink="false">http://ragsagar.wordpress.com/?p=56</guid>
		<description><![CDATA[Here is small simple script in python to encode and decode string using base64.
~Happy Hacking
Click Here To Download the Script
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=56&subd=ragsagar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here is small simple script in python to encode and decode string using base64.</p>
<p>~Happy Hacking</p>
<p><a title="download python script to encode and decode" href="http://ragsagar.freehostia.com/encoder.py">Click Here To Download the Script</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&blog=4629970&post=56&subd=ragsagar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ragsagar.wordpress.com/2009/02/24/a-not-so-useful-script-for-encoding-decoding-string/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a7e8963f353728017ca6f72a2e5ee04?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ragsagar</media:title>
		</media:content>
	</item>
	</channel>
</rss>