Main > Free Download Search >

Free twindy 1.00 software for linux

twindy 1.00

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 125
Twindy 1.00

Twindy 1.00


Twindy is a window manager for linux inspired by Tracktion. more>>
Twindy is a window manager for linux and possibly any system running an X server, inspired by Tracktion, the multitrack audio editor/sequencer for Windows and OS X.
Twindy tries to apply Tracktions workflow, where everything is on screen at once, to a window manager.
As such, there are two panels, a main panel where new windows/programs open by default and may be selected using tabs, and a lower panel, which can only hold one window/program at a time.
The idea is that youll do your main work in the top panel, and use the bottom panel for a terminal, or a file manager youd want to keep open. See the screenshots page for some examples.
The philosophy behind Twindy isnt particularly complicated:
- Twindy is intended to be as simple as possible. That means it is only a window manager - its not intended to become a huge Desktop Environment like KDE/Gnome, with all sorts of applications developed specifically for it.
- All Twindys options must be configurable from Twindy itself - there shouldnt be any messing about with configuration files necessary. (okay, were not there yet, but eventually...)
- Twindy should be fairly lightweight - Im not entirely sure how well it succeeds in this yet, as I dont have a low-ish spec machine to test it on, but on my P4 laptop, it only takes up ~10MB while running, which I reckon is pretty good, compared to Gnome and KDE. Since it uses JUCE to do pretty much everything, it should be pretty good on this front, and its got very few dependencies (basically the X libs, and freetype).
Main features:
- Windows are automatically mapped to either the upper or lower panel, and fixed in position.
- Upper window panels are tabbed.
- Fully customisable colour scheme, colours are read from .tracktionscheme files, so you can import your favourite Tracktion 2 scheme. This is probably the best place to find .tracktionschemes.
- You dont have to start it from an xterm anymore!
- Fourteen user-customisable buttons in the lower left corner, which can be set to open a popup menu with a number of program entries, or just start a particular program.
- Can run any number of programs at startup (particularly useful for gnome-settings-daemon).
- Clicking the clock switches between showing the current time, or the date.
Enhancements:
- This is the last release of the project.
- Various small improvements to the UI have been made, such as labeling the upper and lower panel buttons, asking whether the user wants to log out, and providing buttons to switch apps between the upper and lower panels.
- Localization support was also added.
<<less
Download (2.1MB)
Added: 2007-06-01 License: GPL (GNU General Public License) Price:
876 downloads
libmoney 1.00

libmoney 1.00


libmoney is a library written in C++ that allows a developer to build an application that keeps track of finances. more>>
libmoney is a library that allows a developer to build an application that keeps track of finances. It was originally developed to keep track of a budget, but can be expanded to keep track of all assets.

Installation:
The `configure shell script attempts to guess correct values for various system-dependent variables used during compilation.

It uses those values to create a `Makefile in each directory of the package. It may also create one or more `.h files containing system-dependent definitions.

Finally, it creates a shell script `config.status that you can run in the future to recreate the current configuration, and a file `config.log containing compiler output (useful mainly for
debugging `configure).

It can also use an optional file (typically called `config.cache and enabled with `--cache-file=config.cache or simply `-C) that saves the results of its tests to speed up reconfiguring. (Caching is disabled by default to prevent problems with accidental use of stale cache files.)

If you need to do unusual things to compile the package, please try to figure out how `configure could check whether to do them, and mail diffs or instructions to the address given in the `README so they can be considered for the next release.

If you are using the cache, and at some point `config.cache contains results you dont want to keep, you may remove or edit it.

The file `configure.ac (or `configure.in) is used to create `configure by a program called `autoconf. You only need `configure.ac if you want to change it or regenerate `configure using a newer version of `autoconf.

The simplest way to compile this package is:

1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system.

If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.

Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.

2. Type `make to compile the package.

3. Optionally, type `make check to run any self-tests that come with the package.

4. Type `make install to install the programs and any data files and documentation.

5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean.

There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<less
Download (0.064MB)
Added: 2005-10-10 License: GPL (GNU General Public License) Price:
1474 downloads
Xws 1.00

Xws 1.00


Xws project is a multi-player Across Lite server with chat. more>>
Xws project is a multi-player Across Lite server with chat.

Xws is a text mode multi-player crossword and chat server. It presents the same puzzle to everyone, allowing people the option to try and/or discuss solutions.

