April 03, 2007
샌드위치 주문을 위한 펄(Perl) 코드
use strict;
my $fail;
sub order_sandwich {
local $_ = shift;
/^How are you/
and return "I'm good.";
/^What .* order/
and return "Chicken Breast Sandwich.";
/^What kind of bread/
and return "French Roll.";
/^(Put )?everything\?/i
and return "Yes.";
/cheese/
and return "Cheddar Cheese.";
if ($fail++ <= 3) {
return "Sorry?";
}
return "Whatever.";
}
From blog.bulknews.net
Posted by kiseok7 at 09:45 PM
January 21, 2007
Perlbal 웹서버
Perlbal is a single-threaded event-based server supporting HTTP load balancing, web serving, and a mix of the two (see below).One of the defining things about Perlbal is that almost everything can be configured or reconfigured on the fly without needing to restart the software. A basic configuration file containing a management port enables you to easily perform operations on a running instance of Perlbal.
Here is a basic list of the personalities and features that Perlbal implements at this time
Posted by kiseok7 at 06:25 PM
March 05, 2006
Plagger: DIY RSS/Atom aggregation
Plagger - Trac
Plagger is a pluggable RSS/Atom feed aggregator written in Perl. Everything is implemented as a small plugin and you can mash them up together using Plagger core API and plugin hooks. You can think of Plagger as a blosxom or qpsmtpd for RSS aggregator.
이건 정말 대박이군요~!
Posted by kiseok7 at 12:43 AM | Comments (0)
February 04, 2006
YAPC::Asia 스피커
http://tokyo.yapcasia.org/blog/ja/2006/02/post.html
3월 29일... 도쿄에서 연설자 중에 레리월도 있군요.^^
장소가 일본인데다... 평일이군요;
Posted by kiseok7 at 01:01 PM | Comments (0)
January 30, 2006
YAPC::Asia 2006 Tokyo
use Perl | YAPC::Asia Registration opens
일본에서 yapc(yet another perl conference)를 개최한다고 합니다.
종종 일본에서 펄(또는 루비)관련한 컨퍼런스나 세미나의 소식을 접하게 되는데 무척 부럽네요.
물론 우리나라에도 펄마니아가 있지만요 ^^
Posted by kiseok7 at 09:09 PM | Comments (0)
July 25, 2005
오픈서치의 결과를 이용하는 펄 모듈
search.cpan.org: WWW::OpenSearch - Search A9 OpenSearch compatible engines
오픈서치에 제공하기 위한 xml파일을 이용해서 검색을 할 수 있는 모듈입니다.
Posted by kiseok7 at 12:11 AM | Comments (0)
May 11, 2005
Perlcast - Podcasting Perl
perlcast.com via use Perl
Perlcast 8 is out. This weeks Perlcast covers news of Perl for the week ending on May 8th 2005 and contains an interview with Leopold Toetsch, the current Parrot pumpking.
펄에 관한 포드캐스팅(perlcast)입니다. 점점 들을 만한 podcast가 늘어나고 있는것 같습니다.
곧 podcast용 검색엔진도 등장할것입니다. 한국어 음성을 text로 만드는 기술이 어느정도까지 와있는지 궁금하네요.
Posted by kiseok7 at 12:00 PM | Comments (0)
December 24, 2004
Top Coder - Member Surveys
Which most closely resembles your opinion on adding Perl as a supported TopCoder Algorithm Competition language?Great! I would use Perl as my primary TopCoder Algorithm Competition language.
프로그래밍 콘테스트 사이트인 Top Coder에서 알고리즘 부분의 언어로 펄(perl)을 채택할 것을 검토하고 있습니다. 지금 회원들을 대상으로 설문을 하고 있는데... 찬성이 약 66%정도 입니다. =)
구글의 코드잼도 topcoder를 이용하고 있으니 다음번 구글 코드잼에는 펄 사용자도 참가 가능하겠네요 ^^
Posted by kiseok7 at 09:49 AM | Comments (0)
October 13, 2004
문서의 페이지랭크(PageRank) 구하기
구글검색에서 inurl을 통해서 특정한 URL하위의 문서를 검색하여 결과를 가져오고 그 문서(URL)에 대한 구글 페이지랭크(PageRank)를 구해서 출력하는 스크립트입니다.
구글검색 및 페이지랭크(PageRank)를 가져오기 위해서 매번 구글에 요청해야 합니다. ( 웹페이지로는 만들지 않는것이 좋을것 같습니다. )
펄의 LWP, WWW::Google::PageRank 모듈의 사용합니다.
소스는 아래에...
http://www.codeordie.org/wiki/?GoogleHack/SitePageRank
Posted by kiseok7 at 02:03 AM | Comments (0)
June 06, 2004
POE 0.29 released
POE is an award-winning networking and multitasking framework for Perl.
중단된것 처럼 생각되던 POE가 버젼업 되었다. POE는 다중작업을 위한 프레임워크로 펄의 다른 모듈과 합께 잘 융화되어 강력한 환경을 제공한다.
정형적인 ( 이미 많이 구현되어있는 ) 형태의 다중작업은 POE를 이용해서 단 몇줄로 가능하다.
나는 작년 말에 이 POE를 이용해서 작업을 한적이 있는데.. 편하긴 하면서 1.0가 되지 않는 버젼이나 가끔씩 보이는 미완성적인 면이 조금 불안 했었다. perl6의 발표와 관계없이 계속 버젼업 되었으면 좋겠다.
Posted by kiseok7 at 10:16 PM | Comments (0)