2009年2月7日星期六

[PerlChina] Re: 关于Perl的正则表达式的问题

谢谢谢谢谢谢xie

Date: Fri, 6 Feb 2009 23:33:06 +0800
Subject: [PerlChina] Re: 关于Perl的正则表达式的问题
From: galaxy2004@gmail.com
To: perlchina@googlegroups.com

对, 我说错了, 包括<> 本身

2009/2/6 陈宇迪 <didistudy@gmail.com>
1是把所有<...>形式的字符串替换成空格,而不是<>里面的吧
2009/2/6 Michael Zeng <galaxy2004@gmail.com>:
> 1. $string=~ s/\<[^\<]+\>/ /g
> 是把字符串里面所有单个 < > (即里面不嵌套 < ) 里面的东西全部替换成一个空格,
> 但是< > 不是元字符啊,没有必要 \  ,
>
> 2. $string=~ s/[^a-z\-\']/ /g
> 把字符串里面 非a-z ,  - ' 的 替换成空格
>
>
>
>
>
> 2009/2/6 msmouse <msmouse@gmail.com>
>>
>> 1是匹配 <xccxvvcx>
>> 2匹配  small-pig's
>>
>> ^表示否定 [^\<]就是非"<"的任意字符
>>
>> ----------------------------------
>> msmouse@ir.hit.edu.cn
>> msmouse@gmail.com
>>
>>
>> 2009/2/6 zhouJinfeng <buniao@hotmail.com>
>>>
>>> 新手有两个正则表达式看不懂,请高手解释
>>> 1. $string=~ s/\<[^\<]+\>/ /g
>>> 2. $string=~ s/[^a-z\-\']/ /g
>>> 其匹配的模式是什么,举几个例子看看 ^在中括号内是表否定么?(不是字符开头?)
>>>
>>>
>>> ________________________________
>>> MSN 9.0 正式版上线,捆绑免费25G网络硬盘! 立刻下载!
>>>
>>
>> >>
>
<br



更多热辣资讯尽在新版MSN首页! 立刻访问!
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: Redhat 北京 Perl Job

英文一般 可有别家招的?

On 2月6日, 上午9时43分, "ximiff" <xim...@gmail.com> wrote:
> rh是不是搬家了,去过一次国贸那边,有点远。。
>
> 2009-02-06
>
> ximiff
>
> 发件人: Qiang (James)
> 发送时间: 2009-02-06 09:44:11
> 收件人: perlchina
> 抄送:
> 主题: [PerlChina] Redhat 北京 Perl Job
>
> 我看到一个 Perl 工作,感兴趣的朋友不妨试试。另, Redhat 正在大力招人http://jobs.zhaopin.com/P4/CC1362/4353/J900/002/CC136243538J900002640...
> Software Engineer - Bugzilla/Perl Programming
> Major responsibilities
> * Design and develop Red Hat's portal sites
> * Design and develop software tools and statistical metrics as needed
> * Design and improve Hardware Certification team's catalogue
> * Maintain and Improve catalogue database
> * Other tasks might be assigned
> Requirements
> * In-depth knowledge of Perl programming
> * In-depth knowledge of Bugzilla
> * In-depth knowledge of Database (MySQL, PostgreSQL)
> * In-depth understanding of shell programming and debugging
> * In-depth understanding of Linux platform software development
> * Experience in Linux installation and configuration
> * Self-motivated and excellent time management skills
> * Strong analytical and problem-solving skills
> * Strong written and verbal communication skills in English
> * Strong team working skills
> * Experience in Quality Assurance a plus
> * Knowledge of AJAX/C/C++/Python a plus
> * Additional hardware platform (IBM Power, IBM zSeries, Intel IPF)
> experience a plus
> * Red Hat Certified Engineer(RHCE) a plus
> Qiang(James)
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

2009年2月6日星期五

[PerlChina] Re: Redhat 北京 Perl Job

继续努力吧。。。能力还不够。。。
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 关于Perl的正则表达式的问题

对, 我说错了, 包括<> 本身

2009/2/6 陈宇迪 <didistudy@gmail.com>
1是把所有<...>形式的字符串替换成空格,而不是<>里面的吧
2009/2/6 Michael Zeng <galaxy2004@gmail.com>:
> 1. $string=~ s/\<[^\<]+\>/ /g
> 是把字符串里面所有单个 < > (即里面不嵌套 < ) 里面的东西全部替换成一个空格,
> 但是< > 不是元字符啊,没有必要 \  ,
>
> 2. $string=~ s/[^a-z\-\']/ /g
> 把字符串里面 非a-z ,  - ' 的 替换成空格
>
>
>
>
>
> 2009/2/6 msmouse <msmouse@gmail.com>
>>
>> 1是匹配 <xccxvvcx>
>> 2匹配  small-pig's
>>
>> ^表示否定 [^\<]就是非"<"的任意字符
>>
>> ----------------------------------
>> msmouse@ir.hit.edu.cn
>> msmouse@gmail.com
>>
>>
>> 2009/2/6 zhouJinfeng <buniao@hotmail.com>
>>>
>>> 新手有两个正则表达式看不懂,请高手解释
>>> 1. $string=~ s/\<[^\<]+\>/ /g
>>> 2. $string=~ s/[^a-z\-\']/ /g
>>> 其匹配的模式是什么,举几个例子看看 ^在中括号内是表否定么?(不是字符开头?)
>>>
>>>
>>> ________________________________
>>> MSN 9.0 正式版上线,捆绑免费25G网络硬盘! 立刻下载!
>>>
>>
>> >>
>
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 关于Perl的正则表达式的问题

1是把所有<...>形式的字符串替换成空格,而不是<>里面的吧
2009/2/6 Michael Zeng <galaxy2004@gmail.com>:
> 1. $string=~ s/\<[^\<]+\>/ /g
> 是把字符串里面所有单个 < > (即里面不嵌套 < ) 里面的东西全部替换成一个空格,
> 但是< > 不是元字符啊,没有必要 \ ,
>
> 2. $string=~ s/[^a-z\-\']/ /g
> 把字符串里面 非a-z , - ' 的 替换成空格
>
>
>
>
>
> 2009/2/6 msmouse <msmouse@gmail.com>
>>
>> 1是匹配 <xccxvvcx>
>> 2匹配 small-pig's
>>
>> ^表示否定 [^\<]就是非"<"的任意字符
>>
>> ----------------------------------
>> msmouse@ir.hit.edu.cn
>> msmouse@gmail.com
>>
>>
>> 2009/2/6 zhouJinfeng <buniao@hotmail.com>
>>>
>>> 新手有两个正则表达式看不懂,请高手解释
>>> 1. $string=~ s/\<[^\<]+\>/ /g
>>> 2. $string=~ s/[^a-z\-\']/ /g
>>> 其匹配的模式是什么,举几个例子看看 ^在中括号内是表否定么?(不是字符开头?)
>>>
>>>
>>> ________________________________
>>> MSN 9.0 正式版上线,捆绑免费25G网络硬盘! 立刻下载!
>>>
>>
>> >>
>

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 关于Perl的正则表达式的问题

1. $string=~ s/\<[^\<]+\>/ /g
是把字符串里面所有单个 < > (即里面不嵌套 < ) 里面的东西全部替换成一个空格,
但是< > 不是元字符啊,没有必要 \  ,
 
2. $string=~ s/[^a-z\-\']/ /g
把字符串里面 非a-z ,  - ' 的 替换成空格
 
 
 


 
2009/2/6 msmouse <msmouse@gmail.com>
1是匹配 <xccxvvcx>
2匹配  small-pig's

^表示否定 [^\<]就是非"<"的任意字符

----------------------------------
msmouse@ir.hit.edu.cn
msmouse@gmail.com


2009/2/6 zhouJinfeng <buniao@hotmail.com>

新手有两个正则表达式看不懂,请高手解释
1. $string=~ s/\<[^\<]+\>/ /g
2. $string=~ s/[^a-z\-\']/ /g
其匹配的模式是什么,举几个例子看看 ^在中括号内是表否定么?(不是字符开头?)



MSN 9.0 正式版上线,捆绑免费25G网络硬盘! 立刻下载!


--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 关于Perl的正则表达式的问题

1是匹配 <xccxvvcx>
2匹配  small-pig's

^表示否定 [^\<]就是非"<"的任意字符

----------------------------------
msmouse@ir.hit.edu.cn
msmouse@gmail.com


2009/2/6 zhouJinfeng <buniao@hotmail.com>
新手有两个正则表达式看不懂,请高手解释
1. $string=~ s/\<[^\<]+\>/ /g
2. $string=~ s/[^a-z\-\']/ /g
其匹配的模式是什么,举几个例子看看 ^在中括号内是表否定么?(不是字符开头?)



MSN 9.0 正式版上线,捆绑免费25G网络硬盘! 立刻下载!



--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] 关于Perl的正则表达式的问题

新手有两个正则表达式看不懂,请高手解释
1. $string=~ s/\<[^\<]+\>/ /g
2. $string=~ s/[^a-z\-\']/ /g
其匹配的模式是什么,举几个例子看看 ^在中括号内是表否定么?(不是字符开头?)



MSN 9.0 正式版上线,捆绑免费25G网络硬盘! 立刻下载!
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: Redhat 北京 Perl Job

晕倒...

2009/2/6 ximiff <ximiff@gmail.com>:
> 这个职位一年前就在招了呀……
>
>
>
> 2009-02-06
> ________________________________
> ximiff
> ________________________________
> 发件人: 陈宇迪
> 发送时间: 2009-02-06 16:00:00
> 收件人: perlchina
> 抄送:
> 主题: [PerlChina] Re: Redhat 北京 Perl Job
> 这个春节前就在招了,有半个月了吧。感觉Red hat招聘的职位很多,但是在网上查不到最近有谁去面试的消息。不会是招聘被冻结了吧?
> 2009/2/6 smallfish <perluo777@gmail.com>:
>> 刚想到MSN告诉你下,让你投的呢。真快
>>
>> 2009/2/6 Shu Cho <neatcho@gmail.com>
>>>
>>> 很吸引人啊!
>>>
>>> 2009/2/6 smallfish <perluo777@gmail.com>:
>>> > 貌似很不错。高手们赶紧去报名把。
>>> >
>>> > 2009/2/6 Qiang (James) <shijialee@gmail.com>
>>> >>
>>> >> 我看到一个 Perl 工作,感兴趣的朋友不妨试试。另, Redhat 正在大力招人
>>> >>
>>> >>
>>> >>
>>> >> http://jobs.zhaopin.com/P4/CC1362/4353/J900/002/CC136243538J90000264000.htm
>>> >>
>>> >> Software Engineer - Bugzilla/Perl Programming
>>> >>
>>> >> Major responsibilities
>>> >>
>>> >> * Design and develop Red Hat's portal sites
>>> >> * Design and develop software tools and statistical metrics as
>>> >> needed
>>> >> * Design and improve Hardware Certification team's catalogue
>>> >> * Maintain and Improve catalogue database
>>> >> * Other tasks might be assigned
>>> >>
>>> >> Requirements
>>> >>
>>> >> * In-depth knowledge of Perl programming
>>> >> * In-depth knowledge of Bugzilla
>>> >> * In-depth knowledge of Database (MySQL, PostgreSQL)
>>> >> * In-depth understanding of shell programming and debugging
>>> >> * In-depth understanding of Linux platform software development
>>> >> * Experience in Linux installation and configuration
>>> >> * Self-motivated and excellent time management skills
>>> >> * Strong analytical and problem-solving skills
>>> >> * Strong written and verbal communication skills in English
>>> >> * Strong team working skills
>>> >> * Experience in Quality Assurance a plus
>>> >> * Knowledge of AJAX/C/C++/Python a plus
>>> >> * Additional hardware platform (IBM Power, IBM zSeries, Intel IPF)
>>> >> experience a plus
>>> >> * Red Hat Certified Engineer(RHCE) a plus
>>> >>
>>> >
>>> > --
>>> > blog - http://hi.baidu.com/smallfish7788
>>> >
>>> > >
>>> >
>>>
>> --
>> blog - http://hi.baidu.com/smallfish7788
>>
>> >
>>
> .
> >
>

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

2009年2月5日星期四

[PerlChina] Re: Redhat 北京 Perl Job

这个职位一年前就在招了呀……
 
 
 
2009-02-06

ximiff

发件人: 陈宇迪
发送时间: 2009-02-06  16:00:00
收件人: perlchina
抄送:
主题: [PerlChina] Re: Redhat 北京 Perl Job
这个春节前就在招了,有半个月了吧。感觉Red hat招聘的职位很多,但是在网上查不到最近有谁去面试的消息。不会是招聘被冻结了吧?
2009/2/6 smallfish <perluo777@gmail.com>:
> 刚想到MSN告诉你下,让你投的呢。真快
>
> 2009/2/6 Shu Cho <neatcho@gmail.com>
>>
>> 很吸引人啊!
>>
>> 2009/2/6 smallfish <perluo777@gmail.com>:
>> > 貌似很不错。高手们赶紧去报名把。
>> >
>> > 2009/2/6 Qiang (James) <shijialee@gmail.com>
>> >>
>> >> 我看到一个 Perl 工作,感兴趣的朋友不妨试试。另, Redhat 正在大力招人
>> >>
>> >>
>> >>
>> >> http://jobs.zhaopin.com/P4/CC1362/4353/J900/002/CC136243538J90000264000.htm
>> >>
>> >> Software Engineer - Bugzilla/Perl Programming
>> >>
>> >> Major responsibilities
>> >>
>> >>     * Design and develop Red Hat's portal sites
>> >>     * Design and develop software tools and statistical metrics as
>> >> needed
>> >>     * Design and improve Hardware Certification team's catalogue
>> >>     * Maintain and Improve catalogue database
>> >>     * Other tasks might be assigned
>> >>
>> >> Requirements
>> >>
>> >>     * In-depth knowledge of Perl programming
>> >>     * In-depth knowledge of Bugzilla
>> >>     * In-depth knowledge of Database (MySQL, PostgreSQL)
>> >>     * In-depth understanding of shell programming and debugging
>> >>     * In-depth understanding of Linux platform software development
>> >>     * Experience in Linux installation and configuration
>> >>     * Self-motivated and excellent time management skills
>> >>     * Strong analytical and problem-solving skills
>> >>     * Strong written and verbal communication skills in English
>> >>     * Strong team working skills
>> >>     * Experience in Quality Assurance a plus
>> >>     * Knowledge of AJAX/C/C++/Python a plus
>> >>     * Additional hardware platform (IBM Power, IBM zSeries, Intel IPF)
>> >> experience a plus
>> >>     * Red Hat Certified Engineer(RHCE) a plus
>> >>
>> >
>> > --
>> > blog - http://hi.baidu.com/smallfish7788
>> >
>> > >
>> >
>>
> --
> blog - http://hi.baidu.com/smallfish7788
>
> >
>
.

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: Redhat 北京 Perl Job

这个春节前就在招了,有半个月了吧。感觉Red hat招聘的职位很多,但是在网上查不到最近有谁去面试的消息。不会是招聘被冻结了吧?
2009/2/6 smallfish <perluo777@gmail.com>:
> 刚想到MSN告诉你下,让你投的呢。真快
>
> 2009/2/6 Shu Cho <neatcho@gmail.com>
>>
>> 很吸引人啊!
>>
>> 2009/2/6 smallfish <perluo777@gmail.com>:
>> > 貌似很不错。高手们赶紧去报名把。
>> >
>> > 2009/2/6 Qiang (James) <shijialee@gmail.com>
>> >>
>> >> 我看到一个 Perl 工作,感兴趣的朋友不妨试试。另, Redhat 正在大力招人
>> >>
>> >>
>> >>
>> >> http://jobs.zhaopin.com/P4/CC1362/4353/J900/002/CC136243538J90000264000.htm
>> >>
>> >> Software Engineer - Bugzilla/Perl Programming
>> >>
>> >> Major responsibilities
>> >>
>> >> * Design and develop Red Hat's portal sites
>> >> * Design and develop software tools and statistical metrics as
>> >> needed
>> >> * Design and improve Hardware Certification team's catalogue
>> >> * Maintain and Improve catalogue database
>> >> * Other tasks might be assigned
>> >>
>> >> Requirements
>> >>
>> >> * In-depth knowledge of Perl programming
>> >> * In-depth knowledge of Bugzilla
>> >> * In-depth knowledge of Database (MySQL, PostgreSQL)
>> >> * In-depth understanding of shell programming and debugging
>> >> * In-depth understanding of Linux platform software development
>> >> * Experience in Linux installation and configuration
>> >> * Self-motivated and excellent time management skills
>> >> * Strong analytical and problem-solving skills
>> >> * Strong written and verbal communication skills in English
>> >> * Strong team working skills
>> >> * Experience in Quality Assurance a plus
>> >> * Knowledge of AJAX/C/C++/Python a plus
>> >> * Additional hardware platform (IBM Power, IBM zSeries, Intel IPF)
>> >> experience a plus
>> >> * Red Hat Certified Engineer(RHCE) a plus
>> >>
>> >
>> > --
>> > blog - http://hi.baidu.com/smallfish7788
>> >
>> > >
>> >
>>
> --
> blog - http://hi.baidu.com/smallfish7788
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 如何在windows下安装XML::LibXML?

恩,要等蛮长时间才能行,现在问题搞定了,谢啦。
 
btw:需要Perl 5.8.8 build>=819 才可以。

2009/2/5 Qiang (James) <shijialee@gmail.com>
Uliyas Fan wrote:
> 在ppm下没有找到这个package,
>
> 后来在网上搜了两个ppd,尝试安装,安装过程中会报些dll的错误,不知道怎么解
> 决,那位有什么方法指点一下啊?
>
> -------------------------------------------------------------------------------------------------------------------
> D:\>ppm install http://theoryx5.uwinnipeg.ca/ppms/XML-LibXML-Common.ppd

[...]

> Fetch libxml2.dll? [yes] y

这里你直接回车或输入 "yes" 才可以。安装成功后 XML-LibXML.ppd 安装就应该
没问题了。

Qiang(James)
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 2009-02-12 (下个星期四) 北京 Perl 用户组聚会

本次 我和一个同事出差到北京 会一起参加的:)
------
Sincerely!
Jim


2009/2/5 Don Qin <icefishc@gmail.com>
嘿嘿 这次要喝一杯

2009/2/5 weimade <weimade@yahoo.com.cn>

继续参加。。自带干粮

On 2月3日, 上午11时53分, "Qiang (James)" <shijia...@gmail.com> wrote:
> Beijing Perl Mongers 2009-02-12 Meetup
>
> 聚会页面:http://wiki.perlchina.org/BJPW-20090212
> 北京 Perl 用户组  http://wiki.perlchina.org/BJPW
>
> 时间: 2月12号星期四晚 7点 - 9点
>
> 地点: "流"英语学习吧(原名"Study英语学习吧") 北京市海淀区成府路57号,五道
> 口城铁站西步行10分钟路北(刚过文津酒店,在工商银行旁边)
>
> 地图:http://www.aibang.com/?area=abbd&cmd=traffic&id=829420302-
> 695595310&frm=in_bzt_mapb
>
> 电话: 158 1088 0868
>
> 主题: 介绍 由 JavaScipt, Perl 和 PL/PgSQL 驱动的 Firefox 集群
>
> 演讲长度: 60 分钟
>
> 简介:在本次交流中,agentzh 将给出一个已投入生产的 Firefox 集群,该集群
> 主要用于从包括含 AJAX 内容的网页中抽取深层信息。众多像 Firefox, Apache,
> 和 PostgreSQL 这样的流行的软件,通过 JavaScript, Perl, 以及 OpenResty 的
> web 服务粘合为了一个整体。Firefox 的性能也通过内容预取和"硬缓存"得到了极
> 大的改进。我们将会看到,该解决方案不仅为全自动的基于视觉信息的数据抽取提
> 供了许多机遇,而且还开辟了一条将 Firefox 插件集群化的道路。现在我们已经
> 可以把 Firefox 和 JavaScritp 编程这样的前端技术,应用到像搜索引擎爬取和
> 内容索引这样的非常后端的工作当中去了。
>
> 收费标准: 每人20元包括分摊场地费,饮料畅饮以及投影仪租金
>
> 这里有盖饭和汉堡,请自点(12元,16元,18元不等)
>
> Qiang(James)


--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: Redhat 北京 Perl Job

刚想到MSN告诉你下,让你投的呢。真快

2009/2/6 Shu Cho <neatcho@gmail.com>

很吸引人啊!

2009/2/6 smallfish <perluo777@gmail.com>:
> 貌似很不错。高手们赶紧去报名把。
>
> 2009/2/6 Qiang (James) <shijialee@gmail.com>
>>
>> 我看到一个 Perl 工作,感兴趣的朋友不妨试试。另, Redhat 正在大力招人
>>
>>
>> http://jobs.zhaopin.com/P4/CC1362/4353/J900/002/CC136243538J90000264000.htm
>>
>> Software Engineer - Bugzilla/Perl Programming
>>
>> Major responsibilities
>>
>>     * Design and develop Red Hat's portal sites
>>     * Design and develop software tools and statistical metrics as needed
>>     * Design and improve Hardware Certification team's catalogue
>>     * Maintain and Improve catalogue database
>>     * Other tasks might be assigned
>>
>> Requirements
>>
>>     * In-depth knowledge of Perl programming
>>     * In-depth knowledge of Bugzilla
>>     * In-depth knowledge of Database (MySQL, PostgreSQL)
>>     * In-depth understanding of shell programming and debugging
>>     * In-depth understanding of Linux platform software development
>>     * Experience in Linux installation and configuration
>>     * Self-motivated and excellent time management skills
>>     * Strong analytical and problem-solving skills
>>     * Strong written and verbal communication skills in English
>>     * Strong team working skills
>>     * Experience in Quality Assurance a plus
>>     * Knowledge of AJAX/C/C++/Python a plus
>>     * Additional hardware platform (IBM Power, IBM zSeries, Intel IPF)
>> experience a plus
>>     * Red Hat Certified Engineer(RHCE) a plus
>>
>
> --
> blog - http://hi.baidu.com/smallfish7788
>
> >
>

--
blog - http://hi.baidu.com/smallfish7788

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: Redhat 北京 Perl Job

很吸引人啊!

2009/2/6 smallfish <perluo777@gmail.com>:
> 貌似很不错。高手们赶紧去报名把。
>
> 2009/2/6 Qiang (James) <shijialee@gmail.com>
>>
>> 我看到一个 Perl 工作,感兴趣的朋友不妨试试。另, Redhat 正在大力招人
>>
>>
>> http://jobs.zhaopin.com/P4/CC1362/4353/J900/002/CC136243538J90000264000.htm
>>
>> Software Engineer - Bugzilla/Perl Programming
>>
>> Major responsibilities
>>
>> * Design and develop Red Hat's portal sites
>> * Design and develop software tools and statistical metrics as needed
>> * Design and improve Hardware Certification team's catalogue
>> * Maintain and Improve catalogue database
>> * Other tasks might be assigned
>>
>> Requirements
>>
>> * In-depth knowledge of Perl programming
>> * In-depth knowledge of Bugzilla
>> * In-depth knowledge of Database (MySQL, PostgreSQL)
>> * In-depth understanding of shell programming and debugging
>> * In-depth understanding of Linux platform software development
>> * Experience in Linux installation and configuration
>> * Self-motivated and excellent time management skills
>> * Strong analytical and problem-solving skills
>> * Strong written and verbal communication skills in English
>> * Strong team working skills
>> * Experience in Quality Assurance a plus
>> * Knowledge of AJAX/C/C++/Python a plus
>> * Additional hardware platform (IBM Power, IBM zSeries, Intel IPF)
>> experience a plus
>> * Red Hat Certified Engineer(RHCE) a plus
>>
>
> --
> blog - http://hi.baidu.com/smallfish7788
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: Redhat 北京 Perl Job

貌似很不错。高手们赶紧去报名把。

2009/2/6 Qiang (James) <shijialee@gmail.com>

我看到一个 Perl 工作,感兴趣的朋友不妨试试。另, Redhat 正在大力招人

http://jobs.zhaopin.com/P4/CC1362/4353/J900/002/CC136243538J90000264000.htm

Software Engineer - Bugzilla/Perl Programming

Major responsibilities

    * Design and develop Red Hat's portal sites
    * Design and develop software tools and statistical metrics as needed
    * Design and improve Hardware Certification team's catalogue
    * Maintain and Improve catalogue database
    * Other tasks might be assigned

Requirements

    * In-depth knowledge of Perl programming
    * In-depth knowledge of Bugzilla
    * In-depth knowledge of Database (MySQL, PostgreSQL)
    * In-depth understanding of shell programming and debugging
    * In-depth understanding of Linux platform software development
    * Experience in Linux installation and configuration
    * Self-motivated and excellent time management skills
    * Strong analytical and problem-solving skills
    * Strong written and verbal communication skills in English
    * Strong team working skills
    * Experience in Quality Assurance a plus
    * Knowledge of AJAX/C/C++/Python a plus
    * Additional hardware platform (IBM Power, IBM zSeries, Intel IPF)
experience a plus
    * Red Hat Certified Engineer(RHCE) a plus


--
blog - http://hi.baidu.com/smallfish7788

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: Redhat 北京 Perl Job

rh是不是搬家了,去过一次国贸那边,有点远。。
 
 
 
 
2009-02-06

ximiff

发件人: Qiang (James)
发送时间: 2009-02-06  09:44:11
收件人: perlchina
抄送:
主题: [PerlChina] Redhat 北京 Perl Job
我看到一个 Perl 工作,感兴趣的朋友不妨试试。另, Redhat 正在大力招人
http://jobs.zhaopin.com/P4/CC1362/4353/J900/002/CC136243538J90000264000.htm
Software Engineer - Bugzilla/Perl Programming
Major responsibilities
     * Design and develop Red Hat's portal sites
     * Design and develop software tools and statistical metrics as needed
     * Design and improve Hardware Certification team's catalogue
     * Maintain and Improve catalogue database
     * Other tasks might be assigned
Requirements
     * In-depth knowledge of Perl programming
     * In-depth knowledge of Bugzilla
     * In-depth knowledge of Database (MySQL, PostgreSQL)
     * In-depth understanding of shell programming and debugging
     * In-depth understanding of Linux platform software development
     * Experience in Linux installation and configuration
     * Self-motivated and excellent time management skills
     * Strong analytical and problem-solving skills
     * Strong written and verbal communication skills in English
     * Strong team working skills
     * Experience in Quality Assurance a plus
     * Knowledge of AJAX/C/C++/Python a plus
     * Additional hardware platform (IBM Power, IBM zSeries, Intel IPF) 
experience a plus
     * Red Hat Certified Engineer(RHCE) a plus
Qiang(James)

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Redhat 北京 Perl Job

我看到一个 Perl 工作,感兴趣的朋友不妨试试。另, Redhat 正在大力招人

http://jobs.zhaopin.com/P4/CC1362/4353/J900/002/CC136243538J90000264000.htm

Software Engineer - Bugzilla/Perl Programming

Major responsibilities

* Design and develop Red Hat's portal sites
* Design and develop software tools and statistical metrics as needed
* Design and improve Hardware Certification team's catalogue
* Maintain and Improve catalogue database
* Other tasks might be assigned

Requirements

* In-depth knowledge of Perl programming
* In-depth knowledge of Bugzilla
* In-depth knowledge of Database (MySQL, PostgreSQL)
* In-depth understanding of shell programming and debugging
* In-depth understanding of Linux platform software development
* Experience in Linux installation and configuration
* Self-motivated and excellent time management skills
* Strong analytical and problem-solving skills
* Strong written and verbal communication skills in English
* Strong team working skills
* Experience in Quality Assurance a plus
* Knowledge of AJAX/C/C++/Python a plus
* Additional hardware platform (IBM Power, IBM zSeries, Intel IPF)
experience a plus
* Red Hat Certified Engineer(RHCE) a plus


Qiang(James)

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 如何在windows下安装XML::LibXML?

Uliyas Fan wrote:
> 在ppm下没有找到这个package,
>
> 后来在网上搜了两个ppd,尝试安装,安装过程中会报些dll的错误,不知道怎么解
> 决,那位有什么方法指点一下啊?
>
> -------------------------------------------------------------------------------------------------------------------
> D:\>ppm install http://theoryx5.uwinnipeg.ca/ppms/XML-LibXML-Common.ppd

[...]

> Fetch libxml2.dll? [yes] y

这里你直接回车或输入 "yes" 才可以。安装成功后 XML-LibXML.ppd 安装就应该
没问题了。

Qiang(James)

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 如何在windows下安装XML::LibXML?

手工把dll下载下来放到system32文件夹下或者PATH变量能搜索到的目录

2009/2/5 Uliyas Fan <uliyas@gmail.com>
在ppm下没有找到这个package,
 
后来在网上搜了两个ppd,尝试安装,安装过程中会报些dll的错误,不知道怎么解决,那位有什么方法指点一下啊?
 
-------------------------------------------------------------------------------------------------------------------
D:\>ppm install http://theoryx5.uwinnipeg.ca/ppms/XML-LibXML-Common.ppd
Downloading XML-LibXML-Common-0.13...done
Unpacking XML-LibXML-Common-0.13...done
Generating HTML for XML-LibXML-Common-0.13...done
Installing to site area...done
Downloading XML-LibXML-Common-0.13 install script...done
Running XML-LibXML-Common-0.13 install script...
The library libxml2.dll is needed to complete the installation,
and should be placed in a directory somewhere in your PATH
environment variable. I can fetch and install this for you,
if you don't already have it.
Fetch libxml2.dll? [yes] y
Terminating on signal SIGINT(2)
终止批处理操作吗(Y/N)? n
 
D:\>ppm install http://theoryx5.uwinnipeg.ca/ppms/XML-LibXML.ppd
Downloading XML-LibXML-1.64...done
Unpacking XML-LibXML-1.64...done
Generating HTML for XML-LibXML-1.64...done
Installing to site area...done
Downloading XML-LibXML-1.64 install script...done
Running XML-LibXML-1.64 install script...
Do you want to alter ParserDetails.ini? [yes]
C:\Perl\bin\perl.exe -MXML::SAX -e "XML::SAX->add_parser(q(XML::LibXML::SAX::Par
ser))->save_parsers()"
Can't load 'C:/Perl/site/lib/auto/XML/LibXML/LibXML.dll' for module XML::LibXML:
 load_file:找不到指定的程序。 at C:/Perl/lib/DynaLoader.pm line 230.
 at C:/Perl/site/lib/XML/LibXML.pm line 116
BEGIN failed--compilation aborted at C:/Perl/site/lib/XML/LibXML.pm line 116.
Compilation failed in require at C:/Perl/site/lib/XML/LibXML/SAX/Parser.pm line
8.
BEGIN failed--compilation aborted at C:/Perl/site/lib/XML/LibXML/SAX/Parser.pm l
ine 8.
Compilation failed in require at C:/Perl/site/lib/XML/SAX.pm line 147.
system C:\Perl\bin\perl.exe -MXML::SAX -e "XML::SAX->add_parser(q(XML::LibXML::S
AX::Parser))->save_parsers()" failed: 65280 at install_script line 32, <STDIN> l
ine 1.
ppm install failed: Command exits with 9:
  C:\Perl\bin\perl.exe install_script
  stopped
D:\>
 
Uliyas


--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] 如何在windows下安装XML::LibXML?

在ppm下没有找到这个package,
 
后来在网上搜了两个ppd,尝试安装,安装过程中会报些dll的错误,不知道怎么解决,那位有什么方法指点一下啊?
 
-------------------------------------------------------------------------------------------------------------------
D:\>ppm install http://theoryx5.uwinnipeg.ca/ppms/XML-LibXML-Common.ppd
Downloading XML-LibXML-Common-0.13...done
Unpacking XML-LibXML-Common-0.13...done
Generating HTML for XML-LibXML-Common-0.13...done
Installing to site area...done
Downloading XML-LibXML-Common-0.13 install script...done
Running XML-LibXML-Common-0.13 install script...
The library libxml2.dll is needed to complete the installation,
and should be placed in a directory somewhere in your PATH
environment variable. I can fetch and install this for you,
if you don't already have it.
Fetch libxml2.dll? [yes] y
Terminating on signal SIGINT(2)
终止批处理操作吗(Y/N)? n
 
D:\>ppm install http://theoryx5.uwinnipeg.ca/ppms/XML-LibXML.ppd
Downloading XML-LibXML-1.64...done
Unpacking XML-LibXML-1.64...done
Generating HTML for XML-LibXML-1.64...done
Installing to site area...done
Downloading XML-LibXML-1.64 install script...done
Running XML-LibXML-1.64 install script...
Do you want to alter ParserDetails.ini? [yes]
C:\Perl\bin\perl.exe -MXML::SAX -e "XML::SAX->add_parser(q(XML::LibXML::SAX::Par
ser))->save_parsers()"
Can't load 'C:/Perl/site/lib/auto/XML/LibXML/LibXML.dll' for module XML::LibXML:
 load_file:找不到指定的程序。 at C:/Perl/lib/DynaLoader.pm line 230.
 at C:/Perl/site/lib/XML/LibXML.pm line 116
BEGIN failed--compilation aborted at C:/Perl/site/lib/XML/LibXML.pm line 116.
Compilation failed in require at C:/Perl/site/lib/XML/LibXML/SAX/Parser.pm line
8.
BEGIN failed--compilation aborted at C:/Perl/site/lib/XML/LibXML/SAX/Parser.pm l
ine 8.
Compilation failed in require at C:/Perl/site/lib/XML/SAX.pm line 147.
system C:\Perl\bin\perl.exe -MXML::SAX -e "XML::SAX->add_parser(q(XML::LibXML::S
AX::Parser))->save_parsers()" failed: 65280 at install_script line 32, <STDIN> l
ine 1.
ppm install failed: Command exits with 9:
  C:\Perl\bin\perl.exe install_script
  stopped
