[PerlChina] PerlChina Advent Day21: MooX::Options

2014-12-21 文章 chenlin rao
# MooX::Options 在写命令行程序的时候,我们肯定都用过 [Getopt::Long](https://metacpan.org/pod/Getopt::Long) 模块。不过我在看 Message::Passing 项目源码的时候,发现这个项目用的是另一个模块,而且跟整个项目的 Moo 风格还真是非常搭。今天给大家介绍一下,这个模块叫:[MooX::Options]( http://metacpan.org/pod/MooX::Options)。 这个模块的特点,就是把每个命令行参数都当做是对象属性来处理了。为了在语法上更明确一点,该模块包装了一下 Moo 的 `has`

[PerlChina] PerlChina Advent Day 20: cpanfile

2014-12-20 文章 chenlin rao
# cpanfile 传统的 Perl 风格,是将依赖模块写在 Makefile.PL 里。无奈这个单词实在给人太大精神压力,而且在一些项目应用中,我们也不需要除了依赖关系以外其他的 Makefile 内容。所以 modern perl 从 Ruby 学来了 Gemfile 的方式,叫做 [cpanfile](https://metacpan.org/pod/cpanfile)。 cpanfile 写法示例如下: requires 'perl', '5.20.0'; requires 'Plack', '1.0'; # 1.0 or newer requires

[PerlChina] PerlChina Advent Day 19: 客户端来源 IP 信息处理

2014-12-19 文章 chenlin rao
=encoding utf8 =for advent_year 2014 =for advent_title 客户端来源 IP 信息处理 =for advent_author fukai =head2 前言 我们进行日志处理, 常有的一个需求就是需要日志中来源的 IP 变成指定的信息来进行分析, 也有可能有一种需求, 就是需要给所有用户的请求转换成 "ISP, 省市, 城市", 然后在排序分析用户来源相关的信息, 如省市排名, 运营商排名, 更加复杂的还有可能, 根据这些信息来做基础信息来判断用户的体验, 比如那个地区, 那个 ISP 的用户访问速度最快等等. 另外, 对于象视频,

Re: [PerlChina] PerlChina Advent Day 18: Time::Piece 模块

2014-12-18 文章 chenlin rao
巧合的是今天日本Perl协会的advent发的是 Time::Piece::Iterator 模块,http://t.cn/Rz3HWiy 大家可以一块看看~ 在 2014年12月18日 下午9:56,chenlin rao 写道: > > # Time::Piece > > 时间处理是一个有时候蛮麻烦的事情。很多 Perl 程序员可能还习惯于使用下面这样的写法: > > my ($sec, $min, $hour, $mday, $mon, $year_off, $wday, $yday, $isdat) = > localtim

[PerlChina] PerlChina Advent Day 18: Time::Piece 模块

2014-12-18 文章 chenlin rao
# Time::Piece 时间处理是一个有时候蛮麻烦的事情。很多 Perl 程序员可能还习惯于使用下面这样的写法: my ($sec, $min, $hour, $mday, $mon, $year_off, $wday, $yday, $isdat) = localtime; 或者稍微简单一点的地方,可以: use POSIX qw/strftime/; print strftime('%F %T', localtime); 但是涉及到时间运算的时候,就麻烦多了。常见的是换算到秒做加减乘除,或者安装沉重的 DateTime 模块。 ## Time::P

[PerlChina] PerlChina Advent Day 17: File::ChangeNotify

2014-12-17 文章 chenlin rao
# File::ChangeNotify [File::ChangeNotify](https://metacpan.org/pod/File::ChangeNotify) 通过系统事件通知来获悉文件的变化,所以其性能较好,CPU占用率也低。 我们可以使用[File::ChangeNotify](https://metacpan.org/pod/File::ChangeNotify)监测文件/ 目录的变化,来达到某些自动化操作。 例如: 1. nginx -s reload 当然[File::ChangeNotify](https://metacpan.org/pod/File::

[PerlChina] PerlChina Advent 16: Regexp::Grammar

2014-12-16 文章 chenlin rao
# Regexp::Grammars 如果让我来列举最有用的Perl module,第一可能是Moo(se), 然后就是Regexp::Grammars 了。 Regexp::Grammars 相当于Perl 6 中的 [Grammars]( http://doc.perl6.org/language/grammars) 我早有介绍一下这个module 的想法,但是没有找到好的切入点。今天看到Perl6 advent谈到用grammar来解析FASTA文件。 [Day 15 – Bioinformatics and the joy of Perl 6]( http://perl6adve

[PerlChina] PerlChina Advent 15: Devel::DidYouMean

2014-12-15 文章 chenlin rao
# Devel::DidYouMean 我们总是期望程序越智能越好。在 Perl6 里,有一系列的“友好”的提示信息,帮助从 Perl5 程序员转移自己的语法习惯。其中一个功能,叫 **Did You Mean?**。如下: $ perl6 -e 'sya "ok"' ===SORRY!=== Error while compiling -e Undeclared routine: sya used at line 1. Did you mean 'say'? 现在,我们在 Perl5 里也可以做到同样的事情。这就是 [Devel::DidYou

Re: [PerlChina] PerlChina Advent 14: Mojolicious+socket.io+Angular.JS

2014-12-14 文章 chenlin rao
https://gist.github.com/rodrigolive/5546320 我在文章结尾写了。 在 2014年12月14日 下午12:25,Fayland Lam 写道: > > 贴个源码 git 吧 好clone直接测试 > > On 2014年12月14日周日 上午10:53 chenlin rao wrote: > >> # Mojolicious + SocketIO + AngularJS >> >> 今天本来是准备随便写点跟 Web 开发相关的话题,毕竟今年 YAPC 上最

[PerlChina] PerlChina Advent 14: Mojolicious+socket.io+Angular.JS

2014-12-13 文章 chenlin rao
# Mojolicious + SocketIO + AngularJS 今天本来是准备随便写点跟 Web 开发相关的话题,毕竟今年 YAPC 上最大的声音就是 SaywerX 的[“CGI.pm must DIE!”]( www.youtube.com/watch?v=tu6_3fZbWYw)。 正在犹豫是介绍 [Mojolicious]( https://metacpan.org/pod/Mojolicious) 还是 [PocketIO]( https://metacpan.o

[PerlChina] PerlChina Advent 13: Tie::IxHash

2014-12-13 文章 chenlin rao
# Tie::IxHash 众所周知,哈希 Hash 是无序的。但是有时候我们可能也需要一个有序的 Hash,这时候 [Tie::IxHash]( https://metacpan.org/pod/Tie::IxHash) 就可以帮上忙了。 ## 有序的 JSON 输出 当你使用 REST JSON 输出时,有时候你的老板可能要求你,比如把 id 放输出的 JSON 最前面。 比如你的原始代码如下: use JSON; my %r = (id => 1, name => 'Fayland', gender => 'male', bio => 'Just Anothe

[PerlChina] PerlChina Advent 12: 交互式命令行reply

2014-12-12 文章 chenlin rao
# Reply 交互式命令行是很多编程语言都提供的一个便捷方式。不过 Perl5 正巧就没提供==!前些年的 advent 中,曾经介绍过 [Devel::REPL](/2009/12/REPL/),今天这里介绍另一个模块,叫 [Reply]( https://metacpan.org/pod/Reply)。 Reply 的依赖模块没有 Devel::REPL 那么多,所以安装起来更简单快速一些。此外,Devel::REPL 的 rcfile 是直接 Perl 语法,而 Reply 用的是 INI 格式的配置文件。 默认情况下,运行 reply 命令会自动生成 `~/.replyrc`

[PerlChina] PerlChina Advent 11: autobox

2014-12-11 文章 chenlin rao
# autobox 早在[几年前的 PerlChina Advent](/calendar/2010/06/) 上,fayland 曾经介绍过 [perl5i]( https://metacpan.org/pod/perl5i) 项目。其中提到了 perl5i 里一个特性,就是 autobox。 "12.34"->is_number; 1->upto(5); "10, 20, 30, 40"->split(qr{, ?})->elements; (1,2,3,4,5,"a","b")->grep(sub{ $_->is_number })->sum->sa

[PerlChina] PerlChina Advent 10: Keyczar

