<?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>hmmm.... &#187; cpan</title>
	<atom:link href="http://michael.thegrebs.com/tag/cpan/feed/" rel="self" type="application/rss+xml" />
	<link>http://michael.thegrebs.com</link>
	<description></description>
	<lastBuildDate>Thu, 27 Oct 2011 18:48:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>WebService::MobileMe uploaded to the CPAN</title>
		<link>http://michael.thegrebs.com/2009/07/26/webservicemobileme-uploaded-to-the-cpan/</link>
		<comments>http://michael.thegrebs.com/2009/07/26/webservicemobileme-uploaded-to-the-cpan/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 23:06:23 +0000</pubDate>
		<dc:creator>mikegrb</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cpan]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobileme]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://michael.thegrebs.com/?p=232</guid>
		<description><![CDATA[Just a quick post to announce a new perl module I uploaded to the CPAN the other day. It&#8217;s still to be considered alpha quality as it is lacking error checking and other such necessary stuffs but is working for &#8230; <a href="http://michael.thegrebs.com/2009/07/26/webservicemobileme-uploaded-to-the-cpan/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just a quick post to announce a new perl module I uploaded to the CPAN the other day.  It&#8217;s still to be considered alpha quality as it is lacking error checking and other such necessary stuffs but is working for me.</p>
<p>Usage looks like:</p>
<div class="codecolorer-container perl vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="perl codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">use</span> WebService<span style="color: #339933;">::</span><span style="color: #006600;">MobileMe</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$mme</span> <span style="color: #339933;">=</span> WebService<span style="color: #339933;">::</span><span style="color: #006600;">MobileMe</span><span style="color: #339933;">-&gt;</span><span style="color: #000000; font-weight: bold;">new</span><span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; username <span style="color: #339933;">=&gt;</span> <span style="color: #ff0000;">'yaakov'</span><span style="color: #339933;">,</span> password <span style="color: #339933;">=&gt;</span> <span style="color: #ff0000;">'HUGELOVE'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$location</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$mme</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">locate</span><span style="color: #339933;">;</span><br />
<span style="color: #000066;">print</span> <span style="color: #339933;">&lt;</span> <span style="color: #339933;">&lt;</span><span style="color: #ff0000;">&quot;EOT&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; As of <span style="color: #0000ff;">$location</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span>date<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$location</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span><span style="color: #000066;">time</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> Yaakov was at<br />
&nbsp; &nbsp; <span style="color: #0000ff;">$location</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span>latitude<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$location</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span>longitude<span style="color: #009900;">&#125;</span> <span style="color: #009900;">&#40;</span>plus <span style="color: #b1b100;">or</span> minus<br />
&nbsp; &nbsp; <span style="color: #0000ff;">$location</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span>accuracy<span style="color: #009900;">&#125;</span> meters<span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><br />
EOT<br />
<span style="color: #0000ff;">$mme</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">sendMessage</span><span style="color: #009900;">&#40;</span> message <span style="color: #339933;">=&gt;</span> <span style="color: #ff0000;">'Hi Yaakov!'</span><span style="color: #339933;">,</span> <span style="color: #000066;">alarm</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>The online documentation is available via <a href="http://search.cpan.org/~mikegrb/WebService-MobileMe/lib/WebService/MobileMe.pm">search.cpan.org</a>.</p>
<p>Git Web: <a href="http://git.thegrebs.com/?p=WebService-MobileMe">http://git.thegrebs.com/?p=WebService-MobileMe</a><br />
Git Clone: http://git.thegrebs.com/git/WebService-MobileMe</p>
]]></content:encoded>
			<wfw:commentRss>http://michael.thegrebs.com/2009/07/26/webservicemobileme-uploaded-to-the-cpan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Module::Signature Rocks My Socks</title>
		<link>http://michael.thegrebs.com/2008/06/01/module-signature/</link>
		<comments>http://michael.thegrebs.com/2008/06/01/module-signature/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 01:45:06 +0000</pubDate>
		<dc:creator>mikegrb</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cpan]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[modules]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://michael.thegrebs.com/?p=116</guid>
		<description><![CDATA[Just discovered the perl module Module::Signature by 唐鳳 (Audrey Tang) the other day. It&#8217;s pretty spiffy. Implementing is easy (stolen from the docs): MakeMaker: WriteMakefile( (MM->can('signature_target') ? (SIGN => 1) : ()), # ... original arguments ... ); Module::Build: Module::Build->new( &#8230; <a href="http://michael.thegrebs.com/2008/06/01/module-signature/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just discovered the perl module <a href="http://search.cpan.org/~audreyt/Module-Signature/">Module::Signature</a> by 唐鳳 (Audrey Tang) the other day.  It&#8217;s pretty spiffy.</p>
<p>Implementing is easy (stolen from the docs):</p>
<p>MakeMaker:</p>
<pre>    WriteMakefile(
        (MM->can('signature_target') ? (SIGN => 1) : ()),
        # ... original arguments ...
    );</pre>
<p>Module::Build:</p>
<pre>   Module::Build->new(
        (sign => 1),
        # ... original arguments ...
    )->create_build_script;</pre>
<p>Don&#8217;t forget to add</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">SIGNATURE</div></div>
<p>to your</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">MANIFEST</div></div>
<p>if needed.</p>
<p>Then when running</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">make dist</div></div>
<p>you will be prompted for the pass phrase for your gpg key.  For extra goodness, add <a href="http://search.cpan.org/src/AUDREYT/Module-Signature-0.55/t/0-signature.t">0-signature.t</a> to your tests.  It includes a single test that verifies the package cryptographically during</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">make test</div></div>
<p>if the</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">TEST_SIGNATURE</div></div>
<p>environment variable is set.</p>
<p>If you know waltman and haven&#8217;t heard of this module, yell at him for not telling you about it, he&#8217;s mentioned in the</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">AUTHORS</div></div>
<p>file for his stellar documentation patches.</p>
]]></content:encoded>
			<wfw:commentRss>http://michael.thegrebs.com/2008/06/01/module-signature/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

