2010年8月26日星期四

[PerlChina] Re: 关于~~的'交换律'

学习了。

On Aug 26, 5:02 pm, Shu Cao <shu...@gmail.com> wrote:
> $ perldoc perl5120delta
>
> ...
>
> The smart match operator "~~" is no longer commutative. The behaviour
> of a smart match now depends primarily on the type of its right hand
> argument.
>
> ...

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

Re: [PerlChina] Re: 关于~~的'交换律'

噢,了解。多谢了:)
On Thu, 26 Aug 2010 17:02:02 +0800, Shu Cao <shucao@gmail.com> wrote:

> $ perldoc perl5120delta
>
> ...
>
> The smart match operator "~~" is no longer commutative. The behaviour
> of a smart match now depends primarily on the type of its right hand
> argument.
>
> ...
>


--
Using Opera's revolutionary email client: http://www.opera.com/mail/

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

Re: [PerlChina] Re: 关于~~的'交换律'

$ perldoc perl5120delta

...

The smart match operator "~~" is no longer commutative. The behaviour
of a smart match now depends primarily on the type of its right hand
argument.

...

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

Re: [PerlChina] Re: 关于~~的'交换律'

很有可能。。。。
所以说这可能是个bug?
This is perl 5, version 12, subversion 1 (v5.12.1) built for
i686-linux-debug
(with 9 registered patches, see perl -V for more detail)

Copyright 1987-2010, Larry Wall

On Thu, 26 Aug 2010 16:31:47 +0800, hironics <dingzezhu@gmail.com> wrote:

> 是不是版本的问题
>
> 我在Linux上,输出为
> @c ~~ a
> a ~~ @c
>
> Perl版本信息:
> This is perl, v5.10.0 built for i486-linux-gnu-thread-multi
>
> Copyright 1987-2007, Larry Wall
>
>
> On Aug 25, 3:58 pm, chenfengyuan <jeova.sanctus.u...@gmail.com> wrote:
>> 大家好:)我有一个关于~~的问题:
>> 关于 $a ~~ $b是否与$b ~~ $a等价
>> 书上(learning perl
>> 5th中文版,236页)上说是符合'交换律'的,所以可以交换,即等价。
>> perlsyn上也说'For example, the smart match operator short-circuits
>> whenever possible, but "grep" does not.'
>> 这里是说~~'短视',所以$a和$b的顺序无关吧。
>>
>> 实际中
>>
>> use warnings;
>> use strict;
>> use 5.010;
>>
>> my @c=qw/a b/;
>> if(@c ~~ 'a'){
>> say '@c ~~ a';}
>>
>> if('a' ~~ @c){
>> say 'a ~~ @c';
>>
>> }
>>
>> 运行显示'a ~~ @c'
>> 即$a ~~ $a与$b ~~ $a不等价
>> 问题:
>> 1 那么为啥不等价?是本来就不可以交换还是什么?
>> 2 如果说'a' ~~ @c,是看@c中有没有一个元素是'a',那么@c ~~ 'a'是啥意思?
>>
>> 谢谢:)
>> --
>> Using Opera's revolutionary email client:http://www.opera.com/mail/
>


--
Using Opera's revolutionary email client: http://www.opera.com/mail/

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

[PerlChina] Re: 关于~~的'交换律'

是不是版本的问题

我在Linux上,输出为
@c ~~ a
a ~~ @c

Perl版本信息:
This is perl, v5.10.0 built for i486-linux-gnu-thread-multi

Copyright 1987-2007, Larry Wall


On Aug 25, 3:58 pm, chenfengyuan <jeova.sanctus.u...@gmail.com> wrote:
> 大家好:)我有一个关于~~的问题:
> 关于 $a ~~ $b是否与$b ~~ $a等价
> 书上(learning perl
> 5th中文版,236页)上说是符合'交换律'的,所以可以交换,即等价。
> perlsyn上也说'For example, the smart match operator short-circuits
> whenever possible, but "grep" does not.'
> 这里是说~~'短视',所以$a和$b的顺序无关吧。
>
> 实际中
>
> use warnings;
> use strict;
> use 5.010;
>
> my @c=qw/a b/;
> if(@c ~~ 'a'){
> say '@c ~~ a';}
>
> if('a' ~~ @c){
> say 'a ~~ @c';
>
> }
>
> 运行显示'a ~~ @c'
> 即$a ~~ $a与$b ~~ $a不等价
> 问题:
> 1 那么为啥不等价?是本来就不可以交换还是什么?
> 2 如果说'a' ~~ @c,是看@c中有没有一个元素是'a',那么@c ~~ 'a'是啥意思?
>
> 谢谢:)
> --
> Using Opera's revolutionary email client:http://www.opera.com/mail/

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

