Main > Free Download Search >

Free .net software for linux

.net

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1180
TrashMail.net 2.0.2

TrashMail.net 2.0.2


TrashMail.net will improve your browsers capability greatly. more>>

TrashMail.net 2.0.2 will improve your browser's capability greatly. It is designed as a Firefox addon that creates free disposable email addresses and paste them directly in forms. This helps to protect you from spam mails and could be useful when subscribing to forums or newsletters.

The email addresses can be deleted at any time and this plugin uses the free TrashMail.net DEA service.

Enhancements:

Added the following features in the TrashMail Address Manager:

  • Copy email address to clipboard with right mouse click if holding the mouse cursor on a trashmail email address
  • Copy website address to clipboard with right mouse click if holding the mouse cursor on a website address

Requirements:

  • Mozilla Firefox
<<less
Added: 2009-07-22 License: MPL Price: FREE
9 downloads
 
Other version of TrashMail.net
TrashMail.net 1.0.8TrashMail.net is a Firefox extension that creates free disposable email addresses and pastes them directly in forms. TrashMail.net 1.0.8 - Stephan
License:MPL (Mozilla Public License)
Download (0.015MB)
837 downloads
Added: 2007-07-19
MDemail.net 2.9.0

MDemail.net 2.9.0


Send and receive secure and encrypted email. Collaborate with others with the integrated group Instant Messaging and file sharing features. Use secure message boards and securely share documents. HIPAA and GLBA compliant. more>> <<less
Download (7.30MB)
Added: 2009-04-09 License: Commercial Price: $0
197 downloads
Make-Money-On-Net 1.0

Make-Money-On-Net 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-04 License: Freeware Price: Free
204 downloads
Verilog::Netlist::Net 3.0.11

Verilog::Netlist::Net 3.0.11


Verilog::Netlist::Net is a Net for a Verilog Module. more>>
Verilog::Netlist::Net is a Net for a Verilog Module.

SYNOPSIS

use Verilog::Netlist;

...
my $net = $module->find_net (signalname);
print $net->name;

Verilog::Netlist creates a net for every sc_signal declaration in the current module.

<<less
Download (0.12MB)
Added: 2007-08-14 License: Perl Artistic License Price:
806 downloads
Net::SMPP 1.11

Net::SMPP 1.11


Net::SMPP is an implementation of Short Message Peer to Peer protocol over TCP. more>>
Net::SMPP is an implementation of Short Message Peer to Peer protocol over TCP. This protocol is frequently used in the telecoms and mobile operator world to pass short messages between systems that implement the short message service (SMS). Net::SMPP module is applicable to both european GSM and american CDMA based systems. The SMPP protocol is documented at www.smpp.org

This module aims at fully implementing version 3.4 of the protocol. This module also implements 4.0 and aims to support it fully as well. The 4.0 code is based on documentation freely obtained from Logica (i.e. not under NDA). (It seems 4.0 is only in use in Japan - the rest of the world seems to use 3.4.)

Symlabs (www.symlabs.com) uses this module in real life product development. Despite our commercial objectives, we have decided to make this module available to public in the belief that

- someone else will benefit from it and thus will help us debug and improve it
- we promote better sharing of information about specifications and commonly encountered usage patterns (which may not always be 100% in spec)
- open distribution protects our clients interests

We are committed to keep this module under license substantially similar to the one under which the present release is offered and hope this will encourage contribution from the community. If you need other licensing arrangements, we as copyright holders are willing to accommodate you.

<<less
Download (0.045MB)
Added: 2007-07-20 License: Perl Artistic License Price:
842 downloads
Net::Flickr::Backup 2.97

Net::Flickr::Backup 2.97


Net::Flickr::Backup module contains OOP for backing up your Flickr photos locally. more>>
Net::Flickr::Backup module contains OOP for backing up your Flickr photos locally.

SYNOPSIS

use Net::Flickr::Backup;
use Log::Dispatch::Screen;

my $flickr = Net::Flickr::Backup->new($cfg);

my $feedback = Log::Dispatch::Screen->new(name => info,
min_level => info);

$flickr->log()->add($feedback);
$flickr->backup();

<<less
Download (0.023MB)
Added: 2007-07-19 License: Perl Artistic License Price:
833 downloads
Net::Oscar 1.0

Net::Oscar 1.0


Net::Oscar project is a pure Perl implementation of the OSCAR protocol used by ICQ and AIM instant message clients. more>>
Net::Oscar project is a pure Perl implementation of the OSCAR protocol used by ICQ and AIM instant message clients.

