社区
CGI
帖子详情
今天晚上9点,perlish聚会!!!!
tr0jans
2002-03-26 04:31:31
在
irc.sunnet.org
#perl
欢迎
到时有你们想不到的人来的
呵呵
...全文
68
3
打赏
收藏
今天晚上9点,perlish聚会!!!!
在 irc.sunnet.org #perl 欢迎 到时有你们想不到的人来的 呵呵
复制链接
扫一扫
分享
转发到动态
举报
写回复
配置赞助广告
用AI写文章
3 条
回复
切换为时间正序
请发表友善的回复…
发表回复
打赏红包
fengxx
2002-03-26
打赏
举报
回复
我顶~~:))
jinandsun
2002-03-26
打赏
举报
回复
引用“???难道............Larry”
你说的差不多的 呵呵:)
xniao
2002-03-26
打赏
举报
回复
???难道............Larry
ZMQx-Class:到 ZMQ 的
perl
ish
OO 接口
名称 ZMQx::Class - 已弃用 - ZMQ 的 OO 接口 版本 版本 0.008 概要 已弃用 - 这只是一个原型,从未用于生产。 我怀疑它仍然适用于当前的 zmq。 # a ZeroMQ publ
ish
er # see example/publ
ish
er.pl use ZMQx::Class; my $publ
ish
er = ZMQx::Class->socket( 'PUB', bind => 'tcp://*:10000' ); while ( 1 ) { my $random = int( rand ( 10_000 ) ); say "sending $random hello"; $publ
ish
er->send( [ $random, 'hello' ] ); select( undef, undef, undef, 0.1);
Graphics-Raylib:Raylib电子游戏库的
Perl
ish
包装器
Graphics-Raylib:Raylib电子游戏库的
Perl
ish
包装器
minimal_
perl
_for_unix_and_linux_people.pdf
In this preface, I’ll tell you about the history of Minimal
Perl
and the origins of this book. THE HISTORY OF MINIMAL
PERL
The seeds of this book were sown many years ago, when I was building up my knowl- edge of
Perl
, the greatest programming language I’d ever encountered (before or since). While reading a variety of books on the subject, I was surprised that the authors felt obliged to delve into so many of the different but equivalent choices for expressing every basic operation in the language, as well as each of the syntactic variations for expressing any one of those choices. As an example, I’ve shown here some of the available choices for expressing in
Perl
the simple idea that B should be executed only if A is True (with those letters repre- senting arbitrary program elements). Both forward and backward variations for expressing the dependency are included:1 Although some are inclined to present symptoms like these of
Perl
’s complexity and redundancy as evidence of its “richness,” “versatility,” or “expressiveness,” many
Perl
novices would surely have a different reaction—that
Perl
is needlessly complex and too hard to learn. Minimal
Perl
was created to address these obstacles presented by
Perl
’s redundancy and complexity. By emphasizing
Perl
’s grep, sed, and awk-like features, and relying Forward Backward A and B; B if A; A && B; B if A; A and do { B }; do { B } if A; A && do { B }; do { B } if A; if (A) { B }; B if A; unless (!A) { B }; B unless !A; 1Before you despair, I should point out that Minimal
Perl
uses only 2 of these variations—which is all anybody needs! xx on concepts such as inputs, filters, and arguments, it allows Unix1 users to directly apply their existing knowledge to the task of learning
Perl
. So rather than being frustrated with
Perl
’s complexities and disappointed with its steep learning curve, they quickly and painlessly acquire the ability to write useful programs that can solve a wide variety of problems. My first public presentation on this subject was in a tutorial called “Minimal
Perl
for the Impatient” at the YAPC::Europe 2001 conference2 in Amsterdam, the Nether- lands. The eagerness with which that audience devoured the material confirmed my hunch that many were hungering for an easier way to learn
Perl
. Since then, I’ve taught Minimal
Perl
at other professional conferences, at meetings of
Perl
Users Groups in the US and Canada, and to many Fortune 500 companies. THE GENESIS OF THE BOOK By 2001, the Minimal
Perl
approach had convincingly proven its ability to help Unix people acquire
Perl
skills with relative ease. But many who could appreciate its benefits never get to see conference presentations or attend corporate training classes, so I became interested in making this information available to a wider audience. However, I had some serious reservations about embarking on a book, having heard many sobering stories from colleagues about the travails of authorship. Fortu- nately, I received some encouragement that was instrumental in helping me decide to go forward with this project, from a good friend—Dr. Damian Conway. A little help from my friend Damian and I first met after my presentation on the first “
Perl
Beautifier” at The
Perl
Conference in 1998,3 when he gently informed me that I could have categorized
Perl
source code into its constituent elements by using a program he had written (in
Perl
’s module format), rather than writing my own from scratch to attempt that difficult task. After examining more of his ingenious modules and reading his excellent book Object Oriented
Perl
,4 I soon realized that Damian had a deeper understanding of
Perl
than almost anyone else. To allow others to benefit from his insights, I arranged for him to periodically teach
Perl
classes through my Seattle-based company (Consultix) and also to present talks to our Seattle
Perl
Users Group (SPUG, aka Seattle.pm). This worked out wonderfully for Seattleites, who would learn practical
Perl
incantations 1In this book, Unix is shorthand for “UNIX, Linux, and related operating systems,” as detailed in the “Essential terminology” section of “About this book.” 2See this book’s glossary for the definition of YAPC. 3For more details, see http://TeachMe
Perl
.com/
perl
_beautifier.html. 4His book is described at http://www.manning.com/conway. It’s for a more advanced audience than this one. xxi from him during the formal daytime sessions and then enjoy his overtly hilarious (yet covertly educational) conference-style presentations by night. Damian is probably still blushing from my effusive introductions of him as •The
Perl
Wonder from Down Under (because he’s an Aussie), and •The Supreme Modulator of
Perl
.1 But I feel vindicated, because by now everybody knows I was correct in my estimation of his uniqueness and importance to the
Perl
community. An auspicious weather non-event During one week while Damian was in Seattle as a visiting instructor for Consultix, we took an extended bike ride along the shore of Lake Washington together—and we didn’t even get drenched by rain! As a long-time Seattleite, I knew this to be an extremely auspicious sign, so I seized the opportunity to tell him about my interest in writing a Minimal
Perl
book. Being a fellow fan of the AWK language (which is
Perl
ish
, but simpler)—and having a keen interest in making
Perl
more accessible to novices— he expressed enthusiasm for the project and offered some interesting ideas about how to approach it. The combination of my ideas with some of Damian’s—along with sufficient fer- mentation and seasoning—ultimately led to the format, content, and approach of the book you now hold. The result is a volume that teaches
Perl
in ways no book has done before! I hope you enjoy reading it as much as I did writing it.
java开发抽奖系统源码-scala-for-
perl
5-programmers:Scala教程针对具有
Perl
5经验的开发人员
java开发抽奖系统源码面向
Perl
5 程序员的 Scala 所以,您是一名
Perl
黑客,正在涉足 Scala。 也许您想为 . 也许您想通过走出舒适区来提高
Perl
编程技能。 也许你只是为了踢球,或者作为第二语言,或者......好吧,这并不重要。 当我决定学习一
点
Scala 时,我震惊地发现大多数教程都是为来自 Java 的人准备的。 嗯,我不是一个真正的 Java 人,所以我决定为主要有
Perl
5 背景的人编写一个教程。 在我学习(和写作)的过程中,我意识到 Scala 感觉非常
Perl
ish
,它有匿名方法、不止一种做事方式、奇怪的运算符,甚至还有一个上下文变量! 你很快就会有宾至如归的感觉:) 现在,我不会尝试教你如何编程,也不会学习基本的编程知识。 相反,我将在
Perl
5 和 Scala 2.10.3 之间画几个相似之处,以尽快让您站起来。 我还确保在本教程中添加了大量
Perl
名称和引用,以便您稍后可以搜索特定关键字,例如“
perl
doc”、“eval”、“Test::More”等。 最后,请记住,我仍在学习 Scala,它是一种非常大的语言,因此我
perl
-LWP-MediaTypes-6.02-2.el7.x64-86.rpm.tar.gz
1、文件内容:
perl
-LWP-MediaTypes-6.02-2.el7.rpm以及相关依赖 2、文件形式:tar.gz压缩包 3、安装指令: #Step1、解压 tar -zxvf /mnt/data/output/
perl
-LWP-MediaTypes-6.02-2.el7.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm 4、安装指导:私信博主,全程指导安装
CGI
2,203
社区成员
4,518
社区内容
发帖
与我相关
我的任务
CGI
Web 开发 CGI
复制链接
扫一扫
分享
社区描述
Web 开发 CGI
社区管理员
加入社区
获取链接或二维码
近7日
近30日
至今
加载中
查看更多榜单
社区公告
暂无公告
试试用AI创作助手写篇文章吧
+ 用AI写文章