2014-12-10 文章 chenlin rao
# Keyczar 在不同语言之间做加密解密,有时候不得不说是个噩梦。CBC/Blowfish 或者 RSA 不同的参数,有时候哪怕把头发都抓没了,也找不到解决方案。 幸运的是 [keyczar](http://www.keyczar.org/) 是一个很不错的选择。 ## 应用场景 一个普通的应用场景是,如果您做一个手机项目,里面有个登陆窗口。你希望在发送验证请求的时候给密码加密,这样整个 app 会显得更加安全。这里我们将尝试用 keyczar 通过 RSA 来做这个应用。 ### 安装 首先您需要安装 cpanm [Crypt::Keyczar](https://metac

Re: [PerlChina] PerlChina Advent 09: Webqq::Client

2014-12-09 文章 chenlin rao
也仍然能正常使用。 > > 据了解,WebQQ于2009年9月15日正式上线,是腾讯公司推出的使用网页方式上QQ的服务,特点是无需下载和安装QQ软件,只要能打 开 > WebQQ的网站就可以登录QQ与好友保持联系。具有Web产品固有的便利性,同时在Web上最大限度的保持了客户端软件的操作习惯。去年9 > 月,WebQQ更名为SmartQQ全新发布,但仍保留了原WebQQ版本。 > > 此外,腾讯“我的QQ中心”的“好友”功能已于2014年7月15日停止服务。据悉,此次WebQQ是继此之后的又一业务调整。 > > &g

[PerlChina] PerlChina Advent 09: Webqq::Client

2014-12-09 文章 chenlin rao
=encoding utf8 =for advent_year 2014 =for advent_title Webqq::Client模块介绍 =for advent_author Perfi Wang =head2 Webqq::Client 背景来源 最早的时候,加入了一个Python的群,看到群里有个QQ机器人可以自动帮大家查询天气 群里贴出来的url会自动去获取下html的 内容,感觉蛮不错的,就想着也搞一个玩一下 这个Python群的群主也很热心,搞了个开源的项目放到了github上:L

[PerlChina] PerlChina Advent 08: Future 模块

2014-12-08 文章 chenlin rao
# Future 这个名字一听起来还以为是要说 Perl 的发展方向之类的吧。其实我这里要介绍的是一个 CPAN 模块,或者说,一种异步编程模式在 Perl 里的运用。 Future 模式的定义之类的,大家可以看 Java 或者 C++ 的资料,都会有提。这里直接进入 Perl 相关的部分。[Future 模块]( https://metacpan.org/pod/Future)的作者是著名的 Paul Evans,[IO::Async 模块]( https://metacpan.org/pod/IO::Async)的作者。事实上 IO::Async 模块现在已经完全依赖于 Future

Re: [PerlChina] Re: PerlChina Advent Day 1

2014-12-07 文章 chenlin rao
t; > 比如,我在代码里面需要对不同的主机做出不同的动作, Rex传入的主机怎么获取到呢 ? > > 有段时间没有用Rex了, 不知道有没有更新。 > > 在 2014年12月2日星期二UTC+8上午10时39分58秒,Fayland Lam写道: > >> Rexify >> >> =for advent_year 2014 >> >> =for advent_day 1 >> >> =for advent_title Rexify >> >>

[PerlChina] PerlChina Advent 07: postderef

2014-12-07 文章 chenlin rao
# [Perl 5.20] 后缀解引用语法 ## 启用 Perl 5.20 可以使用后缀解引用,因为是新的feature,并不是默认启用的。 所以,需要用 use v5.20; use experimental 'postderef'; 来启用。 有人会问,这个并没有默认启用,会不会不稳定? 答案是否定的。请参考 Ricardo Signes 的YAPC 视频(链接2)。 ## 语法 ### 数组解引用 my $items = ['a'..'z']; # 'a', 'b', 'c' .. 'z' say "get

[PerlChina] PerlChina Advent 06: Milla

2014-12-06 文章 chenlin rao
# Milla [CPAN](https://metacpan.org/) 是 Perl 的骄傲。我想每个使用 Perl 的人心里都有对社区回馈的想法,这里我们将使用 [Milla](https://metacpan.org/release/Dist-Milla) 和其他一些流行的服务来构建一个完整地模块流程。 ## 安装 Milla $ cpanm Dist::Milla Milla 是一个 [Dist::Zilla](https://metacpan.org/release/Dist-Zilla) 的优秀合集。所以它所依赖的模块有点多。因为 dzil/milla