Play may be friendly collaboration or fierce competition, depending on the players dispositions. Xws supports hundreds of puzzles in the popular Across Lite file format.

Copyright issues prevent the distribution from including any puzzles, but several archives and resources are listed in the README.

<<less
Download (0.019MB)
Added: 2006-12-04 License: GPL (GNU General Public License) Price:
1055 downloads
Data::Inherited 1.00

Data::Inherited 1.00


Data::Inherited is a Perl module with hierarchy-wide accumulation of list and hash results. more>>
Data::Inherited is a Perl module with hierarchy-wide accumulation of list and hash results.

SYNOPSIS

package Foo;
use base Data::Inherited;
use constant PROPERTIES => (qw/name address/);

package Bar;
use base Foo;
use constant PROPERTIES => (qw/age/);

package main;
my $bar = Bar->new;
print "$_n" for $bar->every_list(PROPERTIES);
prints
name
address
age

This is a mixin class. By inheriting from it you get two methods that are able to accumulate hierarchy-wide list and hash results.

every_list(String $method_name, Bool ?$override_cache = 0)

Takes as arguments a method name (mandatory) and a boolean indicating whether to override the cache (optional, off by default)

Causes every method in the objects hierarchy with the given name to be invoked. The resulting list is the combined set of results from all the methods, pushed together in top-to-bottom order (hierarchy-wise).

every_list() returns a list in list context and an array reference in scalar context.
The result is cached (per calling package) and the next time the method is called from the same package with the same method argument, the cached result is returned.

This is to speed up method calls, because internally this module uses NEXT, which is quite slow. It is expected that every_list() is used for methods returning static lists (object defaults, static class definitions and such). If you want to override the caching mechanism, you can provide the optional second argument. The result is cached in any case.

<<less
Download (0.012MB)
Added: 2007-01-15 License: Perl Artistic License Price:
1012 downloads
Cairo 1.00

Cairo 1.00


Cairo package contains Perl bindings to the cairo graphics library. more>>
Cairo package contains Perl bindings to the cairo graphics library.

INSTALLATION

To install this module type the following:

perl Makefile.PL
make
make test
make install

To avoid installing to a system directory, if you dont have root access, you can change the installation prefix at Makefile.PL time with

perl Makefile.PL PREFIX=/some/other/place

This will install the module to the subdirectory lib/perl5 under the given prefix. If this is not already in perls include path, youll need to tell perl how to get to this library directory so you can use it; there are three ways:

in your environment (the easiest):
# assuming a bourne-style shell
PERL5LIB=/some/other/place/lib/perl5/site_perl export PERL5LIB
on the perl command line:
perl -I /some/other/place/lib/perl5/site_perl yourscript
in the code of your perl script:
use lib /some/other/place/lib/perl5/site_perl;

<<less
Download (0.042MB)
Added: 2006-09-06 License: Perl Artistic License Price:
1143 downloads
file2menu 1.00

file2menu 1.00


file2menu is a class that automatically generates a menu of links more>>
file2menu is a class that automatically generates a menu of links.

It reads the contents of given directories and all the subdirectories in them to enumerate the files that should be referenced in the output.

To use the function you just need something like this :

< ?php
$dir = new file2menu(‘/myDirectory’);
$dir->DisplayMenu();

You can also use the SaveAs method to save the menu in a file :

< ?php
$dir = new file2menu(‘/myDirectory’);
$dir->SaveAs(‘FileToSave.html’);

<<less
Download (MB)
Added: 2006-09-20 License: GPL (GNU General Public License) Price:
1130 downloads
sipscreen 1.00

sipscreen 1.00


sipscreen project is a Linux iptables QUEUE target handler written in perl for screening incoming SIP phone calls. more>>
sipscreen project is a Linux iptables QUEUE target handler written in perl for screening incoming SIP phone calls.

