<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>alt.comp.lang.perl Google Group</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl</link>
  <description>Perl discussion, multi-lingual</description>
  <language>en</language>
  <item>
  <title>651221 Constantly updated Free COmputer and business portal 41</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/791c09d12dcc5a67/5f598380c490d204?show_docid=5f598380c490d204</link>
  <description>
  I fell in love with the net and all the compuiter teahcnology in the very early years and have loved it ever since, I have an IT Degree and Communications degree and will be working on my doctorate for the next five years, in bwetween I design websites, databases, Multimedia Produxction or anything that wil make me a penny, just student scraping by. But Guess what? I don&#39;t want your money, your e-mail, or anything. Each of these sites has a specific topic but they have them style and layout sothey are easy to navigate and ther a search function should take you to exactly where youwant to, or just explore, they have outside service you can acccess as well. Each site has 10,000 plus articles and they are updated everyday so you know you are gettin up to date information. ENough, here the computer and tech related sites.
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/791c09d12dcc5a67/5f598380c490d204?show_docid=5f598380c490d204</guid>
  <author>
  wilcox_and...@childcustodyfordads.eyetraffic.net
  (Andrew W.)
  </author>
  <pubDate>Tue, 19 ม.ค. 2010 21:32:53 UT
</pubDate>
  </item>
  <item>
  <title>Re: converting list to table</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/0e46a6e3f2c0abb4/e5a9d63cc99cdcd5?show_docid=e5a9d63cc99cdcd5</link>
  <description>
  Hello Jay, &lt;br&gt; The code bellow will do what you want. I hope it helps a litle &lt;br&gt; George Mpouras &lt;br&gt; while (&amp;lt;DATA&amp;gt;) { (@_) = split /\s+/; $hash{$_[0],$_[1]} += $_[2] } &lt;br&gt; print $hash{A,C}; &lt;br&gt; __DATA__ &lt;br&gt; A B 1 &lt;br&gt; B A 1 &lt;br&gt; A B 3 &lt;br&gt; B A 3 &lt;br&gt; A C 7 &lt;br&gt; C A 2
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/0e46a6e3f2c0abb4/e5a9d63cc99cdcd5?show_docid=e5a9d63cc99cdcd5</guid>
  <author>
  nospam.gravitral...@hotmail.com.nospam
  (George Mpouras)
  </author>
  <pubDate>Fri, 13 พ.ย. 2009 11:27:13 UT
</pubDate>
  </item>
  <item>
  <title>Re: converting list to table</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/0e46a6e3f2c0abb4/660c67521a17a564?show_docid=660c67521a17a564</link>
  <description>
  Fri, 06 Nov 2009 16:26:40 +0000, Loki Harfagr did cat : &lt;br&gt; ooops, I didn&#39;t see your post in c.l.a. before and why didi you &lt;br&gt; multipost instead of crosspost!? Ah sorry...
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/0e46a6e3f2c0abb4/660c67521a17a564?show_docid=660c67521a17a564</guid>
  <author>
  l...@thedarkdesign.free.fr.invalid
  (Loki Harfagr)
  </author>
  <pubDate>Fri, 06 พ.ย. 2009 16:49:08 UT
</pubDate>
  </item>
  <item>
  <title>Re: converting list to table</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/0e46a6e3f2c0abb4/10319c5df666e8d3?show_docid=10319c5df666e8d3</link>
  <description>
  Thu, 05 Nov 2009 06:36:19 -0800, jay did cat : &lt;br&gt; Hope this wil help though not in perl, I guess the port should be &lt;br&gt; quite straightforward (note the OFS means Output Field Separator and &lt;br&gt; ORS stands for Output Record Separator) &lt;br&gt; Given the sample file: &lt;br&gt; --------------- &lt;br&gt; $ cat MISCFILES/var2varHits &lt;br&gt; A B 1 &lt;br&gt; B A 1
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/0e46a6e3f2c0abb4/10319c5df666e8d3?show_docid=10319c5df666e8d3</guid>
  <author>
  l...@thedarkdesign.free.fr.invalid
  (Loki Harfagr)
  </author>
  <pubDate>Fri, 06 พ.ย. 2009 16:26:40 UT
</pubDate>
  </item>
  <item>
  <title>converting list to table</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/0e46a6e3f2c0abb4/83c641863576cd03?show_docid=83c641863576cd03</link>
  <description>
  Hi All, &lt;br&gt; Am new to using newgroup for help, but have exhausted my searching &lt;br&gt; online for a solution &lt;br&gt; I have a long list of data of associations between values with a value &lt;br&gt; to that association as follows.. &lt;br&gt; (var) to (var) = (var) hits &lt;br&gt; A B 1 &lt;br&gt; B A 1 &lt;br&gt; A B 3 &lt;br&gt; B A 3 &lt;br&gt; A C 7 &lt;br&gt; C A 2 &lt;br&gt; And need to build a table as follows that accumulates the above:
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/0e46a6e3f2c0abb4/83c641863576cd03?show_docid=83c641863576cd03</guid>
  <author>
  jayb...@gmail.com
  (jay)
  </author>
  <pubDate>Thu, 05 พ.ย. 2009 14:36:19 UT
