2012年6月30日星期六

[PerlChina] 如何选择子例程返回值?

各位好,请教一个问题。最近写了一个subroutine,尝试了两种方法,主要区别是
子例程的返回值不同。一个是返回hash reference(方法1),一个是直接返回
hash(方法2)。在运行时感觉方法2会稍有停顿。因此,想问一个问题:方法2
中%fasseq在接收子 例程的返回值时是不是要复制一份结果,并不是直接操作子例
程中的那块内存地址?方法1中my %fasseq = %$fasseq;是不是直接把地址传
给%fasseq进行操作?应当如何设置这个返回值?

还有一个问题是:Perl自带的函数根据上下文的不同可以返回scalar或者list,自
己写子例程时如何实现?


方法1:
sub read_fasta_into_hash() {
my $fasfile = shift @_;
my %fasseq;
.....
return \%fasseq;
}
my $fasseq = &read_fasta_into_hash($fasfile);
my %fasseq = %$fasseq;


方法2:
sub read_fasta_into_hash() {
my $fasfile = shift @_;
my %fasseq;
.....
return %fasseq;
}
my %fasseq = &read_fasta_into_hash($fasfile);


--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

2012年6月28日星期四

Re: [PerlChina] 一个坑,自己掉进去好几次了。。。

  DB<7> print 1 if !defined $a or $a == 0;
1


2012/6/29 cnhack TNT <cnhacktnt@gmail.com>
同掉过,路过。。。



2012/6/29 wd <wd@wdicc.com>
#!/usr/bin/perl

use strict;
use warnings;

my $a;

if ( not defined $a || $a == 0 ) {
   print 1;
}

就这段代码。。明眼人应该能看明白错在哪里。。。我已经掉进去好几次了。。。好像还在持续的掉。。nnd。。。

--
您收到此邮件是因为您订阅了 Google 网上论坛的“PerlChina Mongers 讨论组”论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。


--
您收到此邮件是因为您订阅了 Google 网上论坛的“PerlChina Mongers 讨论组”论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

Re: [PerlChina] 一个坑,自己掉进去好几次了。。。

同掉过,路过。。。


2012/6/29 wd <wd@wdicc.com>
#!/usr/bin/perl

use strict;
use warnings;

my $a;

if ( not defined $a || $a == 0 ) {
   print 1;
}

就这段代码。。明眼人应该能看明白错在哪里。。。我已经掉进去好几次了。。。好像还在持续的掉。。nnd。。。

--
您收到此邮件是因为您订阅了 Google 网上论坛的“PerlChina Mongers 讨论组”论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。


--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

[PerlChina] 一个坑,自己掉进去好几次了。。。

#!/usr/bin/perl

use strict;
use warnings;

my $a;

if ( not defined $a || $a == 0 ) {
print 1;
}

就这段代码。。明眼人应该能看明白错在哪里。。。我已经掉进去好几次了。。。好像还在持续的掉。。nnd。。。

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

2012年6月27日星期三

Re: [PerlChina] 发送邮件一般用什么模块?

mime::lite 确实比较牛逼 之前没仔细研究
发 html 给 outlook 设置一下 charset 就可以

--
wd

On Wednesday, June 27, 2012 at 6:41 PM, truncatei wrote:

我也推荐 MIME::Lite

2012/6/27 wd <wd@wdicc.com>:
我也不用 outlook。。。可是又不得不照顾他们的情绪,nnd
我回头看看各位说的,多谢了。

2012/6/27 xatierlike Lee <xatierlike@gmail.com>:
maybe you can try these

http://search.cpan.org/~yves/MIME-Lite-3.01/lib/MIME/Lite.pm

http://search.cpan.org/~gbarr/libnet-1.21/Net/SMTP.pm


but I never use outlook lol

2012/6/27 wd <wd@wdicc.com>

hi,

经常会需要使用程序发送邮件,不知道大家都用哪个?

需要支持使用本机 meta 发送,不需要用户名密码,需要支持发送 html 邮件,需要让 outlook
用户看不到乱码。。。。感觉最后这个最难搞了。。。自己写了一个模块,在 outlook 之外的客户端里面都正常,就是 outlook
乱码,nnd

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。