<<less
Download (MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
859 downloads
Net::FCP 1.0

Net::FCP 1.0


Net::FCP Perl module is a Freenet client protocol. more>>
Net::FCP Perl module is a Freenet client protocol.

SYNOPSIS

use Net::FCP;

my $fcp = new Net::FCP;

my $ni = $fcp->txn_node_info->result;
my $ni = $fcp->node_info;

See http://freenet.sourceforge.net/index.php?page=fcp for a description of what the messages do. I am too lazy to document all this here.

The module uses AnyEvent to find a suitable Event module.

<<less
Download (0.028MB)
Added: 2007-06-23 License: Perl Artistic License Price:
854 downloads
Net::MarkLogic::XDBC 0.11

Net::MarkLogic::XDBC 0.11


Net::MarkLogic::XDBC is a Perl module with XDBC connectivity for MarkLogic CIS servers. more>>
Net::MarkLogic::XDBC is a Perl module with XDBC connectivity for MarkLogic CIS servers.

SYNOPSIS

use Net::MarkLogic::XDBC

$xdbc = Net::MarkLogic::XDBC->new( "user:pass@localhost:9000" );

$xdbc = Net::MarkLogic::XDBC->new(host => $host,
port => $port,
username => $user,
password => $pass, );

$result = $agent->query($xquery);

print $result->content;

@items = $result->items;
print $item->content;

METHODS

new()

$xdbc = Net::MarkLogic::XDBC->new( "user:pass@localhost:9000" );

$xdbc = Net::MarkLogic::XDBC->new( host => $hostname,
port => $port,
username => $user,
password => $pass, );

Connect using a connection string or named host, port, username, and password parameters.

query()

$result = $xdbc->query($xquery);

Execute XQUERY code on XDBC server.

query_from_template()
$result = $xdbc->query_from_template($template, $args);

Generate XQUERY code from a template toolkit template and arguments, then execute on XDBC server.

This might be overkill, but its definitely a feature youre not going to find in the Java API.

<<less
Download (0.009MB)
Added: 2007-06-23 License: Perl Artistic License Price:
853 downloads
Net::Hotline::Client 0.83

Net::Hotline::Client 0.83


Net::Hotline::Client is a Perl library for the Hotline internet client. more>>
Net::Hotline::Client is a Perl library for the Hotline internet client.

SYNOPSIS

use Net::Hotline::Client;

$hlc = new Net::Hotline::Client;
$hlc->connect("127.0.0.1")

$hlc->chat_handler(&Chat_Handler);
$hlc->msg_handler(&Msg_Handler);

$hlc->login(Login => "Steve",
Password => "xyzzy",
Nickname => "Jobs",
Icon => 128);

$hlc->run();
...

Net::Hotline::Client is a class implementing a Hotline internet client in Perl. It was specifically developed to aid in the creation of Hotline "bots," although its suitable for most other tasks as well. Hotline is an internet client/server system thats sort of a cross between IRC and a BBS. See http://www.hotlinesw.com/ for more information.

This document assumes you have some knowledge of the Hotline client. If not, I suggest downloading it from the URL above. (Its shareware. Mac and PC versions are available)

<<less
Download (0.057MB)
Added: 2007-06-23 License: Perl Artistic License Price:
859 downloads
Net::OpenSRS 0.02

Net::OpenSRS 0.02


Net::OpenSRS project is a wrapper interface to the DNS portions of the Tucows OpenSRS HTTPS XML API. more>>
Net::OpenSRS project is a wrapper interface to the DNS portions of the Tucows OpenSRS HTTPS XML API.

The client library distributed by OpenSRS can be difficult to integrate into a custom environment, and their web interface becomes quickly tedious with heavy usage. This is a clean and relatively quick library to perform the most common API methods described in the OpenSRS API documentation.

Examples

use Net::OpenSRS;

my $key = Your_API_Key_From_The_Reseller_Interface;
my $srs = Net::OpenSRS->new();

$srs->environment(live);
$srs->set_key( $key );

$srs->set_manage_auth( manage_username, manage_password );

my $cookie = $srs->get_cookie( spime.net );
if ($cookie) {
print "Cookie: $cookien";
} else {
print $srs->last_response() . "n";
}

# do a batch of domain locks
$srs->bulk_lock([ example.com, example.net, ... ]);

# renew a domain
my $result = $srs->renew_domain( example.com );
...

<<less
Download (0.012MB)
Added: 2007-05-12 License: Perl Artistic License Price:
903 downloads
Net::Amazon::EC2 0.04

Net::Amazon::EC2 0.04


Net::Amazon::EC2 is a Perl interface to the Amazon Elastic Compute Cloud (EC2) environment. more>>
Net::Amazon::EC2 is a Perl interface to the Amazon Elastic Compute Cloud (EC2) environment.

SYNOPSIS

use Net::Amazon::EC2;

my $ec2 = Net::Amazon::EC2->new(
AWSAccessKeyId => PUBLIC_KEY_HERE,
SecretAccessKey => SECRET_KEY_HERE
);

# Start 1 new instance from AMI: ami-XXXXXXXX
my $instance = $ec2->run_instances(ImageId => ami-XXXXXXXX, MinCount => 1, MaxCount => 1);

my $running_instances = $ec2->describe_instances();

foreach my $inst (@{$running_instances}) {
print "$inst->{instance}[0]{instanceId}n";
}

# Terminate instance

my $result = $ec2->terminate_instances(InstanceId => $instance->{instance}[0]{instanceId});

If an error occurs in communicating with EC2, the return value will be undef and $ec2->{error} will be populated with the message.

<<less
Download (0.022MB)
Added: 2007-05-12 License: Perl Artistic License Price:
897 downloads
SDL.NET 6.0.0

SDL.NET 6.0.0


SDL.NET is a set of object-oriented CLS-compliant .NET bindings for the SDL gaming library. more>>
SDL.NET is a set of object-oriented CLS-compliant .NET bindings for the SDL gaming library. And provides high-level access to audio, keyboard, mouse, joystick, TrueType fonts, various image formats, sound mixing, MPEG-1 movies and 3D hardware via OpenGL, 2D video framebuffer.

Given the open nature of Wiki, the SDL.NET team does not take any responsibility for the content or accuracy of content provided on these pages. All content is the responsibility and property of its author.
<<less
Download (15MB)
Added: 2007-05-07 License: LGPL (GNU Lesser General Public License) Price:
538 downloads
Net::DRI 0.80

Net::DRI 0.80


Net::DRI is a collection of object oriented Perl modules that provides an abstract and uniform interface for DNS providers. more>>
Net::DRI is a collection of object oriented Perl modules that provides an abstract and uniform interface to connect to domain name providers, either registries, registrars or an entity at another level.
Thus Net::DRI can be used by a registrar to establish connections with various registries, or by a reseller that needs to connect with its registrar, or by an end client that needs to connect with its provider, be it a registrar or not, without being forced to use the specific interface available from the provider!
Net::DRI can then allow access to functions that were not even available in the native provider interface, such as batch processing. Furthermore, by hiding differences between providers interfaces, an application using Net::DRI for its connections will almost not have to be changed if there is a need to change providers, or if one provider changes the way it operates (new interface, other protocols, and so on...). With this solution, it is easy to adapt to political or technical changes of its registration providers.
Net::DRI implements many transports and protocols: this allows to take into account specifics of various providers. It is an open framework, and it is easy to add new providers, protocols and transports; it also allows to easily handle cases close to a standard but with few differences. Net::DRI handles synchronous providers (ex: through a web site, the answer comes immediately) as well as asynchronous ones (ex: by email, the answer can come many hours after the request).
Net::DRI implements RRP and EPP, which are two IETF standards. It is the only independant and free implementation of these two standards. Everywhere it is possible, Net::DRI standardizes on EPP (for example for return status codes) by translating other cases to EPP.
Net::DRI can handle many providers simultaneously, even if they offer services in the same domain names, through as many simultaneous connections as needed with various protocols and/or transports for the same provider.
Enhancements:
- This release adds full support for .LU as well as updated support for .AT and .BIZ.
- It also adds two new protocols that can be used by anyone, not only registrars: DAS is used by .BE and .EU to query only the availability of a domain name, and Whois (RFC3912) with parsing is provided for .COM, .NET, .ORG, .BIZ, .INFO, .AERO, and .EU.
<<less
Download (MB)
Added: 2007-04-20 License: GPL (GNU General Public License) Price:
918 downloads
Net::UploadMirror 0.06

Net::UploadMirror 0.06


Net::UploadMirror is a Perl extension for mirroring a local directory via FTP to the remote location. more>>
Net::UploadMirror is a Perl extension for mirroring a local directory via FTP to the remote location.

SYNOPSIS

use Net::UploadMirror;
my $um = Net::UploadMirror->new(
ftpserver => "my_ftp.hostname.com",
usr => "my_ftp_usr_name",
pass => "my_ftp_password",
);
$um->Update();

or more detailed
my $um = Net::UploadMirror->new(
ftpserver => "my_ftp.hostname.com",
usr => "my_ftp_usr_name",
pass => "my_ftp_password",
localdir => "home/nameA/homepageA",
remotedir => "public",
debug => 1 # 1 for yes, 0 for no
timeout => 60 # default 30
delete => "enable" # default "disabled"
connection => $ftp_object, # default undef
exclusions => ["private.txt", "Thumbs.db", ".sys", ".log"],
);
$um->SetLocalDir("home/nameB/homepageB");
print("hostname : ", $um->get_ftpserver(), "n");
$um->Update();

This module is for mirroring a local directory to a remote location via FTP. For example websites, documentations or developmentstuff which ones were worked on locally. It is not developt for mirroring large archivs. But there are not in principle any limits.

<<less
Download (0.006MB)
Added: 2007-04-10 License: Perl Artistic License Price:
932 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5