Main > Free Download Search >

Free 1.15 bpf software for linux

1.15 bpf

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 66
hsftp 1.15

hsftp 1.15


hsftp provides a lightweight FTP emulator for ssh1. more>>
hsftp provides a lightweight FTP emulator for ssh1.
hsftp is an FTP emulator that provides the look-and-feel of an FTP session, but uses ssh to transport commands and data. It is written in C, and requires no additional libraries.
hsftp is written in C, and is known to compile with gcc under Linux and some Unix flavours. No additional libraries are required. No dedicated daemon (in addition to the sshd daemon) is required to run on the server side.
If you need a password, hsftp will ask for it. The password is encrypted by ssh before transmission. hsftp will store the password internally, so you do not need to type it in again during a session.
Main features:
- hsftp executes UNIX commands on the remote host, and thus will fail on non-Unix remote hosts.
- If hsftp is not set SUID root, and you have supplied a password/passphrase, it might get paged out to your swap partition during prolonged inactivity.
- For security, hsftp can be compiled to drop SUID root privileges irrevocably on startup, immediately after locking the memory for the password.
- For RSA authentication, you can avoid to have hsftp caching the passphrase if you use ssh-agent. In this case, you can use hsftp securely without setting it SUID root.
- hsftp has been developed on Linux. It is known to compile on a variety of other UNIX flavours (at least FreeBSD, Solaris, AIX, and HP-UX), but may not work on all. Fixes for portability are welcome for inclusion.
<<less
Download (0.014MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
910 downloads
Gequel 1.15

Gequel 1.15


Gequel is a MySQL GUI for manipulating records (insert, modify, delete, search). more>>
Gequel project is a MySQL GUI for manipulating records (insert, modify, delete, search).

GEQUEL is a GTK/C based frontend for the MySQL database engine loosely derived from an older program xsqlmenu.

Can retrieve data from MySQL databases, present them in nice browser, and allows for update,delete,insert,query,search and copy operations

<<less
Download (0.70MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
922 downloads
Gedcom 1.15

Gedcom 1.15


Gedcom is a Perl module to manipulate Gedcom genealogy files. more>>
Gedcom is a Perl module to manipulate Gedcom genealogy files.

SYNOPSIS

use Gedcom;

my $ged = Gedcom->new;
my $ged = Gedcom->new($gedcom_file);
my $ged = Gedcom->new(grammar_version => 5.5,
gedcom_file => $gedcom_file,
read_only => 1,
callback => $cb);
my $ged = Gedcom->new(grammar_file => "gedcom-5.5.grammar",
gedcom_file => $gedcom_file);

return unless $ged->validate;
my $xref = $self->resolve_xref($value);
$ged->resolve_xrefs;
$ged->unresolve_xrefs;
$ged->normalise_dates;
my %xrefs = $ged->renumber;
$ged->order;
$ged->write($new_gedcom_file, $flush);
$ged->write_xml($new_xml_file);
my @individuals = $ged->individuals;
my @families = $ged->families;
my $me = $ged->get_individual("Paul Johnson");
my $xref = $ged->next_xref("I");
my $record = $ged->add_header;
add_submitter
add_individual
add_family
add_note
add_repository
add_source
add_trailer
my $source = $ged->get_source("S1");

<<less
Download (0.094MB)
Added: 2007-05-11 License: Perl Artistic License Price:
896 downloads
Curses 1.15

Curses 1.15


Curses is a terminal screen handling and optimization. more>>
Curses is a terminal screen handling and optimization.

SYNOPSIS

use Curses;

initscr;
...
endwin;


Curses::supports_function($function);
Curses::supports_contsant($constant);

Curses is the interface between Perl and your systems curses(3) library. For descriptions on the usage of a given function, variable, or constant, consult your systems documentation, as such information invariably varies (:-) between different curses(3) libraries and operating systems. This document describes the interface itself, and assumes that you already know how your systems curses(3) library works.
Unified Functions
Many curses(3) functions have variants starting with the prefixes w-, mv-, and/or wmv-. These variants differ only in the explicit addition of a window, or by the addition of two coordinates that are used to move the cursor first. For example, addch() has three other variants: waddch(), mvaddch(), and mvwaddch(). The variants arent very interesting; in fact, we could roll all of the variants into original function by allowing a variable number of arguments and analyzing the argument list for which variant the user wanted to call.
Unfortunately, curses(3) predates varargs(3), so in C we were stuck with all the variants. However, Curses is a Perl interface, so we are free to "unify" these variants into one function. The section "Supported Functions" below lists all curses(3) function supported by Curses, along with a column listing if it is unified. If so, it takes a varying number of arguments as follows:
function( [win], [y, x], args );
win is an optional window argument, defaulting to stdscr if not specified.
y, x is an optional coordinate pair used to move the cursor, defaulting to no move if not specified.
args are the required arguments of the function. These are the arguments you would specify if you were just calling the base function and not any of the variants.
This makes the variants obsolete, since their functionality has been merged into a single function, so Curses does not define them by default. You can still get them if you want, by setting the variable $Curses::OldCurses to a non-zero value before using the Curses package. See "Perl 4.X cursperl Compatibility" for an example of this.

Objects

Objects are supported. Example:
$win = new Curses;
$win->addstr(10, 10, foo);
$win->refresh;
...

Any function that has been marked as unified (see "Supported Functions" below and "Unified Functions" above) can be called as a method for a Curses object.
Do not use initscr() if using objects, as the first call to get a new Curses will do it for you.

Security Concerns

It has always been the case with the curses functions, but please note that the following functions:

getstr() (and optional wgetstr(), mvgetstr(), and mvwgetstr())
inchstr() (and optional winchstr(), mvinchstr(), and mvwinchstr())
instr() (and optional winstr(), mvinstr(), and mvwinstr())

are subject to buffer overflow attack. This is because you pass in the buffer to be filled in, which has to be of finite length, but there is no way to stop a bad guy from typing.

In order to avoid this problem, use the alternate functions:

getnstr()
inchnstr()
innstr()

which take an extra "size of buffer" argument.

<<less
Download (0.080MB)
Added: 2007-05-09 License: Perl Artistic License Price:
901 downloads
DParser 1.15

DParser 1.15


DParser is an simple but powerful tool for parsing. more>>
DParser project is an simple but powerful tool for parsing. You can specify the form of the text to be parsed using a combination of regular expressions and grammar productions.
Because of the parsing technique (technically a scannerless GLR parser based on the Tomita algorithm) there are no restrictions.
The grammar can be ambiguous, right or left recursive, have any number of null productions, and because there is no seperate tokenizer, can include whitespace in terminals and have terminals which are prefixes of other terminals.
DParser handles not just well formed computer languages and data files, but just about any wacky situation that occurs in the real world.
Main features:
- Powerful GLR parsing
- Simple EBNF-style grammars and regular expression terminals
- Priorities and associativities for token and rules
- Built-in error recovery
- Speculative actions (for semantic disambiguation)
- Auto-building of parse tree (optionally)
- Final actions as you go, or on the complete parse tree
- Tree walkers and default actions (multi-pass compilation support)
- Symbol table built for ambiguous parsing
- Partial parses, recursive parsing, parsing starting with any non-terminal
- Whitespace can be specified as a subgrammar
- External (C call interface) tokenizers and external terminal scanners
- Good asymptotically efficiency
- Comes with ANSI-C, Python and Verilog grammars
- Comes with full source
- Portable C for easy compilation and linking
- BSD licence, so you can included it in your application without worrying about licensing
Enhancements:
- Removed call to exec in python interface (Brian Sabbey)
- Fix binary_op_left in python interface (Brian Sabbey)
<<less
Download (0.26MB)
Added: 2006-10-18 License: BSD License Price:
1103 downloads
libping 1.15

libping 1.15


libping is a C library designed to allow a programmer to make ICMP_ECHO requests directly from a script or program. more>>
libping is a C library designed to allow a programmer to make ICMP_ECHO requests directly from a script or program. libpings functions return either boolean--is alive--or the round trip time in milliseconds.

The library also includes support for "pinging" the following tcp/ip services: echo, http, https, smtp and pop3. Versions 1.15 and better are threadsafe.

Installation:

In a nutshell, to install the application in the default directory, ( /usr/local ), run the following commands:

$ ./configure
$ make
$ make install

This will install the application ( ring ) in the default directory /usr/local/bin. If that directory is in your PATH, then to run ring and view the online help type:

$ ring --help

It will also install libping in /usr/local/lib and place the header file ping.h in /usr/local/include.

To learn more about ring, make sure /usr/local/man is in your MANPATH and type:

$ man ring

For information about the C library functions, type:

$ man pinghost

For more details, read on. Especially if you want to install libping in a directory other that /usr/local
<<less
Download (0.24MB)
Added: 2006-05-09 License: GPL (GNU General Public License) Price:
1267 downloads
PonyGallery 1.15 Beta1a

PonyGallery 1.15 Beta1a


PonyGallery is a native gallery for Joomla/Mambo content management system. more>>
PonyGallery is a native gallery for Joomla/Mambo content management system. It was originally based on AkoGallery, but has many new features.

<<less
Download (0.094MB)
Added: 2006-02-06 License: GPL (GNU General Public License) Price:
766 downloads
mOEvIEs 1.15-STABLE

mOEvIEs 1.15-STABLE


mOEvIEs is a low-dependency movie database program. more>>
mOEvIEs is a low-dependency movie database program.

mOEvIEs is easy to use, and doesnt require a database server to be installed like most programs do.

<<less
Download (0.045MB)
Added: 2006-11-18 License: GPL (GNU General Public License) Price:
1071 downloads
dnsproxy 1.15

dnsproxy 1.15


dnsproxy daemon is a proxy for DNS queries. more>>
dnsproxy daemon is a proxy for DNS queries. It forwards these queries to two previously configured nameservers: one for authoritative queries and another for recursive queries. The received answers are sent back to the client unchanged. No local caching is done.
Primary motivation for this project was the need to replace Bind servers with djbdns in an ISP environment. These servers get recursive queries from customers and authoritative queries from outside at the same IP address. Now it is possible to run dnscache and tinydns on the same machine with queries dispatched by dnsproxy.
Other scenarios are firewalls where you want to proxy queries to the real servers in your DMZ. Or internal nameservers behind firewalls, or...
Enhancements:
- Updated to libevent 1.1, portability fixes.
<<less
Download (0.11MB)
Added: 2006-03-07 License: GPL (GNU General Public License) Price:
1326 downloads
GNoise 0.1.15

GNoise 0.1.15


GNoise is a wave file editor for Linux. more>>
GNoise is a wave file editor for Linux. Prime considerations were for it to be speedy and be able to handle big files. So far it can: load and display files, generate a display cache, play the file, cut, copy, paste, (unlimited) undo, mute, fade in/out, reverse, normalize, and more.
The primary design objectives are stability, speed, and the ability to handle big files (i.e. 70MB ripped CD tracks) easily. In fact GNoise is known to work with >500MB files although the author doesnt happen to have any wave files that size laying about.
See the TODO list for things Im considering adding/fixing in the near future. Feel free to send me patches or email, especially for any bugs you encounter.
The custom gtk widgets within GNoise support setting colors through the normal gtkrc mechanisms, there is a sample gtkrc file included, just drop it in ~/.gnoise and edit it to your likings.
Note that GNoise is a destructive editor: all editing operates directly on the soundfile, work on a copy of something you really dont want to lose. Note also that you should not mix the use of the disable undo option on different edits within an editing session (ie. if you start editing a file with undo disabled then leave undos disabled until you close the file, at which point you can turn undo on and re-open the file if you wish to edit with undo capability).
Enhancements:
- Finally did the markers/cue points. Add/delete markers that are saved in a standard cue chunk inside the wave file.
<<less
Download (0.069MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1194 downloads
Netrik 1.15.5

Netrik 1.15.5


Netrik is the ANTRIK Internet Viewer/Browser/Explorer/Navigator/whatever. more>>
Netrik is the ANTRIK Internet Viewer/Browser/Explorer/Navigator/whatever. (Tell us which one you like best.

Netrik is Free Source Software published under the GNU GPL, which essentially states that you can do anything with the programm and its source code, as long as it remains free.

There are a lot of reasons to use a text browser.

The first one is that a text mode browser runs almost everywhere, even in environments without a graphical mode. Especially the possibility to use them through Telnet can be very useful. Also, a text mode browser needs very few system ressources, as displaying text needs much less processor time and memory than graphical pages. On a heavily loaded machine it steals less ressources and feels much better.

The second one is that its a very good possibility for web authors to test the usability of their pages. In a text mode browser many flaws of web pages are obvious, which are hidden in Netscape&Co., but could cause problems in other browsers.

The third reason (which seems to be the decisive one for many users) is that the avialable text mode browsers have very quick startup times. Thus they can be used to take a quick glance at a page without having to start a "big" graphical browser, and also without having to start the graphical environment if you do not have one running all the time. (I do not.) This can be very valuable, especially for program documentation in html format.

The fourth reason to use a text mode browser is that it "saves" one from graphically overloaded pages. Many pages are much clearer in a text mode browser, and thus information retrieval is much more efficient. Note that for many pages this is only true if the text mode resolution is high enough. (No problem in an xterm or on a Linux console with an fb-device.)

The fifth reason (the main reason why I use text mode browsers) is that many people generally prefer text mode over graphical mode. There are many reasons for this, but I guess this is more a question of taste... Only please do not make your sentence without having experienced it :-)

Last but not least, a text mode browser is the most reasonable possibility to browse the web for blind users.
<<less
Download (0.471MB)
Added: 2006-12-18 License: GPL (GNU General Public License) Price:
1041 downloads
Tibco::Rv 1.15

Tibco::Rv 1.15


Tibco::Rv are Perl bindings and Object-Oriented library for TIBCOs TIB/Rendezvous. more>>
Tibco::Rv are Perl bindings and Object-Oriented library for TIBCOs TIB/Rendezvous.

SYNOPSIS

use Tibco::Rv;

my ( $rv ) = new Tibco::Rv;

my ( $listener ) =
$rv->createListener( subject => ABC, callback => sub
{
my ( $msg ) = @_;
print "Listener got a message: $msgn";
} );

my ( $timer ) = $rv->createTimer( timeout => 2, callback => sub
{
my ( $msg ) = $rv->createMsg;
$msg->addString( field1 => myvalue );
$msg->addString( field2 => myothervalue );
$msg->sendSubject( ABC );
print "Timer kicking out a message: $msgn";
$rv->send( $msg );
} );

my ( $killTimer ) =
$rv->createTimer( timeout => 7, callback => sub { $rv->stop } );

$rv->start;
print "finishedn"

Tibco::Rv provides bindings and Object-Oriented classes for TIBCOs TIB/Rendezvous message passing C API.

All methods die with a Tibco::Rv::Status message if there are any TIB/Rendezvous errors.

<<less
Download (0.046MB)
Added: 2007-03-08 License: Perl Artistic License Price:
968 downloads
AudioMove 1.15

AudioMove 1.15


AudioMove is a handy GUI-based batch audio file converter/ copier program. more>>
AudioMove project is a simple, easy to use GUI-based batch audio file copy-and-conversion program.
You just tell it what files to convert, what format to convert them to, and where to put the output files, and it does it.
Main features:
- Converts from any format that libsndfile can read, to WAV, AIFF, or LCS format
- Uses libsamplerate for high-quality sample rate conversion to various sample rates (11.025kHz-192kHz)
- Supports 8-bit, 16-bit, 24-bit, 32-bit, or floating-point output sample widths
- Specify files to convert using file requester or drag-and-drop
- Multithreaded design for faster processing on multiprocessor machines
- Pipelined dataflow for efficient resource utilization
- Recursively batch-convert entire directory trees in a single step
- Conversion-batch sizes may be arbitrarily large (e.g. thousands of files at a time)
- Can be controlled from the command line (useful for invoking batch conversions from scripts)
- No installation necessary -- just unzip and run
- Qt-based GUI means AudioMove is portable to most major OSs
- Open source (GPL); source code is available below
- SUSE 9.1, MacOS/X and Windows binaries available below for your convenience.
Enhancements:
- The codebase has been ported to Qt 4.2.3.
- The ability to split multitrack files into single-track stems has been added.
- A "Convert in Place" mode has been added.
- BEXT chunks in WAV files are now preserved.
- Support has been added for 64-bit float sample widths.
- The column layout is now more customizable.
- All controls now have keyboard shortcuts.
- Several bugs have been fixed.
<<less
Download (2.7MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
870 downloads
AdvanceCOMP 1.15

AdvanceCOMP 1.15


AdvanceCOMP is a collection of recompression utilities for your .ZIP archives, .PNG snapshots, .MNG video clips and .GZ files. more>>
AdvanceCOMP is a collection of recompression utilities for your .ZIP archives, .PNG snapshots, .MNG video clips and .GZ files.
Its mainly intended for recompressing your rom, snapshot and clip collection of emulated games.
Main features:
- Recompress ZIP, GZ, PNG and MNG files using the Deflate 7-Zip implementation.
- Recompress MNG files using Delta and Move optimization.
Enhancements:
- This release fixed a lot of bugs for 64-bit platforms.
<<less
Download (0.25MB)
Added: 2005-11-01 License: GPL (GNU General Public License) Price:
1455 downloads
GD::Barcode 1.15

GD::Barcode 1.15


GD::Barcode is a Perl module to create barcode image with GD. more>>


SYNOPSIS

ex. CGI
use GD::Barcode::UPCE;
binmode(STDOUT);
print "Content-Type: image/pngnn";
print GD::Barcode->new(EAN13, 123456789012)->plot->png;
with Error Check
my $oGdBar = GD::Barcode->new(EAN13, 12345678901);
die $GD::Barcode::errStr unless($oGdBar); #Invalid Length
$oGdBar->plot->png;

GD::Barcode is a subclass of GD and allows you to create barcode image with GD. This module based on "Generate Barcode Ver 1.02 By Shisei Hanai 97/08/22".

From 1.14, you can use this module even if no GD (except plot method).
new

$oGdBar = GD::Barcode::UPCE->new($sType, $sTxt);
Constructor. Creates a GD::Barcode::$sType object for $sTxt.
plot()

$oGd = $oGdBar->plot([Height => $iHeight, NoText => 0 | 1]);
creates GD object with barcode image for the $sTxt specified at new method. $iHeight is height of the image. If NoText is 1, the image has no text image of $sTxt.
ex.
my $oGdB = GD::Barcode->new(EAN13, 123456789012);
my $oGD = $oGdB->plot(NoText=>1, Height => 20);
# $sGD is a GD image with Height=>20 pixels, with no text.
barcode()
$sPtn = $oGdBar->barcode();
returns a barcode pattern in string with 1 and 0. 1 means black, 0 means white.
ex.
my $oGdB = GD::Barcode->new(UPCE, 123456789012);
my $sPtn = $oGdB->barcode();
# $sPtn = ;
$errStr
$GD::Barcode::errStr
has error message.
$text
$oGdBar->{$text}
has barcode text based on $sTxt specified in new method.

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