can handle
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1588
Email::Handle 0.01
Email::Handle is a Objective Email Handler. more>>
Email::Handle is a Objective Email Handler.
SYNOPSIS
use Email::Handle;
my $email = Email::Handle->new(root@example.com);
print $email->is_valid ? yes : no;
print $email->obfuscate;
print $email->anonymize;
print $email;
$email->send(From => foo@example.com);
This module is also convenient for using on the DB application with Template and Class::DBI / DBIx::Class.
# setup the table that has column of email with this module
my $loader = Class::DBI::Loader->new(
...
namespace => MyApp
);
$loader->find_class(user)->has_a(email => Email::Handle);
# then output records with TT2
my $tmpl = Template->new;
$tmpl->process(
sample.tt,
{ users => $loader->find_class(user)->retrieve_all }
);
# You can write the template with some methods of this module like this
[% WHILE (user IN users) %]
[% user.email.obfuscate IF user.email.is_valid %]
[% END %]
<<lessSYNOPSIS
use Email::Handle;
my $email = Email::Handle->new(root@example.com);
print $email->is_valid ? yes : no;
print $email->obfuscate;
print $email->anonymize;
print $email;
$email->send(From => foo@example.com);
This module is also convenient for using on the DB application with Template and Class::DBI / DBIx::Class.
# setup the table that has column of email with this module
my $loader = Class::DBI::Loader->new(
...
namespace => MyApp
);
$loader->find_class(user)->has_a(email => Email::Handle);
# then output records with TT2
my $tmpl = Template->new;
$tmpl->process(
sample.tt,
{ users => $loader->find_class(user)->retrieve_all }
);
# You can write the template with some methods of this module like this
[% WHILE (user IN users) %]
[% user.email.obfuscate IF user.email.is_valid %]
[% END %]
Download (0.005MB)
Added: 2007-08-03 License: Perl Artistic License Price:
813 downloads
HTTP::Handle 0.2
HTTP::Handle is a HTTP Class designed for streaming. more>>
HTTP::Handle is a HTTP Class designed for streaming.
SYNOPSIS
use HTTP::Handle;
my $http = HTTP::Handle->new( uri => "http://www.google.com/" );
$http->connect();
my $fd = $http->fd();
while () {
print "--> $_";
}
The HTTP::Handle module allows you to make HTTP requests and handle the data yourself. The general ideas is that you use this module to make a HTTP request and handle non-header data yourself. I needed such a feature for my mp3 player to listen to icecast streams.
HTTP::Handle->new()
Create a new HTTP::Handle object thingy.
Arguments possible:
url => "http://www.google.com/"
Sets the initial URL to connect to.
follow_redirects => [ 0 | 1 ]
Automatically follow HTTP redirects. This defaults to true (1). Set to 0 to disable this.
http_request => HASHREF
Any thing put in here will be sent as "key: value" in the http request string.
$http->connect()
Connect, send the http request, and process the response headers.
This function returns -1 on failure, undef otherwise. The reason for failure will be printed to STDERR.
$http->fd()
Get the file descriptor (socket) were using to connect.
$http->url( [ url_string ])
Get or set the URL. If a url string is passed, you will change the url that is requested. If no parameter is passed, a URI object will be returned containing the
$http->follow_redirects( [ 0 | 1 ] )
If a value is passed then you will set whether or not we will automatically follow HTTP 302 Redirects. If no value is passed, then we will return whatever the current option is.
Defaults to 1 (will follow redirects).
$http->http_request_string()
Returns a string containing the HTTP request and headers, this is used when
$http->connect() is called.
<<lessSYNOPSIS
use HTTP::Handle;
my $http = HTTP::Handle->new( uri => "http://www.google.com/" );
$http->connect();
my $fd = $http->fd();
while () {
print "--> $_";
}
The HTTP::Handle module allows you to make HTTP requests and handle the data yourself. The general ideas is that you use this module to make a HTTP request and handle non-header data yourself. I needed such a feature for my mp3 player to listen to icecast streams.
HTTP::Handle->new()
Create a new HTTP::Handle object thingy.
Arguments possible:
url => "http://www.google.com/"
Sets the initial URL to connect to.
follow_redirects => [ 0 | 1 ]
Automatically follow HTTP redirects. This defaults to true (1). Set to 0 to disable this.
http_request => HASHREF
Any thing put in here will be sent as "key: value" in the http request string.
$http->connect()
Connect, send the http request, and process the response headers.
This function returns -1 on failure, undef otherwise. The reason for failure will be printed to STDERR.
$http->fd()
Get the file descriptor (socket) were using to connect.
$http->url( [ url_string ])
Get or set the URL. If a url string is passed, you will change the url that is requested. If no parameter is passed, a URI object will be returned containing the
$http->follow_redirects( [ 0 | 1 ] )
If a value is passed then you will set whether or not we will automatically follow HTTP 302 Redirects. If no value is passed, then we will return whatever the current option is.
Defaults to 1 (will follow redirects).
$http->http_request_string()
Returns a string containing the HTTP request and headers, this is used when
$http->connect() is called.
Download (0.005MB)
Added: 2006-11-16 License: Perl Artistic License Price:
1072 downloads
Analog 6.0
Analog is a webserver log analyzer more>>
Analog is an application that will help you measure the usage on your web server. It tells you which pages are most popular, which countries people are visiting from, which sites they tried to follow broken links from, and all sorts of other useful information.
Main features:
- is very fast
- can handle big logfiles
- output in any of 33 different languages
- very configurable
- easy to install
<<lessMain features:
- is very fast
- can handle big logfiles
- output in any of 33 different languages
- very configurable
- easy to install
Download (MB)
Added: 2006-06-05 License: GPL (GNU General Public License) Price:
1245 downloads
POE::Component::Audio::Mad::Handle 0.3
POE::Component::Audio::Mad::Handle is a POE Component to facilitate IPC with the POE::Wheel::Audio::Mad mpeg decoder. more>>
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 bridge..
create POE::Component::Audio::Mad::Handle (
Driver => POE::Driver::SysRW->new(),
Filter => POE::Filter::Audio::Mad->new(),
Handle => $two_way_handle,
# -or-
InputHandle => $one_way_handle_in,
OutputHandle => $one_way_handle_out
);
POE::Component::Audio::Mad::Handle is a POE Component to implement basic inter-process communication with the POE::Wheel::Audio::Mad mpeg decoder and a bi-directional or two unidirectional filehandles.
This Component operates by creating an instance of POE::Wheel::Audio::Mad and an instance of POE::Wheel::ReadWrite and then facilitates communication between the two. All options passed to the create() constructor are filled in with defaults and then directly passed to POE::Wheel::ReadWrites constructor; see its documentation for a description of available options.
You may use any options you wish. Decoder status messages will be sent through the filter and then delivered to the appropriate filehandle. Commands received through the appropriate filehandle will be sent through the filter and used to affect POE::Wheel::Audio::Mad operations.
<<lessSYNOPSIS
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 bridge..
create POE::Component::Audio::Mad::Handle (
Driver => POE::Driver::SysRW->new(),
Filter => POE::Filter::Audio::Mad->new(),
Handle => $two_way_handle,
# -or-
InputHandle => $one_way_handle_in,
OutputHandle => $one_way_handle_out
);
POE::Component::Audio::Mad::Handle is a POE Component to implement basic inter-process communication with the POE::Wheel::Audio::Mad mpeg decoder and a bi-directional or two unidirectional filehandles.
This Component operates by creating an instance of POE::Wheel::Audio::Mad and an instance of POE::Wheel::ReadWrite and then facilitates communication between the two. All options passed to the create() constructor are filled in with defaults and then directly passed to POE::Wheel::ReadWrites constructor; see its documentation for a description of available options.
You may use any options you wish. Decoder status messages will be sent through the filter and then delivered to the appropriate filehandle. Commands received through the appropriate filehandle will be sent through the filter and used to affect POE::Wheel::Audio::Mad operations.
Download (0.022MB)
Added: 2006-11-16 License: Perl Artistic License Price:
1072 downloads
gtkcdlabel 1.0
gtkcdlabel is a GUI frontend to cdlabelgen which is a program that can generate a variety of CD tray covers. more>>
gtkcdlabel is a GUI frontend to cdlabelgen which is a program that can generate a variety of CD tray covers. The code is came from the idea of gcombust and gcdlabelgen.
Since the last release (0.7.7) Ive pretty much revamped the UI so that logically close UI elements are grouped together - I think its neater and makes navigation easier and faster - but Im no HIG expert.
The latest version (1.0pre1) supports all options of the latest version of cdlabelgen and also has several UI enhancements. You can now also use image formats other than EPS. If you have the program convert from the ImageMagick suite then any format it can handle can be used by gtkcdlabel. All thats left is bugfixes
Sebastian also set up the gtkcdlabel CVS repository so you can now acces it via anonymous CVS.
The versions from 0.7.0 upwards use GTK2 and as a result of the port Im no longer supporting the GTK1 version (i.e. versions before 0.7.0) though the last stable tarballs and RPMs can still be obtained here
Main features:
- Ported to GTK2
- Supports all of the options in cdlabelgen 2.6
- You can supply images of any format that ImageMagic can handle and EPS conversion is carried out on the fly
- Handles UTF8 and locales though no translations currently exist
- Doesnt require libcdaudio to access the CD drive or access freedb.freedb.org
- Itll process the ID3 tags on an MP3 CD
<<lessSince the last release (0.7.7) Ive pretty much revamped the UI so that logically close UI elements are grouped together - I think its neater and makes navigation easier and faster - but Im no HIG expert.
The latest version (1.0pre1) supports all options of the latest version of cdlabelgen and also has several UI enhancements. You can now also use image formats other than EPS. If you have the program convert from the ImageMagick suite then any format it can handle can be used by gtkcdlabel. All thats left is bugfixes
Sebastian also set up the gtkcdlabel CVS repository so you can now acces it via anonymous CVS.
The versions from 0.7.0 upwards use GTK2 and as a result of the port Im no longer supporting the GTK1 version (i.e. versions before 0.7.0) though the last stable tarballs and RPMs can still be obtained here
Main features:
- Ported to GTK2
- Supports all of the options in cdlabelgen 2.6
- You can supply images of any format that ImageMagic can handle and EPS conversion is carried out on the fly
- Handles UTF8 and locales though no translations currently exist
- Doesnt require libcdaudio to access the CD drive or access freedb.freedb.org
- Itll process the ID3 tags on an MP3 CD
Download (0.047MB)
Added: 2006-07-22 License: BSD License Price:
1190 downloads
MadMail 0.2
MadMail is a simple Webmail client which can handle POP3, SMTP, and IMAP servers. more>>
MadMail is a simple Webmail client which can handle POP3, SMTP, and IMAP servers. I
Main features:
- multi-language support
- no Database required
<<lessMain features:
- multi-language support
- no Database required
Download (0.055MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1229 downloads
Thousand Parsec 0.4.1
Thousand Parsec is a 4 Xs game (eXplore, eXpand, eXterminate, eXploit). more>>
Thousand Parsec is a 4 Xs game (eXplore, eXpand, eXterminate, eXploit) but it is different in the sense that it is designed for long games supporting universes as large as your computer can handle. (Have a quad Xeon with 4 gig of ram? Well have a couple of million systems in your universe!.
Thousand Parsec also supports long term play with players joining and leaving throughout the game. As well the tech tree is easily expandable and can be extended during the game without effecting anybody already playing (ie introduction of new technology as the game progresses).
You can choose to have highly exotic universes where the laws of physics are totally different or universes that are very similar to our own.
The game is TURN BASED, this means that clicking quickly isnt vital but strategy is.
The game should also be highly extend-able. Allowing player customisation not found in the commercial games.
Anyway we have high hopes for what TP will become. We have currently stolen a lot of ideas from Stars!, VGA Planets an XPace.
<<lessThousand Parsec also supports long term play with players joining and leaving throughout the game. As well the tech tree is easily expandable and can be extended during the game without effecting anybody already playing (ie introduction of new technology as the game progresses).
You can choose to have highly exotic universes where the laws of physics are totally different or universes that are very similar to our own.
The game is TURN BASED, this means that clicking quickly isnt vital but strategy is.
The game should also be highly extend-able. Allowing player customisation not found in the commercial games.
Anyway we have high hopes for what TP will become. We have currently stolen a lot of ideas from Stars!, VGA Planets an XPace.
Download (0.21MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
959 downloads
Other version of Thousand Parsec
License:GPL (GNU General Public License)
Actim 0.1 Alpha
Actim is a program which provides the ability to transfer files and execute commands via e-mail. more>>
Actim is a program which provides the ability to transfer files and execute commands via e-mail.
Actim allows you to send and retrieve files, and to call command line programs on a target machine via emails. The application can handle both synchronous and asynchronous requests with basic security features.
It has both command line and graphical user interfaces. This can be useful if, for example, your home PC does not have any access to your office workstation which is behind the company firewall.
<<lessActim allows you to send and retrieve files, and to call command line programs on a target machine via emails. The application can handle both synchronous and asynchronous requests with basic security features.
It has both command line and graphical user interfaces. This can be useful if, for example, your home PC does not have any access to your office workstation which is behind the company firewall.
Download (0.67MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
963 downloads
Marlin 0.9
Marlin is a sound sample editor. more>>
Marlin is a sample editor for Gnome 2. It uses GStreamer for file operations and for recording and playback, meaning it can handle a great number of formats and work with most sound systems.
Main features:
- Can load from a large number of media formats (.mp3, .ogg, .wav, .au, .flac, .mpg, .avi...)
- Can save to many formats (.mp3, .wav, .au, .ogg, .flac...) and use the Gnome-Media profiles
- Can handle large files with no problems
- Handles cut, copy, paste, replace and mix operations
- Infinite levels of Undo/Redo and everything should be undoable
- Fully Gnome 2 HIG compliant
- Can record from a variety of sources (ALSA, OSS, esd, arts)
- Playback
- Can extract audio from CDs (with optional musicbrainz lookup)
- Gnome-VFS support
- Horizontal and Vertical scaling
- Uses GStreamer
<<lessMain features:
- Can load from a large number of media formats (.mp3, .ogg, .wav, .au, .flac, .mpg, .avi...)
- Can save to many formats (.mp3, .wav, .au, .ogg, .flac...) and use the Gnome-Media profiles
- Can handle large files with no problems
- Handles cut, copy, paste, replace and mix operations
- Infinite levels of Undo/Redo and everything should be undoable
- Fully Gnome 2 HIG compliant
- Can record from a variety of sources (ALSA, OSS, esd, arts)
- Playback
- Can extract audio from CDs (with optional musicbrainz lookup)
- Gnome-VFS support
- Horizontal and Vertical scaling
- Uses GStreamer
Download (1.1MB)
Added: 2005-07-19 License: GPL (GNU General Public License) Price:
1699 downloads
YANOCC 1.1
YANOCC is a simple and fast webmail client which can handle POP3, SMTP, and IMAP servers. more>>
Yanocc is a Web-based e-mail reader. It uses PHP and a Web server to access
a mail server (POP3, IMAP) and send e-mail (SMTP or plain sendmail).
Yanocc is based on the source code of Nocc and is very similar with this.
Yanocc can be used as an e-mail reader and allows you to view, send messages,
manage your mail account. It can view and send MIME attachments (files, HTML,
etc.).
Yanocc has low requirements on browser, it uses JavaScript as less as
possible, nearly no frames and even works with Lynx without cookies; low
requirements on Web servers too: you dont need any superuser privileges to
install Yanocc and it can work with suEXEC (see Apache documentation) for
increased security.
<<lessa mail server (POP3, IMAP) and send e-mail (SMTP or plain sendmail).
Yanocc is based on the source code of Nocc and is very similar with this.
Yanocc can be used as an e-mail reader and allows you to view, send messages,
manage your mail account. It can view and send MIME attachments (files, HTML,
etc.).
Yanocc has low requirements on browser, it uses JavaScript as less as
possible, nearly no frames and even works with Lynx without cookies; low
requirements on Web servers too: you dont need any superuser privileges to
install Yanocc and it can work with suEXEC (see Apache documentation) for
increased security.
Download (0.183MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1232 downloads
GNU libsigsegv 2.3
GNU libsigsegv is a library for handling page faults. more>>
GNU libsigsegv library can handle page faults. A page fault occurs when a program tries to access a region of memory that is currently not available.
Catching and handling a page fault is a useful technique for implementing garbage collectors, stack overflow handlers, persistent databases, and distributed shared memory.
<<lessCatching and handling a page fault is a useful technique for implementing garbage collectors, stack overflow handlers, persistent databases, and distributed shared memory.
Download (0.36MB)
Added: 2006-05-03 License: GPL (GNU General Public License) Price:
1269 downloads
DB_cart Class 1.13
DB_cart Class is a MySQL shopping cart script that can be used with third party product catalogues and membership systems. more>>
DB_cart Class is a MySQL shopping cart script that can be used with third party product catalogues and membership systems. The MySQL database structure is neutral to existing systems.
DB_cart Class can handle the shopping cart (add, update, and empty) and checkout process (set the shipment address and email the order).
For existing cart users, the shopping cart is still available upon the users next visit and is visible by checkout. The last option is configurable togther with a time period.
Enhancements:
- There are modifications and improvements inside the main class file, several examples, and the table structure has been extended.
- There two additional fields for the shipment values (name2 and address2).
- All messages are available in German, English, and Dutch.
- The standard text inside the email messages is in external files now; this content is parsed inside the improved email method.
<<lessDB_cart Class can handle the shopping cart (add, update, and empty) and checkout process (set the shipment address and email the order).
For existing cart users, the shopping cart is still available upon the users next visit and is visible by checkout. The last option is configurable togther with a time period.
Enhancements:
- There are modifications and improvements inside the main class file, several examples, and the table structure has been extended.
- There two additional fields for the shipment values (name2 and address2).
- All messages are available in German, English, and Dutch.
- The standard text inside the email messages is in external files now; this content is parsed inside the improved email method.
Download (0.035MB)
Added: 2006-06-16 License: BSD License Price:
1227 downloads
X Portal 2.0
X Portal is a powerful CMS (content management system) which can handle multiple language files. more>>
X Portal project is a powerful CMS (content management system) which can handle multiple language files.
English and Hungarian languages are included in the basic package. The engine was taken from phpnuke-textportal.
Enhancements:
- autoHALT automatically logs out when the browser is closed.
- Security was enhanced with lots of new security tools.
<<lessEnglish and Hungarian languages are included in the basic package. The engine was taken from phpnuke-textportal.
Enhancements:
- autoHALT automatically logs out when the browser is closed.
- Security was enhanced with lots of new security tools.
Download (0.60MB)
Added: 2006-04-28 License: Free To Use But Restricted Price:
1277 downloads
phpSocketDaemon 1.0
phpSocketDaemon is a PHP socket daemon framework that can handle thousands of client and server connections. more>>
phpSocketDaemon is a PHP socket daemon framework that can handle thousands of client and server connections, asynchronously, with built-in buffering, state handling, etc.
The implementation of a new TCP client or server service (or a mix thereof) with this library is very easy, and allows maximum flexibility.
Motivation for writing this library:
This project came into existence while i was writing a new, ground breaking IRC chat web application.
To deal with 1000s of concurrent, always on (comet aka hanging iframe) http (server) connections, and an equal amount of IRC client connections, plus being able to interpret and parse and delegate all the messages and events, i needed a very fast, stable, flexible and easy to use daemon library for PHP.
However no such thing existed yet, hence this library was created.
The tarbal includes a demo HTTP server implimentation, which will give you a good impression of what its capable off, and how to use this library.
<<lessThe implementation of a new TCP client or server service (or a mix thereof) with this library is very easy, and allows maximum flexibility.
Motivation for writing this library:
This project came into existence while i was writing a new, ground breaking IRC chat web application.
To deal with 1000s of concurrent, always on (comet aka hanging iframe) http (server) connections, and an equal amount of IRC client connections, plus being able to interpret and parse and delegate all the messages and events, i needed a very fast, stable, flexible and easy to use daemon library for PHP.
However no such thing existed yet, hence this library was created.
The tarbal includes a demo HTTP server implimentation, which will give you a good impression of what its capable off, and how to use this library.
Download (0.015MB)
Added: 2006-12-21 License: LGPL (GNU Lesser General Public License) Price:
1040 downloads
LibAran 0.2.2
LibAran is a 2D/3D Fast Multipole Method software library. more>>
LibAran is a 2D/3D Fast Multipole Method software library.
Main features:
- 2D FMM algorithms through Laurent Series.
- 3D FMM algorithms through complex spherical harmonics series. These series can handle Newton/Coulomb potentials. Sparse translationoperators (O(p^3) complexity) are included.
- Dynamic QTree/OcTree LibVsg (VsgPRTree2d and VsgPRTree3d) particles filtering.
<<lessMain features:
- 2D FMM algorithms through Laurent Series.
- 3D FMM algorithms through complex spherical harmonics series. These series can handle Newton/Coulomb potentials. Sparse translationoperators (O(p^3) complexity) are included.
- Dynamic QTree/OcTree LibVsg (VsgPRTree2d and VsgPRTree3d) particles filtering.
Download (0.45MB)
Added: 2007-01-26 License: LGPL (GNU Lesser General Public License) Price:
1002 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above can handle search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed