Main > Free Download Search >

Free code128 2.01 software for linux

code128 2.01

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 41
Barcode::Code128 2.01

Barcode::Code128 2.01


Barcode::Code128 is a Perl module that can generate CODE 128 bar codes. more>>
Barcode::Code128 is a Perl module that can generate CODE 128 bar codes.

SYNOPSIS

use Barcode::Code128;

$code = new Barcode::Code128;

EXPORTS

By default, nothing. However there are a number of constants that represent special characters used in the CODE 128 symbology that you may wish to include. For example if you are using the EAN-128 or UCC-128 code, the string to encode begins with the FNC1 character. To encode the EAN-128 string "00 0 0012345 555555555 8", you would do the following:

use Barcode::Code128 FNC1;
$code = new Barcode::Code128;
$code->text(FNC1.00000123455555555558);

To have this module export one or more of these characters, specify them on the use statement or use the special token :all instead to include all of them. Examples:

use Barcode::Code128 qw(FNC1 FNC2 FNC3 FNC4 Shift);
use Barcode::Code128 qw(:all);

Here is the complete list of the exportable characters. They are assigned to high-order ASCII characters purely arbitrarily for the purposes of this module; the values used do not reflect any part of the CODE 128 standard. Warning: Using the CodeA, CodeB, CodeC, StartA, StartB, StartC, and Stop codes may cause your barcodes to be invalid, and be rejected by scanners. They are inserted automatically as needed by this module.

CodeA 0xf4 CodeB 0xf5 CodeC 0xf6
FNC1 0xf7 FNC2 0xf8 FNC3 0xf9
FNC4 0xfa Shift 0xfb StartA 0xfc
StartB 0xfd StartC 0xfe Stop 0xff

Barcode::Code128 generates bar codes using the CODE 128 symbology. It can generate images in PNG or GIF format using the GD package, or it can generate a text string representing the barcode that you can render using some other technology if desired.

The intended use of this module is to create a web page with a bar code on it, which can then be printed out and faxed or mailed to someone who will scan the bar code. The application which spurred its creation was an expense report tool, where the employee submitting the report would print out the web page and staple the receipts to it, and the Accounts Payable clerk would scan the bar code to indicate that the receipts were received.

The default settings for this module produce a large image that can safely be FAXed several times and still scanned easily. If this requirement is not important you can generate smaller image using optional parameters, described below.

If you wish to generate images with this module you must also have the GD.pm module (written by Lincoln Stein, and available from CPAN) installed. Version 1.20 or higher of GD generates a PNG file, due to issues with the GIF patent. If you want to create a GIF, you must use version 1.19 or earlier of GD. However, most browsers have no trouble with PNG files.

If the GD module is not present, you can still use the module, but you will not be able to use its functions for generating images. You can use the barcode() method to get a string of "#" and " " (hash and space) characters, and use your own image-generating routine with that as input.

To use the the GD module, you will need to install it along with this module. You can obtain it from the CPAN (Comprehensive Perl Archive Network) repository of your choice under the directory authors/id/LDS. Visit http://www.cpan.org/ for more information about CPAN. The GD home page is: http://stein.cshl.org/WWW/software/GD/GD.html

<<less
Download (0.014MB)
Added: 2007-07-24 License: Perl Artistic License Price:
834 downloads
wac 2.01

wac 2.01


wac is a console tool for slicing sound files. more>>
wac is free and licensed under the General Public License that you can use it, modify it at your convenience.

If you plan to embed it in a (commercial) package, remember this package has to conform with the General Public License.

Installation:

tar -xzf wac-2.01.tgz
cd wac-2.01
./configure
make
su -c "make install"
<<less
Download (0.092MB)
Added: 2005-11-14 License: GPL (GNU General Public License) Price:
1440 downloads
LZO 2.01

LZO 2.01


LZO is a portable lossless data compression library written in ANSI C. more>>
LZO is a data compression library which is suitable for data de-/compression in real-time. This means it favours speed over compression ratio.
LZO is written in ANSI C. Both the source code and the compressed data format are designed to be portable across platforms.
Main features:
- Decompression is simple and *very* fast.
- Requires no memory for decompression.
- Compression is pretty fast.
- Requires 64 kB of memory for compression.
- Allows you to dial up extra compression at a speed cost in the compressor. The speed of the decompressor is not reduced.
- Includes compression levels for generating pre-compressed data which achieve a quite competitive compression ratio.
- There is also a compression level which needs only 8 kB for compression.
- Algorithm is thread safe.
- Algorithm is lossless.
Enhancements:
- Changed the configure system to install the LZO library under the name "liblzo2" so that parallel installation with LZO v1 is possible.
- Improved auto-configuration in miniLZO for some embedded targets like Blackfin and H8/300 processors.
<<less
Download (0.57MB)
Added: 2005-06-28 License: GPL (GNU General Public License) Price:
1581 downloads
livecoding 2.01