D:\>
 
Uliyas

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 2009-02-12 (下个星期四) 北京 Perl 用户组聚会

嘿嘿 这次要喝一杯

2009/2/5 weimade <weimade@yahoo.com.cn>
继续参加。。自带干粮

On 2月3日, 上午11时53分, "Qiang (James)" <shijia...@gmail.com> wrote:
> Beijing Perl Mongers 2009-02-12 Meetup
>
> 聚会页面:http://wiki.perlchina.org/BJPW-20090212
> 北京 Perl 用户组  http://wiki.perlchina.org/BJPW
>
> 时间: 2月12号星期四晚 7点 - 9点
>
> 地点: "流"英语学习吧(原名"Study英语学习吧") 北京市海淀区成府路57号,五道
> 口城铁站西步行10分钟路北(刚过文津酒店,在工商银行旁边)
>
> 地图:http://www.aibang.com/?area=abbd&cmd=traffic&id=829420302-
> 695595310&frm=in_bzt_mapb
>
> 电话: 158 1088 0868
>
> 主题: 介绍 由 JavaScipt, Perl 和 PL/PgSQL 驱动的 Firefox 集群
>
> 演讲长度: 60 分钟
>
> 简介:在本次交流中,agentzh 将给出一个已投入生产的 Firefox 集群,该集群
> 主要用于从包括含 AJAX 内容的网页中抽取深层信息。众多像 Firefox, Apache,
> 和 PostgreSQL 这样的流行的软件,通过 JavaScript, Perl, 以及 OpenResty 的
> web 服务粘合为了一个整体。Firefox 的性能也通过内容预取和"硬缓存"得到了极
> 大的改进。我们将会看到,该解决方案不仅为全自动的基于视觉信息的数据抽取提
> 供了许多机遇,而且还开辟了一条将 Firefox 插件集群化的道路。现在我们已经
> 可以把 Firefox 和 JavaScritp 编程这样的前端技术,应用到像搜索引擎爬取和
> 内容索引这样的非常后端的工作当中去了。
>
> 收费标准: 每人20元包括分摊场地费,饮料畅饮以及投影仪租金
>
> 这里有盖饭和汉堡,请自点(12元,16元,18元不等)
>
> Qiang(James) --~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 2009-02-12 (下个星期四) 北京 Perl 用户组聚会

