<?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>Swaroop C H - India, Startup, Technology, Life Skills &#187; Perl</title>
	<atom:link href="http://www.swaroopch.com/blog/category/tech/perl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.swaroopch.com</link>
	<description>Conning people into thinking I&#039;m intelligent. Since 1982.</description>
	<lastBuildDate>Sat, 13 Mar 2010 03:46:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Future Adobeans Needed</title>
		<link>http://www.swaroopch.com/blog/future-adobeans-needed/</link>
		<comments>http://www.swaroopch.com/blog/future-adobeans-needed/#comments</comments>
		<pubDate>Thu, 04 Jan 2007 11:43:20 +0000</pubDate>
		<dc:creator>Swaroop</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.swaroopch.info/archives/2007/01/04/future-adobeans-needed/</guid>
		<description><![CDATA[Quick note:


Adobe needs some Perl developers urgently.
Also, proficient developers with 2+ years (upto 15&#8230; but 15+ is also good&#8230;) experience needed.


If you&#8217;re interested, shoot me a mail.


Update : The above two requirements are separate.
]]></description>
			<content:encoded><![CDATA[<p>Quick note:</p>

<ul>
<li>Adobe needs some Perl developers urgently.</li>
<li>Also, proficient developers with 2+ years (upto 15&#8230; but 15+ is also good&#8230;) experience needed.</li>
</ul>

<p>If you&#8217;re interested, <a href="http://www.swaroopch.info/contact/">shoot me a mail</a>.</p>

<p><br />
<strong>Update</strong> : The above two requirements are separate.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swaroopch.com/blog/future-adobeans-needed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>check_gmail</title>
		<link>http://www.swaroopch.com/blog/check_gmail/</link>
		<comments>http://www.swaroopch.com/blog/check_gmail/#comments</comments>
		<pubDate>Mon, 31 Jul 2006 05:30:33 +0000</pubDate>
		<dc:creator>Swaroop</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.swaroopch.info/archives/2006/07/31/check_gmail/</guid>
		<description><![CDATA[I&#8217;ts amazing what you can whip up in just 15 minutes using CPAN (including reading the documentation).



!/usr/bin/env perl

use warnings;
use strict;

=head1 INTRODUCTION

Checks if there are new unread messages in your GMail Inbox.

=head1 USAGE

$ perl check_gmail.pl
1       Swaroop C H     Looks like check_gmail.pl works


=cut

######## Configuration

Change this to your [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ts amazing what you can whip up in just 15 minutes using <a href="http://search.cpan.org/">CPAN</a> (including reading the documentation).</p>

<p><pre style="font-size : smaller;"></p>

<h1>!/usr/bin/env perl</h1>

<p>use warnings;
use strict;</p>

<p>=head1 INTRODUCTION</p>

<p>Checks if there are new unread messages in your GMail Inbox.</p>

<p>=head1 USAGE</p>

<pre><code>$ perl check_gmail.pl
1       Swaroop C H     Looks like check_gmail.pl works
</code></pre>

<p>=cut</p>

<h6>######## Configuration</h6>

<h1>Change this to your correct username.</h1>

<p>use constant GMAIL_USERNAME => "username";</p>

<h1>Change this to your correct password.</h1>

<p>use constant GMAIL_PASSWORD => "password";</p>

<h6>#### Don't change anything below this.</h6>

<p>use LWP::UserAgent;
use XML::Atom::Feed;</p>

<p>my $fetcher = LWP::UserAgent->new();
$fetcher->agent("check_gmail.pl/0.01");</p>

<p>my $request = HTTP::Request->new(
    'GET'   => "https://mail.google.com/gmail/feed/atom",
);
$request->authorization_basic(GMAIL_USERNAME, GMAIL_PASSWORD);</p>

<p>my $response = $fetcher->request($request);</p>

<p>if (! $response->is_success())
{
    die("Unsuccessful in trying to talk to GMail");
}</p>

<p>my $content = $response->content;
my $feed = XML::Atom::Feed->new(\$content);
my @new_messages = $feed->entries();</p>

<p>my $i = 1;
foreach my $message(@new_messages)
{
    print join("\t", $i, $message->author->name,
                    $message->title), "\n";
    $i++;
}</p>

<h1>The End</h1>

<p></pre></p>

<p><br />
<br /></p>

<p><em>Update</em> : Baishampayan Ghose quickly jotted down a <a href="http://g33k.wordpress.com/2006/07/31/check-gmail-the-python-way/">Python version of this script</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swaroopch.com/blog/check_gmail/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>map(&#8217;perl&#8217;, &#8216;india&#8217;)</title>
		<link>http://www.swaroopch.com/blog/map-perl-india/</link>
		<comments>http://www.swaroopch.com/blog/map-perl-india/#comments</comments>
		<pubDate>Sun, 16 Jul 2006 06:49:29 +0000</pubDate>
		<dc:creator>Swaroop</dc:creator>
				<category><![CDATA[India]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.swaroopch.info/archives/2006/07/16/mapperl-india/</guid>
		<description><![CDATA[From the latest Perl.com newsletter* :



Did you know that the country with the second-largest number of Perl.com
readers is India?  That&#8217;s right!  Greetings to everyone on the
subcontinent; tell your friends about us.










It&#8217;s ironic that an O&#8217;Reilly site&#8217;s newsletter is not archived anywhere on the web.

]]></description>
			<content:encoded><![CDATA[<p>From the latest Perl.com newsletter* :</p>

<blockquote>

Did you know that the country with the second-largest number of Perl.com
readers is India?  That&#8217;s right!  Greetings to everyone on the
subcontinent; tell your friends about us.

</blockquote>

<p><br />
<br />
<br /></p>

<hr />

<ul>
<li>It&#8217;s ironic that an O&#8217;Reilly site&#8217;s newsletter is not archived anywhere on the web.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.swaroopch.com/blog/map-perl-india/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