2010年8月25日星期三

[PerlChina] Fwd: UG News: 1 Day - $9.99 Exclusive - Top 10 "Ebook Deal of the Day" Geek Beach Reads

-------- Original Message --------
Subject: UG News: 1 Day - $9.99 Exclusive - Top 10 "Ebook Deal of the
Day" Geek Beach Reads
Date: Wed, 25 Aug 2010 00:05:57 -0700
From: Marsee Henon <usergroups@oreilly.com>
To:

View in Browser
<http://post.oreilly.com/rd/9z1zc13d4q0mo3782jmqosnnmp93k0ueh4302cfdar0>.

*Forward this announcement to your user group or a friend*
<http://post.oreilly.com/f2f/9z1zmjv6qmgff1emcoe5nh4rq65njprmr1i30scsaa0>.

O'Reilly Books and Videos
<http://post.oreilly.com/rd/9z1z9oqm090uv2ltlec1bh51c9qffn6s4rc8s7c88e8>


$9.99 Exclusive
Your Top 10 "Ebook Deal of the Day" Geek Beach Reads

We asked O'Reilly customers to recommend their favorite O'Reilly Geek
Beach Reads, and for one day only you can buy the top-ten titles for
only $9.99 each. *O'Reilly ebooks are DRM-free. You get free lifetime
access, four file formats, free updates.* Use *discount code DDGRD* in
the shopping cart. Cheers!

Being Geek
<http://post.oreilly.com/rd/9z1zsqp5l77ldc58ubjl799bk96shtatbl7va0nujh8>
Was: $19.99
*Now: $9.99*
<http://post.oreilly.com/rd/9z1zed856ob168ubq0tcfuoacpbso1fprcevcp7i3r8> The

Myths of Innovation
<http://post.oreilly.com/rd/9z1z8krqidboe21fvb0eg5b36uahc7k59csjl5iiro8>
Was: $14.99
*Now: $9.99*
<http://post.oreilly.com/rd/9z1zcou7cmgpuvmmmh01g6rrtv5o5ak41g0qrag6g6g> Cooking

for Geeks
<http://post.oreilly.com/rd/9z1z7g06rk5nhcicpgdsasbmu62iracu9v8qiqc9o8o>
Was: $27.99
*Now: $9.99*
<http://post.oreilly.com/rd/9z1znhb3c7h555lcb90l19qs7aivs92g540i84af9ho> Gamestorming

<http://post.oreilly.com/rd/9z1zjf83st7unthra4rlb037u9epe7itmc7abkvd80g>
Was: $23.99
*Now: $9.99*
<http://post.oreilly.com/rd/9z1zioiv5s6n1m4b1luc0njqrj0e7lp3of30ute9r00> Revolution

in The Valley
<http://post.oreilly.com/rd/9z1z1h7httq77jt1lldtffgncefqeh86vqamhtkhluo>
Was: $19.99
*Now: $9.99*
<http://post.oreilly.com/rd/9z1zffd392kl4q65cd6dmh6rg7l2dam1i57lf7252pg>
The Productive Programmer
<http://post.oreilly.com/rd/9z1zu8at76h329vabg51kstvj21ctmpg7ri50133f5g>
Was: $31.99
*Now: $9.99*
<http://post.oreilly.com/rd/9z1zlf7cdnk32p42ehabgo9spshmi3r3m249f1626eg> High

Performance JavaScript
<http://post.oreilly.com/rd/9z1z4hs57totj8mk60fbrlf69i6lrku47fkerrlcerg>
Was: $27.99
*Now: $9.99*
<http://post.oreilly.com/rd/9z1z57h44ubje9s80jd1nprt9096m51fu0qdsb9pnu0> Search