</pubDate>
  </item>
  <item>
  <title>send strings to syslog on different port</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/f4ca0611eaef663b/5e2134d081b036cb?show_docid=5e2134d081b036cb</link>
  <description>
  Hi, &lt;br&gt; I want to send data to syslog on localhost but on port 1515. How can I &lt;br&gt; do this? &lt;br&gt; Thanks, &lt;br&gt; Ron
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/f4ca0611eaef663b/5e2134d081b036cb?show_docid=5e2134d081b036cb</guid>
  <author>
  ron.egg...@gmail.com
  (cerr)
  </author>
  <pubDate>Tue, 29 ก.ย. 2009 20:35:20 UT
</pubDate>
  </item>
  <item>
  <title>Re: Seeking easier code for 1, 2, 5, 10, 20, 50... sequence</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/590245e4092e0c09/0d1cea26cb48bfa8?show_docid=0d1cea26cb48bfa8</link>
  <description>
  Mon, 14 Sep 2009 02:21:45 -0500, James Waldby did cat : &lt;br&gt; If you&#39;re nor absolutely looking after something strictly computational &lt;br&gt; maybe something around this cheat? &lt;br&gt; m=10^p++; printf &amp;quot;%d %d %d &amp;quot;,m,m*2,m*5;
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/590245e4092e0c09/0d1cea26cb48bfa8?show_docid=0d1cea26cb48bfa8</guid>
  <author>
  l...@thedarkdesign.free.fr.invalid
  (Loki Harfagr)
  </author>
  <pubDate>Mon, 14 ก.ย. 2009 12:14:46 UT
</pubDate>
  </item>
  <item>
  <title>Seeking easier code for 1, 2, 5, 10, 20, 50... sequence</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/590245e4092e0c09/ae154cb9b6c07a08?show_docid=ae154cb9b6c07a08</link>
  <description>
  perl -e &#39;$m=1; while($m&amp;lt;10001){print &amp;quot; $m&amp;quot;; $m*=(5-$m%9%2)/2;}&#39; &lt;br&gt; produces: &lt;br&gt; 1 2 5 10 20 50 100 200 500 1000 2000 5000 10000 &lt;br&gt; I&#39;ve been trying to find some shorter code for this &lt;br&gt; than the $m*=(5-$m%9%2)/2; expression, but no luck. &lt;br&gt; Any ideas?
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/590245e4092e0c09/ae154cb9b6c07a08?show_docid=ae154cb9b6c07a08</guid>
  <author>
  n...@no.no
  (James Waldby)
  </author>
  <pubDate>Mon, 14 ก.ย. 2009 07:21:45 UT
</pubDate>
  </item>
  <item>
  <title>Re: Preventing lines from printing</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/80e6ff569c1979de/eb5448d180f04886?show_docid=eb5448d180f04886</link>
  <description>
  Do you chop the input line to remove the &#39;\n&#39;?
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/80e6ff569c1979de/eb5448d180f04886?show_docid=eb5448d180f04886</guid>
  <author>
  richm...@optonline.net
  (R M)
  </author>
  <pubDate>Sat, 05 ก.ย. 2009 01:30:24 UT
</pubDate>
  </item>
  <item>
  <title>Discount Watches - Ulysse Nardin Circus Minute Repeater Mens Pretty Watch PrettyReplica.com for sale all kinds of pretty replica watches! famous watches, luxury watches,discount watches,Christmas gifts,Cheap Watches,Luxury Watches,very nice watche</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/442d469ff44a0e8e/5a04f464b367e800?show_docid=5a04f464b367e800</link>
  <description>
  Discount Watches - Ulysse Nardin Circus Minute Repeater Mens Pretty &lt;br&gt; Watch PrettyReplica.com for sale all kinds of pretty replica watches! &lt;br&gt; famous watches, luxury watches,discount watches,Christmas gifts,Cheap &lt;br&gt; Watches,Luxury Watches,very nice watches,Discount Watches,Replica for &lt;br&gt; sale,Replica Price,Watches Sale,Antique Watches,Watches Women
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/442d469ff44a0e8e/5a04f464b367e800?show_docid=5a04f464b367e800</guid>
  <author>
  prett...@gmail.com
  (PrettyReplica.com)
  </author>
  <pubDate>Thu, 03 ก.ย. 2009 13:20:37 UT
