Main > Free Download Search >

Free gender selection software for linux

gender selection

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 580
File Selection Language 0.5.1

File Selection Language 0.5.1


File Selection Language is a descriptive language for file selection. more>>
File Selection Language (FSL) is a descriptive language for file selection. File Selection Language is used to selectively pick files from a directory structure.
FSL is useful for selective backups, for instance. FSL uses glob patterns as the basic building block.
For fine-tuning the selection, inclusion/exclusion rule combinations and conditional expressions are available. File size and modification date can be used in expressions.
Main features:
- FSL can be used with a command line tool (fsltool) or, for Python programmers, with a programmable interface. For the Python interface, see the documentation of Interpreter.py.
- Several FSL rule files can be combined in a cascading manner similar to CSS. The effect is the same as if the rule files were pasted into a single file.
- Support for both Windows-like and Unix-like paths.
- Strict parse-time type checking to catch as many errors as possible before run-time. For example, you cant say EACH f IF size(5) > 1000 because function size expects filename argument.
<<less
Download (0.071MB)
Added: 2005-12-07 License: BSD License Price:
1416 downloads
Genders 1.6-1

Genders 1.6-1


Genders is a static cluster configuration database used for cluster configuration management. more>> <<less
Download (0.16MB)
Added: 2007-01-11 License: GPL (GNU General Public License) Price:
1016 downloads
Yet Another V4L Application 0.9

Yet Another V4L Application 0.9


Yet Another V4L Application (or yava for short) is lightweight v4l framegrabber with support for TrueType fonts and ftp-upload. more>>
Yet Another V4L Application (or yava for short) is lightweight v4l framegrabber with support for TrueType fonts and ftp-upload.
Yet Another V4L Application project is written in ANSI C.
It uses Andreas Schifflers excellent SDL_bgrab library for frame grabbing, SDL for internal image manipulation, SDL_ttf for TrueType font rendering, libcurl for ftp uploads and libpng for snapshot writing.
Main features:
- Lightweight, using pretty standard libraries
- Tuner support
- FTP-upload (active and passive modes)
- TrueType font rendering
- Text color (RGB) selection
- Vertical text positioning (top, center, bottom)
- Horisontal text positioning (left, center, right)
- Font selection and number of pts
- Snapshots in png
- Live viewer or console mode
<<less
Download (0.015MB)
Added: 2007-02-21 License: GPL (GNU General Public License) Price:
990 downloads
Inline::Select 0.01

Inline::Select 0.01


Inline::Select contains dynamic selection of ILSM for a package. more>>
Inline::Select contains dynamic selection of ILSM for a package.

SYNOPSIS

use Inline::Select::Register (
PACKAGE => Calc,
Inline => [ Perl => sub {require t/Calc.pm} ]
) ;
use Inline::Select::Register (
PACKAGE => Calc,
Inline => [ CPP => t/Calc.cpp ]
) ;
use Inline::Select::Register (
PACKAGE => Calc,
Inline => [ Java => t/Calc.java ]
) ;
use Inline::Select::Register (
PACKAGE => Calc,
Inline => [ Python => t/Calc.py ]
) ;

use Inline::Select (
PACKAGE => Calc,
Inline => $ARGV[0] # one of Perl, CPP, Java, Python
) ;

my $c = new Calc() ;
ok($c->add(2, 3), 5) ;

USAGE

Usage of Inline::Select is pretty simple. For each programming language, you must speficy a use Inline::Select::Register (or Inline::Select->register() at runtime) statement to register the use of Inline for that language. All the Inline parameters are saved and that Inline block will only be evaluated if that language is selected later on.

When you are done registering Inline blocks, you then spefify a use Inline::Select (or Inline::Select->bind() at runtime) to actually load (in the caller package) the Inline block for the selected language.

<<less
Download (0.003MB)
Added: 2007-06-01 License: Perl Artistic License Price:
875 downloads
OSSP iselect 1.3.1

OSSP iselect 1.3.1


OSSP iselect is an interactive line selection tool for textual files. more>>
OSSP iselect is an interactive line selection tool for textual files, operating via a full-screen Curses-based terminal session.
It can be used either as an user interface frontend controlled by a scripting backend as its wrapper or in batch mode as a pipeline filter (usually between grep and the final executing command).
Enhancements:
- A security fix was done by upgrading GNU shtool from 2.0.1 to 2.0.3.
<<less
Download (0.14MB)
Added: 2005-10-07 License: GPL (GNU General Public License) Price:
1477 downloads
Word Inspector 0.1a

