Main > Free Download Search >

Free net data software for linux

net data

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5793
Firebird .NET Data Provider 2.1.0

Firebird .NET Data Provider 2.1.0


Firebird .NET Data Provider is an ADO.NET data provider for Firebird. more>>
Firebird .NET Data Provider is an ADO.NET data provider for Firebird. Firebird .NET Data Provider is written in C# and provides a high-performance native implementation of the Firebird API. It also includes an implementation of the Firebird Services API and Firebird array datatype support.

Firebird is a relational database offering many ANSI SQL standard features that runs on Linux, Windows, and a variety of Unix platforms. Firebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers. It has been used in production systems, under a variety of names since 1981.

Firebird is a commercially independent project of C and C++ programmers, technical advisors and supporters developing and enhancing a multi-platform relational database management system based on the source code released by Inprise Corp (now known as Borland Software Corp) on 25 July, 2000 under the InterBase Public License v.1.0
<<less
Download (0.56MB)
Added: 2007-03-24 License: MPL (Mozilla Public License) Price:
968 downloads
B-net 1.1

B-net 1.1


B-net Software is a Website Content Management software that allows you have a dynamic website. more>>
B-net project is a Website Content Management software that allows you have a dynamic website and add content to your website without knowing anything about HTML.
Main features:
- News Publishing
- Polls / Opinions
- Guest Book
- ShoutBox
- Image Gallery
- Admin interface for managing smilies (used in shoutbox, guestbook etc)
- Admin interface for managing Bad Word List
- Templating system.
- Multi Language support. Kiswahili being one of them of course.
Enhancements:
- Security holes in guesbook.php and shoutbox.php have been fixed.
<<less
Download (0.14MB)
Added: 2006-08-25 License: GPL (GNU General Public License) Price:
1158 downloads
NET=MGM 1.2

NET=MGM 1.2


Net=MGM (Netmanager) is a tool to store information about subnets and virtual LANs in a data center environment. more>>
Net=MGM (Netmanager) is a tool to store information about subnets and virtual LANs in a data center environment.
NET=MGM is useful for network administrators who manage a large network and want to track information on every LAN or VLAN in the network. You can view information grouped by ownership, manager, or VLAN.
Enhancements:
- With this version i change the number release, the latest 1.7 version now is a 1.1.x.x version, in CHANGELOG you can see where it is.
- Two file fore changelog information:
CHANGELOG is writed by my hand with simple information
CHANGELOG-AUTO is generated from cvs server with detailed change
- In this release we start from the last ex-1.7 version, now 1.1.x.x, and insert new feature like a sistem to generate the network details.
- Some code was added to improve the security of the tool, but now is not complete.
- A first version of manual was addes, very simple manual, for the next release i try to improve this.
- This release have the same database structure and dont break compatibility with old version.
For any bug/problem or idea please use sourceforce site to notify me.
Thank You to use Net=MGM
<<less
Download (0.045MB)
Added: 2005-11-30 License: GPL (GNU General Public License) Price:
1426 downloads
Net::Amazon 0.39

Net::Amazon 0.39


Net::Amazon is a framework for accessing amazon.com via REST. more>>
Net::Amazon is a framework for accessing amazon.com via REST.

SYNOPSIS

use Net::Amazon;

my $ua = Net::Amazon->new(token => YOUR_AMZN_TOKEN);

# Get a request object
my $response = $ua->search(asin => 0201360683);

if($response->is_success()) {
print $response->as_string(), "n";
} else {
print "Error: ", $response->message(), "n";
}

ABSTRACT

Net::Amazon provides an object-oriented interface to amazon.coms
REST interface. This way its possible to create applications
using Amazons vast amount of data via a functional interface, without
having to worry about the underlying communication mechanism.

Net::Amazon works very much like LWP: First you define a useragent like

my $ua = Net::Amazon->new(
token => YOUR_AMZN_TOKEN,
max_pages => 3,
);