Patterns
<http://post.oreilly.com/rd/9z1zghpfa18gq1ldoj40jmssb0v2glnrspcj3mt8il0>
Was: $31.99
*Now: $9.99*
<http://post.oreilly.com/rd/9z1zai2958hb5442qqd10uelpe0r4fagfqlfdm51v80> Programming

Collective Intelligence
<http://post.oreilly.com/rd/9z1zkkcesbc6kictq7sm5c7q3cql837ptcnnl3htcro>
Was: $31.99
*Now: $9.99*
<http://post.oreilly.com/rd/9z1ze13nbo8bdeo21pph93kmi79ao50sp9sgp2v2gkg> Beautiful

Data
<http://post.oreilly.com/rd/9z1z7nn64in07ad8ivn9p41a6eb7b5fmintqiimk0ig>
Was: $35.99
*Now: $9.99*
<http://post.oreilly.com/rd/9z1z2905565nscqb8dbfp6888tnf92sbaf851sl249g>

Spreading the knowledge of innovators
<http://post.oreilly.com/rd/9z1zd187a4up26080p6itdmt3q90emb513gpd6jk63g>

oreilly.com
<http://post.oreilly.com/rd/9z1z7sntktrag92130rju8vps2ahu7q0o1l13ji6fkg>

You are receiving this email because you are a User Group contact with
O'Reilly Media. Forward this announcement
<http://post.oreilly.com/f2f/9z1zmjv6qmgff1emcoe5nh4rq65njprmr1i30scsaa0>.
If you would like to stop receiving these newsletters or announcements
from O'Reilly, send an email to marsee@oreilly.com
<mailto:marsee@oreilly.com>.

O'Reilly Media, Inc. 1005 Gravenstein Highway North, Sebastopol, CA
95472 (707) 827-7000


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

[PerlChina] 关于~~的'交换律'

大家好:)我有一个关于~~的问题:
关于 $a ~~ $b是否与$b ~~ $a等价
书上(learning perl
5th中文版,236页)上说是符合'交换律'的,所以可以交换,即等价。
perlsyn上也说'For example, the smart match operator short-circuits
whenever possible, but "grep" does not.'
这里是说~~'短视',所以$a和$b的顺序无关吧。

实际中

use warnings;
use strict;
use 5.010;

my @c=qw/a b/;
if(@c ~~ 'a'){
say '@c ~~ a';
}
if('a' ~~ @c){
say 'a ~~ @c';
}

运行显示'a ~~ @c'
即$a ~~ $a与$b ~~ $a不等价
问题:
1 那么为啥不等价?是本来就不可以交换还是什么?
2 如果说'a' ~~ @c,是看@c中有没有一个元素是'a',那么@c ~~ 'a'是啥意思?

谢谢:)
--
Using Opera's revolutionary email client: http://www.opera.com/mail/

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

2010年8月24日星期二

Re: [PerlChina] MongoDB的Perl驱动,程序运行完,是不是内存没释放?

谢谢!升级中。
在收到此信前,用mongoexport导出此表的两个字段。运行完后,执行其它命令也是会报错的。
-bash: fork: Cannot allocate memory
相信此信息跟Perl这个驱动没啥关系。估计是内存不太够用。。。 >:o

Fayland Lam 写道:
 http://cpansearch.perl.org/src/KRISTINA/MongoDB-0.36/Changes  0.35 - 02 July 2010    - Added MongoDB::BSON::utf8_flag_on (Pan Fan)   - Added MongoDB::GridFS::File::slurp (Pan Fan)   - Fixed memory leak   upgrade 试试     On 2010/8/25 11:05, Beckheng Lam wrote:   
Hello, 我在VPS上的一个程序,连接mongod的一个表(100万行),没任何操作,只是简单遍 历,统计一下表的行数。 程序运行完了,执行其它命令就出现"内存分配错误"。需要重启服务器。  在运行这个程序前,用mongoexport导出几个表,导完后都比较正常的。      
    


--  Perl乐事 -- http://www.perlersh.org 我的博客 -- http://www.perlersh.org/blog.html 诸法从缘起,如来说是因。 彼法因缘尽,是大沙门说。