Word Inspector 0.1a


Word Inspector project is a GTK frontend to Dict dictionary program. more>>
Word Inspector project is a GTK frontend to Dict dictionary program.

The dict program allows you to search through one or more dictionary-like reference books for a word, then displays its definition.

Word Inspector expands that by allowing you to enter words to look up more easily, easily look up words that appear in the definition for another word, and automatically look up a word in the X Windows selection.

<<less
Download (0.054MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1092 downloads
Relations::Display 0.92

Relations::Display 0.92


Relations::Display is a DBI/DBD::mysql Query Graphing Perl module. more>>
Relations::Display is a DBI/DBD::mysql Query Graphing Perl module.

SYNOPSIS

# DBI, Relations::Display Script that creates a
# matrix, table, and graph from a query.

use DBI;
use Relations;
use Relations::Query;
use Relations::Abstract;
use Relations::Display;

$dsn = "DBI:mysql:watcher";

$username = "root";
$password = ;

$dbh = DBI->connect($dsn,$username,$password,{PrintError => 1, RaiseError => 0});

$abstract = new Relations::Abstract($dbh);

$display = new Relations::Display(-abstract => $abstract,
-query => {-select => {total => "count(*)",
first => "Bird",
second => "Count",
third => "if(gender=Male,Boy,Girl)",
tao => "if(gender=Male,Yang,Yin)",
sex => "gender",
kind => "sp_name",
id => "species.sp_id",
fourth => "(species.sp_id+50)",
vert => "2",
horiz => "1.5"},
-from => [bird,species],
-where => [species.sp_id=bird.sp_id,
species.sp_id < 4],
-group_by => [sp_name,gender,first,second],
-order_by => [gender,sp_name]},
-x_axis => first,kind,id,fourth,
-legend => second,third,tao,sex,vert,horiz,
-y_axis => total,
-hide => fourth,third,vert,horiz,
-vertical => vert,
-horizontal => horiz);

$matrix = $display->get_matrix();

$table = $display->get_table();

$display->set(-chart => bars,
-width => 400,
-height => 400,
-settings => {y_min_value => 0,
y_max_value => 3,
y_tick_number => 3,
transparent => 0}
);

$gph = $display->get_graph();

$gd = $gph->gd();

open(IMG, >test.png) or die $!;
binmode IMG;
print IMG $gd->png;

$dbh->disconnect();

<<less
Download (0.024MB)
Added: 2007-06-12 License: Perl Artistic License Price:
865 downloads
Gnetload 0.4

Gnetload 0.4


Gnetload is a GNOME applet displaying the network load in a histogram. more>>
Gnetload is a GNOME applet displaying the network load in a histogram. Gnetload is free software licensed under the GNU GPL.
Main features:
- Selection of traffic type: incoming traffic, outgoing traffic or all traffic
- Customizable coloring of histogram
- Textual display of current network load
- Configurable scaling of the histogram
<<less
Download (0.14MB)
Added: 2005-08-01 License: GPL (GNU General Public License) Price:
1544 downloads
Dune Legacy 0.94.1

Dune Legacy 0.94.1


Dune Legacy is a free clone of Dune2. more>>
Dune Legacy is a free clone of Dune2.

Updated clone of Westood Studios dune2. Uses original dune2 data files (not included) to provide original dune2 graphics and sounds.

New features include multiple unit selection/control, high resolution support, multiplayer gaming via tcp/ip, in game.

<<less
Download (1.0MB)
Added: 2006-07-23 License: GPL (GNU General Public License) Price:
1198 downloads
Ruby Editor Plugin 0.7.6

Ruby Editor Plugin 0.7.6


The jEdit Ruby Editor Plugin lets you manipulate Ruby and Rails code at the syntax level. more>>
The jEdit Ruby Editor Plugin lets you manipulate Ruby and Rails code at the syntax level.
Ruby Editor Plugin focused on programmer productivity, the plugin provides method completion and an integrated Ruby documentation viewer.
Main features:
- Syntax parsing now supports single-line modules, classes & defs
- Ruby Docs Viewer contains Ruby on Rails docs
- Variable method completion for Ruby on Rails methods
- Auto-indent and insert end now works for if( and if ( patterns
Enhancements:
- "Introduce variable" refactoring was added.
- Copy and cut actions that operate on a whole line when no text is selected were added.
- Autocompletion of brackets and quotes is now smarter.
- Progressive selection now handles method selection better.
<<less
Download (0.99MB)
Added: 2005-12-12 License: GPL (GNU General Public License) Price:
1412 downloads
FreeSCI 0.3.5

FreeSCI 0.3.5


FreeSCI is an attempt to re-implement the Sierra Creative Interpreter (SCI). more>>
FreeSCI is an attempt to re-implement the Sierra Creative Interpreter (SCI). Sierra Creative Interpreter was used in many of Sierra On-Lines games from 1988 to 1995.
Enhancements:
- GP32 port and WinCE port (Walter van Niftrik and Ismail Khatib, respectively)
- A game selection screen (by Hugues Valois)
- Per-resource shading, to allow manual fine-tuning of SCI game graphics
- Background image drawing optimisations
- Many, many bugfixes (and maybe a couple of new bugs to spice things up).
<<less
Download (0.71MB)
Added: 2006-02-14 License: GPL (GNU General Public License) Price:
1351 downloads
GnomeRSVP 1.4

GnomeRSVP 1.4


GnomeRSVP project is a rapid serial visual projector. more>>
GnomeRSVP project is a rapid serial visual projector.
GnomeRSVP is a "Rapid Serial Visual Projector" similar to products like AceReader.
In this dynamic representation of text, each word is flashed on the screen one at a time in succession.
The reader is less inclined to "oralize" the text, rather the reader interprets whole words as meaningful written symbols.
Automatic re-reading of adjacent previous text is therefore rendered impossible.
This results in much higher reading speeds than are possible with standard techniques.
Main features:
- Gnome compliance
- Font Selection
- Color Selection
- Text, HTML, and PDF file support
- Session Support
- Remembers Last Location and Position
- URL support!
- Variable speed from 120 to 6000 words per minute
<<less
Download (0.011MB)
Added: 2006-10-18 License: LGPL (GNU Lesser General Public License) Price:
1105 downloads
BooKreader 0.2

BooKreader 0.2


BooKreader is a Linux KDE twin-panel text files viewer specialized for reading e-books. more>>
BooKreader is a Linux KDE twin-panel text files viewer specialized for reading e-books.

It supports multiple bookmarks, custom fonts, encoding selection.

The main feature is the reader has two-page style, so it looks like a real book.

<<less
Download (0.66MB)
Added: 2007-07-04 License: GPL (GNU General Public License) Price:
848 downloads
gfontsel 1.0.0

gfontsel 1.0.0


gfontsel program is a simple wrapper around the GTK+ 2 font selection dialog. more>>
gfontsel program is a simple wrapper around the GTK+ 2 font selection dialog. It allows you to select a font.

The font name is written to the standard output in the GTK+ 2 font naming scheme.

Building and installing the program:

- Read the makefile. Change the install locations if you want.
- To build the program invoke make.
- To install the program, invoke make install *as root*.

If you dont like it, login as root, change to the source directory and run make uninstall. After that you can remove the source tree.
<<less
Download (0.011MB)
Added: 2006-06-07 License: GPL (GNU General Public License) Price:
1234 downloads
Nethack Records 0.5.1

Nethack Records 0.5.1


Nethack Records is a dynamic Nethack statistics generator for display on the Web. more>>
Nethack Records project is a dynamic Nethack statistics generator for display on the Web.
Nethack Records is an on-demand statistics generator for Nethack that is meant to be run on a Web server. It has several types of statistics, ranging from character info to daily and weekly stats.
It is implemented with a modern template system, and is very customizable. One can sort by most field-types, such as character class or gender. The code is separated from the XHTML by means of HTML::Template.
CSS is utilized to its fullest extent, allowing you to make it look however you like, without knowing Perl.
Main features:
- Top 10 players view
- All players view
- Sort by various criteria e.g. Class and Cause of death
- Various ranking possibilities
- Last five players view
- Todays games
- View per game statistics
Enhancements:
- Added quit and date-patches by Casey Zacek
- Fixed bug with empty logfile
- Added alternative css-file
- Added contact-person to options-file
- Fixed bug that appeared with<<less
Download (0.068MB)
Added: 2007-06-08 License: GPL (GNU General Public License) Price:
870 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5