Main > Free Download Search >

Free loss of a child software for linux

loss of a child

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 528
Close Button 0.3.5

Close Button 0.3.5


Close Button is an extension which adds a Close Tab (or Window, or Browser) button to the toolbar. more>>
Close Button is an extension which adds a Close Tab (or Window, or Browser) button to the toolbar.

This is especially handy if you put your tab bar at the bottom but want a Close Tab button in the top right, where youd find it in most well behaved Windows programs with child windows.

Once installed, just right click on the toolbar, select "Customize...", and drag the button wherever you like. The buttons appearance is determined by the installed theme, and its behavior can be configured to close the current tab, window, or Firefox session.

<<less
Download (0.004MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
926 downloads
Montessori Bells 1.1

Montessori Bells 1.1


Montessori Bells project is a program that teaches children to discriminate musical sounds. more>>
Montessori Bells project is a program that teaches children to discriminate musical sounds.

It is an instrument for playing musical airs by ear.

The bells are also a musical instrument for children to play. Because the Montessori bells are a lovely and extremely expensive piece of equipment to buy, we have made a software equivalent of the first few activities usually done with the bells.

We suggest that parents and teachers present and supervise the activities as they would the real bells. We think it will be worthwhile for adults to spend a bit of time familiarising themselves with our bells themselves before presenting them to a child, in order to avoid frustrating the child with any confusion.

We suggest that the bells be introduced at a stage when the child is showing interest in music or singing.

In our start mode, there are two rows of bells; the top row is white, the bottom row brown. Other than their colour, the two rows are identical.

Clicking on each bell in a row from left to right will produce the notes of the C major scale in ascending order. The bells cannot be moved in the start mode. The start mode can be returned to at any time by clicking on "Restart" at the bottom of the activity.

<<less
Download (0.52MB)
Added: 2006-11-01 License: GPL (GNU General Public License) Price:
1095 downloads
Weight Loss Recipe Book 3.1

Weight Loss Recipe Book 3.1


Weight Loss Recipe Book is a free, online, community-built recipe book. more>>
Weight Loss Recipe Book is a free, online, community-built recipe book. Weight Loss Recipe Book contains everything you need to allow your web site visitors to submit recipes and everything your administrator needs to administer the recipes.
When a visitor submits a recipe, the recipe is added to a database and awaits approval from the administrator before being added to the public site.
Main features:
- Community built, meaning you just have to approve entries and watch your web site expand!
- Captcha validation to prevent automated entries into the recipe book.
- Complete administrator system - add administrators, recipe categories, manage recipes and more!
- Best of all, Weight Loss Recipe Book is totally free!
<<less
Download (0.061MB)
Added: 2006-05-08 License: Freeware Price:
1267 downloads
loadwatch 1.1a1

loadwatch 1.1a1


loadwatch project allows a single child process to run only when the load on a machine is within certain bounds. more>>
loadwatch project allows a single child process to run only when the load on a machine is within certain bounds. When the machines load passes the high load mark, then the child process is stopped.

The process is only restarted when the machines load drops below the low load mark. The load is checked at a user definable interval. loadwatch is distributed under the GNU GPL.

Usage:

loadwatch [-d < time>] [-h < load>] [-l < load>] [-n < copies] [-p < pid>] [-- < command>]
-d < int> load sampling interval (10 seconds)
-h < float> high load mark (1.25)
-l < float> low load mark (0.25)
-n < copies> number of children to fork (1)
-u < filename> file that will be used to externally control a
loadwatch process.
-p < pid> pid of process to control (loadwatch will actually
send signals to the group containing this pid)
NOTE: -p and < command> are mutually exclusive, but one has to be
specified.

Example:

loadwatch -d 10 -h 1.25 -l .25 -- ./rc5des

which means: check the load every 10 seconds, stop rc5des when the load is
greater than 1.25 and restart rc5des when the load drops to .25.

lw-ctl < filename> < cmd>
< filename> is the control file, this corresponds to a unix domain
socket.
< cmd> is the command to send to the loadwatch process.
RUN -> put loadwatch into RUN mode, that is the child process
runs regardless of the load.
STOP -> put loadwatch into STOP mode, that is, the child
process will not run regardless of the load.
WATCH -> WATCH mode, the normal load watching mode.

Example:

lw-ctl ./fooey RUN

Causes the loadwatch process (if it was started with "-u ./fooey") to go
into RUN mode. you could put lw-ctl in a cron job that runs in the
morning to put the job in STOP mode and then again in the evening to put
the job back into WATCH mode.

The children which loadwatch forks are all part of the same process group.
loadwatch stops and starts the processes by signalling the process
group with SIGSTOP and SIGCONT respectively.

Send suggestions and bug reports to . if you do anything
interesting with loadwatch, let me know. i use it for controlling the
distributed.net clients, but i figure itd be good to control thinks like
crack as well.
<<less
Download (0.027MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
835 downloads
Class::Observable 1.04

Class::Observable 1.04


Class::Observable is a Perl module that allows other classes and objects to respond to events in yours. more>>
Class::Observable is a Perl module that allows other classes and objects to respond to events in yours.

SYNOPSIS

# Define an observable class

package My::Object;

use base qw( Class::Observable );

# Tell all classes/objects observing this object that a state-change
# has occurred

sub create {
my ( $self ) = @_;
eval { $self->_perform_create() };
if ( $@ ) {
My::Exception->throw( "Error saving: $@" );
}
$self->notify_observers();
}

# Same thing, except make the type of change explicit and pass
# arguments.

sub edit {
my ( $self ) = @_;
my %old_values = $self->extract_values;
eval { $self->_perform_edit() };
if ( $@ ) {
My::Exception->throw( "Error saving: $@" );
}
$self->notify_observers( edit, old_values => %old_values );
}

# Define an observer

package My::Observer;

sub update {
my ( $class, $object, $action ) = @_;
unless ( $action ) {
warn "Cannot operation on [", $object->id, "] without action";
return;
}
$class->_on_save( $object ) if ( $action eq save );
$class->_on_update( $object ) if ( $action eq update );
}

# Register the observer class with all instances of the observable
# class

My::Object->add_observer( My::Observer );

# Register the observer class with a single instance of the
# observable class

my $object = My::Object->new( foo );
$object->add_observer( My::Observer );

# Register an observer object the same way

my $observer = My::Observer->new( bar );
My::Object->add_observer( $observer );
my $object = My::Object->new( foo );
$object->add_observer( $observer );

# Register an observer using a subroutine

sub catch_observation { ... }

My::Object->add_observer( &catch_observation );
my $object = My::Object->new( foo );
$object->add_observer( &catch_observation );

# Define the observable class as a parent and allow the observers to
# be used by the child

package My::Parent;

use strict;
use base qw( Class::Observable );

sub prepare_for_bed {
my ( $self ) = @_;
$self->notify_observers( prepare_for_bed );
}

sub brush_teeth {
my ( $self ) = @_;
$self->_brush_teeth( time => 45 );
$self->_floss_teeth( time => 30 );
$self->_gargle( time => 30 );
}

sub wash_face { ... }


package My::Child;

use strict;
use base qw( My::Parent );

sub brush_teeth {
my ( $self ) = @_;
$self->_wet_toothbrush();
}

sub wash_face { return }

# Create a class-based observer

package My::ParentRules;

sub update {
my ( $item, $action ) = @_;
if ( $action eq prepare_for_bed ) {
$item->brush_teeth;
$item->wash_face;
}
}

My::Parent->add_observer( __PACKAGE__ );

$parent->prepare_for_bed # brush, floss, gargle, and wash face
$child->prepare_for_bed # pretend to brush, pretend to wash face

<<less
Download (0.010MB)
Added: 2007-06-06 License: Perl Artistic License Price:
870 downloads
Tux, of Math Command 2001.09.07-0102

Tux, of Math Command 2001.09.07-0102


Tux, of Math Command project is a math practice game for elementary school level children. more>>
Tux, of Math Command project is a math practice game for elementary school level children.

Like so many other Linux games, it stars Tux, the Linux Penguin.

Players must answer math equations to shoot down comets which are falling towards their cities.

It can run on Linux/UNIX, Win32, Mac, and BeOS.

<<less
Download (1.3MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
647 downloads
pysycache 3.0

pysycache 3.0


pysycache is a software that teach kids to move the mouse. more>>
PySyCache is an educational program for young children (4-7 years old).

pysycaches purpose is to teach them to manipulate the mouse by uncovering a picture with mouse movements.

This game doesnt want some powerfull computer, and it can be used at home with yours children or in the schools

The target of PySyCache is that child must show a picture hidden by a cache. In this order, the mouse movements erase the cache and the picture appears step by step.

<<less
Download (10.3MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
969 downloads
PlusPlus 1.23

PlusPlus 1.23


PlusPlus is a Delphi, VB, Java-like Perl preprocessor. more>>
PlusPlus is a Delphi, VB, Java-like Perl preprocessor.

SYNOPSIS

### Case 1: plain script

use PlusPlus;

/*
This is
a long awaited
multiline
comment
*/

my $nested_hash = {outer => {inner => {a => 1, b => [19, 73], c => 3}}}

$nested_hash.outer.inner.a = 5; # colon in variable names
$nested_hash.outer.inner.b.[1] = 37;

$dbh.do ("DROP DATABASE TEST"); # colon in method names

with ($nested_hash.outer.inner) { # with operator
($.a, $.c) = (10, 30);
print " b[0] = $.b.[0]n";
};

function f ($x, $y = 0) { # named parameters and default values
return sin ($x) * cos ($y)
};

### Case 2: working with a database

use PlusPlus;
use DBI;

my $dbh = DBI -> connect ($dsn, $user, $password);

select name, phone from staff where salary between ? and ? -> my $sth;

forsql $sth (1000, 1500) {
print "< tr > < td > $.name < /td > < td > $.phone < /td > < /tr >"
}


### Case 3: procedural module

use PlusPlus;

module Child (Ancestor::Mother, Ancestor::Father);

sub foo { ... }; # not exported

export sub bar { ... }; # exported by default

export_ok sub baz { ... }; # can be imported explicitly


### Case 4: class

class Child (Ancestor::Mother, Ancestor::Father);

method init { # constructor callback
($.x, $.y) = (10, 3);
}

method diag { # some method
sqrt ($.x * $.x + $.y * $.y)
}

method do_it_to_me ($coderef) { # one more method
&$coderef ($self);
}

getter fldname { # getter method
print "They asked my value!n";
return $.fldname;
}

setter fldname ($value) { # setter method
$.setting_counter ++;
$.fldname = $value;
}

<<less
Download (0.007MB)
Added: 2007-06-05 License: Perl Artistic License Price:
871 downloads
Content Area Focus 0.1

Content Area Focus 0.1


Content Area Focus is an extension used to solve the content area focus loss. more>>
Content Area Focus is an extension used to solve the content area focus loss.

Target audience: those who are mostly using the keyboard to navigate around and switch between tabs; frequently they encounter situations in which the content area doesnt have focus.

Method: just giving focus to the content area for any "regular" keystrokes made when the main-window is in focus.

<<less
Download (0.001MB)
Added: 2007-04-03 License: MPL (Mozilla Public License) Price:
937 downloads
chaosircd 2.2.0

chaosircd 2.2.0


chaosircd is an IRC daemon with commands, channel modes, user modes, and flood control. more>>
chaosircd project is an IRC daemon with commands, channel modes, user modes, and flood control implemented as runtime (re)loadable modules.

DNS, AUTH (ident) queries, and proxy scans are done in a single child process to avoid wasting valuable file descriptors and responsiveness.

It features a server-server protocol using timestamps for netsplit handling similar to TS5 (hybrid), and OpenSSL encrypted server-server and client-server connections.

<<less
Download (0.70MB)
Added: 2006-10-12 License: LGPL (GNU Lesser General Public License) Price:
1109 downloads
Yelo 0.1

Yelo 0.1


Yelo is a standalone service catalog for SOA (service-oriented architecture). more>>
Yelo is a standalone service catalog for SOA (service-oriented architecture). A service catalog is an important part of the business process of service-oriented architecture and seems to be available today only as part of a larger package.
Yelo software is meant to foster a "marketplace" approach to services within an enterprise.
Enhancements:
- This release contains basic functionality, but does not include the ability to associate or dissociate n:n node relationships.
- Parent-child works fine, as does saving and retrieving of XSD and WSDL formats.
<<less
Download (0.76MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
863 downloads
Sendmailizer 1.1

Sendmailizer 1.1


Sendmailizer provides a Sendmail and qmail log file analizer. more>>
Sendmailizer provides a Sendmail and qmail log file analizer.
Sendmailizer performs MTA log file analysis and generates email usage reports, with general stats and statistics per user.
Installing
1. move where sendmailizer.pl lives
2. Modify sendmailizer.conf (parameters are self-explanatory)
(logfile should be: /var/log/maillog)
(please especify local domains: mydomain.com,mydomain.net...)
3. Try with ./sendmailizer.pl sendmailizer.conf
Enhancements:
- Some bugfixes were made, including a data loss bugfix.
- The report design was changed.
<<less
Download (0.012MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
980 downloads
CA::AutoSys 1.02

CA::AutoSys 1.02


CA::AutoSys is a Perl interface to CAs AutoSys job control. more>>
CA::AutoSys is a Perl interface to CAs AutoSys job control.

SYNOPSIS

use CA::AutoSys;

my $hdl = CA::AutoSys->new( [OPT] ) ;
my $jobs = $hdl->find_jobs($jobname) ;
while (my $job = $jobs->next_job()) {
:
}
my $status = $job->get_status() ;
my $children = $job->find_children() ;
while (my $child = $children->next_child()) {
:
}

CLASS METHODS

new()
my $hdl = CA::AutoSys->new( [OPT] ) ;

Creates a new CA::AutoSys object.

Below is a list of valid options:

dsn

Specify the DSN of the AutoSys database server to connect to. If nothing is specified, Sybase will be assumed: dbi:Sybase:server= With this option you should be able to connect to databases other than Sybase.

server

Specify the AutoSys database server to connect to. Either this option or the dsn option above must be given. Please note, that when specifying this server option, a Sybase database backend is assumed.

user

Specify the database user. With an out-of-the-box AutoSys installation, the default user should work.

password

Specify the database password. With an out-of-the-box AutoSys installation, the default password should work.

Example:

my $hdl = CA::AutoSys->new(server => "AUTOSYS_DEV");

<<less
Download (0.019MB)
Added: 2007-05-24 License: Perl Artistic License Price:
573 downloads
XML::Records 0.12

XML::Records 0.12


XML::Records is a Perl module for perlish record-oriented interface to XML. more>>
XML::Records is a Perl module for perlish record-oriented interface to XML.

SYNOPSIS

use XML::Records;
my $p=XML::Records->new(data.lst);
$p->set_records(credit,debit);
my ($t,$r)
while ( (($t,$r)=$p->get_record()) && $t) {
my $amt=$r->{Amount};
if ($t eq debit) {
...
}
}

XML::Records provides a single interface for processing XML data on a stream-oriented, tree-oriented, or record-oriented basis. A subclass of XML::TokeParser, it adds methods to read "records" and tree fragments from XML documents.

In many documents, the immediate children of the root element form a sequence of identically-named and independent elements such as log entries, transactions, etc., each of which consists of "field" child elements or attributes. You can access each such "record" as a simple Perl hash.

You can also read any element and its children into a lightweight tree implemented as a Perl hash, or feed the contents of any element and its children into a SAX handler (making it possible to process "records" with modules like XML::DOM or XML::XPath).

<<less
Download (0.007MB)
Added: 2006-09-19 License: Perl Artistic License Price:
1130 downloads
Multi Purpose Scanner 0.03

Multi Purpose Scanner 0.03


Multi Purpose Scanner is a simple scanner written in C that starts a number of child processes. more>>
Multi Purpose Scanner is a simple scanner written in C that starts a number of child processes, connects to a list of IP addresses, and logs a certain number of characters to standard out or a file.
Low band use is one consecuence of a single connection per child that recieve an only defined num of characters.
Main features:
- $ mpscan -e -p 25 -t 15 -r 100 -T 20 -R 192.168.1.0-10
- Fast mp-scan 0.04-testing ...
- Total ip: 11
- 11/11 91% 192.168.1.10
- Generated 11 ip in 0.199 seconds
- Ip range parsed... 11 ip found
- Scan on 25 started...
- 0:192.168.1.0 -> Network is unreachable
- 3:192.168.1.3 -> Connection refused
- 2:192.168.1.2 -> Connection refused
- 1: 192.168.1.1 -> 220 zeus.olimpo.hm ESMTP Postfix (Debian/GNU)
- 6:192.168.1.6 -> No route to host
- 5:192.168.1.5 -> connected but no data retrived within 7 sec
- 4:192.168.1.4 -> No route to host
- 8:192.168.1.8 -> connect timeout after 15
- 7:192.168.1.7 -> No route to host
- 9:192.168.1.9 -> No route to host
- 10:192.168.1.10 -> No route to host
- Waiting for child dead...
- Scanned 10 ip in 3.14821 seconds
- Scan ended... enjoy the result
Enhancements:
- added T and I option,
- added changelog,
- added debian rules,
- added man page,
- Makefile created.
<<less
Download (0.007MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1210 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5