livecoding 2.01


Code reloading support library for Python more>>
livecoding 2.01 is yet another excellent utility for any developers It actually provides code reloading support library for Python.

There are two key facets this library:

  • The code reloading functionality it provides.
  • The bypassing of the standard module system with a custom one.

The standard module system is still there and continues to work with the custom one, but only the custom one is covered by the code reloading functionality of this library.

In order to decide whether you want the flexibility of the code reloading that this library provides, you need to decide whether you can live with writing the reloadable scripts within the custom module system.

Major Features:

  1. Automatic code reloading on script file changes.
  2. Less interruptions to developer workflow.
  3. Code reloading allows a running application to change its behaviour in response to changes in the Python scripts it uses. When the library detects a Python script has been modified, it reloads that script and replaces the objects it had previously made available for use with newly reloaded versions.
  4. As a tool, it allows a programmer to avoid interruption to their workflow and a corresponding loss of focus. It enables them to remain in a state of flow. Where previously they might have needed to restart the application in order to put changed code into effect, those changes can be applied immediately.

Requirements:

  • Python
<<less
Added: 2009-04-27 License: BSD License Price: FREE
12 downloads
dbdeploy 2.01

dbdeploy 2.01


dbdeploy is a Database Change Management tool. more>>
dbdeploy is a Database Change Management tool. The project helps developers and DBAs change their database in a simple, controlled, flexible and frequent manner.

The recurring problem with database development is that at some point you’ll need to upgrade an existing database and preserve its content. In development environments it’s often possible (even desirable) to blow away the database and rebuild from scratch as often as the code is rebuilt but this approach cannot be taken forward into more controlled environments such as QA, UAT and Production.

Drawing from our experiences, we’ve found that one of the easiest ways to allow people to change the database is by using version-controlled SQL delta scripts. We’ve also found it beneficial to ensure that the scripts used to build development environments are the exact same used in QA, UAT and production. Maintaining and making use of these deltas can quickly become a significant overhead - dbdeploy aims to address this.

How It Works

By comparing the SQL delta scripts on your filesystem against a patch table in the target database, it generates SQL scripts – it doesn’t directly apply them.

Invocation methods

dbdeploy can be called from within an ant build file.

DBMS support

dbdeploy supports the following DBMS:

Oracle
MS SQL Server
Sybase
Hypersonic SQL
<<less
Download (2.3MB)
Added: 2006-11-28 License: BSD License Price:
1061 downloads
MLDBM 2.01

MLDBM 2.01


MLDBM is a Perl module to store multi-level hash structure in single level tied hash. more>>
MLDBM is a Perl module to store multi-level hash structure in single level tied hash.

SYNOPSIS

use MLDBM; # this gets the default, SDBM
#use MLDBM qw(DB_File FreezeThaw); # use FreezeThaw for serializing
#use MLDBM qw(DB_File Storable); # use Storable for serializing

$dbm = tie %o, MLDBM [..other DBM args..] or die $!;

This module can serve as a transparent interface to any TIEHASH package that is required to store arbitrary perl data, including nested references. Thus, this module can be used for storing references and other arbitrary data within DBM databases.

It works by serializing the references in the hash into a single string. In the underlying TIEHASH package (usually a DBM database), it is this string that gets stored. When the value is fetched again, the string is deserialized to reconstruct the data structure into memory.

For historical and practical reasons, it requires the Data::Dumper package, available at any CPAN site. Data::Dumper gives you really nice-looking dumps of your data structures, in case you wish to look at them on the screen, and it was the only serializing engine before version 2.00. However, as of version 2.00, you can use any of Data::Dumper, FreezeThaw or Storable to perform the underlying serialization, as hinted at by the SYNOPSIS overview above. Using Storable is usually much faster than the other methods.

<<less
Download (0.010MB)
Added: 2007-05-15 License: Perl Artistic License Price:
892 downloads
AtExit 2.01

AtExit 2.01


AtExit is a Perl module that can perform exit processing for a program or object. more>>
AtExit is a Perl module that can perform exit processing for a program or object.