继续参加。。自带干粮

On 2月3日, 上午11时53分, "Qiang (James)" <shijia...@gmail.com> wrote:
> Beijing Perl Mongers 2009-02-12 Meetup
>
> 聚会页面:http://wiki.perlchina.org/BJPW-20090212
> 北京 Perl 用户组 http://wiki.perlchina.org/BJPW
>
> 时间: 2月12号星期四晚 7点 - 9点
>
> 地点: "流"英语学习吧(原名"Study英语学习吧") 北京市海淀区成府路57号,五道
> 口城铁站西步行10分钟路北(刚过文津酒店,在工商银行旁边)
>
> 地图:http://www.aibang.com/?area=abbd&cmd=traffic&id=829420302-
> 695595310&frm=in_bzt_mapb
>
> 电话: 158 1088 0868
>
> 主题: 介绍 由 JavaScipt, Perl 和 PL/PgSQL 驱动的 Firefox 集群
>
> 演讲长度: 60 分钟
>
> 简介:在本次交流中,agentzh 将给出一个已投入生产的 Firefox 集群,该集群
> 主要用于从包括含 AJAX 内容的网页中抽取深层信息。众多像 Firefox, Apache,
> 和 PostgreSQL 这样的流行的软件,通过 JavaScript, Perl, 以及 OpenResty 的
> web 服务粘合为了一个整体。Firefox 的性能也通过内容预取和"硬缓存"得到了极
> 大的改进。我们将会看到,该解决方案不仅为全自动的基于视觉信息的数据抽取提
> 供了许多机遇,而且还开辟了一条将 Firefox 插件集群化的道路。现在我们已经
> 可以把 Firefox 和 JavaScritp 编程这样的前端技术,应用到像搜索引擎爬取和
> 内容索引这样的非常后端的工作当中去了。
>
> 收费标准: 每人20元包括分摊场地费,饮料畅饮以及投影仪租金
>
> 这里有盖饭和汉堡,请自点(12元,16元,18元不等)
>
> Qiang(James)
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

