Main > Free Download Search >

Free astaroth critical finish software for linux

astaroth critical finish

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 561
Critical Mass 1.0.1

Critical Mass 1.0.1


Critical Mass (Critter) is an SDL/OpenGL space shootem up game. more>>
Critical Mass (aka Critter) is an SDL/OpenGL space shootem up game. Critical Mass project currently runs on Mac OS X, Windows, and Linux.

The latter is my main development platform. Other platforms supported by SDL/OpenGL may also work with a bit of work.
<<less
Download (4.9MB)
Added: 2006-07-16 License: GPL (GNU General Public License) Price:
1213 downloads
Advanced Bash Scripting Guide 5.0

Advanced Bash Scripting Guide 5.0


The Advanced Bash Scripting Guide is both a reference and a tutorial on shell scripting. more>>
This tutorial assumes no previous knowledge of scripting or programming, but progresses rapidly toward an intermediate/advanced level of instruction . . . all the while sneaking in little snippets of UNIX wisdom and lore.
Advanced Bash Scripting Guide serves as a textbook, a manual for self-study, and a reference and source of knowledge on shell scripting techniques.
The exercises and heavily-commented examples invite active reader participation, under the premise that the only way to really learn scripting is to write scripts.
Enhancements:
- This release adds a cross-linked index (the final missing critical feature in this project), other new material (including a new appendix and a couple of new example scripts), and bugfixes.
- This is an important update.
<<less
Download (0.74MB)
Added: 2007-06-21 License: (FDL) GNU Free Documentation License Price:
892 downloads
Statistics::Distributions 1.02

Statistics::Distributions 1.02


Statistics::Distributions is a Perl module for calculating critical values and upper probabilities of common statistical distos. more>>
Statistics::Distributions is a Perl module for calculating critical values and upper probabilities of common statistical distributions.

SYNOPSIS

use Statistics::Distributions;

$chis=Statistics::Distributions::chisqrdistr (2,.05);
print "Chi-squared-crit (2 degrees of freedom, 95th percentile "
."= 0.05 level) = $chisn";

$u=Statistics::Distributions::udistr (.05);
print "u-crit (95th percentile = 0.05 level) = $un";

$t=Statistics::Distributions::tdistr (1,.005);
print "t-crit (1 degree of freedom, 99.5th percentile = 0.005 level) "
."= $tn";

$f=Statistics::Distributions::fdistr (1,3,.01);
print "F-crit (1 degree of freedom in numerator, 3 degrees of freedom "
."in denominator, 99th percentile = 0.01 level) = $fn";

$uprob=Statistics::Distributions::uprob (-0.85);
print "upper probability of the u distribution (u = -0.85): Q(u) "
."= 1-G(u) = $uprobn";

$chisprob=Statistics::Distributions::chisqrprob (3,6.25);
print "upper probability of the chi-square distribution (3 degrees "
."of freedom, chi-squared = 6.25): Q = 1-G = $chisprobn";

$tprob=Statistics::Distributions::tprob (3,6.251);
print "upper probability of the t distribution (3 degrees of "
."freedom, t = 6.251): Q = 1-G = $tprobn";

$fprob=Statistics::Distributions::fprob (3,5,.625);
print "upper probability of the F distribution (3 degrees of freedom "
."in numerator, 5 degrees of freedom in denominator, F = 6.25): "
."Q = 1-G = $fprobn";

This Perl module calculates percentage points (5 significant digits) of the u (standard normal) distribution, the students t distribution, the chi-square distribution and the F distribution. It can also calculate the upper probability (5 significant digits) of the u (standard normal), the chi-square, the t and the F distribution. These critical values are needed to perform statistical tests, like the u test, the t test, the F test and the chi-squared test, and to calculate confidence intervals.

If you are interested in more precise algorithms you could look at: StatLib: http://lib.stat.cmu.edu/apstat/ ; Applied Statistics Algorithms by Griffiths, P. and Hill, I.D., Ellis Horwood: Chichester (1985)

<<less
Download (0.006MB)
Added: 2007-05-23 License: Perl Artistic License Price:
884 downloads
Cluster Installation Finishing Scripts 3.1.1

Cluster Installation Finishing Scripts 3.1.1