</pubDate>
  </item>
  <item>
  <title>Re: Preventing lines from printing</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/80e6ff569c1979de/caa527a8fbe49194?show_docid=caa527a8fbe49194</link>
  <description>
  Can we see the actual code for &#39;lots of processing of file lines with &lt;br&gt; only one wanted &amp;quot;print&amp;quot;&#39;? &lt;br&gt; I&#39;m wondering if you aren&#39;t emptying a variable and still printing the &lt;br&gt; empty variable. &lt;br&gt; Grant. . . .
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/80e6ff569c1979de/caa527a8fbe49194?show_docid=caa527a8fbe49194</guid>
  <author>
  gtay...@riverviewtech.net
  (Grant Taylor)
  </author>
  <pubDate>Mon, 24 ส.ค. 2009 04:27:20 UT
</pubDate>
  </item>
  <item>
  <title>Preventing lines from printing</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/80e6ff569c1979de/dac0510e5bf903a4?show_docid=dac0510e5bf903a4</link>
  <description>
  Hello, &lt;br&gt; I am processing multiple text files. There is a lot of pre-processing before &lt;br&gt; the file-reading commences, then each file gets read (but I don&#39;t want to &lt;br&gt; print any blank line) and then there is a lot of post-processing of each &lt;br&gt; file. In AWK I had a BEGIN block, no print lines in the middle, and a very
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/80e6ff569c1979de/dac0510e5bf903a4?show_docid=dac0510e5bf903a4</guid>
  <author>
  d...@dot.dot
  (Diamond, Mark)
  </author>
  <pubDate>Sun, 23 ส.ค. 2009 02:00:49 UT
</pubDate>
  </item>
  <item>
  <title>Re: Getting a value</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/39ff23ead86e3cbc/8c3ecb69356180a7?show_docid=8c3ecb69356180a7</link>
  <description>
  ... &lt;br&gt; Yes. &lt;br&gt; Below is a quick hack that I think does what you want to do. &lt;br&gt; --8&amp;lt;--8&amp;lt;--8&amp;lt;--8&amp;lt;--8&amp;lt;-- &lt;br&gt; use strict; &lt;br&gt; my $log_dir=&amp;quot;hello&amp;quot;; &lt;br&gt; sub function1() { &lt;br&gt; return &amp;quot;$log_dir&amp;quot;; &lt;br&gt; my $name = function1(); &lt;br&gt; print &amp;quot;$name\n&amp;quot;; &lt;br&gt; --&amp;gt;8--&amp;gt;8--&amp;gt;8--&amp;gt;8--&amp;gt;8-- &lt;br&gt; Grant. . . .
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/39ff23ead86e3cbc/8c3ecb69356180a7?show_docid=8c3ecb69356180a7</guid>
  <author>
  gtay...@riverviewtech.net
  (Grant Taylor)
  </author>
  <pubDate>Sat, 25 ก.ค. 2009 22:28:43 UT
</pubDate>
  </item>
  <item>
  <title>Getting a value</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/39ff23ead86e3cbc/aefc30c85bcd0bd4?show_docid=aefc30c85bcd0bd4</link>
  <description>
  I am getting a string value from a function .A variable is exist by that &lt;br&gt; string value. Need to print the value using the second variable! &lt;br&gt; Example: &lt;br&gt; my $log_dir=&amp;quot;hello&amp;quot;; &lt;br&gt; my $name=function1(); // $name has value &amp;quot;log_dir&amp;quot; &lt;br&gt; I want the output as &amp;quot;hello&amp;quot; using the &amp;quot;name&amp;quot; variable. Is that possible? &lt;br&gt; TIA
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/39ff23ead86e3cbc/aefc30c85bcd0bd4?show_docid=aefc30c85bcd0bd4</guid>
  <author>
  ksakt...@gmail.com
  (Sakthi)
  </author>
  <pubDate>Fri, 24 ก.ค. 2009 08:38:25 UT
</pubDate>
  </item>
  <item>
  <title>hi</title>
  <link>http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/a86026bc34bf34d9/7040201877073172?show_docid=7040201877073172</link>
  <description>
  hallo
  </description>
  <guid isPermaLink="true">http://groups.google.co.th/group/alt.comp.lang.perl/browse_thread/thread/a86026bc34bf34d9/7040201877073172?show_docid=7040201877073172</guid>
  <author>
  kari...@gmx.de
  (kikirita)
  </author>
  <pubDate>Mon, 29 มิ.ย. 2009 19:08:30 UT
</pubDate>
  </item>
  </channel>
</rss>
