Main > Free Download Search >

Free kceasy 0.16 software for linux

kceasy 0.16

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 92
fIcy 1.0.16

fIcy 1.0.16


fIcy is a command line icecast/shoutcast stream grabber. more>>
fIcy is a command line icecast and shoutcast audio stream grabber.
fIcy is an icecast/shoutcast stream grabber suite for use under shell environment. Its goal is to cleanly and automatically rip a stream into user customisable files.
It will work with ICY compatible streams, allowing you to either to save the stream to disk or to pipe the output to a media player, or even both. fIcy, among other uses, is ideal for batch/unattended recording of radio programs and stream debugging.
The fIcy package includes:
fIcy itself, a stream separator/multiplexer,
fResync, a fast MPEG-resyncing utility,
fPls, a playlist frontend for fIcy.
Usage:
Synopsis:
fIcy [options] < server [port [path]]|url >
The main program. Takes directly a stream url and dumps the tracks on the specified file/s and standard output, depending on the settings.
fPls [options] < file|url > [fIcy options]
Playlist manager. Reads a playlist (local or remote) and manages fIcy retries/timeouts/errors, forwarding the specified flags.
fResync [options] file
MPEG resyncing utility. Re-aligns head frame headers on dumped or broken files. Usually needed for embedded hardware decoders or editing software.
Enhancements:
- Timeout support was refined.
- HTTP 301 redirects are now honored as well.
- fPls automatically forwards more flags to fIcy.
- The GNU sed requirement was removed in favor of a customizable coprocessor.
- A Mac OS X HFS+ encoding limitation work-around has been implemented.
<<less
Download (0.038MB)
Added: 2007-01-04 License: LGPL (GNU Lesser General Public License) Price:
1025 downloads
fastdep 0.16

fastdep 0.16