[PerlChina] PerlChina Advent 05: Perl Tricks

2014-12-05 文章 chenlin rao
# 分享几个Perl小技巧 ## interpolate function calls into printed strings Perl string 中可以使用变量,如 my $var = $object->method($argument); print "the output is : $var, please verify"; 这个$var 只用了一次,能否省去呢?比如换成如下写法? print "the output is : $object->method($argument), please verify"; 不行,不过有间接的方法,

Re: [PerlChina] PerlChina Advent Day 1

2014-12-04 文章 chenlin rao
jfried 刚说他看到这篇advent了~ 在 2014年12月2日 下午9:03,Ken Lam 写道: > 感谢!!! > > 于 14/12/2 上午10:39, Fayland Lam 写道: > > Rexify > > =for advent_year 2014 > > =for advent_day 1 > > =for advent_title Rexify > > =for advent_author Chenlin Rao > > =encoding utf

[PerlChina] PerlChina Advent 04: DDP & DDS

2014-12-04 文章 chenlin rao
加一个指定参数才行: $ perl Build.PL DDS && ./Build install 试图过用 Data::Dumper 来输出匿名函数引用的都有惨痛的回忆,那么,最后,你们猜用上面的 DDP 看函数引用,用下面的 DDS 看对象标量,结果又分别会是怎样呢? ## 作者 * [Chenlin Rao](https://metacpan.org/author/CHENRYN) * [Perfi Wang](https://metacpan.org/author/SJDY) http://advent.perl-china.com/calendar/

Re: [PerlChina] perl北京聚会——2014年12月7日

2014-12-01 文章 chenlin rao
我注册了一个meetup组: http://www.meetup.com/Beijing-Perl-Mongers/events/219013814/ meetup.com是目前比较流行的一个平台,喜欢聚会分享的可以注册一下看看咯。时不时可能就能看到其他感兴趣的东西有个聚会在离你不远的地方…… ps:注册的时候别用 163.com 邮箱,好像垃圾邮件过多被 meetup.com 拒了。 在 2014年12月2日 上午11:40,Achilles Xu 写道: > 嗨,各位: > > 本周末北京举行个perl小聚会。主要由三斗讲一下elasticsearch的ELK套件。其他演讲尚未确定

Re: [PerlChina] perlchina的注记

2014-09-04 文章 chenlin rao
我是10年才开始学Perl的了。从我“比较新”的阅读得到的知识看,Booking.com应该是对Perl5赞助和招聘Perl程序员比较热心的互联网大公司了。不过它在国内的“缤客网”有没有招技术人员就不知道了。 在 2014年9月5日 下午12:07,Yisong Zhen 写道: > > 正在积极学习计算机领域的基本课程,希望能够欣赏诸位的杰出工作。目前不是娱乐性记者(娱记),只是希望能够推动Perl在中国的发展,顺带提高自己的薪金水平。呵呵。 > 有诸多遗漏,请大家积极发言。 > > > 2014-09-04 22:35 GMT+08:00 cnhack TNT : > > fayl

Re: [PerlChina] perlchina的注记

2014-08-21 文章 chenlin rao
前几天刚在perlchina的qq群里看到有人说自己新上传了第一个cpan模块: https://metacpan.org/pod/distribution/Games-FrogJump/README.pod 这位应该还没登记到authors里。 在 2014年8月22日 上午10:42,Yisong Zhen 写道: > 这是一个非常好的档案馆。 > > > 2014-08-22 10:01 GMT+08:00 Fayland Lam : > > For the Chinese CPAN Author, you can check >> https://github.com/Perl

Re: [PerlChina] 4月7日下午 Larry Wall + PerlChina Mini Workshop

2014-04-07 文章 chenlin rao
之前有用脚本炒比特币来着。不过KDJ线和MACD线计算什么的都是numpy做的。不晓得perl里有没有可以等价numpy的东西。。。 在 2014年4月8日 上午9:42,Yisong Zhen 写道: > 有两点感想: > > (1)Larry将Perl上升到Freewill的高度,顺便揭露了Python的本质。 > (2)Qiang在闪电发言的时候谈到Perl炒股,感觉如果有个大的Topic:比如说:“perl使生活更美好”的主题,则我会更有兴趣的去听。 > > 一松 > > > > 2014-04-07 21:28 GMT+08:00 胡 松涛 : > > >> 记得有朋友现场录