Cluster Installation Finishing Scripts is a post-installation adjustment system for compute nodes. more>>
The Finishing Scripts for Cluster Installations handle specific post-installation configuration that might not be convienent nor possible using existing cluster installation methods.

The usual installation process is used to build a reasonably configured node, and the system then reboots into normal mode, achieves network visibility, and executes the finishing script.

The finishing script handles all of the finer details of installing packaged or non-packaged software, tweaking installation, setting host/net specific parameters/files, etc. It is controlled via a single, easily modified script.
<<less
Download (0.011MB)
Added: 2005-04-07 License: Artistic License Price:
1661 downloads
check_writable 1.0

check_writable 1.0


check_writable is a Nagios plugin that checks if one or more directories are writable. more>>
check_writable is a Nagios plugin that checks if one or more directories are writable by checking that the supplied directory is indeed a directory, checking if the the filesystem permissions are OK, creating a temporary file, writing random data to the temporary file, and reading it back.

It returns a critical status if one of the tests fails.

<<less
Download (0.012MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
815 downloads
Sort::External 0.16

Sort::External 0.16


Sort::External is a Perl module that can sort huge lists. more>>
Sort::External is a Perl module that can sort huge lists.

SYNOPSIS

my $sortex = Sort::External->new( -mem_threshold => 2**24 );
while ( ) {
$sortex->feed($_);
}
$sortex->finish;
while ( defined( $_ = $sortex->fetch ) ) {
&do_stuff_with($_);
}

Problem: You have a list which is too big to sort in-memory.
Solution: "feed, finish, and fetch" with Sort::External, the closest thing to a drop-in replacement for Perls sort() function when dealing with unmanageably large lists.

How it works:

Cache sortable items in memory. Periodically sort the cache and empty it into a temporary sortfile. As sortfiles accumulate, interleave them into larger sortfiles. Complete the sort by sorting the input cache and any existing sortfiles into an output stream.

Note that if Sort::External hasnt yet flushed the cache to disk when finish() is called, the whole operation completes in-memory.

In the CompSci world, "internal sorting" refers to sorting data in RAM, while "external sorting" refers to sorting data which is stored on disk, tape, punchcards, or any storage medium except RAM -- hence, this modules name.

Stringification

Items fed to Sort::External will be returned in stringified form (assuming that the cache gets flushed at least once): $foo = "$foo". Since this is unlikely to be desirable when objects or deep data structures are involved, Sort::External throws an error if you feed it anything other than simple scalars.

Taint and UTF-8 flags

Expert: Sort::External does a little extra bookkeeping to sustain each items taint and UTF-8 flags through the journey to disk and back.

METHODS

new()
my $sortscheme = sub { $Sort::External::b $Sort::External::a };
my $sortex = Sort::External->new(
-mem_threshold => 2**24, # default: 2**20 (1Mb)
-cache_size => 100_000, # default: undef (disabled)
-sortsub => $sortscheme, # default sort: standard lexical
-working_dir => $temp_directory, # default: see below
);

Construct a Sort::External object.

-mem_threshold -- Allow the input cache to consume approximately -mem_threshold bytes before sorting it and flushing to disk. Experience suggests that the optimum setting is somewhere between 2**20 and 2**24: 1-16Mb.
-cache_size -- Specify a hard limit for the input cache in terms of sortable items. If set, overrides -mem_threshold.
-sortsub -- A sorting subroutine. Be advised that you MUST use $Sort::External::a and $Sort::External::b instead of $a and $b in your sub. Before deploying a sortsub, consider using a GRT instead, as described in the Sort::External::Cookbook. Its probably a lot faster.
-working_dir -- The directory where the temporary sortfiles will reside. By default, this directory is created using File::Temps tempdir() command.
feed()

$sortex->feed( @items );

Feed one or more sortable items to your Sort::External object. It is normal for occasional pauses to occur during feeding as caches are flushed and sortfiles are merged.

finish()
# if you intend to call fetch...
$sortex->finish;

# otherwise....
use Fcntl;
$sortex->finish(
-outfile => sorted.txt,
-flags => (O_CREAT | O_WRONLY),
);

Prepare to output items in sorted order.

If you specify the parameter -outfile, Sort::External will attempt to write your sorted list to that location. By default, Sort::External will refuse to overwrite an existing file; if you want to override that behavior, you can pass Fcntl flags to finish() using the optional -flags parameter.

Note that you can either finish() to an -outfile, or finish() then fetch()... but not both.

fetch()
while ( defined( $_ = $sortex->fetch ) ) {
&do_stuff_with($_);
}

Fetch the next sorted item.

<<less
Download (0.022MB)
Added: 2007-05-21 License: Perl Artistic License Price:
886 downloads
Date Calculator 0.1

Date Calculator 0.1


Date Calculator is a date calculator application written in pyqt. more>>
Date Calculator is a date calculator application written in pyqt. You can add or subtract days to a date, or calculate the number of days between two dates.

You can also choose to run your calculations using only working days and/or calculate inclusive of the start/end dates. There is a comprehensive gui for setting holiday dates.

Holidays can be fixed annual dates, variable dates, such as "the 1st Monday in June" or "the closest Monday to 22 February". This utility could be useful for people who need to be able to calculate time critical deadlines, such as lawyers.

Date Calculator application is also available as a superkaramba theme. You can download both from the download link.

<<less
Download (0.19MB)
Added: 2006-04-03 License: GPL (GNU General Public License) Price:
1307 downloads
Test-AutoBuild 1.2.0

Test-AutoBuild 1.2.0


Test-AutoBuild is a framework for performing continuous, unattended, automated software builds. more>>
Test-AutoBuild is a framework for performing continuous, unattended, automated software builds.
Test-AutoBuild pulls code from source control repositories (CVS, Perforce, and GNU Arch are currently supported), calculates inter-module dependencies, builds each module, and then generates HTML status pages, copies binary packages to Web/FTP server roots, and sends email status alerts. It is written with flexibility and extensibility in mind to make it easy to integrate with a wide range of development tools and languages.
Enhancements:
- The backend build engine has been refactored into a modular workflow engine.
- Support for Mercurial SCM repos has been added, and existing SCM implementations extended to allow extraction of changelogs.
- Performance and scalability are improved by hard linking files instead of copying.
- Error reporting and logging has been enhanced to make debugging of crashes/problems simpler.
- Major work has been done on documentating the tools, configuration file format, and developer APIs.
- The coverage of the test suite has been increased to cover a large portion of the critical code sub-systems.
<<less
Download (0.20MB)
Added: 2006-08-23 License: GPL (GNU General Public License) Price:
1157 downloads
World Domination 0.3

World Domination 0.3


World Domination is a Real Time Strategy game inspired by the board game Axis and Allies utilizing the Stratagus engine. more>>
World Domination is a Real Time Strategy game inspired by the board game Axis and Allies utilizing the Stratagus engine.
World Domination will emphasize strategy and not "see who can build the most units the fastest." Resources are not gathered like in other RTSs, rather they are distributed after a fixed interval of time based on how much land a player occupies.
Enhancements:
- Added support for AI.
- Fixed may bugs and desyncs so you should be able to finish a network game without it crashing.
- New Graphics.
- Some new Maps
<<less
Download (3.3MB)
Added: 2006-02-16 License: GPL (GNU General Public License) Price:
1348 downloads
Reliable Response Notification 2.0

Reliable Response Notification 2.0


Reliable Response Notification provides guaranteed delivery of critical messages to a wide range of devices. more>>
Reliable Response Notification provides guaranteed delivery of critical messages to a wide range of devices. The project guarantees that every emergency will have one, and only one, person responding and taking charge of the recovery.
For integrated services, like some network monitors, help-desk packages, and security suites, Reliable Response Notification allows the user to update records via their mobile devices. It is available as either a standalone server or as a hosted service.
Enhancements:
- The product supports three types of groups: broadcast, escalation and on-call.
- Many devices are supported, including email, SMS, text-to-speech, Jabber, GTalk, SameTime IM, and alphanumeric pagers.
- Integrations for a number of packages are available.
- There is an easy system to add new integrations as needed.
<<less
Download (MB)
Added: 2007-05-31 License: Other/Proprietary License Price:
878 downloads
libhcritsec 0.20

libhcritsec 0.20


hcritsec is a C++ class for Critical Sections in programs. more>>
hcritsec is a C++ class for Critical Sections in programs.
hcritsec can be used to define a critical section in a program. It can be used in a recursive way. So functions that are nested can call the enter and leave functions recursively (see section Synopsys).
A critical section class is typically shared between threads, or is part of an object or variable that is shared between threads.
It can be used to gain exclusive access to shared resources or variables.
Synopsys
(...)
void thread_class::calc(int *t)
{
S->enter();
*t+=1;
S->leave();
}
void thread_class::run(void)
{
for(i=0;ienter();
calc(t);
S->leave();
}
}
(...)
int main()
{
hcrisec S;
int t=0;
thread_class t1(&S,&t),t2(&s,&t)
t1.start();
t2.start();
thread_class::join(t1,t2);
return 0;
}
Restrictions
- You may not copy an object of class critsec. Allways use a pointer to share the object between threads.
- If hcritsec throws a fatal error, this will allways be of type std::string.
<<less
Download (0.009MB)
Added: 2006-11-17 License: Artistic License Price:
1071 downloads
Ruby Crypt 1.1.4

Ruby Crypt 1.1.4


Ruby Crypt library is a pure-ruby implementation of a number of popular encryption algorithms. more>>
Ruby Crypt library is a pure-ruby implementation of a number of popular encryption algorithms. Block cyphers currently available include Blowfish, GOST, IDEA, and Rijndael (AES). Cypher Block Chaining (CBC) has been implemented. Twofish, Serpent, and CAST256 are planned for release soon.
Crypt is written entirely in ruby so deployment is simple - no platform concerns, no library dependencies, nothing to compile.
Performance is what you would expect from a pure-ruby implementation: it is adequate for shorter messages but I wouldnt try to encrypt my whole disk with it. If performance is critical then you might want to try ezcryptos interface to OpenSSL.
Enhancements:
- This release is available as a Ruby gem for easy installation.
- A defect in Blowfish was fixed.
<<less
Download (0.020MB)
Added: 2006-08-10 License: Public Domain Price:
1172 downloads
The Hiker Application Framework 0.9.1

The Hiker Application Framework 0.9.1


Hiker is a mobile Linux Application Framework. more>>
Hiker is a mobile Linux Application Framework. The project provides a set of services to install and manage applications, and the ability to integrate communication between applications, enabling a seamless user experience for music, messaging, and other advanced features on mobile phones.

It also includes security features designed to prevent unauthorized use of phone services or tampering with critical system data. Hiker contains several services or “managers”: Bundle Manager, Security Policy Framework (SPF), Exchange Manager, Notification Manager, Application Server, Attention Manager, Alarm Manager, and Global Settings Services.
<<less
Download (3.6MB)
Added: 2006-12-27 License: MPL (Mozilla Public License) Price:
1031 downloads
Jwapmail 1.1

Jwapmail 1.1


Jwapmail is opensource wap based email client written using PHP. more>>
Jwapmail is opensource wap based email client written using PHP. Jwapmail has been tested at SonyEriccson T28, and Siemens SL45. Any volutenter of testers are welcome.
Main features:
- 1. Email client standard functions
- Jwapmail support the email client standard functions:
- Compose, Reply, Forward, and Folder.
-
- 2. Message Filter (Not finish yet)
- Message Filter is allow user to manage messages in the folder.
-
- 3. User Profile (Not finish yet)
- Allow user to set user profiles standard such as, Name and email address.
-
- 4. Paging (to overcome content size limitaion)
- Due to the vary limitation of content size in WAP GATEWAY, Jwapmail
- deliver content with size not exceded the maximum size (kbytes) where maximum size
- is a variable set in file configuration.
- If the content of message have the size exceed the maximum bytes
- Jwapmail split into several page and deliver each page with paging navigation link
<<less
Download (0.091MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1231 downloads
Bartlby 1.2.8

Bartlby 1.2.8


Bartlby is a network and system monitor. more>>
Bartlby is a network and system monitor, completely written in C, to provide a scalable framework with the ability to monitor networks of various sizes. It consists of a core daemon, several plugins, and a Web GUI (PHP extension). The core daemon checks (over active/passive TCP) services/hosts and notifies users in case of critical service conditions (mail, SMS, ICQ, and custom triggers are supported).

Bartlby provides an open plugin interface to give every administrator an easy to use option to extend the plugin base, and a fully customizable GUI (written in PHP using a C extension). Nearby everything can be controlled via an XML interface.

Demo Username: admin
Demo Password: admin

<<less
Download (1.7MB)
Added: 2007-03-08 License: GPL (GNU General Public License) Price:
962 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5