Main > Free Download Search >

Free total drama island software for linux

total drama island

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 544
LOST island 0.1

LOST island 0.1


LOST island is a superb KDM theme featuring a LOST wallpaper. more>>
LOST island is a superb KDM theme featuring a LOST wallpaper.

<<less
Download (MB)
Added: 2007-03-08 License: GPL (GNU General Public License) Price:
965 downloads
Set::IntSpan::Island 0.03

Set::IntSpan::Island 0.03


Set::IntSpan::Island is a Perl extension for Set::IntSpan to handle islands and covers. more>>
Set::IntSpan::Island is a Perl extension for Set::IntSpan to handle islands and covers.

SYNOPSIS

use Set::IntSpan::Island

# inherits normal behaviour from Set::IntSpan
$set = Set::IntSpan::Island->new( $set_spec );
# special two-value input creates a range a-b
$set = Set::IntSpan::Island->new( $a,$b );

# equivalent to $set->cardinality($another_set)->size;
if ($set->overlap( $another_set )) { ... }

# negative if overlap, positive if no overlap
$distance = $set->distance( $another_set );

# remove islands shorter than $minlength
$set = $set->remove_short( $minlength );

# fill holes up to $maxholesize
$set = $set->fill( $maxholesize );

# return a set composed of islands of $set that overlap $another_set
$set = $set->find_island( $another_set );

# return a set comopsed of the nearest non-overlapping island(s) to $another_set
$set = $set->nearest_island( $another_set );

# construct a list of covers by exhaustively intersecting all sets
@covers = Set::IntSpan::Island->extract_cover( { id1=>$set1, id2=>set2, ... } );
for $cover (@covers) {
($coverset,@ids) = ($cover->[0], @{$cover->[1]});
print "cover",$coverset->run_list,"contains sets",join(",",@ids);
}

This module extends the Set::IntSpan module by Steve McDougall. It implementing methods that are specific to islands and covers. Set::IntSpan::Island inherits from Set::IntSpan.

Terminology

An integer set, as represented by Set::IntSpan, is a collection of islands (or spans) on the integer line

...-----xxxx----xxxxxxxx---xxxxxxxx---xx---x----....

Islands are disjoint and contiguous, by definition, and may be represented by their own Set::IntSpan object. Regions not in the set that fall between adjacent spans are termed holes. For example, the integer set above is composed of 5 islands and 4 holes. The two infinite regions on either side of the set are not counted as holes within the context of this module.

METHODS

$set = Set::IntSpan::Island->new( $set_spec )

Constructs a set using the set specification as supported by Set::IntSpan.

$set = Set::IntSpan::Island->new( $a, $b )

Extension to Set::IntSpan new method, this double-argument version creates a set formed by the range a-b. This is equivalent to

$set = Set::IntSpan::Island->new("$a-$b")

but permits initialization from a list instead of a string.

$set_copy = $set->duplicate()

Creates a copy of $set.

$overlap_amount = $set->overlap( $another_set );

Returns the size of intersection of two sets. Equivalent to

$set->intersect( $another_set )->size;

$d = $set->distance( $another_set )

Returns the distance between sets, measured as follows. If the sets overlap, then the distance is negative and given by

$d = - $set->overlap( $another_set )

If the sets do not overlap, $d is positive and given by the distance on the integer line between the two closest islands of the sets.

$d = $set->sets()

Returns all spans in $set as Set::IntSpan::Island objects. This method overrides the sets method in Set::IntSpan in order to return sets as Set::IntSpan::Island objects.

$set = $set->excise( $minlength )

Removes all islands within $set smaller than $minlength.

$set = $set->fill( $maxlength )

Fills in all holes in $set smaller than $maxlength.

$set = $set->find_islands( $integer )

Returns a set containing the island in $set containing $integer. If $integer is not in $set, an empty set is returned.

$set = $set->find_islands( $another_set )

Returns a set containing all islands in $set intersecting $another_set. If $set and $another_set have an empty intersection, an empty set is returned.

$set = $set->nearest_island( $integer )

Returns the nearest island(s) in $set that contains, but does not overlap with, $integer. If $integer lies exactly between two islands, then the returned set contains these two islands.

