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.082.240 Times

Edgar Allen Poe Wiki freeware
Filter: All | Freeware | Demo
 

Edgar Allen Poe Wiki

< 1 2 3 4 5 > 
Added: May 07, 2010 | Visits: 864

POE::Filter::LZW::Progressive POE::Filter::LZW::Progressive is a POE filter wrapped around Compress::LZW::Progressive..



Platforms: *nix

License: Freeware Size: 10.24 KB Download (96): POE::Filter::LZW::Progressive Download

Added: April 23, 2010 | Visits: 1.058

POE::Component::Player::Slideshow POE::Component::Player::Slideshow is a wrapper for the qiv application. SYNOPSIS use POE qw(Component::Player::Slideshow); $mp = POE::Component::Player::Slideshow->new(); $mp->play("/tmp/pix"); POE::Kernel->run(); This component is used to manipulate a slideshow viewer from within a...





Platforms: *nix

License: Freeware Size: 20.48 KB Download (97): POE::Component::Player::Slideshow Download

Added: April 02, 2010 | Visits: 1.101

POE::Component::Player::Mpg123 SYNOPSIS use POE qw(Component::Player::Mpg123); $mp = POE::Component::Player::Mpg123->new(); $mp->play("/tmp/test.mp3"); POE::Kernel->run(); This component is used to manipulate the mpg123 player from within a POE application. The less common but open-source mpg321 has also been tested....


Platforms: *nix

License: Freeware Size: 7.17 KB Download (104): POE::Component::Player::Mpg123 Download

Added: April 16, 2010 | Visits: 1.012

POE::Component::Enc::Mp3 POE::Component::Enc::Mp3 is a mp3 encoder wrapper. SYNOPSIS use POE qw(Component::Enc::Mp3); $mp3 = POE::Component::Enc::Mp3->new($bitrate => 160); $mp3->enc("/tmp/tst.wav"); POE::Kernel->run(); This POE component encodes raw audio files into mp3 format. It is merely a wrapper for the...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (122): POE::Component::Enc::Mp3 Download

Added: October 24, 2010 | Visits: 1.335

Pod::Simple::Wiki Pod::Simple::Wiki is a class for creating Pod to Wiki filters. SYNOPSIS To create a simple filter to convert from Pod to a wiki format: #!/usr/bin/perl -w use strict; use Pod::Simple::Wiki; my $parser = Pod::Simple::Wiki->new(kwiki); if (defined $ARGV[0]) { open IN, $ARGV[0] or die...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (92): Pod::Simple::Wiki Download

Added: August 11, 2010 | Visits: 2.930

Wiki::Toolkit::Formatter::Default Wiki::Toolkit::Formatter::Default is a formatter for Wiki::Toolkit. SYNOPSIS my $store = Wiki::Toolkit::Store::SQLite->new( ... ); # See below for parameter details. my $formatter = Wiki::Toolkit::Formatter::Default->new( %config ); my $wiki = Wiki::Toolkit->new( store => $store,...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (243): Wiki::Toolkit::Formatter::Default Download

Added: November 12, 2010 | Visits: 1.515

CGI::Wiki CGI::Wiki is a toolkit for building Wikis. Helps you develop Wikis quickly by taking care of the boring bits for you. You will still need to write some code - this isnt an instant Wiki. SYNOPSIS # Set up a wiki object with an SQLite storage backend, and an # inverted index/DB_File search...


Platforms: *nix

License: Freeware Size: 62.46 KB Download (87): CGI::Wiki Download

Added: June 08, 2010 | Visits: 1.775

PWP Wiki Processor PWP Wiki Processor is a PHP Wiki based on flat files that can create static pages. It uses flat files as data storage, no database is required. It has a simple cache and trash bin, and can handle file uploads. It is able to export its contents into static HTML pages. A Wiki is a...


Platforms: *nix

License: Freeware Size: 163.84 KB Download (97): PWP Wiki Processor Download

Added: August 05, 2010 | Visits: 1.595

