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

Exports freeware
Filter: All | Freeware | Demo
 

Exports

< 1 2 3 4 5 
Added: November 21, 2010 | Visits: 1.582

Panoptis Panoptis plans to create a network security tool (N-IDS) to detect and block DoS and DDoS attacks. The programming language is C++, and the input is being provided by routers. First, you need a router that exports NetFlow(TM) data. Versions 1, 5 and 8 are supported, although version 8 has not...



Platforms: *nix

License: Freeware Size: 604.16 KB Download (108): Panoptis Download

Added: November 04, 2010 | Visits: 1.096

File::stat File::stat is a by-name interface to Perls built-in stat() functions. SYNOPSIS use File::stat; $st = stat($file) or die "No $file: $!"; if ( ($st->mode & 0111) && $st->nlink > 1) ) { print "$file is executable with lotsa linksn"; } use File::stat qw(:FIELDS); stat($file) or die "No...





Platforms: *nix

License: Freeware Size: 14.2 MB Download (108): File::stat Download

Added: January 25, 2010 | Visits: 778

GNUDoQ An open source, graphical Su Doku generator and solver with printer support.Features Powerful Su Doku generator Su Doku solver Printouts or PDF exports for classic pen&s;paper play Free and open source GNUDoQ is free software, and is licensed under the GNU General Public License (GPL)


Platforms: Mac

License: Freeware Download (107): GNUDoQ Download

Added: November 03, 2010 | Visits: 962

Freecycle 0.6 Freecycle is a beat slicer running on GNU/Linux platform, providing amplitude domain and frequency domain beat matching / zero crossing algorithms. Freecycle exports sliced audio chunks and generates a MIDI file which can be used to play the sliced loop. Freecycle also exports AKAI...


Platforms: *nix

License: Freeware Size: 3.2 MB Download (106): Freecycle 0.6 Download

Added: November 14, 2010 | Visits: 919

bbnfc bbnfc is useful for debugging netflow exports as produced by Cisco, Juniper, etc. routers. This simple program sits on a user-specified UDP port and displays to stdout all netflow exports that are sent to the machine. Complete program is 300 lines long (C source). The source should compile...


Platforms: *nix

License: Freeware Size: 44.03 KB Download (105): bbnfc Download

Added: February 23, 2010 | Visits: 1.166

Berkeley DB Java Edition Berkeley DB Java Edition is a high performance, transactional storage engine written entirely in Java. Like the highly successful Berkeley DB product, Berkeley DB Java Edition executes in the address space of the application, without the overhead of client/server communication. Berkeley DB Java...


Platforms: *nix

License: Freeware Size: 4.5 MB Download (105): Berkeley DB Java Edition Download

Added: February 18, 2010 | Visits: 1.387

Performance Application Programming Interface PAPI aims to provide the tool designer and application engineer with a consistent interface and methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables software engineers to see, in near real time, the relation between software performance and...


Platforms: *nix

License: Freeware Size: 2.9 MB Download (105): Performance Application Programming Interface Download

Added: January 25, 2010 | Visits: 534

EntourageNotes X EntourageNotes takes all of your Entourage Notes and exports them into vCard files for copying to your iPod. They are placed in a folder called "iPodNotes" on your desktop. Notes that exceed the maximum amount of text that can be placed in one vCard are split into multiple vCards and show up as...


Platforms: Mac

License: Freeware Size: 24 KB Download (105): EntourageNotes X Download

Added: May 19, 2010 | Visits: 1.154

Convert::GeekCode Convert::GeekCode is a Perl module that can convert and generate geek code sequences. SYNOPSIS use Convert::GeekCode; # exports geek_decode() my @out = geek_decode(q( -----BEGIN GEEK CODE BLOCK----- Version: 3.12 GB/C/CM/CS/CC/ED/H/IT/L/M/MU/P/SS/TW/AT d---x s+: a-- C++++ UB++++$ P++++$...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (104): Convert::GeekCode Download

Added: September 23, 2010 | Visits: 983

Acme::Wabby Acme::Wabby is a Perl extension used to create semi-random sentences based upon a body of text. This module is used to create semi-random sentences based on a body of text. It uses a markov-like method of storing probabilities of word transitions. It is good for annoying people on IRC, AIM, or...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (104): Acme::Wabby Download

