
Perl
文章平均质量分 77
CPP_CHEN
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
My first silly-dummy-crappy web-crawler perl program
自己写的第一个玩具Perl 爬虫程序,主要是体验Perl语言的方便(和强大?)#!/usr/bin/perluse warnings;use strict;use 5.010;use LWP::UserAgent;use HTML::LinkExtor;use Thread;use threads;use threads::shared;#my $f原创 2011-11-02 16:00:42 · 651 阅读 · 0 评论 -
LWP::UserAgent HTTPs Debug
1) The latest(v5.14) perl SSL lib implementation is quite different from the old one(v5.8.8). The following code can work well with the old version perl, but it can't live with the new perl on win7 64原创 2012-06-05 17:33:11 · 2414 阅读 · 0 评论