SYNOPSIS

use AtExit;

sub cleanup {
my @args = @_;
print "cleanup() executing: args = @argsn";
}

## Register subroutines to be called when this program exits

$_ = atexit(&cleanup, "This call was registered first");
print "first call to atexit() returned $_n";

$_ = atexit("cleanup", "This call was registered second");
print "second call to atexit() returned $_n";

$_ = atexit("cleanup", "This call shouldve been unregistered by rmexit");
rmexit($_) or warn "couldnt unregister exit-sub $_!";

if (@ARGV == 0) {
## Register subroutines to be called when this lexical scope is exited
my $scope1 = AtExit->new( &cleanup, "Scope 1, Callback 1" );
{
## Do the same for this nested scope
my $scope2 = AtExit->new;
$_ = $scope2->atexit( &cleanup, "Scope 2, Callback 1" );
$scope1->atexit( &cleanup, "Scope 1, Callback 2");
$scope2->atexit( &cleanup, "Scope 2, Callback 2" );
$scope2->rmexit($_) or warn "couldnt unregister exit-sub $_!";

print "*** Leaving Scope 2 ***n";
}
print "*** Finished Scope 2 ***n";
print "*** Leaving Scope 1 ***n";
}
print "*** Finished Scope 1 ***n" if (@ARGV == 0);

END {
print "*** Now performing program-exit processing ***n";
}

The AtExit module provides ANSI-C style exit processing modeled after the atexit function in the standard C library (see atexit(3C)). Various exit processing routines may be registered by calling atexit and passing it the desired subroutine along with any desired arguments. Then, at program-exit time, the subroutines registered with atexit are invoked with their given arguments in the reverse order of registration (last one registered is invoked first). Registering the same subroutine more than once will cause that subroutine to be invoked once for each registration.

An AtExit object can be created in any scope. When invoked as a function, atexit registers callbacks to be executed at program-exit time. But when invoked as an object-method (using the $object->method_name syntax), callbacks registered with an AtExit object are executed at object-destruction time! The rules for order of execution of the registered subroutines are the same for objects during object-destruction, as for the program during program-termination.