Re: [PerlChina] MongoDB的Perl驱动,程序运行完,是不是内存没释放?

http://cpansearch.perl.org/src/KRISTINA/MongoDB-0.36/Changes

0.35 - 02 July 2010

- Added MongoDB::BSON::utf8_flag_on (Pan Fan)
- Added MongoDB::GridFS::File::slurp (Pan Fan)
- Fixed memory leak


upgrade 试试


On 2010/8/25 11:05, Beckheng Lam wrote:
> Hello,
> 我在VPS上的一个程序,连接mongod的一个表(100万行),没任何操作,只是简单遍
> 历,统计一下表的行数。
> 程序运行完了,执行其它命令就出现"内存分配错误"。需要重启服务器。
>
> 在运行这个程序前,用mongoexport导出几个表,导完后都比较正常的。
>


--
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] MongoDB的Perl驱动,程序运行完,是不是内存没释放?

Hello,
我在VPS上的一个程序,连接mongod的一个表(100万行),没任何操作,只是简单遍
历,统计一下表的行数。
程序运行完了,执行其它命令就出现"内存分配错误"。需要重启服务器。

在运行这个程序前,用mongoexport导出几个表,导完后都比较正常的。

--
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 访问此网上论坛。

Re: [PerlChina] Re: 北京Symantec招perl 程序员

5+经验就卧槽了当低阶老大不做事了。。

在 2010年8月24日 下午8:20,cnhacktnt <cnhacktnt@gmail.com> 写道:
> 可惜在北京啊
>
> Sent from my iPod
>
> On 2010-8-24, at 下午12:01, climby <mdengfeng@gmail.com> wrote:
>
>> 大家都已经有相当好的职位了么? 好像没有什么人对这个职位感兴趣啊。
>>
>> On 8月16日, 上午11时20分, climby <mdengf...@gmail.com> wrote:
>>> 赛门铁克诚招高级软件工程师,perl开发
>>>
>>> Company Overview
>>> Symantec is a global leader in providing security, storage and systems
>>> management solutions to help our customers - from consumers and small
>>> businesses to the largest global organizations - secure and manage
>>> their information-driven world against more risks at more points, more
>>> completely and efficiently. Our software and services protect
>>> completely, in ways that can be easily managed and with controls that
>>> can be enforced automatically - enabling confidence wherever
>>> information is used or stored.
>>>
>>> Department Overview
>>> Symantec's Information Management Group, with industry leading
>>> products that ensure successful backup, recovery and archiving of
>>> information and systems for organizations, is looking for exceptional
>>> individuals. If you would like to play a part in the success of
>>> market leading product teams such as NetBackup, PureDisk, Backup Exec,
>>> Backup Exec System Recovery and Enterprise Vault, then please apply
>>> today.
>>>
>>> Responsibilities
>>> * This employee will cooperate with local/global internal team
>>> members, global product teams, Quality Assurance teams, and product
>>> managers to involve into task analysis, feature implementation,
>>> product maintenance and the final delivery of the commitments on
>>> schedule.
>>> * This employee will be focusing on the script development and
>>> maintenance in installation, configuration and upgrading for
>>> Netbackup(NBU)'s new installer based on Common Product Install(CPI)
>>> framework under one or all of AIX, Solaris, Linux and HP-UX platforms.
>>> * His/her will make sure that the delivered work is well tested
>>> and make sure to deliver with high quality. He/she will obey the
>>> current process to design, develop, review for commitment and deliver
>>> on time.
>>> * The employee also needs to join in the lifecycle of software
>>> process, do design review, code reviews, documentation review on
>>> product logic flow, and also be responsible to improve test process in
>>> test automation development if required.
>>> Qualifications
>>> * Should have proficient knowledge in Perl language and UNIX
>>> shell programming; 5+ years working experience in development under
>>> one or multi UNIX platforms (AIX/Solaris/Linux/HP-UX)
>>> * Have strong understanding on one or more of Linux/Solaris/HP-
>>> UX/AIX platforms.
>>> * Should have ability to communicate in English, both oral and
>>> writing.
>>> * Strong OO skill and good coding style.
>>> * Should have good team work experience to cooperate with
>>> globally deployed sites. Must be cooperative in resolving conflicting
>>> issues.
>>> * Must be action oriented, should have the capability to take
>>> challenging tasks with innovative solutions.
>>> * Should have the capability to take actions under high
>>> pressure and deliver the commitments on time with high enthusiasm.
>>> * Bachelor or higher degree is required.
>>> * Backup software development experience is a plus.
>>> * Experience in C/C++/Java languages, experience with
>>> Netbackup, M. S degree, are definite pluses, too.
>>>
>>> 工作地点:北京 五道口 清华科技园
>>>
>>> 如果你有能力,优厚的薪酬在向你招手
>>>
>>> 如有意向,请发简历至:Dengfeng_...@symantec.com
>>> 简历经过筛选后,会立刻安排面试
>>
>> --
>> 您收到此邮件是因为您订阅了 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] Re: 北京Symantec招perl 程序员