Added: October 16, 2010 | Visits: 874

Template::Plugin::Java::Constants Template::Plugin::Java::Constants is a Perl module with constants for the Java Template plugin modules. SYNOPSIS use Template::Plugin::Java::Constants qw/:regex/; use Template::Plugin::Java::Constants qw/:boolean/; use Template::Plugin::Java::Constants qw/:all/; regex The "regex" tag...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (104): Template::Plugin::Java::Constants Download

Added: November 11, 2010 | Visits: 1.056

Aethera Aethera is a pim application, i.e. it handles all kinds of personal information: email, contacts, notes, tasks, todos, journals. It has various communication features regarding: send/receive email, send/receive task requests and appointment requests via email. It can help you to know quickly the...


Platforms: *nix

License: Freeware Size: 7.4 MB Download (104): Aethera Download

Added: October 03, 2010 | Visits: 815

IO::Prompt IO::Prompt is a Perl module to interactively prompt for user input. SYNOPSIS use IO::Prompt; while( prompt "next: " ) { print "You said $_n"; } By default, this module exports a single function prompt. It prompts the user to enter some input, and returns an object that represents the...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (103): IO::Prompt Download

Added: July 27, 2010 | Visits: 963

Number::Latin Number::Latin is a Perl module that can convert to/from the number system "a,b,...z,aa,ab..." SYNOPSIS use Number::Latin; print join( , map int2latin($_), 1 .. 30), "n"; # # Prints: # a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ac ad Some applications, notably the...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (103): Number::Latin Download

Added: June 14, 2010 | Visits: 1.241

File::Listing File::Listing is a Perl module to parse directory listing. SYNOPSIS use File::Listing qw(parse_dir); for (parse_dir(`ls -l`)) { ($name, $type, $size, $mtime, $mode) = @$_; next if $type ne f; # plain file #... } # directory listing can also be read from a file open(LISTING, "zcat...


Platforms: *nix

License: Freeware Size: 235.52 KB Download (102): File::Listing Download

Added: September 15, 2010 | Visits: 1.035

Ace::Browser::AceSubs Ace::Browser::AceSubs Perl module contains subroutines for AceBrowser. SYNOPSIS use Ace; use Ace::Browser::AceSubs; use CGI qw(:standard); use CGI::Cookie; my $obj = GetAceObject() || AceNotFound(); PrintTop($obj); print $obj->asHTML; PrintBottom(); Ace::Browser::AceSubs exports a...


Platforms: *nix

License: Freeware Size: 296.96 KB Download (102): Ace::Browser::AceSubs Download

Added: November 17, 2010 | Visits: 642

User::pwent User::pwent is a Perl interface getpw*() functions. SYNOPSIS use User::pwent; $pw = getpwnam(daemon) || die "No daemon user"; if ( $pw->uid == 1 && $pw->dir =~ m#^/(bin|tmp)?z#s ) { print "gid 1 on root dir"; } $real_shell = $pw->shell || /bin/sh; for (($fullname, $office, $workphone,...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (102): User::pwent Download

Added: January 25, 2010 | Visits: 796

ClipEdit ClipEdit is a small application that allows you to create and edit text and picture clippings. ClipEdit also exports any internet address to an internet clipping. ClipEdit is very flexible with many customizable settings. And now with the handy toolbar editing a text clipping is even easier yet!...


Platforms: Mac

License: Freeware Download (102): ClipEdit Download

Added: January 25, 2010 | Visits: 738

xMeta xMeta is a simple set of three plug-ins for exporting metadata from Photoshop in raw binary form.ICC ProfilesEXIF camera dataIPTC press informationICC Profiles are of particular interest, as they can be added to the ColorSync profiles folder or opened by applications such as ÃTTbercolor.


Platforms: Mac

License: Freeware Download (102): xMeta Download

Added: August 21, 2008 | Visits: 1.005

DestroY MediaPlay With DestroY MediaPlay you can play almost any multimedia format in your PC, in addition to enjoying an enormous range of advanced options. More advanced users won+t be disappointed. The main features of DestroY MediaPlay are:* Plays the following formats: .avi, .asf, .asx, .wav, .wma, .wmv,...


Platforms: Windows

License: Freeware Size: 6 KB Download (101): DestroY MediaPlay Download

< 1 2 3 4 5