Main > Free Download Search >

Free producer 1.5 software for linux

producer 1.5

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 443
IO::Pipe::Producer 1.5

IO::Pipe::Producer 1.5


IO::Pipe::Producer is a Perl module that provides two modules getSubroutineProducer and getSystemProducer. more>>
IO::Pipe::Producer is a Perl module that provides two modules getSubroutineProducer and getSystemProducer.

SYNOPSIS

# Module which provides 2 methods: getSubroutineProducer
# and getSystemProducer. They take a subroutine reference
# (with associated arguments) and a system call
# respectively and return (blessed) handles on their
# streaming standard output and standard error output.


# EXAMPLES of usage

use IO::Pipe::Producer;
$obj = new IO::Pipe::Producer();
$stdout_fh =
$obj->getSubroutineProducer($subroutine_reference,
@subroutine_parameters);

# OR

use IO::Pipe::Producer;
$obj = new IO::Pipe::Producer();
($stdout_fh,$stderr_fh) =
$obj->getSubroutineProducer($subroutine_reference,
@subroutine_parameters);

# OR

use IO::Pipe::Producer;
$stdout_fh = new IO::Pipe::Producer($subroutine_reference,
@subroutine_parameters);

# OR

use IO::Pipe::Producer;
($stdout_fh,$stderr_fh) =
new IO::Pipe::Producer($subroutine_reference,
@subroutine_parameters);

# Then you can read the returned handles like any other
# file handle...

while()
{print "STDOUT From Producer: $_"}
while()
{print "STDERR From Producer: $_"}

# You can also do the same thing with system calls using
# the getSystemProducer subroutine. However, this feature
# is not accessible via the new constructor

use IO::Pipe::Producer;
$obj = new IO::Pipe::Producer();
$stdout_fh =
$obj->getSystemProducer("echo "Hello World!"");

use IO::Pipe::Producer;
$obj = new IO::Pipe::Producer();
($stdout_fh,$stderr_fh) =
$obj->getSystemProducer("echo "Hello World!"");

# However, this is exactly the same as:

use IO::Pipe::Producer;
$stdout_fh = new Producer(sub{system(@_)},
"echo "Hello World!"");

# OR

use IO::Pipe::Producer;
($stdout_fh,$stderr_fh) =
new IO::Pipe::Producer(sub{system(@_)},
"echo "Hello World!"");

<<less
Download (0.006MB)
Added: 2007-02-20 License: Perl Artistic License Price:
979 downloads
Docker 1.5

Docker 1.5


Docker is a docking application (WindowMaker dock app) which acts as a system tray for KDE and GNOME2. more>>
Docker is a docking application (WindowMaker dock app) which acts as a system tray for KDE and GNOME2. Docker can be used to replace the panel in either environment, allowing you to have a system tray w ithout running the KDE/GNOME panel or environment.

I wrote and designed Docker to work with Openbox 2, but it should work fine in any window manager that supports WindowMaker dock apps.

If you running WindowMaker or otherwise and experiencing problems, you should try using the -wmaker option to make docker keep a fixed size.

Docker requires a KDE3 compliant window manager to handle KDE3 system tray icons, and since it is a docking application, the window manager needs to also support WindowMaker Dock Apps. The only window manager that meets these requirements to my knowledge is:

- Openbox 2 (http://icculus.org/openbox)

If you know of any other window managers that support the KDE3 hints for the system tray and docking apps (i.e. that docker works in), please let me know so I can add them to this list, and test docker out in them!

Why dont my GNOME2 system tray icons show up?

I dont know! Email me and let me know what application isnt working. (Dont you dare email me about a GNOME1 application!
<<less
Download (0.014MB)
Added: 2006-10-25 License: GPL (GNU General Public License) Price:
1102 downloads
Boyer 1.5

Boyer 1.5


Fast string search (indexOf) using the Boyer-Moore algorithm. Incorporate this class into your own Java programs to rapidly search strings. Boyerr-Moore is about twice as fast as String.indexOf when the string you are searching in is 2K or over and the pattern you are searching for is 4 characters or longer. more>>

Boyer - Fast string search (indexOf) using the Boyer-Moore

algorithm. Incorporate this class into your own Java

programs to rapidly search strings.

use:

import com.mindprod.Boyer.Boyer;

...

Boyer b = new Boyer("dogcatwombat");

int where = b.indexOf("cat");

or

int where = Boyer.indexOf("dogcatwombat","cat");

Boyer-Moore is about twice as fast as String.indexOf when

the string you are searching in is 2K or over and the

pattern you are searching for is 4 characters or longer.

String.indexOf is particularly slow when the pattern begins

with a common letter such as "e". Boyer-Moore is fastest

when the pattern is long and composed only of uncommon

letters, e.g. "z" or "^". If you use a char[] instead of

String for your text to be searched, it will run an

additional 33% faster.

Boyer automatically reverts to String.indexOf when that

would be faster.


Enhancements:
Version 1.5

add icon and pad file


System Requirements:
<<less
Download (529Kb)
Added: 2007-05-21 License: Free Price: Free
11 downloads
Apogee 1.5

Apogee 1.5


These are drivers for the range of scientific CCD cameras manufactured by Apogee Instruments Inc. more>>
These are drivers for the range of scientific CCD cameras manufactured by Apogee Instruments Inc. The drivers are accompanied by a full GUI interface designed for use in an astronomical environment.
The .tgz binary can be installed using the following commands
cd /
tar -xvzPf /path-to-archive/apogee-driver-1.5.tgz
/opt/apogee/apogee-post
/opt/apogee/modinstall
Whichever distribution is installed, the camera driver needs to be prepared (per-user) before use. Log in with the username you will be using to operate the camera, the open an xterm and type
/opt/apogee/install
Prompts for the type of camera, and I/O port will appear. In the event that the .ini file for your camera is not listed, you may need to obtain the latest version from Apogee. (alternatively, examine the new .ini file format, and edit your current .ini file to conform to the same parameter names). Once the driver is setup, the GUI interface can be started using the command
~/startapogee
Main features:
- Support for all ALTA-E and ALTA-U models
- Support for parallel port and PCI, and ISA interface models
- Full-frame, binned, and sub-region readout
- Image read/write to FITS format disk files
- In memory buffering of an arbitrary number of images
- Automatic image display using DS9 image viewer
- Calibration image library construction
- On-the-fly calibration
- Drift-scan mode
- Focus frame readout
- Graphical User Interface to major functions
- Tcl level scripting interface to all aspects of driver
- Tcl level scripting interface to image buffer management
- Tcl level scripting interface to manage FITS images, tables, headers
Enhancements:
- Add support for ApnCamData_CCD models
- Update codebase for 2.0.43_57 changes
<<less
Download (22MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1194 downloads
lcdproc_amarok 1.5

lcdproc_amarok 1.5


lcdproc_amarok is a lcdproc client script for amaroK. more>>
lcdproc_amarok is a lcdproc client script for amaroK to show the currently playing song, how long it is and what number in the playlist it is. For streaming contents, the length in stead says streaming.

It is pretty difficult to show how this works in a screenshot, so I suggest that you take a look at my video in stead if you dont just download it straight off.

You can observe it here:

http://www.martinm-76.dk/md8800/LCD/md8800.avi

A word of caution: The video is almost 40 MB in size.

Futher ideas for enhancement welcome.

I am using it on my Medion MD8800 machine and as such I have added some extras for this display. Those are disabled by default so it shouldnt bother anyone.

You need the latest CVS version of lcdproc to use this version of the script. An older version that works with lcdproc 0.5 can be found here:

http://www.martinm-76.dk/software/amarok/lcdproc_amarok-1.3.amarokscript.tar.bz2

It will not be developed further by me, though...

<<less
Download (0.010MB)
Added: 2006-05-12 License: GPL (GNU General Public License) Price:
1263 downloads
KPoGre 1.5.4

KPoGre 1.5.4


KPoGre is PostgreSQL administration tool for KDE. more>>
KPoGre is grafical client for PostgreSQL database system for KDE. KPoGre project uses libpqxx library.
Main features:
- Browsing through PostgreSQL system catalog
- Wizards for create, modify and drop database objects - users, groups, databases, tables
- Wizards for backup, restore, vacuum, analyze and another tasks
- Wizards for changing privileges
KPoGre is in beta stage. It means, that bugs and problems are possible. Dont hesitate to contact me with bug reports, ideas and feature requests. At this time I intensively work on finishing all possible wizards.
Enhancements:
- Implemented Disk usage tab in Database property window. Contain list of ordinary tables, TOAST tables and indexes in DB, sorted by disk space used.
- Implemented actions for Server menu: Reload configuration, Rotate log file
- Added button to Server Activity tab: Cancel query, that allow stop running query, selected in activity table.
- Added info about used disk space into property pages for: Tablespace, Database, Table, Index and its folders
*Note: All it above works with PostgreSQL 8.1 or newer
- Object names containing upper-case letter are now quoted.
- When user click on Datatable header, detailed column info is displayed.
- Tables folder now contain also TOAST tables. Ordinary tables has OID link to their TOAST table in properties.
<<less
Download (5.9MB)
Added: 2006-12-31 License: GPL (GNU General Public License) Price:
1028 downloads
cPige 1.5

cPige 1.5


cPige is a tool for webradios that want to backup their stream on a 1 day period. more>>
cPige is a tool for webradios that want to backup their stream on a 1 day period. cPige is listening to an icecast/shoutcast webradio, and write the stream using 2 different methods: Artist - Title.mp3, or in Pige mode, cPige write files like 0.mp3 1.mp3 .. corresponding to the current hour. Each mp3 should be 60 min long. Existing files are overwriten. So you can keep 1 day streaming 24/7.
Usage:
./cpige -h http://stream-hautdebit.frequence3.net:8000/ -h http://fallback.stream:8000/fallback -d .
-h host to connect to.
-V show cpige Version.
-d directory save stream to this directory.
-P Pige mode (takes no argument), save stream by hour.
-M Use pige Meta: will write id3v1 tag (only usefull with pige mode).
-q Quite mode, does not output stream status.
-b Background mode (UNIX only) use cPige as a daemon.
-l Path to logfile.
-I [h|m] pige mode will cut on a hour by hour basis or min by min basis.
-i nb how many "nb" hour(s) or minute(s) we should wait before cutting.
-n cPige will append xxxx to file in non pige mode, where xxxx is a number.
-h is the stream URL (not a .m3u or .pls playlist).
-d select where data should be written.
-P Pige mode, keeps 24h of data, by 1h segment, overwriting existing files.
-b Background mode. (UNIX only)
-l path to the logfile.
-q Quiet mode, does not output stream status on stdout
-M Use pige Meta: will write id3v1 tag (only usefull with pige mode)
-I [h|m] pige mode will cut on a hour by hour basis or min by min basis.
-i nb how many "nb" hour(s) or minute(s) we should wait before cutting.
Practical example:
If you have a stream url like http://stream-hautdebit.frequence3.net:8000/ you can use this command line:
./cpige -h http://stream-hautdebit.frequence3.net:8000/ -d /where/to/store/data [ -P ] [ -b ] [ -l cpige.log ]
Parameters in brackets are OPTIONAL. Brackets should not be given to the command line.
Enhancements:
- A Gtk2 GUI was added.
- Metaint changes during reconnections are correctly handled.
- Non-printable characterss are no longer used in filenames created in non pige mode.
- Directly starts recording without waiting for a new interval.
- A memory leak has been fixed.
- A potential bug in getHeaders() has been fixed.
- The ability to stop cPige after a certain amount of time has been added.
- NULL strings are not printed.
- There are some fixes for the Win32 platform.
<<less
Download (0.19MB)
Added: 2006-08-20 License: GPL (GNU General Public License) Price:
1160 downloads
phpOpenTracker 1.5.1

phpOpenTracker 1.5.1


phpOpenTracker is a framework solution for the analysis of Web site traffic and visitor behaviour. more>>
phpOpenTracker is a framework solution for the analysis of website traffic and visitor analysis.
It features a logging engine that, either invoked as a web-bug by a HTML WareSeeker.com tag or embedded with two lines of code into your PHP application, logs each request to a website into a database. One installation of phpOpenTracker can track an arbitrary number of web-sites.
Through the phpOpenTracker API module you can easily access the gathered data and perform complex operations on it, like for instance the analysis of your visitors clickpaths.
The analysis of clickpaths is essential when you want to measure the usability of your website. phpOpenTrackers API functions shortest_paths and top_paths help to answer questions like: Is the navigation intuitive enough? Do visitors find the shortest, most direct way from A to B? How are ads percepted?
On what document do they leave the website -- and where to? The answers to these questions help you to improve the user experience and the way your website is percepted by your customers.
Main features:
- Complete framework for the analysis of website traffic and visitor analysis.
- Highly optimized logging engine that stores the access information into a database.
- Powerful interface to access the gathered data and perform operations on it: from simple statistical queries to the complex analysis of the visitors clickpaths.
- Can be used to track both dynamic and static pages.
- Can be invoked directly from within PHP applications, for instance by a Content Management System, or through a HTML image tag -- a so called Web Bug.
- One installation of phpOpenTracker may track an arbitrary number of different web sites.
<<less
Download (0.070MB)
Added: 2005-07-01 License: GPL (GNU General Public License) Price:
1576 downloads
DVDStyler 1.5

DVDStyler 1.5


DVDStyler is a crossplatform DVD Authoring System. more>>
DVDStyler is a crossplatform DVD Authoring System.
DVDStyler project is free software distributed under GNU General Public License (GPL).
Main features:
- drag and drop MPEG files directly
- import image file for background
- create NTSC/PAL menus
- place text and images anywhere on the menu screen
- change font/color
- put basic text buttons, change font/color and background color
- copy and paste any menu object
- set chapters for each movie
- change post command for each movie
<<less
Download (0.80MB)
Added: 2007-05-16 License: GPL (GNU General Public License) Price:
1258 downloads
TeamSpace 1.5

TeamSpace 1.5


TeamSpace provides a framework product providing sophisticated tools for organizational management and secure collaboration. more>>
TeamSpace provides a framework product providing sophisticated tools for organizational management and secure collaboration.

The TeamSpace product is part of a developer toolkit allowing for sophisticated organization management using the Plone content management system.

TeamSpace provides a set of content types to represent your organizational structure, just as Remember uses the Member content type to represent an individual. The following types are among those provided:

Team
representing a team, group, department, project group, etc.

TeamMembership
representing a persons involvement with a Team

TeamSpace
a folder wherein members of a team have heightened priveleges for content creation and management. used as a workspace for collaboration, either visible to the public or private to the team members.

These are all full, workflowable, Archetypes content types, able to support custom schemas as needed. Team members can be active or inactive with a given team, and they can have varying roles (and thus priveleges) within the teams workspaces. Also, TeamSpaces can be associated with multiple teams providing easy support for cross-team collaboration.

<<less
Download (0.073MB)
Added: 2007-03-10 License: GPL (GNU General Public License) Price:
960 downloads
Cammgr 1.5

Cammgr 1.5


Cammgr manages a collection of web cameras. more>>
Cammgr manages a collection of web cameras. It will bring cameras online or offline, and initiate or suspend image capture operations.
Any camera can be controlled provided a driver is available. Cammgr supports multiple images per camera, default images for inactive cameras, per- user/host/camera notifications, and an easy-to- use configuration file.
Cammgr can scan Apache log files to auto-initiate image capture, and tune capture frequency can to the minimum needed to ensure that clients receive a new image on request.
Enhancements:
- Support for Axis network cameras was added.
- A bug where the pipe file descriptor was left open across shell exec was fixed.
- A client capture manager from where all capture processes are dispatched and monitored was created.
- A bug where the capture process did not go away when cammgr exited was fixed.
- Other miscellaneous cleanups were done.
<<less
Download (0.083MB)
Added: 2005-11-23 License: BSD License Price:
1430 downloads
Compface 1.5.2

Compface 1.5.2


Compface provides utilities and a library for converting to and from the X-Face format. more>>
Compface provides utilities and a library for converting to and from the X-Face format, a 48x48 bitmap format used to carry thumbnails of email authors in a mail header.
Enhancements:
- CRLF endings in the sources were fixed. configure.in was moved to configure.ac and the obsolete constructions were rewritten.
- make install was fixed and now works on Cygwin (requiring the EXEEXT variable from configure).
<<less
Download (0.045MB)
Added: 2005-10-05 License: GPL (GNU General Public License) Price:
1481 downloads
Thirdphase 1.5

Thirdphase 1.5


Thirdphase automatically downloads, installs, backs up, and runs any software downloadable from a static URL. more>>
Thirdphase automatically downloads, installs, backs up, and runs any software downloadable from a static URL, with a couple of other user-provided variables. The project is useful for keeping nightly builds of software up-to-date.

Usage: thirdphase [options] product_list
product:
a config file name located in ~/.thirdphase/config
options:
c - cleanup the downloads folder
d - download only (No decompression or installation)
D - Dont run the app once installed
f - force download (this option will not backup your current app)
i - set a personal install path (defaults are set in config files)
enter a empty string to return to default
I - install a config file to ~/.nightly/config/
h - help (this message)
l - list settings for a config
L - list all installed configs
p - Ignore if a products download has been marked problematic
q - quiet thirdphases output
r - revert to backup (should be used without any other options)
t - Edit the config file of the given product
R - if your sever supports resume offset downloading use this option
v - version

<<less
Download (0.020MB)
Added: 2007-06-30 License: Freeware Price:
846 downloads
JDraw 1.1.5

JDraw 1.1.5


JDraw is a pixel oriented graphics editor designed especially for small to medium-sized pictures used to decorate web pages. more>>
JDraw is a pixel oriented graphics editor designed especially for small to medium-sized pictures used to decorate web pages.
JDraw image editor is completely written in Java, simple to use and saves (animated) GIFs, ICOs and PNGs.
I started writing this tool because it took me ages to do little things like changing a couple of pixels, making a colour transparent, adjusting some RGB values. Most graphic tools irritate with hundreds of sexy filters but have steep learning curves or just dont care about simple pixels.
So its high time for a good old pixel editor.
Programming language: JDraw is entirely written in Java. Originally written for JDK 1.4 it now supports JDK 1.3 as well.
Supported Platforms: So far I developed and tested JDraw under Windows XP and SuSe Linux 8.1.
Main features:
- plain, filled and gradient filled rectangles
- plain, filled and gradient filled ovals
- plain and gradient filled text
- colour picking, cropping, filling
- image scaling (since v1.2beta)
- image rotation (since v1.2.1beta)
- copying/moving clips
- rotating/flipping clips (since v1.2.2beta)
- save animated GIFs (interlaced/not interlaced)
- save PNGs (interlaced/not interlaced)
- save ICOs (true colour, 32 bit) (since v1.1.3)
- save JPEGs of configurable quality (since v1.1.4)
- read all image formats supported by Java
- colour reduction, colour replacing, colour swapping
- grayscaling (since v1.2.2beta)
- image browser (since v1.3beta)
- tolerant fill tool (since v1.3beta)
- palette operations like editing RGB colours, alpha values
- configuration of the Look&Feel to use (since v.1.1.3)
<<less
Download (0.65MB)
Added: 2006-05-03 License: GPL (GNU General Public License) Price:
1271 downloads
PyGCS 1.5.6

PyGCS 1.5.6


PyGCS is designed to be a VERY stripped down MUD-like chat-server that runs in a small amount of memory. more>>
PyGCS is designed to be a VERY stripped down MUD-like chat-server that runs in a small amount of memory. It differs from common MUDs in several ways:
1. PyGCS has a single "room" and no large database to keep in memory and on disk.
2. PyGCS has no embedded programming language

PyGCS is ideally meant to be a small multi-user real-time chat system for people who have a need to talk to more than one person at a time online. It fits somewhere in between the setup IRC uses and the MUCK/MUSH/MOO style of server.
You can use it at things like:
A central location for system administrators and other administrative people to discuss immediate problems with local networks, etc
- A personal place to talk with friends without loading down the machine its run on.
- A continuous backup for social type MUDs

The PyGCS server that I run is very regularly up for 70+ days at a time and usually goes down because of the host being rebooted.

Once you get the server installed and up-and-running, youll need a way to connect to the server. More specifically, youll need a client program to connect to the server. This topic isnt my problem :), but basically you have two options:
1. Raw telnet. (Already installed on almost any OS, but it is poor for this use because it doesnt seperate the servers output lines from your input (typed) lines.)
2. MUD Client. (You MAY have to compile it, but it gives you the benefit of seperating input and output as well as some sort of macro language possibly, etc).
<<less
Download (0.031MB)
Added: 2006-06-16 License: BSD License Price:
1225 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5