可惜在北京啊

Sent from my iPod

On 2010-8-24, at 下午12:01, climby <mdengfeng@gmail.com> wrote:

> 大家都已经有相当好的职位了么? 好像没有什么人对这个职位感兴趣啊。
>
> On 8月16日, 上午11时20分, climby <mdengf...@gmail.com> wrote:
>> 赛门铁克诚招高级软件工程师,perl开发
>>
>> Company Overview
>> Symantec is a global leader in providing security, storage and systems
>> management solutions to help our customers - from consumers and small
>> businesses to the largest global organizations - secure and manage
>> their information-driven world against more risks at more points, more
>> completely and efficiently. Our software and services protect
>> completely, in ways that can be easily managed and with controls that
>> can be enforced automatically - enabling confidence wherever
>> information is used or stored.
>>
>> Department Overview
>> Symantec's Information Management Group, with industry leading
>> products that ensure successful backup, recovery and archiving of
>> information and systems for organizations, is looking for exceptional
>> individuals. If you would like to play a part in the success of
>> market leading product teams such as NetBackup, PureDisk, Backup Exec,
>> Backup Exec System Recovery and Enterprise Vault, then please apply
>> today.
>>
>> Responsibilities
>> * This employee will cooperate with local/global internal team
>> members, global product teams, Quality Assurance teams, and product
>> managers to involve into task analysis, feature implementation,
>> product maintenance and the final delivery of the commitments on
>> schedule.
>> * This employee will be focusing on the script development and
>> maintenance in installation, configuration and upgrading for
>> Netbackup(NBU)'s new installer based on Common Product Install(CPI)
>> framework under one or all of AIX, Solaris, Linux and HP-UX platforms.
>> * His/her will make sure that the delivered work is well tested
>> and make sure to deliver with high quality. He/she will obey the
>> current process to design, develop, review for commitment and deliver
>> on time.
>> * The employee also needs to join in the lifecycle of software
>> process, do design review, code reviews, documentation review on
>> product logic flow, and also be responsible to improve test process in
>> test automation development if required.
>> Qualifications
>> * Should have proficient knowledge in Perl language and UNIX
>> shell programming; 5+ years working experience in development under
>> one or multi UNIX platforms (AIX/Solaris/Linux/HP-UX)
>> * Have strong understanding on one or more of Linux/Solaris/HP-
>> UX/AIX platforms.
>> * Should have ability to communicate in English, both oral and
>> writing.
>> * Strong OO skill and good coding style.
>> * Should have good team work experience to cooperate with
>> globally deployed sites. Must be cooperative in resolving conflicting
>> issues.
>> * Must be action oriented, should have the capability to take
>> challenging tasks with innovative solutions.
>> * Should have the capability to take actions under high
>> pressure and deliver the commitments on time with high enthusiasm.
>> * Bachelor or higher degree is required.
>> * Backup software development experience is a plus.
>> * Experience in C/C++/Java languages, experience with
>> Netbackup, M. S degree, are definite pluses, too.
>>
>> 工作地点:北京 五道口 清华科技园
>>
>> 如果你有能力,优厚的薪酬在向你招手
>>
>> 如有意向,请发简历至:Dengfeng_...@symantec.com
>> 简历经过筛选后,会立刻安排面试
>
> --
> 您收到此邮件是因为您订阅了 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 访问此网上论坛。