2009年2月4日星期三

[PerlChina] Re: 关于tie的一个疑问

2009/2/5 Tian Yazhou <phio.asia@gmail.com>:
> 谢谢回答:-)
>
> 但原因不是db操作不成功,是因为使用SDBM_File去tied一个哈希之后,所有的key-value对中的value都必须是一个string或者数字,如果是一个匿名数组的话,应该会被serialize成ARRAY(0x8ef0c28)之类的值,导致使用ref得到的自然是个空值,解决办法是使用MLDBM。
>

哦,其实我是知道这一点的,但把use SDBM_File看成是use MLDBM了,:)
MLDBM支持多级索引key,不错的东东,曾被我们antispam上大量应用。

--
Jeff Peng
http://home.arcor.de/pangj/

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 关于tie的一个疑问

谢谢回答:-)

但原因不是db操作不成功,是因为使用SDBM_File去tied一个哈希之后,所有的key-value对中的value都必须是一个string或者数字,如果是一个匿名数组的话,应该会被serialize成ARRAY(0x8ef0c28)之类的值,导致使用ref得到的自然是个空值,解决办法是使用MLDBM。

是从Advanced Perl Programming中看到的,具体参见10.3.1和10.3.2节

2009/2/5 Jeff Peng <yonghua.peng@gmail.com>:
> 2009/2/5 Tian Yazhou <phio.asia@gmail.com>:
>> 代码如下, 很简单的一段。但是我发现加上中间那个tie语句后,ref得到的就是空值,而不加的话就是ARRAY,用的是Fdedora 8上的5.8.8的perl。
>> tie好像不应该会改变变量的属性的吧。不知道如何解释,请大家帮忙:
>>
>
>
> 空值是因为DB操作未成功。
> 在脚本里加上use strict和use warnings看看有何提示。
>
> --
> Jeff Peng
> http://home.arcor.de/pangj/
>