If you have a network configuration similar to mine, with a Vonage or other Voice-over-IP adapter located behind a Linux gateway, you may find sipscreen useful for programmatically accepting or rejecting inbound calls, based on the caller ID information, the time of day, or any other clever algorithm you can think of.
<<less
Download (0.003MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
861 downloads
ExtSub 1.00

ExtSub 1.00


ExtSub is an utility which extracts and decodes subtitle data from VOB files. more>>
ExtSub is an utility which extracts and decodes subtitle data from VOB files. This program is for extracting subtitles from DVD VOB files. It does not descramble CSS-encrypted files. To compile simpy type "make". The command line parameters are as next:


infile= The VOB file from which to extract subtitles.

videofile= A file to which to write MPEG 2 video stream data.
(optional, highly experimental)

subname= The prefix of all subtitle files (see below for
details on the individual files).

convscript= An optional shell script, which will invoke
ImageMajicks "convert" utility to turn raw subtitle
image files into TIFF files.

id= The optional ID of the subtitle stream to be extracted
(default is 0). The specification allows IDs 0-31.

Each subtitle caption in the source file generates 3 output files with the suffixes ".gray", ".sub" and ".info".

The .gray file is a raw 8bpp bitmap image of the caption. DVD subtitles however are only 2bpp. in order to see anything with the naked eye using a program such as Imagemajicks "convert". it will probably be necessary to use the Enhance->Normalise function.

The .info file is a text file containing information about the caption, such as its resolution and and alpha channel data.

The .sub file is the raw data as extracted from the VOB source. Details of its syntax is available from http://sam.zoy.org/doc/dvd/subtitles/
<<less
Download (0.017MB)
Added: 2006-07-31 License: GPL (GNU General Public License) Price:
1183 downloads
oscjoy 1.00

oscjoy 1.00


oscjoy is a simple command line program that lets you use any connected joysticks as OpenSoundControl devices. more>>
oscjoy is a simple command line program that lets you use any connected joysticks as OpenSoundControl devices.
Whenever the state of a connected joystick changes, oscjoy will send UDP packets with OpenSoundControl messages in them to the specified IP address and port. The oscjoy archive includes source code and binaries for Linux, Mac OS X, and Windows XP.
Main features:
- Monitors all connected joysticks (or joystick-like input devices)
- Monitors all axes, buttons, hats, and trackballs on each device
- Sends OpenSoundControl packets via UDP to the specified IP address and port whenever any controls state changes
- Has options to set the OpenSoundControl name prefix, polling rate, scaling, etc
- Portable to most any OS (uses cross-platform joystick code from the SDL project)
- Very small -- compiles to less than 100 kilobytes
- Able to run in the background as a daemon process
- Open source, licensed under the GNU LGPL license
<<less
Download (0.15MB)
Added: 2006-03-29 License: LGPL (GNU Lesser General Public License) Price:
1304 downloads
CEIConvert 1.00

CEIConvert 1.00


CEIConvert provides an email conversion program for kMail, Netscape, Evolution, and Eudora. more>>
CEIConvert provides an email conversion program for kMail, Netscape, Evolution, and Eudora.

This tool will convert your individual emlx mail files (found in ~/Library/Mail/) to the old mbox format, used by almost every UNIX/Linux mail client and recognized by many more.

Basically, it helps you migrate your email messages to a different mail client.

<<less
Download (0.003MB)
Added: 2007-04-14 License: GPL (GNU General Public License) Price:
923 downloads
Dictionary 1.00

Dictionary 1.00


Every site needs a dictionary. . . for all the special terms and words which are unique to your own industry. Easy to set up and manage, your users will love having access to those hard to understand more>>

This is a great way to get repeat visitors!If the subject matter of your site contains words or phrases which are unique to your industry, why not place a searchable dictionary on your site?Upload a text file with your words and definitions along with the script and soon youll have a searchable dictionary. There is a feature to allow clickable links to other terms within the dictionary which are displayed with the definitions. This is great for music sites, which have their own unique Latin, French, and German terms, as well as medical sites, mechanical sites, and much more!Registered Version comes with support and unlimited updates.

Requirements: Perl, Webserver

<<less
Download (0.00KB)
Added: 2009-04-13 License: Commercial Price: $0.00
206 downloads
MPEG::Info 1.00

MPEG::Info 1.00


MPEG::Info is a basic MPEG bitstream attribute parser. more>>
MPEG::Info is a basic MPEG bitstream attribute parser.

SYNOPSIS

use strict;
use MPEG::Info;

my $video = MPEG::Info->new( -file => $filename );
$video->probe();

print $file->type; ## MPEG

## Audio information
print $file->acodec; ## MPEG Layer 1/2
print $file->acodecraw; ## 80
print $file->achans; ## 1
print $file->arate; ## 128000 (bits/sec)
print $file->astreams ## 1

## Video information
printf "%0.2f", $file->fps ## 29.97
print $file->height ## 240
print $file->width ## 352
print $file->vstreams ## 1
print $file->vcodec ## MPEG1
print $file->vframes ## 529
print $file->vrate ## 1000000 (bits/sec)

The Moving Picture Experts Group (MPEG) is a working group in charge of the development of standards for coded representation of digital audio and video.
MPEG audio and video clips are ubiquitous but using Perl to programmatically collect information about these bitstreams has to date been a kludge at best.

This module parses the raw bitstreams and extracts information from the packet headers. It supports Audio, Video, and System (multiplexed audio and video) packets so it can be used on nearly every MPEG you encounter.

<<less
Download (0.32MB)
Added: 2006-11-16 License: Perl Artistic License Price:
1081 downloads
Tie::CharArray 1.00

Tie::CharArray 1.00


Tie::CharArray module can access Perl scalars as arrays of characters. more>>
Tie::CharArray module can access Perl scalars as arrays of characters.

SYNOPSIS

use Tie::CharArray;
my $foobar = a string;

tie my @foo, Tie::CharArray, $foobar;
$foo[0] = A; # $foobar = A string
push @foo, !; # $foobar = A string!
print "@foon"; # prints: A s t r i n g !

tie my @bar, Tie::CharArray::Ord, $foobar;
$bar[0]--; # $foobar = @ string!
pop @bar; # $foobar = @ string
print "@barn"; # prints: 64 32 115 116 114 105 110 103
Alternative interface functions
use Tie::CharArray qw( chars codes );
my $foobar = another string;

my $chars = chars $foobar; # arrayref in scalar context
push @$chars, ?; # $foobar = another string?

$_ += 2 for codes $foobar; # tied array in list context
# $foobar = cpqvjgt"uvtkpiA

my @array = chars $foobar; # WARNING: @array isnt tied!

In low-level programming languages such as C, and to some extent Java, strings are not primitive data types but arrays of characters, which in turn are treated as integers. This closely matches the internal representation of strings in the memory.

Perl, on the other hand, abstracts such internal details away behind the concept of scalars, which can be treated as either strings or numbers, and appear as primitive types to the programmer. This often better matches the way people think about the data, which facilitates programming by making common high-level manipulation tasks trivial.

Sometimes, though, the low-level view is better suited for the task at hand. Perl does offer functions such as ord()/chr(), pack()/unpack() and substr() that can be used to solve such tasks with reasonable efficiency. For someone used to the direct access to the internal representation offered by other languages, however, these functions may feel awkward. While this is often only a symptom of thinking in un-Perlish terms, sometimes being able to manipulate strings as character arrays really does simplify the code, making the intent more obvious by eliminating syntactic clutter.

This module provides a way to manipulate Perl strings through tied arrays. The operations are implemented in terms of the aforementioned string manipulation functions, but the programmer normally need not be aware of this. As Perl has no primitive character type, two alternative representations are provided:

<<less
Download (0.005MB)
Added: 2007-06-14 License: Perl Artistic License Price:
863 downloads
J51 1.00

J51 1.00


J51 is an 8051 emulator/debugger. more>>
J51 project is a Java Intel MCS51(8051,8052, etc) family microprocessor emulator, with integrated debugger, disassembler, Intel hex file loader and more.
Main features:
- Disassembler
- Debugger
- Intel Hex file loader
Standard peripheral emulated:
- Timer 0/1 (Mode 0,1,2 and interrupt)
- Serial interface (Only in polled mode)
- Standard port 0 to 4
Microprocessor emulated:
- Intel MCS 8051 (no peripheral)
- Intel 8051
- Intel 8052
- Philips LPC674
- Philips LPC900
This version is still experimental the sources are distributed only for reference, full source and documentation will be available with the first stable release.
<<less
Download (0.13MB)
Added: 2006-12-14 License: Freeware Price:
1048 downloads
Kimboot 1.00

Kimboot 1.00


Kimboot is a sick and addictive arcade game. more>>
Kimboot is a sick and addictive arcade game.

You control a hand holding some very heavy ball on a rope (physics simulation included), and there are a lot of enemies trying to eat your hand. You wont let them! Crushem all with the ball!

<<less
Download (1.9MB)
Added: 2007-03-12 License: zlib/libpng License Price:
959 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5