The atexit function/method should be passed a subroutine name or reference, optionally followed by the list of arguments with which to invoke it at program/object exit time. Anonymous subroutine references passed to atexit act as "closures" (which are described in perlref). If a subroutine name is specified (as opposed to a subroutine reference) then, unless the subroutine name has an explicit package prefix, it is assumed to be the name of a subroutine in the callers current package. A reference to the specified subroutine is obtained, and, if invocation arguments were specified, it is "wrapped up" in a closure which invokes the subroutine with the specified arguments. The resulting subroutine reference is added to the front of the list of exit-handling subroutines for the program (atexit) or the AtExit object ($exitObject->atexit) and the reference is then returned to the caller (just in case you might want to unregister it later using rmexit. If the given subroutine could not be registered, then the value zero is returned.

The rmexit function/method should be passed one or more subroutine references, each of which was returned by a previous call to atexit. For each argument given, rmexit will look in the list of exit-handling subroutines for the program (rmexit) or the AtExit object ($exitObject->rmexit) and remove the first matching entry from the list. If no arguments are given, then all program or object exit-handlers are unregistered! The value returned will be the number of subroutines that were successfully unregistered.

At object destruction time, the DESTROY{} subroutine in the AtExit module iterates over the subroutine references in the AtExit object and invokes each one in turn (each subroutine is removed from the front of the queue immediately before it is invoked). At program-exit time, the END{} block in the AtExit module iterates over the subroutines in the array returned by the exit_subs method and invokes each one in turn (each subroutine is removed from the front of the queue immediately before it is invoked). Note that in both cases (program-exit, and object-destruction) the subroutines in this queue are invoked in first-to-last order (the reverse order in which they were registered with atexit).

<<less
Download (0.008MB)
Added: 2007-05-23 License: Perl Artistic License Price:
884 downloads
rshaper 2.01

rshaper 2.01


rshaper is a Linux kernel module that limits the incoming bandwidth for packets aimed at different hosts. more>>
rshaper is a Linux kernel module that limits the incoming bandwidth for packets aimed at different hosts.

While the former issue can be addressed with the conventional shaper driver, the latter cant be easily addressed by the standard shaper. As a matter of facts, I have not been able to use the shaper to address the former situation, either; this because effective filtering can only be achieved through source-routing, but when I had to deal with this problem, the shaper only existed for Linux-2.1 while my production setup was constrained to be 2.0. Moreover, with netfilter and rshaper the outgoing traffic can be shaped

While running rshaper with 2.0 and 2.2 requires patching the network driver, the 2.4 "netfilter" feature helps rshaper by avoiding the need to patch the netword driver.
<<less
Download (0.023MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1214 downloads
etherdump 2.01

etherdump 2.01


etherdump project is a very small and efficient ethernet sniffer. more>>
etherdump project is a very small and efficient ethernet sniffer.
EtherDump is a fork by Peter Willis of ipdump2-pre1 (by Christophe Devine) with a few small improvements and feature add-ons with the end result being able to stream raw frames over a network and eventually convert them into pcap format and import into a pcap-reading prog of your choice (I personally love Ethereal).
Pretty simple use; just run the prog with no arguments and you will get the usage instructions. Log a session to a file using ASCII hex dump and when you are done run `text2pcap hex_dump pcap_file and read `pcap_file with Ethereal or another libpcap-aware program.
Since version 2.01 EtherDump supports some minimal packet filtering rules. Some of the rules you can use are "proto" or "protocol", "sport" or "sourceport", "dport" or "destinationport", "src" or "source", and "dst" or "destination". You can also give "!" or "not" to negate a particular rule.
If you execute EtherDump from a symlink named "tcpdump", the default print out method is tcpdump-like.
On uClibc the compiled size is ~8kB so this is very well suited for embedded systems where you want to debug a network interface but dont have room for a whole libpcap+application_layer program. Instead just combine netcat or a CGI script + httpd with EtherDump and read the traffic (converted to pcap) on another machine on the network.
Enhancements:
- Changes by Peter Willis since 2.0:
- Changed configuration option to reflect new name is "etherdump", not "packetdump". -p is now -e.
- Added basic [ipv4] filtering rules.
- Improved tcpdump output.
- If etherdump was run as a program named tcpdump, defaults to tcpdump-like output.
- Added -i to specify interface.
- If EtherDump is executed as "tcpdump", tcpdump-like output is the default output type.
<<less
Download (0.027MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
963 downloads
PSP-Recode 1.1

PSP-Recode 1.1


PSP-Recode is another service menu for PSP videos, tested with my 1.5-2.71-B PSP and works perfect. more>>
PSP-Recode is another service menu for PSP videos, tested with my 1.5-2.71-B PSP and works perfect.
Based on podencoder and original psp-recode for mp4ip, but this only need the last version of ffmpeg with PSP suport.
This script only required ffmpeg and kdialog installed in your system, but, for best performance (progress bars) you must install zenity and mplayer.
Installation:
Copy < PSP_Video.desktop > to < $HOME/.kde/share/apps/konqueror/servicemenus/ >,
and copy < psp-recode.sh > to < $HOME/bin > directory or another one that is in
your $PATH.
You can see PSP-Recode options typing < psp-recode.sh --help > in one console.
Remember that your PSP need runing firmware up to 2.01 or emulated firmware.
Enhancements:
- Bug fixed if your ffmpeg version uses video bitrate in bits/s or in kbits/s, the program ask you.
<<less
Download (0.003MB)
Added: 2006-11-09 License: GPL (GNU General Public License) Price:
1094 downloads
Archiveopteryx 2.01

Archiveopteryx 2.01


Archiveopteryx is an Internet mail server, optimized to support heavy usage and long-term archiving. more>>
Archiveopteryx is an Internet mail server, optimized to support heavy usage and long-term archiving.
The project stores mail in a PostgreSQL database, and provides access to it through IMAP, POP, and more.
Enhancements:
- A very serious SMTP submit bug was fixed.
- A new feature to copy outgoing mail to the sender was added.
- Support for SMTP+TLS on port 465 was added for Outlook.
- HTTP archive display improvements were made.
- A few minor bugs were fixed.
<<less
Download (2.3MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
851 downloads
cdrtools 2.01.01a34

cdrtools 2.01.01a34


cdrtools is a tool to create disk-at-once and track-at-once CDs. more>>
cdrtools (formerly cdrecord) creates home-burned CDs with a CDR/CDRW recorder. It works as a burn engine for several applications.
cdrtools supports CD recorders from many different vendors; all SCSI-3/mmc- and ATAPI/mmc-compliant drives should also work.
Supported features include IDE/ATAPI, parallel port, and SCSI drives, audio CDs, data CDs, and mixed CDs, full multi-session support, CDRWs (rewritable), TAO, DAO, RAW, and human-readable error messages.
cdrtools includes remote SCSI support and can access local or remote CD writers.
Enhancements:
- A +-1 size realloc() problem was fixed in TOC handling for cdda2wav.
- A workaround was added for a double free problem in mkisofs, introduced with multi-extent file support, that caused it to dump core on Cygwin.
<<less
Download (1.9MB)
Added: 2007-08-21 License: GPL (GNU General Public License) Price:
817 downloads
JoeDog::Config 2.01

JoeDog::Config 2.01


JoeDog::Config provides a perl extension for parsing data/configuration file. more>>
JoeDog::Config provides a perl extension for parsing data/configuration file.

It reads columns, key-value pairs, and INI style config files into arrays, hashes and hashes of hashes. It can take characters or regexes for separators.

ABSTRACT:
This is a autoloadable module which allows the programmer
to read data from an configuration file into various perl
data types, arrays, multi-dimentional arrays and hashes.

INSTALLATION
JoeDog::Config.pm was built using perl Make::Maker utility
If you are familiar with that utility you should have no
problem with this installation as it will be familiar:

$ perl Makefile.PL
$ make
$ make test
$ su
$ make install

USAGE
use JoeDog::Config;
my $cnf = new JoeDog::Config(filename);
my @array = $cnf->get_column();
my @arrays = $cnf->get_columns(sep);
my @aoa = $cnf->get_table(sep,num);
my @aoa = $cnf->get_table(sep,[num1, num2, etc...]);
my %hash = $cnf->get_hash(sep);
my %hashes = $cnf->get_hashes(sep);
<<less
Download (0.014MB)
Added: 2007-03-23 License: GPL (GNU General Public License) Price:
945 downloads
SkatOS 2.0

SkatOS 2.0


SkatOS is a bootable, stand-alone distribution which plays the popular German card game Skat. more>>
SkatOS is a bootable, stand-alone distribution which plays the popular German card game Skat. It fits on a single floppy or CD and uses VESA 1.1 or higher, a PS/2 or serial mouse, and generic keyboard.
Supported Hardware:
- VGA Text console
- VESA 1.1 VGA graphic modes
- Ramdisk Support (with initrd)
- Serial port (standard / generic)
- Mouse (serial or PS/2)
- Keyboard support (generic only)
- Advanced Power Management BIOS Support
- PCI support (ANY PCI access mode)
- Network device support
- 3c509/3c579 support
- 3c590/3c900 series (592/595/597) "Vortex/Boomerang" support
- AMD LANCE and PCnet (AT1500 and NE2100) support
- AMD PCnet32 (VLB and PCI) support
- DECchip Tulip (dc21x4x) PCI support
- DM9102 PCI Fast Ethernet Adapter support
- EtherExpress 16 support
- EtherExpressPro/EtherExpress 10 (i82595) support
- EtherExpressPro/100 support
- Generic DECchip & DIGITAL EtherWORKS PCI/EISA
- NE2000/NE1000 support
- PCI NE2000 support
- RealTek 8129/8139 (rtl8139) support
- RealTek 8129/8139 driver (8139too) support with support for 8129
- SiS 900/7016 PCI Fast Ethernet Adapter support
- SMC EtherPower II
- TI ThunderLAN support
- Via Rhine support
Included Software:
- LINUX-Kernel 2.2.26
- devps.patch 9_25_2000
- uClibc 0.9.24
- BusyBox 0.60.5 (busybox cat chmod dmesg echo grep halt ifconfig init kill ln ls mknod mount msh poweroff reboot rm route sh sleep test umount)
- TinyX 4.2.1
- XSkat 4.0
- menu 2.01-bg-1.1
- SkatOSWM 1.0
- udhcpc 0.9.8
- unlzma
<<less
Download (MB)
Added: 2007-04-06 License: Freely Distributable Price:
942 downloads
Homemade Dictionary 2.01

Homemade Dictionary 2.01


Homemade Dictionary is a customizable and easy to use dictionary, with features including background music support. more>>
Homemade Dictionary is a customizable and easy to use dictionary, with features including background music support.
Homemade Dictionary has a built in "Test Your Word Power Game", a medical dictionary, and a nice GUI.
The dictionary has an initial database of of around 5600 words, including slang. You can add your personal words on the fly. It is very small in size (only 637 KB).
Enhancements:
- Wordlist has been updated
<<less
Download (0.63MB)
Added: 2006-12-03 License: Freely Distributable Price:
1216 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3