--
You should be the change you wish to see in the world

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 关于tie的一个疑问

2009/2/5 Tian Yazhou <phio.asia@gmail.com>:
> 代码如下, 很简单的一段。但是我发现加上中间那个tie语句后,ref得到的就是空值,而不加的话就是ARRAY,用的是Fdedora 8上的5.8.8的perl。
> tie好像不应该会改变变量的属性的吧。不知道如何解释,请大家帮忙:
>


空值是因为DB操作未成功。
在脚本里加上use strict和use warnings看看有何提示。

--
Jeff Peng
http://home.arcor.de/pangj/

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] 关于tie的一个疑问

代码如下, 很简单的一段。但是我发现加上中间那个tie语句后,ref得到的就是空值,而不加的话就是ARRAY,用的是Fdedora 8上的5.8.8的perl。
tie好像不应该会改变变量的属性的吧。不知道如何解释,请大家帮忙:

use Fcntl;
use SDBM_File;
our %hash;
#tie( %hash, 'SDBM_File', 'test.dbm', O_RDWR | O_CREAT, 0640 )
# || die $!;
$hash{'networks'} = [ 'PRO2040X0', 'PRO2040X1', 'xxx' , 'yyy' ];
my $type = ref( $hash{'networks'} );
print "type: $type\n";