2010年8月23日星期一

Re: [PerlChina] Perl

please subscribe http://groups.google.com.au/group/perlchina

2010/8/24 Nate <natecdut@gmail.com>
Perl

--
Nate

_______________________________________________
China-pm mailing list
China-pm@pm.org
http://mail.pm.org/mailman/listinfo/china-pm



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

[PerlChina] Perl

Perl

--
Nate

[PerlChina] Re: 原来discuz的康盛被收购了

期待,至今没有听说过。

On Aug 23, 9:32 pm, imxae <imx365s...@gmail.com> wrote:
> 有什么好的perl技术公司喽?

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

[PerlChina] Re: 北京Symantec招perl 程序员

大家都已经有相当好的职位了么? 好像没有什么人对这个职位感兴趣啊。

On 8月16日, 上午11时20分, climby <mdengf...@gmail.com> wrote:
> 赛门铁克诚招高级软件工程师,perl开发
>
> Company Overview
> Symantec is a global leader in providing security, storage and systems
> management solutions to help our customers - from consumers and small
> businesses to the largest global organizations - secure and manage
> their information-driven world against more risks at more points, more
> completely and efficiently. Our software and services protect
> completely, in ways that can be easily managed and with controls that
> can be enforced automatically - enabling confidence wherever
> information is used or stored.
>
> Department Overview
> Symantec's Information Management Group, with industry leading
> products that ensure successful backup, recovery and archiving of
> information and systems for organizations, is looking for exceptional
> individuals. If you would like to play a part in the success of
> market leading product teams such as NetBackup, PureDisk, Backup Exec,
> Backup Exec System Recovery and Enterprise Vault, then please apply
> today.
>
> Responsibilities
> * This employee will cooperate with local/global internal team
> members, global product teams, Quality Assurance teams, and product
> managers to involve into task analysis, feature implementation,
> product maintenance and the final delivery of the commitments on
> schedule.
> * This employee will be focusing on the script development and
> maintenance in installation, configuration and upgrading for
> Netbackup(NBU)'s new installer based on Common Product Install(CPI)
> framework under one or all of AIX, Solaris, Linux and HP-UX platforms.
> * His/her will make sure that the delivered work is well tested
> and make sure to deliver with high quality. He/she will obey the
> current process to design, develop, review for commitment and deliver
> on time.
> * The employee also needs to join in the lifecycle of software
> process, do design review, code reviews, documentation review on
> product logic flow, and also be responsible to improve test process in
> test automation development if required.
> Qualifications
> * Should have proficient knowledge in Perl language and UNIX
> shell programming; 5+ years working experience in development under
> one or multi UNIX platforms (AIX/Solaris/Linux/HP-UX)
> * Have strong understanding on one or more of Linux/Solaris/HP-
> UX/AIX platforms.
> * Should have ability to communicate in English, both oral and
> writing.
> * Strong OO skill and good coding style.
> * Should have good team work experience to cooperate with
> globally deployed sites. Must be cooperative in resolving conflicting
> issues.
> * Must be action oriented, should have the capability to take
> challenging tasks with innovative solutions.
> * Should have the capability to take actions under high
> pressure and deliver the commitments on time with high enthusiasm.
> * Bachelor or higher degree is required.
> * Backup software development experience is a plus.
> * Experience in C/C++/Java languages, experience with
> Netbackup, M. S degree, are definite pluses, too.
>
> 工作地点:北京 五道口 清华科技园
>
> 如果你有能力,优厚的薪酬在向你招手
>
> 如有意向,请发简历至:Dengfeng_...@symantec.com
> 简历经过筛选后,会立刻安排面试

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

Re: [PerlChina] 原来discuz的康盛被收购了

有什么好的perl技术公司喽?

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

Re: [PerlChina] 原来discuz的康盛被收购了

有市场没技术的公司也只得一提?




 
Zark Yoc

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

[PerlChina] 原来discuz的康盛被收购了

RT.

顺便问一下,这几年,有没有哪个PERL的产品被收购呀?

--
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 访问此网上论坛。