$set = $set->nearest_island( $another_set );

Returns the nearest island(s) in $set that intersects, but does not overlap with, $another_set. If $another_set lies exactly between two islands, then the returned set contains these two islands.

$cover_data = Set::IntSpan::Island->extract_covers( $set_hash_ref )

Given a $set_hash reference

{ id1=>$set1, id2=>$set2, ..., idn=>$setn}

where $setj is a finite Set::IntSpan::Island object and idj is a unique key, extract_covers performs an exhaustive intersection of all sets and returns a list of all covers and set memberships. For example, given the id/runlist combination

a 10-15
b 12
c 14-20
d 25

The covers are

10-11 a
12 a b
13 a
14-15 a c
16-20 c
21-24 -
25 d

The cover data is returned as an array reference and its structure is

[ [ $cover_set1, [ id11, id12, id13, ... ] ],
[ $cover_set2, [ id21, id22, id23, ... ] ],
...
]

If a cover contains no elements, then its entry is

[ $cover_set, [ ] ]

$island = $set->num_islands

Returns the number of islands in the set.

$island = $set->at_island( $island_index )

Returns the island indexed by $island_index. Islands are 0-indexed. For a set with N islands, the first island (ordered left-to-right) has index 0 and the last island has index N-1.

If $island_index is negative, counting is done back from the last island (c.f. negative indexes of Perl arrays).

$island = $set->first_island

Returns the first island of the set as a Set::IntSpan::Island object. As a side-effect, sets the iterator to the first island.

If the set is empty, returns undef.

$island = $set->last_island

Returns the last island of the set as a Set::IntSpan::Island object. As a side-effect, sets the iterator to the last island.
If the set is empty, returns undef.

$island = $set->next_island

Advances the iterator forward by one island, and returns the next island. If the iterator is undefined (e.g. not previously set by first()), the first island is returned.
Returns undef if the set is empty or if no more islands are available.

$island = $set->prev_island

Reverses the iterator backward by one island, and returns the previous island. If the iterator is undefined (e.g. not previously set by last()), the last island is returned.

Returns undef if the set is empty or if no more islands are available.

$island = $set->current_island

Returns the island at the current iterator position.

Returns undef if the set is empty or if the iterator is not defined.

<<less
Download (0.009MB)
Added: 2007-07-23 License: Perl Artistic License Price:
824 downloads
Math::TotalBuilder 1.10

Math::TotalBuilder 1.10


Math::TotalBuilder is a Perl module to build a whole total out of valued pieces. more>>
Math::TotalBuilder is a Perl module to build a whole total out of valued pieces.

SYNOPSIS

use Math::TotalBuilder;

my %lsd = ( pound => 240, shilling => 20, penny => 1 );

# units for 952 pence
my %tender = build(%lsd, 952);

# total value of 3, 21, 98
my $wealth = total(%lsd, { pound => 3, shilling => 21, penny => 98 });

# best better representation of 18, 6, 40
my %moolah = build(%lsd,
total (%lsd, { pound => 18, shilling => 6, penny => 40 }));

This module provides two subroutines, build and total, which can be used to handle quantities of valued items. These can be used to build the proper tender to represent a quantity of money, to compose a mass from standard weights, to convert a difference of seconds to a set of time units, or other similar calculations.

<<less
Download (0.005MB)
Added: 2006-09-26 License: Perl Artistic License Price:
1123 downloads
TEA Total 0.4

TEA Total 0.4


TEA Total is a very small 128 bit private key based encryption/decryption system . more>>
TEA Total is a very small 128 bit private key based encryption/decryption system which uses the block variant of TEA (Tiny Encryption Algorithm).

TEA is said to be several times faster than DES, as well as being much smaller and possibly more secure. It also isnt encumbered by any patents and the reference implementation is in the public domain.

Currently TEA Total only supports encryption and decryption of files (with optional compression and/or Base64 ASCII encoding). I am writing a set of TEA based encrypted tunnel programs which will allow you to wrap applications such that their input and output will be transparently forwarded over a network in encrypted form.

About the name: TEA Total is a play on the TEA encryption algorithm which is at the heart of the package, and the phrase "tee total"; a term used to refer to a person who does not drink alcohol. This is appropriate because I am tee total myself.