--
You should be the change you wish to see in the world

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: pp终于能正常使用了:)

take it easy, beckheng just want to share the happiness :)
every time i know people want to use par, i give them respect :D

and qiang's suggestion is also right, keep the bandwidth in moderate manner is also nice.

BTW, you know sunnavy is implementing shipwright?
ref http://search.cpan.org/dist/Shipwright/

Qiang (James) 写道:
Beckheng Lam wrote:   
Qiang,上一个贴子,有个链接,就是出错信息     
 我猜出来了。但是如果你想寻求帮助,何不把错误信息直接贴出,而是让大家去翻  那个连接寻找错误呢。    
以后不发此类文章即可。 :-!     
 嗯,谢谢。  我希望大家问问题时先仔细考虑,把话说清,这样的帖子才值得一读。  Qiang(James)     


--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 招集上海本地聚会

形式不重要,我们欢迎有预备的心。

zongzi 写道:
> 不用预先报名就可以去吗?
>
> --
> 行为源自需求,理念成就未来!
>
> >


--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 招集上海本地聚会

不用预先报名就可以去吗?

--
行为源自需求,理念成就未来!

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: pp终于能正常使用了:)

没看明白讲的是什么

2009/2/4 Qiang (James) <shijialee@gmail.com>:
> Beckheng Lam wrote:
>> Qiang,上一个贴子,有个链接,就是出错信息
>
> 我猜出来了。但是如果你想寻求帮助,何不把错误信息直接贴出,而是让大家去翻
> 那个连接寻找错误呢。
>
>>
>> 以后不发此类文章即可。 :-!
>
> 嗯,谢谢。
>
> 我希望大家问问题时先仔细考虑,把话说清,这样的帖子才值得一读。
>
> Qiang(James)
>
> >
>

--
-------------------------------
,,__
.. .. / o._)
/--'/--\ \-'|| riverlee(李江) Email:riverlee2008@gmail.com
/ perl \_/ / Harbin Medical University Bioinfomatics
.'\ \__\ __.'.' Msn:riverlee2008@live.cn
)\ | )\ | Blog:http://riverlee2008.blogspot.com
// \\ // \\
||_ \\|_ \\_
-' '--'' '--'
-------------------------------

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: pp终于能正常使用了:)

Beckheng Lam wrote:
> Qiang,上一个贴子,有个链接,就是出错信息

我猜出来了。但是如果你想寻求帮助,何不把错误信息直接贴出,而是让大家去翻
那个连接寻找错误呢。

>
> 以后不发此类文章即可。 :-!

嗯,谢谢。

我希望大家问问题时先仔细考虑,把话说清,这样的帖子才值得一读。

Qiang(James)

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 强大好用的分词模块Text::Scws

ftphp是开源的不?是不是索引系统都得有个分词的工具?想改成别的语言的,是否有可能?
 
 
 

发件人: Beckheng Lam
发送时间: 2009-02-04  15:01:44
收件人: perlchina
抄送:
主题: [PerlChina] Re: 强大好用的分词模块Text::Scws
果然是好消息呀,xueron是谁?

//BR


wbi 畢 wrote:
用来开发 爬虫 不错

> Date: Tue, 3 Feb 2009 22:23:00 -0800
> Subject: [PerlChina] 强大好用的分词模块Text::Scws
> From: loveme1314@gmail.com
> To: perlchina@googlegroups.com
>
> 记得Perl大会的时候有人因为Perl没有好的分词工具而头疼,这下不用愁了
> 关于Scws的相关文档可以参看http://www.ftphp.com/scws/docs.php#phpscws
> Text::Scws是一个使用了Scws分词接口的模块,使用c代码编写,其分词效率和效果都很不错
> 一下是我的一个测试
> 南京市长江大桥欢迎你
> 分词后:
> 南京市 长江 大桥 欢迎 你
> 支持GB和UTF8甚至繁体分词
> 该模块的作者是xueron@xueron.com,如果你在使用中有什么问题可以与他联系
>


--   Perl乐事 -- http://www.perlersh.org  我的博客 -- http://www.perlersh.org/blog.html  
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

2009年2月3日星期二

[PerlChina] Re: 强大好用的分词模块Text::Scws

前网易邮件组一哥们 :)

--
yonghua peng
http://home.arcor.de/pangj/


--- On Wed, 2/4/09, Beckheng Lam <bi.ken.lam@gmail.com> wrote:

> From: Beckheng Lam <bi.ken.lam@gmail.com>
> Subject: [PerlChina] Re: 强大好用的分词模块Text::Scws
> To: perlchina@googlegroups.com
> Date: Wednesday, February 4, 2009, 3:01 PM
> 果然是好消息呀,xueron是谁?
>


--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 强大好用的分词模块Text::Scws

果然是好消息呀,xueron是谁?

//BR


wbi 畢 wrote:
用来开发 爬虫 不错