which you pass your personal amazon developers token (can be obtained from http://amazon.com/soap) and (optionally) the maximum number of result pages the agent is going to request from Amazon in case all results dont fit on a single page (typically holding 20 items). Note that each new page requires a minimum delay of 1 second to comply with Amazons one-query-per-second policy.

According to the different search methods on Amazon, theres a bunch of different request types in Net::Amazon. The user agents convenience method search() triggers different request objects, depending on which parameters you pass to it:

$ua->search(asin => "0201360683")
The asin parameter has Net::Amazon search for an item with the specified ASIN. If the specified value is an arrayref instead of a single scalar, like in
$ua->search(asin => ["0201360683", "0596005083"])
then a search for multiple ASINs is performed, returning a list of results.
$ua->search(actor => "Adam Sandler")
The actor parameter has the user agent search for items created by the specified actor. Can return many results.
$ua->search(artist => "Rolling Stones")
The artist parameter has the user agent search for items created by the specified artist. Can return many results.
$ua->search(author => "Robert Jordan")
The author parameter has the user agent search for items created by the specified author. Can return many results.
$ua->search(browsenode=>"4025", mode=>"books" [, keywords=>"perl"])
Returns a list of items by category ID (node). For example node "4025" is the CGI books category. You can add a keywords parameter to filter the results by that keyword.
$ua->search(exchange => Y04Y3424291Y2398445)
Returns an item offered by a third-party seller. The item is referenced by the so-called exchange ID.
$ua->search(keyword => "perl xml", mode => "books")
Search by keyword, mandatory parameters keyword and mode. Can return many results.
$ua->search(wishlist => "1XL5DWOUFMFVJ")
Search for all items in a specified wishlist. Can return many results.
$ua->search(upc => "075596278324", mode => "music")
Music search by UPC (product barcode), mandatory parameter upc. mode has to be set to music. Returns at most one result.
$ua->search(isbn => "0439784549")
Book search by ISBN (International Standard Book Number), mandatory parameter isbn. Returns at most one result. When searching non-US locales use the 13-digit ISBN.
$ua->search(similar => "0201360683")
Search for all items similar to the one represented by the ASIN provided. Can return many results.
$ua->search(power => "subject: perl and author: schwartz", mode => "books")
Initiate a power search for all books matching the power query. Can return many results. See Net::Amazon::Request::Power for details.
$ua->search(manufacturer => "Disney")
Initiate a search for all items made by a given manufacturrer. Can return many results. See Net::Amazon::Request::Manufacturer for details.
$ua->search(musiclabel => "Arista")
Initiate a search for all items made by a given music label. Can return many results. See Net::Amazon::Request::MusicLabel for details.
$ua->search(publisher => "oreilly")
Initiate a search for all items made by a given publisher. Can return many results. See Net::Amazon::Request::Publisher for details.
$ua->search(blended => "Perl")
Initiate a search for items in all categories.
$ua->search(seller => "A2GXAGU54VOP7")
Start a search on items sold by a specific third-party seller, referenced by its ID (not seller name).
$ua->search(textstream => "Blah blah Rolling Stones blah blah")
Find items related to keywords within a text stream.
The user agents search method returns a response object, which can be checked for success or failure:
if($resp->is_success()) {
print $resp->as_string();
} else {
print "Error: ", $resp->message(), "n";
}

In case the request for an item search succeeds, the response contains one or more Amazon properties, as it calls the products found. All matches can be retrieved from the Response object using its properties() method.

In case the request fails, the response contains one or more error messages. The response objects message() method will return it (or them) as a single string, while messages() (notice the plural) will return a reference to an array of message strings.

Response objects always have the methods is_success(), is_error(), message(), total_results(), as_string() and properties() available.
total_results() returns the total number of results the search yielded. properties() returns one or more Net::Amazon::Property objects of type Net::Amazon::Property (or one of its subclasses like Net::Amazon::Property::Book, Net::Amazon::Property::Music or Net::Amazon::Property::DVD), each of which features accessors named after the attributes of the product found in Amazons database:

for ($resp->properties) {
print $_->Asin(), " ",
$_->OurPrice(), "n";
}

In scalar context, properties() just returns the first Net::Amazon::Property object found. Commonly available accessors to Net::Amazon::Property objects are OurPrice(), ImageUrlLarge(), ImageUrlMedium(), ImageUrlSmall(), ReleaseDate(), Catalog(), Asin(), url(), Manufacturer(), UsedPrice(), ListPrice(), ProductName(), Availability(), SalesRank(), CollectiblePrice(), CollectibleCount(), NumberOfOfferings(), UsedCount(), ThirdPartyNewPrice(), ThirdPartyNewCount(), similar_asins(). For details, check Net::Amazon::Property.

Also, the specialized classes Net::Amazon::Property::Book and Net::Amazon::Property::Music feature convenience methods like authors() (returning the list of authors of a book) or album() for CDs, returning the album title.

Customer reviews: Every property features a review_set() method which returns a Net::Amazon::Attribute::ReviewSet object, which in turn offers a list of Net::Amazon::Attribute::Review objects. Check the respective man pages for details on whats available.

<<less
Download (0.15MB)
Added: 2007-03-09 License: Perl Artistic License Price:
959 downloads
Net::Chat::Jabber 0.1

Net::Chat::Jabber 0.1


Net::Chat::Jabber is a Jabber protocol adapter for Net::Chat::Daemon. more>>
Net::Chat::Jabber is a Jabber protocol adapter for Net::Chat::Daemon.

API

new()

class - the name of the class were creating
jid - a string giving the JID, or a JID object
%options
password - the password to provide during authentication. TODO: if
this is not provided but a password is needed, some sort of
authCallback is needed.
loglevel - logs with level higher than this are not displayed.
Defaults to 0.
connect()

Connect to the server, attempting to register if the specified user is not yet registered.
reconnect()

Reestablish a broken connection.
subscribe($jid)

Subscribe to messages coming from $jid.
post($to,$message,options...)

Send the message text $message to $to. Available options:
subject: set the subject of the message (rarely used)
thread: mark the message as a reply in the given thread
attachments: an array of attachments, where each attachment
is either a chunk of text, or an XML tree.
send_request(to,message,options...)

Send out a request, but do not wait for the reply.
request(to,message,options...)

Make a synchronous request. Returns the body of the reply message.
start_transaction($transaction_id, $onReply)

Start a transaction. A transaction is identified by the given id, and... blah blah blah this is very important but I dont remember what I did here.
end_transaction($transaction_id)

Normally called automatically. Terminates a transaction and erases the transaction callback.
count_transactions($transaction_id)

Return the number of active karfloomer hangers for the given transaction. The method name is awful; this is counting karfloomer hangers for a given transaction, not the number of transactions. FIXME when I figure this all out.
barrier()

Wait until no more active transactions are outstanding.
poll()

Check whether any messages are available.
wait([$timeout])

Wait $timeout seconds for more messages to come in. If $timeout is not given or undefined, block until a message is received.
Return value: 1 = data received, 0 = ok but no data received, undef = error

<<less
Download (0.013MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1186 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::Akismet 0.02

Net::Akismet 0.02


Net::Akismet is a Perl interface to Akismet - comment and trackback spam fighter. more>>
Net::Akismet is a Perl interface to Akismet - comment and trackback spam fighter.

SYNOPSIS

my $akismet = Net::Akismet->new(
KEY => secret-baba-API-key,
URL => http://example.blog.net/,
) or die(Key verification failure!);

my $verdict = $akismet->check(
USER_IP => 10.10.10.11,
COMMENT_CONTENT => Run, Lola, Run, the spam will catch you!,
COMMENT_AUTHOR => dosser,
COMENT_AUTHOR_EMAIL => dosser@subway.de,
REFERRER => http://lola.home/,
) or die(Is the server here?);

if (true eq $verdict) {

print "I found spam. I am a spam-founder!n";
}

<<less
Download (0.004MB)
Added: 2007-03-23 License: Perl Artistic License Price:
945 downloads
MIDI Data Miner 3

MIDI Data Miner 3


MIDI Data Miner uses a neural network to learn correlations between notes and control changes in a MIDI file. more>>
MIDI Data Miner uses a neural network to learn correlations between notes and control changes in a MIDI file.

After training MDM can augment a live MIDI stream, adding control changes based on notes received.

Briefly: use MDM by connecting a MIDI device, open preferences and set MIDI input and output ports. Open a MIDI file, create a new neural net and train. Now play notes on your MIDI device, MDM will automatically add control changes.

MDM creates a collection of note and controller pairs from the file and uses them to train a net. The notes are used as inputs and the controls as outputs. The window is the number of previous notes considered when determining the output for the current note. Larger windows give less predictable more interesting responses. Enter a number in the window box and press enter to set the window size.

This is an early alpha release, buggy and incomplete. Please send feedback! Note that this alpha version only reads from the first track in a MIDI file, and only uses the first controller. Look at the included MIDI file in the working/midi folder for details.

<<less
Download (0.69MB)
Added: 2006-09-19 License: Free To Use But Restricted Price:
1131 downloads
Net::CyanChat 0.04

Net::CyanChat 0.04


Net::CyanChat is a Perl interface for connecting to Cyan Worlds chat room. more>>
Net::CyanChat is a Perl interface for connecting to Cyan Worlds chat room.

SYNOPSIS

use Net::CyanChat;

my $cyan = new Net::CyanChat (
host => cho.cyan.com, # default
port => 1812, # main port--1813 is for testing
proto => 1, # use protocol 1.0
refresh => 60, # ping rate (default)
);

# Set up handlers.
$cyan->setHandler (foo => &bar);

# Connect
$cyan->start();

Net::CyanChat is a Perl module for object-oriented connections to Cyan Worlds, Inc.s chat room.

<<less
Download (0.020MB)
Added: 2007-03-23 License: Perl Artistic License Price:
947 downloads
netacct-mysql 0.78

netacct-mysql 0.78


Netacct-mysql is modified version of traffic accounting daemon net-acct which stores collected data in MySQL. more>>
Netacct-mysql is modified version of traffic accounting daemon net-acct which stores collected data in MySQL. It supports writing accounting information in a single line in MySQL per day for every IP (mrta style).
Netacct functions by analogy with sniffer, i.e. it keeps track of all the traffic passing through the network interfaces assigned by the configuration file. Data are stored in the memory and periodically saved in the database. The default data save period is 300 seconds (see option "flush" in the config file).
The application is used for accounting of the network traffic passed through your router/gateway. It is based on the libpcap library and functions as a userspace daemon. Options for dividing the network traffic into 4 categories:
- international
- peering
- direct
- local
The traffic accounts are saved in a database, and for the time being MySQL and Oracle are supported. As libpcap is used for gathering the network data the application runs (for the moment) on the following operating systems:
- Linux
- FreeBSD
- OpenBSD
- Solaris
For more detailed information regarding a particular OS, please read the FAQ file.
Enhancements:
- netacct.h:
- process.c:
- naccttab.sample:
- fixed disable fields in config file, now it works does not write some fields in dump file - fixed
<<less
Download (0.044MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
700 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::UPS 0.04

Net::UPS 0.04


Net::UPS is an implementation of UPS Online Tools API in Perl.v more>>
Net::UPS is an implementation of UPS Online Tools API in Perl.

SYNOPSIS

use Net::UPS;
$ups = Net::UPS->new($userid, $password, $accesskey);
$rate = $ups->rate($from_zip, $to_zip, $package);
printf("Shipping this package $from_zip => $to_zip will cost you $.2fn", $rate->total_charges);

Net::UPS implements UPS Online Tools API in Perl. In a nutshell, Net::UPS knows how to retrieve rates and service information for shipping packages using UPS, as well as for validating U.S. addresses.

This manual is optimized to be used as a quick reference. If youre knew to Net::UPS, and this manual doesnt seem to help, youre encouraged to read Net::UPS::Tutorial first.

<<less
Download (0.020MB)
Added: 2006-10-24 License: Perl Artistic License Price:
1097 downloads
Net::FTP 1.19

Net::FTP 1.19


Net::FTP is a FTP Client class. more>>
Net::FTP is a FTP Client class. Net::FTP is a class implementing a simple FTP client in Perl as described in RFC959. It provides wrappers for a subset of the RFC959 commands.

FTP stands for File Transfer Protocol. It is a way of transferring files between networked machines. The protocol defines a client (whose commands are provided by this module) and a server (not implemented in this module). Communication is always initiated by the client, and the server responds with a message and a status code (and sometimes with data).

The FTP protocol allows files to be sent to or fetched from the server. Each transfer involves a local file (on the client) and a remote file (on the server). In this module, the same file name will be used for both local and remote if only one is specified. This means that transferring remote file /path/to/file will try to put that file in /path/to/file locally, unless you specify a local file name.

The protocol also defines several standard translations which the file can undergo during transfer. These are ASCII, EBCDIC, binary, and byte. ASCII is the default type, and indicates that the sender of files will translate the ends of lines to a standard representation which the receiver will then translate back into their local representation.

EBCDIC indicates the file being transferred is in EBCDIC format. Binary (also known as image) format sends the data as a contiguous bit stream. Byte format transfers the data as bytes, the values of which remain the same regardless of differences in byte size between the two machines (in theory - in practice you should only use this if you really know what youre doing).

Installation:

In order to use this package you will need Perl version 5.002 or better. You install libnet, as you would install any perl module library, by running these commands:

perl Makefile.PL
make
make test
make install

If you want to install a private copy of libnet in your home directory, then you should try to produce the initial Makefile with something like this command:

perl Makefile.PL PREFIX=~/perl

The Makefile.PL program will start out by checking your perl installation for a few packages that are recommended to be installed together with libnet. These packages should be available on CPAN (described above).
<<less
Download (0.063MB)
Added: 2006-05-05 License: Perl Artistic License Price:
1269 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::eBay 0.41

Net::eBay 0.41


Net::eBay is a Perl Interface to XML based eBay API. more>>
Net::eBay is a Perl Interface to XML based eBay API.

SYNOPSIS

This module helps user to easily execute queries against eBays XML API. Copyright Igor Chudov.

##################################################
# For support, docs, info, email to author go to #
# #
# http://www.net-ebay.org/ #
##################################################

Also check out Object::eBay perl module for higher level abstraction built on top of Net::eBay. Object::eBay is a work of another individual, not Igor Chudov.

Also check out several ebay-*.pl scripts that ship with this distribution, they should be installed in your scripts directory.

Getting Official Time

use Net::eBay;
my $eBay = new Net::eBay; # look up ebay.ini in $ENV{EBAY_INI_FILE}, "./ebay.ini", "~/.ebay.ini"
my $result = $eBay->submitRequest( "GeteBayOfficialTime", {} );
print "eBay Official Time = $result->{EBayTime}.n";

Automated bidding

eBay does not allow bidding via eBay API.

Listing Item for sale

use Net::eBay;
use Data::Dumper;

# another way of creating Net::eBay object.
my $ebay = new Net::eBay( {
SiteLevel => prod,
DeveloperKey => ...,
ApplicationKey => ...,
CertificateKey => ...,
Token => ...,
} );

my $result = $ebay->submitRequest( "AddItem",
{
DetailLevel => "0",
ErrorLevel => "1",
SiteId = > "0",
Verb => " AddItem",
Category => "14111",
CheckoutDetailsSpecified => "0",
Country => "us",
Currency => "1",
Description => "For sale is like new thingamabob.Shipping is responsibility of the buyer.",
Duration => "7",
Location => "Anytown, USA, 43215",
Gallery => 1,
GalleryURL => http://igor.chudov.com/images/mark_mattson.jpg,
MinimumBid => "0.99",
BuyItNowPrice => 19.99,
PayPalAccepted => "1",
PayPalEmailAddress => "ichudov@example.com",
Quantity => "1",
Region => "60",
Title => "Igors Item with Gallery xaxa",
}
);

print "Result: " . Dumper( $result ) . "n";

Result of submitRequest is a perl hash obtained from the response XML using XML::Simple, something like this:

Result: $VAR1 = {
Item => {
Id => 4503546598,
Fees => {
FeaturedGalleryFee => 0.00,
InternationalInsertionFee => 0.00,
CurrencyId => 1,
GalleryFee => 0.25,
AuctionLengthFee => 0.00,
ProPackBundleFee => 0.00,
BorderFee => 0.00,
FeaturedFee => 0.00,
SchedulingFee => 0.00,
HighLightFee => 0.00,
FixedPriceDurationFee => 0.00,
PhotoDisplayFee => 0.00,
ListingFee => 0.55,
BuyItNowFee => 0.00,
PhotoFee => 0.00,
GiftIconFee => 0.00,
SubtitleFee => 0.00,
InsertionFee => 0.30,
ListingDesignerFee => 0.00,
BoldFee => 0.00,
ReserveFee => 0.00,
CategoryFeaturedFee => 0.00
},
StartTime => 2005-08-30 04:50:47,
EndTime => 2005-09-06 04:50:47
},
EBayTime => 2005-08-30 04:50:47
};

See an alternative example of submitting an item using New Schema, in script ebay-add-item.pl.

If an error in parsing XML occurs, result will be simply the string that is the text representation of the answer.

<<less
Download (0.017MB)
Added: 2007-03-24 License: Perl Artistic License Price:
946 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5