To build TEA Total in a Unix type environment, edit config.inc to select the options you want to build, your install prefix, and your architecture type, then type make. Check that the compares succeed, then run make install (possibly as root).

After it builds, it will run through a set of self tests. Read the output carefully to make sure that they have all passed.

Note that the Makefile uses some GNU-Makeisms, so on systems which have pmake or something else by default, you may have to install gnu make instead and run it with "gmake".

If you are building on a currently unsupported architecture type, you will need to add a new architecture type description to config.inc and arch.h.

The program can be installed using "make install".
<<less
Download (0.017MB)
Added: 2006-07-14 License: GPL (GNU General Public License) Price:
1199 downloads
Ultima Iris 2.0

Ultima Iris 2.0


Ultima Iris is a Ultima online client total 3D. more>>
Ultima Iris is a Ultima online client total 3D.

Iris2 is a 3D/2D game client for the popular Massive Multiplayer Role Playing Game "Ultima Online" (tm). Adding a third dimension to the well-known Ultima Online World, Iris2 allows the player to navigate the gaming environment just like any modern 3d rpg and still retain the unique roleplaying experience that only classic Ultima can provide. Moreover, being compatible with standard UO game servers, the player is not limited to play with only users of Iris but may also seamlessly interact with players using standard 2d clients.

<<less
Download (MB)
Added: 2007-05-24 License: Freeware Price:
894 downloads
Stormbaan Coureur 1.5.2

Stormbaan Coureur 1.5.2


Stormbaan Coureur is a simulated obstacle course for automobiles. more>>
Stormbaan Coureur is a simulated obstacle course for automobiles. n this game, your objective is to drive your car along an obstacle course. Success depends on total control of the car, and making use of the laws of physics.
Enhancements:
- New name
- Extended track with half pipe jump
- Extended track with turn tables
- Fixed joystick accelerator axis assigment
- Softened the suspension
- Added brake-light
- Added reverse-gear-light
- Improved leaderboard
- Added respawn points
<<less
Download (3.1MB)
Added: 2007-08-24 License: GPL (GNU General Public License) Price:
799 downloads
arianne 0.12

arianne 0.12


arianne is a multiplayer online game engine project. more>>
Arianne is a multiplayer online games framework and engine to develop turn based and real time games.

It provides a simple way of creating games on a portable and robust server architecture. The server is coded in Java and uses Python for your game description, provides a MySQL backend and uses an UDP transport channel to communicate with dozens of players.

Our reference client engines are coded using Java and the C language in order to achieve maximum portability.

Arianne has been in development since 1999 and has evolved from a tiny application written in pseudo-C++ to a powerful, expandable but simple server framework, running on the Java platform, and a portable client framework, written in bare C to allow total portability of ariannes clients. Ariannes server is totally client agnostic.

Since the beginning, the key concept at the heart of Ariannes development has been KISS: Keep it simple, stupid!

Arianne games are playable. It now hosts several games:

* a multiplayer Gladiators fighting game
* a multiplayer Pacman game

All our efforts are supported by ariannes server: Marauroa.

Marauroa is completely written in Java using a multithreaded server architecture with a UDP oriented network protocol, a MySQL based persistence engine and a flexible game system. The game system is totally expandable and modifiable by game developers and is able to run Python scripts defining the games rules.

Marauroa is based on a design philosophy we called Action/Perception. Each turn a perception is send to the clients explaining what they currently perceive. Clients can ask the server to perform any action in their name using actions. Marauroa is totally game agnostic and makes very little assumptions about what are you trying to do, allowing a great freedom to create any game type.

Bugs are facts of life, they just happen.

On Arianne we care about code quality so code is fully tested using Test Units with JUnit and cppunit, so all modules are tested for most common cases, allowing a better quality software to be deployed.

The name originated from the Greek name Ariadne. (Latin; Arianna and from French; Arianne). Ariadne is a famous character in Greek mythology. She was the daughter of King Minos of Crete and she was in love with Theseus, the Athenian hero who killed the Minotaur ( a half human, half bull creature).

