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

Edgar Allan Poe Quotes software
Filter: All | Freeware | Demo
 

Edgar Allan Poe Quotes

< 1 2 3 4 5 
Added: July 01, 2010 | Visits: 709

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: 569

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: 536

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: July 27, 2010 | Visits: 1.064

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: 681

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: September 17, 2010 | Visits: 1.048

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: May 18, 2010 | Visits: 867

fortune-discworld fortune-discworld project consists of quotes from the "Discworld" novels by Terry Pratchett. They were the observers of the operation of the universe, its clerks, its auditors. They saw to it that things spun and rocks fell. And they believed that for a thing to exist it had to have a position... Platforms: *nix

License: Freeware Size: 80.9 KB Download (91): fortune-discworld Download

Added: January 26, 2010 | Visits: 1.101

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: 864

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: 700

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: 807

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: January 09, 2010 | Visits: 944

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: September 10, 2010 | Visits: 872

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

Added: February 17, 2010 | Visits: 1.087

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: November 19, 2010 | Visits: 1.019

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: 968

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

Released: July 19, 2017  |  Added: August 07, 2017 | Visits: 964

Internet Quotes Assistant Internet Quotes Assistant allows personal investors to automatically keep track of investment portfolios, getting the most recent financial quotes from any server in the Internet for free (pre-configured servers: (Frankfurt, Stuttgart, Vienna, Zürich, DWS, Deka, Fidelity, NY, London,... Platforms: Windows 7, Windows

License: Shareware Cost: $16.50 USD Size: 9.88 MB Download (76): Internet Quotes Assistant Download

Released: December 17, 2012  |  Added: March 12, 2014 | Visits: 1.020

TickInvest - Stock Charting and Technical Analysis TickInvest is a stock charting and technical analysis software with realtime and eod charts. Features: Trade Simulator, Backtester, Backtest Optimizer, Stock Screener, Alerts, Custom Drawing Tools, Stock Quotes, Extensible Formula Language. Analyze your favorite stocks with ready to use... Platforms: Windows, Windows 7

License: Shareware Cost: $59.00 USD Size: 30.65 MB Download (72): TickInvest - Stock Charting and Technical Analysis Download

Added: April 05, 2013 | Visits: 769

Canada Post Shipping Quotes for Ubercart This module is used to obtain Canada Post shipping quotes for Ubercart. It interfaces with Canada Post's "SellOnline" service (http://sellonline.canadapost.ca) to quotes directly from the Canada Post server. Works for both domestic and international shipments.Orders are automatically divided into... Platforms: PHP

License: Freeware Size: 20.48 KB Download (66): Canada Post Shipping Quotes for Ubercart Download

Released: October 02, 2012  |  Added: October 02, 2012 | Visits: 592

Led Stock Quotes Ticker Java Applet 2.4 About Led Stock Quotes Ticker Java Applet Led Stocks Quotes Ticker Applet is the perfect browser embedded tool you can enhance your site by showing real-time stock quotes values in a stock market similar led display. Based on Java TM technology, this applet offers the following features: -... Platforms: Mac

License: Shareware Cost: $0.00 USD Size: 20.48 KB Download (60): Led Stock Quotes Ticker Java Applet 2.4 Download

< 1 2 3 4 5