> Date: Tue, 3 Feb 2009 22:23:00 -0800
> Subject: [PerlChina] 强大好用的分词模块Text::Scws
> From: loveme1314@gmail.com
> To: perlchina@googlegroups.com
>
> 记得Perl大会的时候有人因为Perl没有好的分词工具而头疼,这下不用愁了
> 关于Scws的相关文档可以参看http://www.ftphp.com/scws/docs.php#phpscws
> Text::Scws是一个使用了Scws分词接口的模块,使用c代码编写,其分词效率和效果都很不错
> 一下是我的一个测试
> 南京市长江大桥欢迎你
> 分词后:
> 南京市 长江 大桥 欢迎 你
> 支持GB和UTF8甚至繁体分词
> 该模块的作者是xueron@xueron.com,如果你在使用中有什么问题可以与他联系
>


--  Perl乐事 -- http://www.perlersh.org 我的博客 -- http://www.perlersh.org/blog.html 

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 强大好用的分词模块Text::Scws

用来开发 爬虫 不错

> Date: Tue, 3 Feb 2009 22:23:00 -0800
> Subject: [PerlChina] 强大好用的分词模块Text::Scws
> From: loveme1314@gmail.com
> To: perlchina@googlegroups.com
>
> 记得Perl大会的时候有人因为Perl没有好的分词工具而头疼,这下不用愁了
> 关于Scws的相关文档可以参看http://www.ftphp.com/scws/docs.php#phpscws
> Text::Scws是一个使用了Scws分词接口的模块,使用c代码编写,其分词效率和效果都很不错
> 一下是我的一个测试
> 南京市长江大桥欢迎你
> 分词后:
> 南京市 长江 大桥 欢迎 你
> 支持GB和UTF8甚至繁体分词
> 该模块的作者是xueron@xueron.com,如果你在使用中有什么问题可以与他联系
> --~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 强大好用的分词模块Text::Scws

不错不错。
 
祝好 

Yujie Jiang   

2009-02-04


发件人: CGI.NET
发送时间: 2009-02-04 14:23:04
收件人: PerlChina Mongers 讨论组
抄送:
主题: [PerlChina] 强大好用的分词模块Text::Scws
 
记得Perl大会的时候有人因为Perl没有好的分词工具而头疼,这下不用愁了
关于Scws的相关文档可以参看http://www.ftphp.com/scws/docs.php#phpscws
Text::Scws是一个使用了Scws分词接口的模块,使用c代码编写,其分词效率和效果都很不错
一下是我的一个测试
南京市长江大桥欢迎你
分词后:
南京市 长江 大桥 欢迎 你
支持GB和UTF8甚至繁体分词
该模块的作者是xueron@xueron.com,如果你在使用中有什么问题可以与他联系
 

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] 强大好用的分词模块Text::Scws

记得Perl大会的时候有人因为Perl没有好的分词工具而头疼,这下不用愁了
关于Scws的相关文档可以参看http://www.ftphp.com/scws/docs.php#phpscws
Text::Scws是一个使用了Scws分词接口的模块,使用c代码编写,其分词效率和效果都很不错
一下是我的一个测试
南京市长江大桥欢迎你
分词后:
南京市 长江 大桥 欢迎 你
支持GB和UTF8甚至繁体分词
该模块的作者是xueron@xueron.com,如果你在使用中有什么问题可以与他联系
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 2009-02-12 (下个星期四) 北京 Perl 用户组聚会

哎,本月出差到北京,但却没具体时间,残念~~~
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 利用ActiveState Perl Dev Kit 7.3.0的perlApp生产可执行文件时候报错,请大侠帮忙

tbd means "to be done"
看来这个功能得等等 :)

itblogren 写道:
在你提供的URL中有如下衔接 SEE ALSO Log::Log4perl::Config  Log::Log4perl::Config::BaseConfigurator  Log::Log4perl::Config::DOMConfigurator  Log::Log4perl::Config::LDAPConfigurator (tbd!)  但是点击Log::Log4perl::Config::LDAPConfigurator (tbd!)出来的页面是Not found。是不是这个 LDAPConfigurator.pm没有实现。还是不知道怎么回事,请详细解释一下,谢谢  On 2月4日, 上午11时58分, purl lamp <lamp.p...@gmail.com> wrote:   
sorry it is this link:  http://search.cpan.org/~mschilli/Log-Log4perl-1.20/lib/Log/Log4perl/C...  看来是其中必然包含的模块,只是需要再确认版本的问题,因为最新版本已经是 1.20 了。  2009/2/4 purl lamp <lamp.p...@gmail.com>        
so you can google "LDAPConfigurator Log4Perl" and that will take you to this page: http://kobesearch.cpan.org/htdocs/Log-Log4perl/Log/Log4perl/Config.pm...       
google will be your friend:)       
2009/2/4 itblogren <lppch...@gmail.com>       
我看了你提供的URL并下载了Log-Log4perl-1.15.zip,但是解压后还看到里面还是没有LDAPConfigurator.pm这个       
文件,很是奇怪- 隐藏被引用文字 -         
- 显示引用的文字 -     
   


--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 利用ActiveState Perl Dev Kit 7.3.0的perlApp生产可执行文件时候报错,请大侠帮忙

在你提供的URL中有如下衔接
SEE ALSO
Log::Log4perl::Config

Log::Log4perl::Config::BaseConfigurator

Log::Log4perl::Config::DOMConfigurator

Log::Log4perl::Config::LDAPConfigurator (tbd!)

但是点击Log::Log4perl::Config::LDAPConfigurator (tbd!)出来的页面是Not found。是不是这个
LDAPConfigurator.pm没有实现。还是不知道怎么回事,请详细解释一下,谢谢

On 2月4日, 上午11时58分, purl lamp <lamp.p...@gmail.com> wrote:
> sorry it is this link:
>
> http://search.cpan.org/~mschilli/Log-Log4perl-1.20/lib/Log/Log4perl/C...
>
> 看来是其中必然包含的模块,只是需要再确认版本的问题,因为最新版本已经是 1.20 了。
>
> 2009/2/4 purl lamp <lamp.p...@gmail.com>
>
>
>
> > so you can google "LDAPConfigurator Log4Perl"
> > and that will take you to this page:
> >http://kobesearch.cpan.org/htdocs/Log-Log4perl/Log/Log4perl/Config.pm...
>
> > google will be your friend:)
>
> > 2009/2/4 itblogren <lppch...@gmail.com>
>
> > 我看了你提供的URL并下载了Log-Log4perl-1.15.zip,但是解压后还看到里面还是没有LDAPConfigurator.pm这个
> >> 文件,很是奇怪- 隐藏被引用文字 -
>
> - 显示引用的文字 -
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: [PerlChina]_Re:_咨询大家意见_--_今年北京_Perl_大会时间

Ok,对不起。原来都是有人审核的哦。呵呵。
 
 
2009-02-04

jim19gm

发件人: Qiang (James)
发送时间: 2009-02-04  11:34:53
收件人: perlchina
抄送:
主题: [PerlChina]_Re:_咨询大家意见_--_今年北京_Perl_大会时间
jim19gm wrote:
> 深入敌人内部啦。里应外合杀他个片甲不留
>  
咳, 不要跑题跑的这么远.... 这种纯灌水的帖子请少贴点吧。
Qiang(James)

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 利用ActiveState Perl Dev Kit 7.3.0的perlApp生产可执行文件时候报错,请大侠帮忙

sorry it is this link:

http://search.cpan.org/~mschilli/Log-Log4perl-1.20/lib/Log/Log4perl/Config/PropertyConfigurator.pm

看来是其中必然包含的模块,只是需要再确认版本的问题,因为最新版本已经是 1.20 了。

2009/2/4 purl lamp <lamp.purl@gmail.com>
so you can google "LDAPConfigurator Log4Perl"
and that will take you to this page:
http://kobesearch.cpan.org/htdocs/Log-Log4perl/Log/Log4perl/Config.pm.html

google will be your friend:)

2009/2/4 itblogren <lppchina@gmail.com>

我看了你提供的URL并下载了Log-Log4perl-1.15.zip,但是解压后还看到里面还是没有LDAPConfigurator.pm这个
文件,很是奇怪