OW2 wiki OW2 is a wiki/BBS management system that offers multiple areas, user pages, rich markup, internal backward links, RSS feeds, a public chat, full referer tracking and an internal messaging system. Installation: 1. Create a MySQL database called ow2_orgowiki 2. Import the sample database given...


Platforms: *nix

License: Freeware Size: 225.28 KB Download (101): OW2 wiki Download

Added: August 16, 2010 | Visits: 1.227

POE::Component::Audio::Mad::Dispatch POE::Component::Audio::Mad::Dispatch is a POE::Component::Audio::Mad frontend implementing listener based message dispatch. SYNOPSIS use POE; use POE::Component::Audio::Mad::Dispatch; ## we print some stuff below, and we dont want it ## to get buffered.. so turn on autoflush. $| = 1;...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (101): POE::Component::Audio::Mad::Dispatch Download

Added: September 10, 2010 | Visits: 866

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 (87): POE::Component::Audio::Mad::Handle Download

Added: February 17, 2010 | Visits: 1.083

POE::Wheel::Audio::Mad POE::Wheel::Audio::Mad is a POE Wheel implementing in-session non-blocking mpeg stream playing. SYNOPSIS use POE; use POE::Wheel::Audio::Mad; POE::Session->create( inline_states => { _start => &am_start, message => &am_message } ); sub am_start { my ($kernel, $heap) = @_[KERNEL,...


Platforms: *nix

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

Added: October 25, 2010 | Visits: 1.642

KDE Personal Wiki KDE Personal Wiki engine for KDE, made for only personal use. Consider it a replacemente of KNotes and such apps. You can create/remove pages, links between pages are automatically created. I hope you like my first app.. KDE Personal Wiki KDE-Apps.org Community Portal for KDE Applications...


Platforms: *nix

License: Freeware Size: 88.06 KB Download (101): KDE Personal Wiki Download

Added: February 18, 2010 | Visits: 676

POE::Exceptions POE::Exceptions is a POE class for handling exceptions. SYNOPSIS use POE::Exceptions; POE::Session::Exception->create( inline_states => { _start => sub { print START; $_[KERNEL]->sig(DIE,death_handled); }, death_handled => sub { print EXCEPTION CAUGHT $_[KERNEL]->sig_handled(); },...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (95): POE::Exceptions Download

Added: November 19, 2010 | Visits: 1.010

POE::API::Peek POE::API::Peek is a Perl module to peek into the internals of a running POE environment. POE::API::Peek extends the POE::Kernel interface to provide clean access to Kernel internals in a cross-version compatible manner. Other calculated data is also available. My intention is to provide...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (88): POE::API::Peek Download

Added: August 05, 2010 | Visits: 959

POE::API::Hooks POE::API::Hooks is a Perl module to implement lightweight hooks into POE. SYNOPSIS use POE; use POE::API::Hooks; POE::API::Hooks->add( before_event_dispatch => &do_something, after_event_dispatch => &do_something, before_session_create => &do_something, after_session_create =>...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (86): POE::API::Hooks Download

Added: November 06, 2010 | Visits: 529

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: February 26, 2010 | Visits: 753

POE::Component::ControlPort::Command POE::Component::ControlPort::Command is a Perl module with register control port commands. SYNOPSIS use POE::Component::ControlPort::Command; POE::Component::ControlPort::Command->register( name => test, topic => sample_commands, usage => test [ text to echo ] help_text => test command....


Platforms: *nix

License: Freeware Size: 12.29 KB Download (101): POE::Component::ControlPort::Command Download

Added: May 08, 2010 | Visits: 856

POE::Component::ControlPort POE::Component::ControlPort is a Perl module with network control port for POE applications. SYNOPSIS use POE; use Getopt::Long; use POE::Component::ControlPort; use POE::Component::ControlPort::Command; my @commands = ( { help_text => My command, usage => my_command [ arg1, arg2 ],...


Platforms: *nix

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

Added: February 01, 2010 | Visits: 674

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 (86): POE::Component::DebugShell Download

< 1 2 3 4 5 >