Re: [PerlChina] Perl 创始人 Larry Wall 来京 + Perl 聚会

2014-03-25 文章 chenlin rao
四月第一个周末刚好是清明节假期啊。确定是哪天了么,否则不好安排假期活动啊。 在 2014年3月21日 下午7:08,jeromezhan...@gmail.com 写道: > 唉那几天刚好出差离开北京 > > -- > jeromezhan...@gmail.com > > > *发件人:* shijialee > *发送时间:* 2014-03-20 22:56 > *收件人:* perlchina > *主题:* [PerlChina] Perl 创始人 Larry Wall 来京 + Perl 聚会 > Hello, >

Re: [PerlChina] 征集perlchina大会logo和T恤设计

2013-05-25 文章 chenlin rao
你没看见附件里的图? 在 2013年5月25日下午3:39,夏凯 写道: > On 2013年05月25日 09:22, chenlin rao wrote: > >> 咳咳,提醒一下,**这个banner里的年份是从光源滑动过来到最新的2013年,**也就 是今年。 >> > 就是只改年份? > > > -- > 您收到此邮件是因为您订阅了 Google 网上论坛的“PerlChina Mongers 讨论组”论坛。 > 要退订此论坛并停止接收此论坛的电子邮件,请发送电子邮件到 > perlchina+

Re: [PerlChina] 征集perlchina大会logo和T恤设计

2013-05-23 文章 chenlin rao
支持楼上,生成骆驼,蝴蝶图案就好~不过这个有难度啊 在 2013年5月23日下午6:12,Atommann 写道: > 在 2013年5月23日下午5:32,Achilles Xu 写道: > > 征集perlchina大会logo和T恤设计,要求: > > > > > > 1、使用 perlchina 或 pcon2013 字样 > > > > 2、使用骆驼或蝴蝶图标 > > > > 3、尽量贴合 perl.org 色调或 perl6.org 色调 > > > > 4、有自己的特色 > > > > 5、T恤要含有2013字样 > > 一个 idea: T 恤上的图案形状是一段 pe

Re: [PerlChina] Perl 缺少杀手级应用

2013-04-09 文章 chenlin rao
plone是什么?我以为python的杀手级应用是openstack呢……反正perl是缺席云时代了。 在 2013年4月9日下午3:32,Ken Lam 写道: > 缺少一个集成工具而已。如果有人把有用的模块都打包成一个tar或者exe。估计用 起来方便,用的人也多了。 > > 于 2013/4/9 14:48, cheung mc 写道: > > Perl: Catalyst > > > On 2013-4-9, at PM2:43, blackjack xu wrote: > > ruby : ruby on rails > python : Plone > ph

Re: [PerlChina] Fwd: Perl Tutorial in Chinese

2013-03-29 文章 chenlin rao
今天刚在微博上看到有人在边看边译的: http://weibo.com/1708684567/zprbQg9Dp 2013/3/29 Fayland Lam > if anyone is interested in it and I'll be glad to help review it. > > Thanks. > > > -- Forwarded message -- > From: Gabor Szabo > Date: Fri, Mar 29, 2013 at 10:00 PM > Subject: Perl Tutorial in Chi

Re: [PerlChina] 新手大礼包计划

2013-03-18 文章 chenlin rao
这周木啥进展么~或者大家可以先上github给许的spec提建议或者设想?issue方式还是pull request? 在 2013年3月18日下午10:37,xueliang wu 写道: > 顶起。 > > > 在 2013年3月18日上午10:05,赵明 写道: > > 新手,顶,这次真的要好好学Perl >> >> -原始邮件- From: hzh nan >> Sent: Monday, March 18, 2013 9:56 AM >> To: perlchina@googlegroups.com >> Subject: Re: [PerlChina] 新手大

Re: [PerlChina] Perl 模块的自动安装

2013-03-17 文章 chenlin rao
写一个cpanfile好了 在 2013年3月17日下午6:05,Ken Peng 写道: > cpanm可以发现脚本依赖并自动安装相应模块。 > > > 在 2013年3月17日下午5:51,郭腾飞 写道: > > Hi all, >> 我写的脚本,想上传到github上,但脚本中用到了cpan中的一些模块,如: >> >>1. use LWP::Simple; >>2. use Data::Dumper; >>3. use XML::Simple; >> >> *复制代码* >> 用什么方法可以使别的开发者自动安装脚本中依赖的Perl模块? >> 谢谢~ >>

