Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.352.284 Times

Edgar Allen Poe software
Filter: All | Freeware | Demo
 

Edgar Allen Poe

< 1 2 3 4 5 > 
Added: September 04, 2010 | Visits: 1.020

POE::Component::Pool::Thread POE::Component::Pool::Thread is a POE Managed Boss/Worker threadpool. SYNOPSIS use POE qw( Component::Pool::Thread ); POE::Component::Pool::Thread->new ( MinFree => 2, MaxFree => 5, MaxThreads => 15, StartThrneads => 5, Name => "ThreadPool", EntryPoint => &thread_entry_point,...



Platforms: *nix

License: Freeware Size: 7.17 KB Download (95): POE::Component::Pool::Thread Download

Added: August 09, 2010 | Visits: 1.223

Festival::Client::Async Festival::Client::Async is a non-blocking interface to a Festival server. SYNOPSIS use Festival::Client::Async qw(parse_lisp); my $fest = Festival::Client::Async->new($host, $port); $fest->server_eval_sync($lisp, %actions); # blocking $fest->server_eval($lisp); # just queues $lisp for...





Platforms: *nix

License: Freeware Size: 30.72 KB Download (95): Festival::Client::Async Download

Added: February 16, 2010 | Visits: 885

POE::Component::NomadJukebox POE::Component::NomadJukebox is an event-based contol of Nomad Jukebox players. SYNOPSIS use POE qw(COmponent::NomadJukebox); use Data::Dumper; POE::Session->create( inline_states => { _start => sub { POE::Component::NomadJukebox->create({ alias => njb }); }, njb_started => sub {...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (94): POE::Component::NomadJukebox Download

Added: July 01, 2010 | Visits: 703

POE::Component::Growl POE::Component::Growl provides a Growl notification dispatcher for POE. POE::Component::Growl provides a facility for notifying events through Growl using the Mac::Growl module as back-end. Integration with POEs architecture allows easy, non-blocking notifications. Multiple notifiers can be...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (94): POE::Component::Growl Download

Added: October 06, 2010 | Visits: 568

Poe Poe is a Pugnacious Ogg Editor. Poe is a vorbis comment editor. It tries to follow the vorbis comment header specification closely, while being convenient and flexible to use. Towards that end, it doesnt have a static form style interface. Instead, it has an editable table of comments. The...


Platforms: *nix

License: Freeware Size: 74.75 KB Download (94): Poe Download

Added: November 06, 2010 | Visits: 531

POE::Component::ControlPort::DefaultCommands POE::Component::ControlPort::DefaultCommands is a set of default commands available to the control port..


Platforms: *nix

License: Freeware Size: 12.29 KB Download (93): POE::Component::ControlPort::DefaultCommands Download

Added: August 21, 2010 | Visits: 1.650

Studs MVC Framework+ Studs MVC Framework+ contains a port of Apaches Jakarta Struts to PHP, though the libraries included in the rest of the project are much more vast. In order to implement the Struts port, it was necessary to build a core, object-oriented API in the style of the JDK and the Jakarta Commons, a...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (93): Studs MVC Framework+ Download

Added: July 27, 2010 | Visits: 1.062

POE::Component::Player::Xmms POE::Component::Player::Xmms is a wrapper for the Xmms player. SYNOPSIS use POE qw(Component::Player::Xmms); POE::Component::Player::Xmms->spawn({ alias => xmms }); $kernel->post(xmms => play => test.mp3); POE::Kernel->run(); This component is used to manipulate the Xmms player from...


Platforms: *nix

License: Freeware Size: 95.23 KB Download (92): POE::Component::Player::Xmms Download

Added: February 01, 2010 | Visits: 677

POE::Component::DebugShell POE::Component::DebugShell is a component to allow interactive peeking into a running POE application. SYNOPSIS use POE::Component::DebugShell; POE::Component::DebugShell->spawn(); This component allows for interactive peeking into a running POE application. spawn() creates a ReadLine...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (92): POE::Component::DebugShell Download

Added: November 03, 2010 | Visits: 845

Class::Meta::Express Class::Meta::Express is a Perl module for concise, expressive creation of Class::Meta classes. Synopsis package My::Contact; use Class::Meta::Express; class { meta contact => ( default_type => string ); has name; has contact => ( required => 1 ); } This module provides an interface...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (92): Class::Meta::Express Download

Added: September 17, 2010 | Visits: 1.042

POE::Component::Player::Musicus POE::Component::Player::Musicus is a POE wrapper for the musicus audio player. SYNOPSIS use POE qw(Component::Player::Musicus); $musicus = POE::Component::Player::Musicus->new(); $musicus->play("test.mp3"); POE::Kernel->run(); This POE component is used to manipulate the musicus player...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (91): POE::Component::Player::Musicus Download

Added: January 26, 2010 | Visits: 1.096

POE::Component::Client::Traceroute POE::Component::Client::Traceroute is a non-blocking traceroute client. SYNOPSIS use POE qw(Component::Client::Traceroute); POE::Component::Client::Traceroute->spawn( Alias => tracer, # Defaults to tracer FirstHop => 1, # Defaults to 1 MaxTTL => 16, # Defaults to 32 hops Timeout => 0, #...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (90): POE::Component::Client::Traceroute Download

Added: August 16, 2010 | Visits: 860

POE::Component::OSCAR POE::Component::OSCAR is a POE component for the Net::OSCAR module. SYNOPSIS use POE qw(Component::OSCAR); [ ... POE set up ... ] sub _start { # start an OSCAR session $oscar = POE::Component::OSCAR->new(); # start an OSCAR session with automatic throttling of new connections # to...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (90): POE::Component::OSCAR Download

Added: July 20, 2010 | Visits: 697

POE::Component::Basement POE::Component::Basement provides Class::Std and base POE component functionality. SYNOPSIS package POE::MyComponent; # use as base use base qw/ POE::Component::Basement /; # where the initializations happen (see Class::Std) sub BUILD { ... } # see also Class::Std and...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (90): POE::Component::Basement Download

Added: May 21, 2010 | Visits: 803

POE::Component::Client::TCPMulti POE::Component::Client::TCPMulti is a high performance client TCP library. SYNOPSIS # Short Usage POE::Component::Client::TCPMulti->create ( InputEvent => sub { printf "%s:%d: %s", $_[CHEAP]->ADDR, $_[CHEAP]->PORT, $_[ARG0]; }, SuccessEvent => sub { printf "%s:%d: Connection Recieved",...


Platforms: *nix

License: Freeware Size: 23.55 KB Download (90): POE::Component::Client::TCPMulti Download

Added: July 14, 2010 | Visits: 785

POEST::Server POEST::Server - The Poest Master General. SYNOPSIS my $server = POEST::Server->new( Config => POEST::Config::Genearl, ConfigFile => /etc/poest.conf, ); $server->start; ABSTRACT This module controls the server itself. All high-level server interaction happens here. new() Create...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (90): POEST::Server Download

Added: July 08, 2010 | Visits: 662

Volity::Jabber Volity::Jabber is a base class for Jabber-speaking Volity objects. SYNOPSIS package My::Volity::Object; use base qw(Volity::Jabber); use fields qw(wubba_wubba); # Override the parents initialize method to set values on construction. sub initialize { my $self = shift;...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (90): Volity::Jabber Download

Added: January 09, 2010 | Visits: 939

POE::Component::DebugShell::Jabber POE::Component::DebugShell::Jabber is a Perl component to allow interactive peeking into a running POE application via Jabber. SYNOPSIS use POE::Component::DebugShell::Jabber; POE::Component::DebugShell::Jabber->spawn( jabber_package => POE::Component::Jabber::Client::XMPP, jabber => {...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (89): POE::Component::DebugShell::Jabber Download

Added: August 16, 2010 | Visits: 755

zebot zebot is a modular and fun ircbot. The origin from this bot comes from a french linux newspaper, which showed how to write a basic bot in perl. This code was then heavily extended, adding especially the ability to differentiate between owner,ops and normal users. A further addition was mainly...


Platforms: *nix

License: Freeware Size: 163.84 KB Download (89): zebot Download

Added: September 10, 2010 | Visits: 868

POE::Component::Audio::Mad::Handle POE::Component::Audio::Mad::Handle is a POE Component to facilitate IPC with the POE::Wheel::Audio::Mad mpeg decoder. SYNOPSIS use POE; use POE::Component::Audio::Mad::Handle; ## create an IPC bridge on stdin/stdout create POE::Component::Audio::Mad::Handle(); ## create a custom IPC...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (88): POE::Component::Audio::Mad::Handle Download

< 1 2 3 4 5 >