--
如果觉得无聊,您不妨访问Google Reader消遣 https://www.google.com/reader/view
要尝试黑版本Google,请访问 http://tinyurl.com/yk3yp7j

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

Re: [PerlChina] 发送邮件一般用什么模块?

我也推荐 MIME::Lite

2012/6/27 wd <wd@wdicc.com>:
> 我也不用 outlook。。。可是又不得不照顾他们的情绪,nnd
> 我回头看看各位说的,多谢了。
>
> 2012/6/27 xatierlike Lee <xatierlike@gmail.com>:
>> maybe you can try these
>>
>> http://search.cpan.org/~yves/MIME-Lite-3.01/lib/MIME/Lite.pm
>>
>> http://search.cpan.org/~gbarr/libnet-1.21/Net/SMTP.pm
>>
>>
>> but I never use outlook lol
>>
>> 2012/6/27 wd <wd@wdicc.com>
>>>
>>> hi,
>>>
>>> 经常会需要使用程序发送邮件,不知道大家都用哪个?
>>>
>>> 需要支持使用本机 meta 发送,不需要用户名密码,需要支持发送 html 邮件,需要让 outlook
>>> 用户看不到乱码。。。。感觉最后这个最难搞了。。。自己写了一个模块,在 outlook 之外的客户端里面都正常,就是 outlook
>>> 乱码,nnd
>>>
>>> --
>>> 您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
>>> 要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
>>> 要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
>>> 若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
>>>
>>
>> --
>> 您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
>> 要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
>> 要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
>> 若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
>
> --
> 您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
> 要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
> 要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
> 若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
>

--
如果觉得无聊,您不妨访问Google Reader消遣 https://www.google.com/reader/view
要尝试黑版本Google,请访问 http://tinyurl.com/yk3yp7j

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

2012年6月26日星期二

Re: [PerlChina] 发送邮件一般用什么模块?

我也不用 outlook。。。可是又不得不照顾他们的情绪,nnd
我回头看看各位说的,多谢了。

2012/6/27 xatierlike Lee <xatierlike@gmail.com>:
> maybe you can try these
>
> http://search.cpan.org/~yves/MIME-Lite-3.01/lib/MIME/Lite.pm
>
> http://search.cpan.org/~gbarr/libnet-1.21/Net/SMTP.pm
>
>
> but I never use outlook lol
>
> 2012/6/27 wd <wd@wdicc.com>
>>
>> hi,
>>
>> 经常会需要使用程序发送邮件,不知道大家都用哪个?
>>
>> 需要支持使用本机 meta 发送,不需要用户名密码,需要支持发送 html 邮件,需要让 outlook
>> 用户看不到乱码。。。。感觉最后这个最难搞了。。。自己写了一个模块,在 outlook 之外的客户端里面都正常,就是 outlook
>> 乱码,nnd
>>
>> --
>> 您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
>> 要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
>> 要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
>> 若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
>>
>
> --
> 您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
> 要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
> 要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
> 若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

Re: [PerlChina] 发送邮件一般用什么模块?

maybe you can try these

http://search.cpan.org/~yves/MIME-Lite-3.01/lib/MIME/Lite.pm



but I never use outlook lol

2012/6/27 wd <wd@wdicc.com>
hi,

经常会需要使用程序发送邮件,不知道大家都用哪个?

需要支持使用本机 meta 发送,不需要用户名密码,需要支持发送 html 邮件,需要让 outlook
用户看不到乱码。。。。感觉最后这个最难搞了。。。自己写了一个模块,在 outlook 之外的客户端里面都正常,就是 outlook
乱码,nnd

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。


--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

Re: [PerlChina] 发送邮件一般用什么模块?

MIME::Lite is good.

2012/6/27 wd <wd@wdicc.com>:
> hi,
>
> 经常会需要使用程序发送邮件,不知道大家都用哪个?
>
> 需要支持使用本机 meta 发送,不需要用户名密码,需要支持发送 html 邮件,需要让 outlook
> 用户看不到乱码。。。。感觉最后这个最难搞了。。。自己写了一个模块,在 outlook 之外的客户端里面都正常,就是 outlook
> 乱码,nnd
>
> --
> 您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
> 要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
> 要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
> 若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。
>