Re: 答复: [PerlChina] 新手大礼包计划

2013-03-08 文章 chenlin rao
我也提个,json/yaml用途很广了,应该直接提供load/dump_yaml/json函数~~ -- 您收到此邮件是因为您订阅了 Google 网上论坛的“PerlChina Mongers 讨论组”论坛。 要退订此论坛并停止接收此论坛的电子邮件,请发送电子邮件到 perlchina+unsubscr...@googlegroups.com。 要向此网上论坛发帖,请发送电子邮件至 perlchina@googlegroups.com。 通过以下网址访问此论坛:http://groups.google.com/group/perlchina?hl=zh-CN。 要查看更多选项,请访问

Re: [PerlChina] 新手大礼包计划

2013-03-06 文章 chenlin rao
看完README了,好赞的想法~ 在 2013年3月7日上午11:17,Achilles Xu 写道: > 新手大礼包计划,希望大家参与支持,规范稍后释出。欢迎讨论。 > > https://github.com/PerlChina/Newbie-Gift > > -- > --- > Achilles Xu > > -- > 您收到此邮件是因为您订阅了 Google 网上论坛的“PerlChina Mongers 讨论组”论坛。 > 要退订此论坛并停止接收此论坛的电子邮件,请发送电子邮件到 perlchina+unsubscr...@go

Re: [PerlChina] 大部分情况下不用使用 $ 就好了,my var = "a var"; 是否存在这样的变量定义的语言

2013-01-04 文章 chenlin rao
额,是。之前我理解错了。 $ cat test.pl use 5.010; our $str = "abc"; my $str = "123"; { my $str = "def"; say ${str}; say ${'str'}; } say ${str}; say ${'str'}; $ perl test.pl def abc 123 abc 一直带着strict和warnings写perl,都不知道还有这么个情况 在 2013年1月4日下午10:34,夏凯 写道: > On 2013年01月04日 19:40, Anthony WU wrote: > >> 因�� ${xx

Re: [PerlChina] Fwd: [Perlweekly] #39 - A Moose in New York and Camelia in Oslo

2012-04-23 文章 chenlin rao
不是官方的那个~ 在 2012年4月23日 下午11:58,Achilles Xu 写道: > nginx perl 的异步 api 终于出来了吗? > > 在 2012年4月23日 下午5:06,Fayland Lam 写道: > > >> >> -- Forwarded message -- >> From: Gabor Szabo >> Date: Mon, Apr 23, 2012 at 4:50 PM >> Subject: [Perlweekly] #39 - A Moose in New York and Camelia in Oslo >

Re: [PerlChina] 关于日志处理的讨论

2012-02-06 文章 chenlin rao
看lz意思是想用ssh协议控制机器么?我觉得要不你就把各种规则写在一个模块里,然后rsync/puppet维护着一个模块。要不就用syslog或者mq之类的传递日志到“另一台服务器”。 在 2012年2月7日 下午2:56,centerqi hu 写道: > 不行,因位各个模块都布在不同的机器上。 > > 在 2012年2月7日 下午2:45,azure wang 写道: > > 日志都写到一台机器上不行吗? >> >> 在 2012年2月7日 下午2:19,centerqi hu 写道: >> >>> hi all >>> 现在有一个问题让我很被动,我现在有几十台机器, >>> 每台

Re: [PerlChina] Re: 试了一下feersum,�氐渍惊了。效率惊人呀,而且是支持EV的。爽啊!

2012-01-04 文章 chenlin rao
乃们多写炫目的好代码做教学演示培训用啊~ 在 2012年1月5日 下午2:28,Beckheng Lam 写道: > ** > 哈,似乎全用异步API的话,代码会不会看起来眩乎了点。 > > 于 2012年01月04日 11:21, Achilles Xu 写道: > > 呵呵,对写psgi的要求也高,不能用会block的api。 > > 在 2012年1月3日 下午12:01,Beckheng Lam 写 道: > >> ;-) :-P :-D =-O >> >> >> > > > -- > --- > Achilles Xu > >