--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 利用ActiveState Perl Dev Kit 7.3.0的perlApp生产可执行文件时候报错,请大侠帮忙

itblogren wrote:
> 我看了你提供的URL并下载了Log-Log4perl-1.15.zip,但是解压后还看到里面还是没有LDAPConfigurator.pm这个
> 文件,很是奇怪

ppm 包里的应该是 ppd, 至于如何安装使用上一个 email 里有些文档,请自己看
看吧。

Qiang(James)

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 利用ActiveState Perl Dev Kit 7.3.0的perlApp生产可执行文件时候报错,请大侠帮忙

一句题外话,最近在看《精通Perl》,发现Log::Log4perl挺好用的,以前一直没发现:)
 
 
 
 
2009-02-04

ximiff

发件人: itblogren
发送时间: 2009-02-04  11:51:10
收件人: PerlChina Mongers 讨论组
抄送:
主题: [PerlChina] Re: 利用ActiveState Perl Dev Kit 7.3.0的perlApp生产可执行文件时候报错,请大侠帮忙
我看了你提供的URL并下载了Log-Log4perl-1.15.zip,但是解压后还看到里面还是没有LDAPConfigurator.pm这个
文件,很是奇怪

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 利用ActiveState Perl Dev Kit 7.3.0的perlApp生产可执行文件时候报错,请大侠帮忙

so you can google "LDAPConfigurator Log4Perl"
and that will take you to this page:
http://kobesearch.cpan.org/htdocs/Log-Log4perl/Log/Log4perl/Config.pm.html

google will be your friend:)

2009/2/4 itblogren <lppchina@gmail.com>
我看了你提供的URL并下载了Log-Log4perl-1.15.zip,但是解压后还看到里面还是没有LDAPConfigurator.pm这个
文件,很是奇怪



--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 利用ActiveState Perl Dev Kit 7.3.0的perlApp生产可执行文件时候报错,请大侠帮忙

我看了你提供的URL并下载了Log-Log4perl-1.15.zip,但是解压后还看到里面还是没有LDAPConfigurator.pm这个
文件,很是奇怪
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 招集上海本地聚会

欢迎 TianYaZhou,确定之后也可以在 http://wiki.perlchina.org/SHPM 上面登记自己的讲座内容。因为是09年第一次聚会,08年没有什么本地聚会,所以请尽可能简短有趣,keep less technical for easy delivering。

2009/2/4 Tian Yazhou <phio.asia@gmail.com>
放假回家刚才回上海,前面还有朋友叫我介绍下自己,我也是一介菜鸟,还早努力学习,就等到聚会的时候再聊吧。我先报个名,跟公司申请一下看能不能跟大家介绍下我们公司用的Perl写的自动化测试框架,如果不行的话就做听众听大家讲 :-)

ps: 这样报名就可以了么

2009/2/3 purl lamp <lamp.purl@gmail.com>
大家尽可能多带些问题过去,解决之后也可以再给一些反馈,比如在 blog 上分享出去,主题可以是 perl successful story,这样更容易聚集人气。


关于组织方面的更多问题可以参考 wiki 上面翻译的 perl 小组运作指南

电话预约的事情可以交给感兴趣的人完成,我会给大家确认。

2009/2/3 空格 <ribozyme2004@gmail.com>

好的,报名。到时我会带两个小项目的要求过去,给有兴趣的朋友挣几个小钱。。。呵呵

On 2月3日, 下午1时43分, joe jiang <lamp.p...@gmail.com> wrote:
> sorry 忘记写日期,应该是下个周六,二月七日。正在设计 google calendar 方
> 便大家提醒。
>
> kind terry 写道:
>
> > 本来是安排在干锅居的,不过有的同志可能不能吃辣的







--
You should be the change you wish to see in the world




--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 2009-02-12 (下个星期四) 北京 Perl 用户组聚会

那个时候  我应该出现在北京了 公司派我去北京出差 吼吼~~
------
Sincerely!
Jim


2009/2/3 nomas <nomas.chow@gmail.com>


2009/2/3 James Q.L <shijialee@gmail.com>

加一句 :)

欢迎对 Perl 感兴趣的朋友参加。

如果你可以提前确认参加,请在 PerlChina 聚会页面上报个名。 聚会页面:http://wiki.perlchina.org/
BJPW-20090212


Qiang(James)

On Feb 3, 11:53 am, "Qiang (James)" <shijia...@gmail.com> wrote:
> Beijing Perl Mongers 2009-02-12 Meetup
>
> 聚会页面:http://wiki.perlchina.org/BJPW-20090212
> 北京 Perl 用户组  http://wiki.perlchina.org/BJPW
>
> 时间: 2月12号星期四晚 7点 - 9点
>
> 地点: "流"英语学习吧(原名"Study英语学习吧") 北京市海淀区成府路57号,五道
> 口城铁站西步行10分钟路北(刚过文津酒店,在工商银行旁边)
>
> 地图:http://www.aibang.com/?area=abbd&cmd=traffic&id=829420302-
> 695595310&frm=in_bzt_mapb
>
> 电话: 158 1088 0868
>
> 主题: 介绍 由 JavaScipt, Perl 和 PL/PgSQL 驱动的 Firefox 集群
>
> 演讲长度: 60 分钟
>
> 简介:在本次交流中,agentzh 将给出一个已投入生产的 Firefox 集群,该集群
> 主要用于从包括含 AJAX 内容的网页中抽取深层信息。众多像 Firefox, Apache,
> 和 PostgreSQL 这样的流行的软件,通过 JavaScript, Perl, 以及 OpenResty 的
> web 服务粘合为了一个整体。Firefox 的性能也通过内容预取和"硬缓存"得到了极
> 大的改进。我们将会看到,该解决方案不仅为全自动的基于视觉信息的数据抽取提
> 供了许多机遇,而且还开辟了一条将 Firefox 插件集群化的道路。现在我们已经
> 可以把 Firefox 和 JavaScritp 编程这样的前端技术,应用到像搜索引擎爬取和
> 内容索引这样的非常后端的工作当中去了。
>
> 收费标准: 每人20元包括分摊场地费,饮料畅饮以及投影仪租金
>
> 这里有盖饭和汉堡,请自点(12元,16元,18元不等)
>
> Qiang(James)


这个话题是我目前最感兴趣的东东了!

非常期待,近距离的学习讨论!





--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 咨询大家意见 -- 今年北京 Perl 大会时间

jim19gm wrote:
> 深入敌人内部啦。里应外合杀他个片甲不留
>


咳, 不要跑题跑的这么远.... 这种纯灌水的帖子请少贴点吧。

Qiang(James)

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛
-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: Perl 项目开发

这个有兴趣的,可以考虑联系我。

2009/2/4 sgmhz <teapplix@gmail.com>
我在找人做 perl 的项目, 第一个项目要求写 SOAP::Lite client.

要能看懂英文资料和WSDL. 有几年 Perl 的经验。
你必需有 ubuntu linux 的开发环境。

最好是在专职外包公司的人。 如果你还在找工作, 但有很强的 perl 编程经验
熟悉 perl + xml + soap, 我们也可接受。 项目不能兼职做。


如有兴趣的话,请给联系方式。

sgmhz [at] syndico [dot] com



--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

[PerlChina] Re: 咨询大家意见 -- 今年北京 Perl 大会时间

深入敌人内部啦。里应外合杀他个片甲不留
 
 
2009-02-04

jim19gm

发件人: smallfish
发送时间: 2009-02-04  11:11:47
收件人: perlchina
抄送:
主题: [PerlChina] Re: 咨询大家意见 -- 今年北京 Perl 大会时间
真爽,可以看到很多神仙级别的人了。

2009/2/4 wbi 畢 <wbisearchina@hotmail.co.jp>
To Qiang:

我在东京 到时如果有什么需要 我会尽量帮忙



--
blog - http://hi.baidu.com/smallfish7788
--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---