--
Fayland Lam // http://www.fayland.org/

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

[PerlChina] 发送邮件一般用什么模块?

hi,

经常会需要使用程序发送邮件,不知道大家都用哪个?

需要支持使用本机 meta 发送,不需要用户名密码,需要支持发送 html 邮件,需要让 outlook
用户看不到乱码。。。。感觉最后这个最难搞了。。。自己写了一个模块,在 outlook 之外的客户端里面都正常,就是 outlook
乱码,nnd

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。

2012年6月25日星期一

[PerlChina] Fwd: [Perlweekly] #48 - French workshop in 4 days and fund-raising for a Dancer project



---------- Forwarded message ----------
From: Gabor Szabo <gabor@szabgab.com>
Date: Mon, Jun 25, 2012 at 6:02 PM
Subject: [Perlweekly] #48 - French workshop in 4 days and fund-raising for a Dancer project
To: perlweekly@perlweekly.com


Perl Weekly

Issue #48 - June 25, 2012 - French workshop in 4 days and fund-raising for a Dancer project

You can read the newsletter on the web, if you prefer.

Hi,

After a long time, I finally wrote a new blog entry on my site. It is still only a meta-article about writing articles, but I think I am on the right track. Be prepared for more articles from me!

This issue is still full of links to YAPC::NA related articles. People are still writing their reports. The more the better! Other people take notice if there are many articles. If you have not written yours yet, go ahead and do so! The official videos have also started to appear on YouTube. I have already watched three.

Other than that, I think I'll just let you read the articles:

Announcements

Perl White Camel 2012 awards announced
At YAPC::NA, David H. Adler (DHA) announced the names of the 2012 White Camel award recipients: Renee Baecker, Jim Keenan and Breno G. de Oliveira (aka garu). Please congratulate them!

Articles

Promoting Perl to Dissimilar Users
YAPC::NA was opened by the keynote of Michael Schwern talking about the lack of diversity in the Perl community. Especially among those who attend Perl workshops and conferences. chromatic is taking the point to the technical direction, and suggests we should make Perl easier for those who don't look like us.

Marpa & customizing the Ruby Slippers
Jeffrey Kegler has released Marpa::R2, and I am wondering when D2 will be added. Anyway, what I really like is the 'situational awareness' that helps providing better error messages for when the parsing fails. That's actually one of the major issues I see with regexes: how do you know why it has not matched. This might be a better solution.

Simplifying Perl Web Programming for Novices
Another call to action by chromatic. This time he also found a place for the Padre project.

A new look for Mojolicious
Sebastian Riedel redesigned the error page. Apparently 3 month ago.

Sqitch: Rename Step Objects and the SQL Directory?
One of the easiest refactoring steps is renaming a variable or a subroutine. They are technically easy but mentally? How can you come up with a name that better describes some entity or some process in your application? That's the underlying problem David E. Wheeler faces this week.

Discussion

One of my most used and least understood perl snippets
Manfred B. Perl shows a snippet to remove leading and trailing white spaces that generated 12 comments! Last time I saw a question about this there were - I think - over 50 comment on LinkedIN. I think perl needs to have a trim function to eliminate all these repeated bike sheddings. (Actually the code in this blog is similar to what I show in class to point out why I prefer to use 2 simple regexes instead of one complex, and incorrect one.)

Books

More Programming Perls to give away
brian d foy got a few more copies of the Programming Perl book he wants to give away. This time, instead of asking for a post-card he asks for a donation to a charity of his choice.

Code

Learning Perl Challenge: finding duplicates (Answer)
brian d foy shows and explains his solution, and then goes over the solutions people sent to him. He takes the task apart and analyzes how each part was solved in different ways by different people.

Shaving the White Whale (DBIx::NoSQL + MooseX::Storage)
I guess a yak is not enough for Yanick Champoux any more.

A Simple Perl-Based RSS to Email Program
I am using something similar to follow RSS feeds and send myself e-mail, so I can see what articles I might want to include in the Perl Weekly.

Controlling Firefox from Perl with MozRepl
Elizabeth Cortell or zrusilla, who is also known as Perlgerl wrote her first program using AnyEvent and Coro. Not only that, she was also driving a Firefox using Perl. All that with some example code.

Fun