fastdep is a fast C/C++ dependency generator. more>>
fastdep is a preprocessor which generates dependency information suitable for Makefile inclusion from C or C++ source files. Meant to run on slower hardware, it is several orders of magnitude faster than gcc.
Enhancements:
- Implement boolean operators in #if [Pete Gonzalez]
- Adds support for Windows MinGW GCC and MS VisualC++.NET [Jack T. Goral]
- Adds Jamfile for compilation with Jam [Jack T. Goral]
- Make gcc style predefined symbols defined as in -DPARAMETER=3 [Pierric Descamps]
- Fix unportable configure sh for NetBSD [Julio M. Merino Vidal]
- Set object filename extension through a command line [Arne Varholm]
- Man page [Zenaan Harkness]
- Compilation fixes + makefile for MS VC6 [Alexander Bartolich]
<<less
Download (0.068MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
1658 downloads
Exporter::Easy 0.16

Exporter::Easy 0.16


Exporter::Easy is a Perl module that takes the drudgery out of Exporting symbols. more>>
Exporter::Easy is a Perl module that takes the drudgery out of Exporting symbols.

SYNOPSIS

In module YourModule.pm:
package YourModule;
use Exporter::Easy (
OK => [ $munge, frobnicate ] # symbols to export on request
);
In other files which wish to use YourModule:
use ModuleName qw(frobnicate); # import listed symbols
frobnicate ($left, $right) # calls YourModule::frobnicate

Exporter::Easy makes using Exporter easy. In its simplest case it allows you to drop the boilerplate code that comes with using Exporter, so

require Exporter;
use base qw( Exporter );
use vars qw( @EXPORT );
@EXPORT = ( init );
becomes
use Exporter::Easy ( EXPORT => [ init ] );
and more complicated situations where you use tags to build lists and more tags become easy, like this
use Exporter::Easy (
EXPORT => [qw( init :base )],
TAGS => [
base => [qw( open close )],
read => [qw( read sysread readline )],
write => [qw( print write writeline )],
misc => [qw( select flush )],
all => [qw( :base :read :write :misc)],
no_misc => [qw( :all !:misc )],
],
OK => [qw( some other stuff )],
);

This will set @EXPORT, @EXPORT_OK, @EXPORT_FAIL and %EXPORT_TAGS in the current package, add Exporter to that packages @ISA and do a use vars on all the variables mentioned. The rest is handled as normal by Exporter.

<<less
Download (0.009MB)
Added: 2006-10-03 License: Perl Artistic License Price:
1116 downloads
darcsweb 0.16

darcsweb 0.16


darcsweb is a very simple Web interface for darcs. more>>
darcsweb is a very simple Web interface for darcs. darcsweb project was inspired by gitweb.
Its written in Python and calls darcs to get most of the data. It should work on any webserver without any special configuration besides enabling CGIs; I have tested it using lighttpd, thttpd and Apache.
It supports browsing records and their diffs, extracting diffs against the current head, browsing the current tree, annotate, provides an RSS feed and other stuff like that.
To configure, copy the config.py.sample file to config.py and edit it; you will configure your repositories there. Then just browse to the cgi file.
Enhancements:
- This release supports the new darcs pristine directory.
- Some minor bugfixes and several minor improvements were made.
<<less
Download (0.034MB)
Added: 2006-10-10 License: Public Domain Price:
1109 downloads
sysfence 0.16

sysfence 0.16


sysfence is a system resources guard for Linux. more>>
Sysfence project is a resource monitoring tool designed for Linux machines. While running as daemon it checks resource levels and makes desired action if some values exceed safety limits.
Main features:
- notifying system administrators when something goes wrong,
- stopping services when system performance is dropping too low and starting them when its going up again,
- periodically restarting memory-leaking processes,
- dumping system statistics in critical situations
Usage
Sysfence reads its configuration from file(s) specified in argument list. Config files may contain one or more rules describing conditions and actions to be performed.
Rule has syntax like this:
if {
resource1 > limit1
or
{ resource2 < limit2 and resource3 < limit3 }
}
run once command-to-be-run
The block enclosed within {} brackets describes condition. When its result is TRUE, following command is invoked.
The once keyword is optional. If present, the command is executed only once after condition becomes TRUE. Next execution will take place only if condition becomes FALSE and then TRUE again. Without once keyword, command is invoked periodically, after every resource check that gives TRUE, no matter what was the condition result before.
Command specified right after run keyword is passed to /bin/sh, so it may contain more than one instruction or even whole script. But be careful - rule checking is suspended unless command execution has been completed! (Other rules are unaffected.)
As resources, following ones can be given:
- la1 - load average during last minute.
- la5 - load average during last 5 minutes.
- la15 - load average during last 15 minutes.
- memfree - lower limit for free memory amount.
- memused - upper limit for memory used by processes.
- swapfree - lower limit for free swap space.
- swapused - upper limit for swap space in use.
Enhancements:
- This release contains bugfix for wrong memory levels recognition on non-vanilla kernels.
<<less
Download (0.039MB)
Added: 2006-04-30 License: GPL (GNU General Public License) Price:
1272 downloads
Hints 0.16

Hints 0.16


Hints is a Perl extension for parsing /etc/printcap. more>>
Hints is a Perl extension for parsing /etc/printcap.

SYNOPSIS

use Print::Printcap;

my $printcap = new Print::Printcap;

print join ,,$printcap->printers();

Simple parser for /etc/printcap.

THE PRINT::PRINTCAP CLASS

new

Constructor create instance of Print::Printcap class and parse /etc/printcap. Optional argument is -file => filename for specifying alternate printcap file.

my $printcap = new Print::Printcap;

printers

Return list of printers from /etc/printcap.

my @printers = $printcap->printers();

<<less
Download (0.050MB)
Added: 2007-05-11 License: Perl Artistic License Price:
896 downloads
VTE 0.16.7

VTE 0.16.7


VTE library inserts terminal capability strings into a tree of tables. more>>
VTE library inserts terminal capability strings into a tree of tables.

You could say that VTE is something of a research project of mine, based on the simple question: "if programs can use a termcap file (through either libtermcap or curses or ncurses) to determine how to drive a terminal, why cant a terminal emulator use a termcap file to determine how to behave?"

Update: the answer is most likely "because applications which use curses have more detailed information than that which is found in termcap".

What does VTE include?

VTE includes a library (libvte) which implements such a terminal emulator widget for GTK+ 2.2/2.4, and a sample application (vte) which wraps that widget in a GTK window. Because Im more concerned with whether or not it works, all settings are hard-coded to whatever I needed to test the last time I touched it. If you actually want to use the widget to get work done, you should probably be using gnome-terminal.

How does it work?

The VTE library inserts terminal capability strings into a tree of tables, and then uses it to determine if data received from a pseudo-terminal is a control sequence or just random data. The sample program "interpret" illustrates more or less what the widget sees after it filters incoming data.

<<less
Download (1.3MB)
Added: 2007-07-28 License: GPL (GNU General Public License) Price:
819 downloads
svplus 0.16

svplus 0.16


svplus is a SchemaView Plus GUI for drawing database schemas. more>>
svplus is a SchemaView Plus GUI for drawing database schemas.
FORMAT
svplus [file]
SYNOPSIS
svplus
svplus example.svp
SchemaView Plus is a GUI for retrieve, drawing and printing database schema.
Schema can be retrieved using DBIx::SystemCatalog (currently supported basicly all current DBD drivers, some better support for PostgreSQL and quite well support for Oracle).
Program use XML for storing and retrieving data in text files. You can write any filters to modify these XML files for add new functionality based on your projects (e.g. droping off some relationships etc.). You can specify one filename on command line for autoloading it after GUI start up.
Schema can be printed to PostScript file.
Version restrictions:
- Problem with manipulating of dragpoint in smooth coords based connection method, retrieving only updates from database -- now forgot all new informations, I retrieve always all relationships (e.g. for 1 table in large schema - slow), many tables in create relationship dont allow selection, selecting object on canvas dont click_repository(), dnd object from object repository rollback in object repository listbox and filter dont work.
<<less
Download (0.050MB)
Added: 2007-06-19 License: Perl Artistic License Price:
858 downloads
sitecopy 0.16.3

sitecopy 0.16.3


sitecopy allows you to easily maintain remote Web sites. more>>
sitecopy allows you to easily maintain remote Web sites.
The program will upload files to the server which have changed locally, and delete files from the server which have been removed locally, keeping the remote site synchronized. FTP and WebDAV are supported.
Enhancements:
- This release adds support for client certificates in DAV and neon 0.26.
<<less
Download (0.92MB)
Added: 2006-03-12 License: GPL (GNU General Public License) Price:
1329 downloads
Net::Msmgr 0.16

Net::Msmgr 0.16


This is a Microsoft Network Chat Client Toolkit. more>> <<less
Added: 2009-03-15 License: Perl Artistic License Price: FREE
1 downloads
Moyoman 0.16

Moyoman 0.16


Moyoman project is a Go playing program. more>>
Moyoman project is a Go playing program.
Moyoman is a program that can play Go at the amateur Dan level, and provides detailed feedback about how moves are generated which can be understood by non-programmers.
Enhancements:
- Added LadderImpl module.
- Updated IgoProverbs module.
<<less
Download (0.81MB)
Added: 2007-01-15 License: The Apache License 2.0 Price:
596 downloads
TinyFCK 0.16

TinyFCK 0.16


TinyFCK integrates the TinyMCE rich text editor with FCKEditors file manager and uploader. more>>
TinyFCK integrates the TinyMCE rich text editor with FCKEditors file manager and uploader.
TinyFCK package contains:
- TinyMCE release (absolutely not patched, this is the original TinyMCE)
- patched version of FCKEditor file manager/uploader for PHP
- an example documenting configuration
At the moment tinyFCK works only with PHP, porting to other languages may come but help is needed, write us if you can contribute!
Enhancements:
- TinyMCE updated to 2.0.8
<<less
Download (1.0MB)
Added: 2006-10-26 License: LGPL (GNU Lesser General Public License) Price:
1102 downloads
libssh2 0.16

libssh2 0.16


libssh2 is a library implementing the SSH2 protocol. more>>
libssh2 library implements the SSH2 protocol as defined by Internet Drafts: SECSH-TRANS, SECSH-USERAUTH, SECSH-CONNECTION, SECSH-ARCH, SECSH-FILEXFER, SECSH-DHGEX, SECSH-NUMBERS, and SECSH-PUBLICKEY.
Main features:
- Key Exchange Methods: diffie-hellman-group1-sha1, diffie-hellman-group14-sha1, diffie-hellman-group-exchange-sha1**
- Hostkey Types: ssh-rsa, ssh-dss
- Ciphers: aes256-cbc (rijndael-cbc@lysator.liu.se), aes192-cbc, aes128-cbc, 3des-cbc, blowfish-cbc, cast128-cbc, arcfour, none**
- Compression Schemes: zlib, none
- MAC hashes: hmac-sha1, hmac-sha1-96, hmac-md5, hmac-md5-96, hmac-ripemd160 (hmac-ripemd160@openssh.com), none**
- ** - Affected by build time ./configure options. See INSTALL file for more information.
- Authentication: none, password, public-key, hostbased, keyboard-interactive
- Channels: shell, exec (incl. SCP wrapper), direct-tcpip, subsystem
- Global Requests: tcpip-forward
- Channel Requests: x11, pty
- Subsystems: sftp(version 3), publickey(version 2)
Enhancements:
- A bunch of bugs were fixed, new public defines for version/major/minor/patch numbers were introduced, and the old APINO define was removed.
<<less
Download (0.32MB)
Added: 2007-08-07 License: LGPL (GNU Lesser General Public License) Price:
881 downloads
Softgun 0.16

Softgun 0.16


Softgun is a Software ARM. more>>
Softgun is a Software ARM. Softgun is intended to help Embedded System developers. Softgun is known to run linux-2.6.10 with a patch for the Netsilicon NS9750.
Main features:
- ARM926-ejs 32Bit Instruction Set with DSP Extensions. Speed is 21 MHz per Intel GHz. Thumb and Jazelle are missing
- Little and Big Endian CPU mode
- MMU with 3 entry first level TLB and 3 * 128 entry second level TLB
- Emulation of AMD Flash compatible Chips (AM29LV640ML, AM29LV256ML ...). Uniform and non uniform sector devices
- NS9750 AHB to PCI bridge (Currently no Address translation)
- NS9750 Serial Interface emulation redirected to stdin/stdout or to a real serial device
- NS9750 Vectored interrupt Controller
- NS9750 OHCI USB module (yet without device and not fully working)
- NS9750 Watchdog and Timers in 32 Bit mode with Interrupt support
- NS9750 builtin I2C master and slave controller
- I2C-Bus emulation using GPIO-Ports
- Ethernet emulation through Linux TUN/TAP device
- STE10/100 Tulip compatible PCI Ethernet controller Emulation
- Davicom DM9000 Ethernet Controller
- NS9750 builtin Ethernet Controller Emulation
- m93c46 Microwire EEPROM connected to STE10/100
- Philips SJA1000 CAN controller connected to TCP socket
- General Purpose IO emulation on logical signal level
- M24Cxx I2C-EEProms
- PCF8563 I2C-Realtime clock emulation
- PCF8575 and PCF8574 I2C 16/8 Bit IO-Expanders
- Intel Hex and Motorola S-Record loader
- Precompiled Linux System available as Flash image
- Multiple Boards selectable from configuration file
- Loading devices or boards as shared library
- Debugging with gdb using the gdb remote protocol
Enhancements:
- This release adds HP Deskjet 460 emulation with a PCL3GUI interpreter, many high capacity SD cards, and ZRLE compression to the built-in VNC server.
<<less
Download (0.27MB)
Added: 2007-03-29 License: GPL (GNU General Public License) Price:
945 downloads
StreamTuned 0.16

StreamTuned 0.16


StreamTuned plays and records audio and video streams using mplayer as backend. more>>
StreamTuned plays and records audio and video streams using mplayer as backend. It also reads stream urls and related information from playlists, webpages or XML/RSS feeds.
Streamtuned can act as Podcast client and allows for local and remote (webservice) access to the repositories containing your stream urls.
Enhancements:
- compiles with mythtv v0.18
- podcast support
- playlist cache (to be nice to xml feeds)
- file download support (used by podcast)
- item detail information screen, launches viewer for html/text data in xml feeds
- custom colors in settingsrc (streamtuned only), icon usage
- "copy and paste" stream items between repositories
- parsing of (icecast) xml and other playlists though external (custimizable) scripts
- workaround for mplayer hanging on .pls files without -playlist option
- improved parsing of mplayer (error) messages
- bug removal: tempfile blocking multiuser play, recovery from mplayer lockups, etc.
- support for static html stream storages (on webservers refusing POST requests)
- separate dump window showing mplayer stdout, allows for manual stream url start.
- multiple customizable CustomStreamEvents (mplayer output events) in player.xml
<<less
Download (0.27MB)
Added: 2005-09-26 License: GPL (GNU General Public License) Price:
1490 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5