Theseus married her, however, then later left her alone on the island of Naxos. Ariadne later married Dionisos the God of Wine. The name Ariadne originates from the ancient Greek words ari which means intelligent and adnis which means pure (as in a virgin). Hence, the daughters of the Romans and Greeks where often called by this name.
<<less
Download (0.05MB)
Added: 2005-04-01 License: GPL (GNU General Public License) Price:
1666 downloads
Tribal Trouble 2 Beta 0.9

Tribal Trouble 2 Beta 0.9


Tribal Trouble 2 Beta 0.9 brings users a fast-paced amazing real time strategy game in the wacky Viking age where pillaging and plundering were everyone favorite pastimes. more>> Tribal Trouble 2 Beta 0.9 brings users a fast-paced amazing real time strategy game in the wacky Viking age where pillaging and plundering were everyone favorite pastimes.

Create your own Viking chieftain (or chieftess), sail on quests to foreign places, challenge other online players to battle and then go spend your loot on more Viking gear!

Enhancements:

  • Number of players on each island shown on the Hall map.
  • Players can create their own rooms in the Hall.
  • The Lur Blaster will no longer lose energy if he is stunned while playing a tune.
  • Initial cease-fire period reduced in treasure games to avoid tower axemen rushing.

Requirements: Java 2 Standard Edition Runtime Environment


<<less
Added: 2009-05-06 License: Freeware Price: FREE
811 downloads
FET for Linux 5.7.5

FET for Linux 5.7.5


FET is a free timetabling program for schools, high-schools or universities more>> Main features:
- FET is free software (open source). You can freely use, copy, modify and re-distribute it, as GNU/GPL permits (but please consider a donation)
- Localized to English, French, Catalan, Romanian, Malay, Polish, Turkish, Dutch, German, Hungarian and Macedonian (maybe incompletely)
- Fully automatic generation algorithm, allowing also semi-automatic or manual allocation
- Platform independent implementation, allowing running on GNU/Linux, Windows, Mac and any system that Qt supports
- Powerful flexible modular xml format for the input file, allowing editing with an xml editor or by hand (besides FET)
- Possibility to view the currently generated timetable without stopping the ongoing simulation
- The resulted timetables will be exported into xml and html formats
- Very flexible students (pupils) structure, organized into sets: years, groups and subgroups. FET allows overlapping years and groups and non-overlapping subgroups. You can even define individual students (as separate sets)
- Possibility to consider a weight (percentage) for each constraint, from 0% to 100%
- Maximum total number of hours (periods) per day: 30 (can be increased, but until now nobody suggested a larger value)
- Maximum number of working days per week: 14 (can be increased, but until now nobody suggested a larger value)
- Maximum total number of teachers: 700 (can be increased, but until now nobody suggested a larger value)
- Maximum total number of subgroups (sets) of students: 5000 (can be increased, but until now nobody suggested a larger value)
- Maximum total number of subjects: 1000 (can be increased, but until now nobody suggested a larger value)
- Virtually unlimited number of subject tags
- Maximum number of activities: 2000 (can be increased, but until now nobody suggested a larger value)
- Maximum number of rooms: 300 (can be increased, but until now nobody suggested a larger value)
<<less
Download (4.02MB)
Added: 2009-04-24 License: Freeware Price:
185 downloads
 
Other version of FET for Linux
FET for Linux 5.5.9(percentage) for each constraint, from 0% to 100% - Maximum total number of hours (periods) per ... : 700 (can be increased, but until now nobody suggested a larger value) - Maximum total number of
License:Freeware
Download (2.9MB)
192 downloads
Added: 2009-04-17
Debian Installed Package Information 0.2

Debian Installed Package Information 0.2


Debian Installed Package Information shows the current debian installed packages. more>>
Debian Installed Package Information shows the current debian installed packages with the ability to explore and show the contents, shows the stats and description of the suggested and recommended packages and also the policy and changelogs.
Debian Installed Package Information try to find screenshots of the suggested and recommended packages.
Enhancements:
- Added Screenshots for Suggested and Recommended packages
- Added Info about total packages Installed
- Added Version of Suggested and Recommended packages
- Miscelaneous dessign graphic changes
- Bug finding Suggested and Recommended packages installed solved.
- Add fast search package functions.
<<less
Download (0.005MB)
Added: 2006-05-02 License: GPL (GNU General Public License) Price:
1273 downloads
wxRemind 0.9.11