Dancer is community-driven
Damien 'dams' Krotkine has not been blogging a lot lately, but this is a very nice way to show how colorful the community of Dancer developers is.

monitoring our machine room temperature with nagios, perl and arduino
At YAPC::NA there was a very well attended hardware hackathon. Unrelated to that, Martin Evans is talking to an Arduino using perl and Device::SerialPort.

Grants

Alien::Base Grant - Report #4
Joel Berger has spent most of his time preparing his talks at YAPC::NA but apparently Alien::Base is already in a pre-alpha status. It has not seen a 0.001 release, but you could already start playing with it. On both Linux and Windows. Mac still has some issues.

Science

Announcing Math::Mathematica
One of the problems Joel Berger sees with Mathematica is the lack of a good programming language around it. He is trying to make it easier for people to convert to using Perl via a command line interface.

Parrot

4.5.0 Parrot 'Buff-faced Pygmy Parrot' Released!

Videos

YAPC::NA 2012 video recordings
The video recordings from YAPC::NA are being uploaded to YouTube. When I checked on Sunday evening GMT, there were 43 videos, 23 subscribers and 955 video views.

Other

MetaCPAN favourites weekly report

stackoverflow perl report
The ten most rated questions at Stack Overflow last week.

Fund raising

Food Scan Card
Jonathan Houge from Columbus.pm is trying to implement an idea of pastor Sandy Brown to make it easier to help people in need. Regardless of our religious affiliation (or not) this sounds like a nice idea. They are trying to rais some funds, so they can work on the project. Besides the fact that this is nice idea, Jon has also told me he is planning to use Dancer for this project and teach the other two developers - who are Ruby developers - to use Dancer. It is up to your consideration if you'd like to help them get funded. I put down some money.

YAPC::NA reports

YAPC::NA 2012: Mojolicious, swag, and pizzazz
Glen Hinkle (tempire), whom I met only for a few seconds, has pictures of the swag you could get at YAPC, but he dislikes the name YAPC.

YAPC::NA 2012 by scrottie
scrottie is not a regular Perl blogger, so it was especially nice to see his writing about YAPC. I only wish he added a few more links to YAPC, some talks, and the people he mentioned. That makes it easier for the readers to further research, and makes search engines happier.

My First #YAPC
Stephen Belcher has not been writing about Perl either, and his opinion as a first-time YAPC attendee is interesting. He also has outgoing links :)

My YAPC::NA 2012 notes and recap
Andy Lester (petdance) has also described his experience on the Perl Buzz web site. He gave a very nice lightning talk about Ack 2, and then uploaded the first alpha version of it. In this post, Andy describes the talks he attended in great detail. Very useful for people who could not attend them or who could, but need a reminder.

Don't Box Me In: YAPC::NA 2012 Impressions
Apparently, Sinan Unur was not all that happy with the opening talk of Schwern. I liked what and how Schwern said and have not thought of this aspect. That's why I am happy to be around people who can see way more than I do.

Events

I usually list the next 3-4 events here. The list of all the events can be found on the web site. If your Perl event is not listed there, please let me know.

French Perl workshop
June 29-30, 2012, Strasbourg

YAPC::EU 2012
August 20-22, 2012, Frankfurt, Germany

YAPC::Asia Tokyo 2012
September 27-29, 2012, Tokyo, Japan

You joined the Perl Weekly to get weekly e-mails about the Perl programming language and related topics.
Want to see more? See the archives of all the issues.
Reading this as a non-subscriber? click here to join us free of charge.
(C) Copyright Gabor Szabo. The articles are copyright the respective authors.

You can unsubscribe here if you don't want to receive mails any more.

You can freely redistribute this message if you keep the whole message intact, including the Copyright notice and this text.


_______________________________________________
Perlweekly mailing list
Perlweekly@perlweekly.com
http://mail.perlweekly.com/mailman/listinfo/perlweekly




--
Fayland Lam // http://www.fayland.org/

--
您收到此邮件是因为您订阅了 Google 网上论坛的"PerlChina Mongers 讨论组"论坛。
要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。
要取消订阅此网上论坛,请发送电子邮件至 perlchina+unsubscribe@googlegroups.com。
若有更多问题,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问此网上论坛。