Re: [PerlChina] KinderGarden toy project

2011-11-29 文章 chenlin rao
CloudFoundry还没支持perl吧,倒是看到ActiveState有个Stackato? 在 2011年11月29日 下午5:10,Jim Zhang 写道: > 推荐大家使用VMware cloudfoundry : http://www.cloudfoundry.com/ > > > 2011/11/29 chenlin rao > >> 赞~~另,现在advent.perlchina.org的页面是“北科威尔”? >> >> 在 2011年11月29日 下午2:38,Fayland Lam 写道: &g

Re: [PerlChina] KinderGarden toy project

2011-11-28 文章 chenlin rao
hina.org? > > Thanks. > > 2011/11/29 chenlin rao > >> 现在可以了~ >> >> 在 2011年11月29日 下午1:40,Fayland Lam 写道: >> >> https://github.com/fayland/dancer-template-xslate >>> >>> dancer template xslate has some fixes. you should install the version

Re: [PerlChina] KinderGarden toy project

2011-11-28 文章 chenlin rao
现在可以了~ 在 2011年11月29日 下午1:40,Fayland Lam 写道: > https://github.com/fayland/dancer-template-xslate > > dancer template xslate has some fixes. you should install the version from > here. let me know if any more bugs. > > Thanks. > > > 2011/11/29 chenlin rao > >>

Re: [PerlChina] KinderGarden toy project

2011-11-28 文章 chenlin rao
昨天下载到本地试运行,一直报错index.tt找不到,虽然提示中写的全路径确实存在…… 在 2011年11月29日 上午11:06,Fayland Lam 写道: > 坦白说,什么云服务都是不现实的,没有资金。但是我可以写个doc,说说如何本地运行和测试。 > > 我个人是想做点东西给 PerlChina site, 大家可以一起写个site什么的。 > > Thanks. > > > 2011/11/29 Beckheng Lam > >> ** >> Hi, >> >> 有无想过如何开发? 我指如何安装好源代码后在本地可以运行起来.或者是提供一个云服务每个开发者都有单独测试

Re: [PerlChina] [OT] 网游公司 PHP 职位,薪水还行。

2011-09-05 文章 chenlin rao
难道不是overtime~嘿嘿 在 2011年9月5日 下午6:09,Achilles Xu 写道: > On Target,意指非tank职责的玩家由于输出仇恨太高以后,被怪物锁定为目标。 > > 在 2011年9月5日 下午5:17,许高飞 写道: > > 弱弱的问一声,邮件头里的OT是什么的缩写? >> >> 在 2011年9月5日 下午12:44,cnhack TNT 写道: >> >>> 职位描述: >>> 负责与产品、设计人员沟通,主导Web项目的评审、架构和运营,确保系统稳定可靠运行; >>> 负责Web项目底层框架的优化、升级,负责Web项目团队的建设。 >>> >>>

Re: 回复: [PerlChina] 求一本《高级Perl编程》

2011-09-04 文章 chenlin rao
回头看看邮件主题,楼主是要赔图书馆,感觉我要劫了太不仁不义了…… 在 2011年9月5日 下午2:38,Achilles Xu 写道: > 那就竞价吧,呵呵。 > > 在 2011年9月5日 下午2:12,chenlin rao 写道: > > 真卖啊~申请劫胡 >> >> 在 2011年9月5日 下午2:08,Achilles Xu 写道: >> >> 我这有,我已经回答过了,请往上找。 >>> >>> 在 2011年9月5日 下午12:46,leetom 写道: >

Re: 回复: [PerlChina] 求一本《高级Perl编程》

2011-09-04 文章 chenlin rao
真卖啊~申请劫胡 在 2011年9月5日 下午2:08,Achilles Xu 写道: > 我这有,我已经回答过了,请往上找。 > > 在 2011年9月5日 下午12:46,leetom 写道: > > 淘宝上的店铺,都是卖的复印版,没有看到有闲置出售的,Perl高级编程都是有很多。 >> 各大网上书城也都看过了,没有有货的。 >> 大家有人买过这本书吗? >> ** >> >> >> -- 原始邮件 -- >> *发件人:* "Jerome Zhang"; >> *发送时间:* 2011年9月5日(星期一) 中午12:1