wxRemind 0.9.11


wxRemind is a wxPython-based front-end for Remind, a powerful calendar and alarm application. more>>
wxRemind is a wxPython-based front-end for Remind, a powerful alarm and calendar application. Similar to the curses-based Wyrd, the display features a calendar and daily event list suitable for visualizing your schedule at a glance.

Dates and associated events can be quickly selected either with the mouse or cursor keys, and dates in the calendar are color coded to reflect the total duration of scheduled events.

wxRemind integrates with an external editor of your choice to make editing of reminder files more efficient, and provides hotkeys to quickly access the most common Remind options.

<<less
Download (0.089MB)
Added: 2007-07-04 License: GPL (GNU General Public License) Price:
842 downloads
Agata Report 7.2

Agata Report 7.2


Agata Report is a cross-platform database reporting tool with graph generation and a query tool. more>>
Agata Report is a cross-platform database reporting tool with graph generation and a query tool that allows you to get data from PostgreSQL, MySQL, SQLite, Oracle, DB2, MS-SQL, Informix, InterBase, Sybase, or Frontbase and export that data as PostScript, plain text, HTML, XML, PDF, or spreadsheet (CSV) formats through its graphical interface.

You can also define subtotals, levels and a grand total for the report, merge the data into a document, generate address labels, or even generate a complete ER-diagram from your database.

<<less
Download (3.7MB)
Added: 2005-08-05 License: GPL (GNU General Public License) Price:
905 downloads
TA3D 0.3.2

TA3D 0.3.2


TA3D is a Total Annihilation engine. more>>
TA3D is a remake of Total Annihilations engine in full 3D with OpenGl&Allegro. Installing TA3D over Total Annihilation will port Total Annihilation to full 3D!!

TA3D loads maps,units,and more directly from Total Annihilation content. It adds some graphical effects like advanced particle effects for explosions,smoke,... and lots of things you would expect from a 3D engine.

<<less
Download (1.1MB)
Added: 2007-06-25 License: Freeware Price:
861 downloads
Contrast Autostretch 1.04

Contrast Autostretch 1.04


Contrast Autostretch is a simple plug-in does an automatic contrast stretch. more>>
Contrast Autostretch is a simple plug-in does an automatic contrast stretch. For each channel in the image, it finds the minimum and maximum values, and uses that information to stretch the individual channels histograms to the full contrast range.

For some images it may do just what you want; for others it may be total crap. If the latter, you may want to consider using the Normalize plug-in by Adam Moss.

<<less
Download (0.005MB)
Added: 2006-09-21 License: GPL (GNU General Public License) Price:
1130 downloads
Interactive Bandwidth Monitor 1.4

Interactive Bandwidth Monitor 1.4


Ibmonitor is an interactive Linux console application which shows bandwidth consumed on all interfaces. more>>
Ibmonitor is an interactive Linux console application which shows bandwidth consumed on all interfaces. This project is different from existing similar utilities in that it can show the values in Kbits/sec (Kbps) and Kbytes/sec (KBps) simultaneously. It also displays the total data transferred in KB/MB/GB dynamically shifting the unit to adjust available field width.Also there are command line switches which allow to choose whether to display maximum and average bandwidth.
ibmonitor responds to certain key presses while running and can dynamically change its output display format.
Main features:
- Shows received, transmitted and total bandwidth of each interface
- Calculates and displays the combined value of all interfaces
- Diplays total data transferred per interface in KB/MB/GB
- Values can be displayed in Kbits/sec(Kbps) and/or KBytes/sec(KBps)
- Can show maximum bandwidth consumed on each interface since start of utility
- Can show average bandwidth consumption on each interface since start of utility
- The output with all features (max, avg and display in Kbps and KBps) easily fits on a 80x24 console or xterm
- Can interactively change its output display format depending on key pressed by user.
Enhancements:
- The header text is now displayed immediately after starting
<<less
Download (0.016MB)
Added: 2006-10-13 License: GPL (GNU General Public License) Price:
1112 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5