<?xml version="1.0"?>
<!-- RSS generated by Radio UserLand v8.0.7 on Tue, 06 Aug 2002 22:47:27 GMT -->
<rss version="0.92">
	<channel>
		<title>Paul Kulchenko: perl</title>
		<link>http://radio.weblogs.com/0106541/categories/perl/</link>
		<description></description>
		<copyright>Copyright 2002 Paul Kulchenko</copyright>
		<lastBuildDate>Tue, 06 Aug 2002 22:47:27 GMT</lastBuildDate>
		<docs>http://backend.userland.com/rss092</docs>
		<managingEditor>paulclinger@yahoo.com</managingEditor>
		<webMaster>paulclinger@yahoo.com</webMaster>
		<cloud domain="radio.xmlstoragesystem.com" port="80" path="/RPC2" registerProcedure="xmlStorageSystem.rssPleaseNotify" protocol="xml-rpc"/>
		<item>
			<description>Brandon Lee &lt;A href=&quot;http://www.bigredswitch.com/blog/archives/000018.html#000018&quot;&gt;says about Perl&lt;/A&gt;:&amp;nbsp;&quot;&lt;EM&gt;As Damian Conway &lt;/EM&gt;&lt;A href=&quot;http://www.perl.com/pub/a/2000/08/conway.html&quot;&gt;&lt;EM&gt;says&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt;: &quot;Line noise programs, numerous defaults, subtle context propagation, symbolic references, closures, unconstrained OO model, one-liners, weird modules maintained by weirder hackers, typeglobs, AUTOLOADING, operator overloading, source filters, etc., etc.&quot; Aargh! But, but, but ... when you start working with Perl, there is a generosity about the language that is unique. It is not verbose hackery but something like a corpulent (voluptuous?) hedonist that is living a little too comfortably. So don&apos;t eat just the bone or the meat, take the fat and the tendons and the liver and a little Perl.&lt;/EM&gt;&quot; Amen. That&apos;s why I&apos;m as much excited about Perl as I was ten years ago when I start using&amp;nbsp;it.</description>
			</item>
		<item>
			<description>&lt;A href=&quot;http://www.perl-foundation.org/index.cgi?page=perl5.8-release&quot;&gt;Perl Foundation&amp;nbsp;Announced Availability of Perl 5.8&lt;/A&gt;. &quot;&lt;EM&gt;It features better support for cutting-edge computing platforms, unrivaled ability to deal with international character sets and numerous new modules and performance enhancements. In addition, the Perl community&apos;s new QA systems enhance Perl&apos;s existing reputation as a world-beating development tool with enterprise-class robustness, a reputation that has seen it included in the default installs of Apple&apos;s Mac OS X and Sun&apos;s Solaris 9. Improvements include overhauled 64 bit support, enhanced Unicode awareness, better large number support, improved threading, regular expressions and IO and some 3000 uploads to the CPAN.&lt;/EM&gt;&quot;</description>
			</item>
		<item>
			<description>&lt;IMG src=&quot;http://images.amazon.com/images/P/0596002890.01.THUMBZZZ.jpg&quot; align=left border=0&gt;Jeffrey Friedl&lt;BR&gt;&lt;A href=&quot;http://www.amazon.com/exec/obidos/ASIN/0596002890/ref=nosim/soaplite-20&quot;&gt;Mastering Regular Expressions, Second Edition&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;A href=&quot;http://www.oreillynet.com/pub/a/network/2002/07/15/regexp.html&quot;&gt;What&apos;s New with Regular Expressions&lt;/A&gt;. &quot;&lt;EM&gt;Whether you program in Perl or Java or VB.NET or Python or PHP or C# or Ruby or any language with regular-expression support, I hope and believe that the second edition will provide you with a wealth of practical information and helpful examples.&lt;/EM&gt;&quot;</description>
			</item>
		<item>
			<description>&lt;A href=&quot;http://www.pocketsoap.com/weblog/&quot;&gt;Simon Fell&lt;/A&gt;: &quot;&lt;EM&gt;No doubt the first of many &lt;/EM&gt;&lt;A href=&quot;http://wmf.editthispage.com/discuss/msgReader$7790&quot;&gt;&lt;EM&gt;dumb questions about OS X&lt;/EM&gt;&lt;/A&gt;&quot;. I don&apos;t think&amp;nbsp;it&apos;s a dumb question (&quot;how to implement web service in AppleScript&quot;) ;).&amp;nbsp;This &lt;A href=&quot;http://soaplite.com/#TOOLKITS&quot;&gt;list of SOAP toolkits&lt;/A&gt; says that AppleScript is a &apos;client only&apos; implementation&amp;nbsp;and I believe that&apos;s correct (let me know if you find otherwise).&amp;nbsp;You can use &lt;A href=&quot;http://soaplite.com/&quot;&gt;SOAP::Lite&lt;/A&gt; (or some other toolkit) to run as a server and&amp;nbsp;developer.apple.com&amp;nbsp;plans to&amp;nbsp;publish&amp;nbsp;Randal Schwartz&apos;s article &apos;Connecting AppleScript and Perl with SOAP&apos; that describes how to do that (sorry, no live link yet).</description>
			<source url="http://www.pocketsoap.com/weblog/rss.xml">Simon Fell</source>
			</item>
		<item>
			<description>Newly improved and redesigned &lt;A href=&quot;http://perl.apache.org/&quot;&gt;mod_perl site&lt;/A&gt; with new slick look. Lincoln Stein on mod_perl: &quot;&lt;EM&gt;&lt;SPAN class=big-mod&gt;mod_perl&amp;nbsp;&lt;/SPAN&gt; is more than CGI scripting on steroids. It is a whole new way to create dynamic content by utilizing the full power of the Apache web server to create stateful sessions, customized user authentication systems, smart proxies and much more. Yet, magically, your old CGI scripts will continue to work and work very fast indeed. With mod_perl you give up nothing and gain so much!&lt;/EM&gt;&quot; I&apos;m sure you know that already, right?</description>
			</item>
		<item>
			<description>&lt;P&gt;Allison Randal, Damian Conway: &lt;A href=&quot;http://www.perl.com/pub/a/2002/06/26/synopsis5.html?page=1&quot;&gt;Synopsis 5&lt;/A&gt;. &quot;&lt;EM&gt;Just as you can have anonymous subs and named subs you can have anonymous regexes and named regexes&lt;/EM&gt;:&quot; &lt;/P&gt;&lt;PRE&gt; rule ident { [&amp;lt;alpha&amp;gt;|_] \w* }
 # and later...
 @ids = grep /&amp;lt;ident&amp;gt;/, @strings;
 # and then refer to named regexes, such as:
 rule serial_number { &amp;lt;[A-Z]&amp;gt; \d&amp;lt;8&amp;gt; }
 rule type { alpha | beta | production | deprecated | legacy } &lt;/PRE&gt;Neat and slightly shocking (for someone who&apos;s been doing Perl for eight years) syntax.</description>
			</item>
		</channel>
	</rss>
