タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

modules perlに関するunityのブックマーク (6)

  • Data::RoundRobin

    NAME Data::RoundRobin - Serve data in a round robin manner. SYNOPSIS my @array = qw(a b); # OO Interface my $rr = Data::RoundRobin->new(@array); print $rr->next; # a print $rr->next; # b print $rr->next; # a print $rr->next; # b ... # Infinite Loop while(my $elem = $rr->next) { ... } # Operator overloading my $rr = Data::RoundRobin->new(qw(a b)); print $rr; # a print $rr; # b print $rr; # a DESCRI

    Data::RoundRobin
  • URI-Escape-XS-0.14

    To install URI::Escape::XS, copy and paste the appropriate command in to your terminal. cpanm cpanm URI::Escape::XS CPAN shell perl -MCPAN -e shell install URI::Escape::XS For more information on module installation, please visit the detailed CPAN module installation guide.

    URI-Escape-XS-0.14
  • Crypt::DH::GMPを作った - D-6 [相変わらず根無し]

    Crypt::DH::GMPを作った id:tokuhiromにそそのかされれてCrypt::DH::GMP (リンクはそのうち出現します)書きました。Crypt::DHってモジュールがあって、これに依存するモジュールが少々あるわけですが、このモジュールがすこぶる遅いわけですな。なんで遅いかというとこのモジュールは裏でMath::BigIntを使っているから。Math::BigInt自体はいわゆる任意精度数演算ライブラリで、これをポータブルな方法でPerl上で動作させるにはとてもよくできたモジュールです。 が。遅い。 裏でlibgmpやPari等を使っても、それでも遅い。その理由は単純で、Math::BigIntを使うと裏で何回も何回もSV -> mpz_t -> SV等の変換を含めた、「Perlらしい手法が実現できるための処理」が行われるからです。 Crypt::DHのソースコードを読む

  • YappoLogs: WebService::Simple::Cabinet をリリースしました。

    WebService::Simple::Cabinet をリリースしました。 erogeekの処女作のWebService::Simpleが普通過ぎてドン引きしていた所、これを使ったモジュールの実装アイデアを夢の中で思いついたので、起きて速攻で実装しました。 WebService::Simple::Cabinetって言います。 昨日ちょろっと作ってみた所、面白そうとブクマされたのでCPANにうpしたけどindexはまだみたい。 リポジトリはhttp://svn.coderepos.org/share/lang/perl/WebService-Simple-Cabinet/trunk/からどうぞ。 何をする物かというと、miyagawaさんがWSDL/WADLっぽいって言ってたけどWSDLとかの説明が一番しっくりきました。 WebService::Simpleを使って簡単にアクセス出来るよう

  • Net::OpenID::Consumer

    NAME Net::OpenID::Consumer - Library for consumers of OpenID identities VERSION version 1.18 SYNOPSIS use Net::OpenID::Consumer; my $csr = Net::OpenID::Consumer->new( ua => LWPx::ParanoidAgent->new, cache => Cache::File->new( cache_root => '/tmp/mycache' ), args => $cgi, consumer_secret => ..., required_root => "http://site.example.com/", assoc_options => [ max_encrypt => 1, session_no_encrypt_htt

    Net::OpenID::Consumer
  • DateTimeX::Web

    Tools Download (7.47KB) MetaCPAN Explorer Permissions Subscribe to distribution Install Instructions Dependencies DateTime DateTime::Format::HTTP DateTime::Format::Mail DateTime::Format::MySQL DateTime::Format::Strptime DateTime::Format::W3CDTF DateTime::Locale DateTime::TimeZone Scalar::Util Test::More Test::UseAllModules and possibly others Reverse dependencies CPAN Testers List Dependency graph

    DateTimeX::Web
  • 1