Main > Free Download Search >

Free entourage 2004 software for linux

entourage 2004

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 155
Tam Jukebox Snapshot-2004-12-07

Tam Jukebox Snapshot-2004-12-07


Tam Jukebox is a jukebox that selects songs with relative frequency depending on how much you think they suck. more>>
A jukebox that selects songs with relative frequency depending on how much you think they suck.

Tam (Track Attribute Manager) jukebox is a system that randomly picks songs to play, and considers every track you have to be in every playlist--until you say otherwise.

<<less
Download (0.20MB)
Added: 2005-07-20 License: GPL (GNU General Public License) Price:
1556 downloads
JabSync 2004-07-14

JabSync 2004-07-14


JabSync is a program intended to synchronize the rosters of two (or more) distinct Jabber accounts. more>>
JabSync is a program intended to synchronize the rosters of two (or more) distinct Jabber accounts. It is written in Python programming language and uses the jabberpy library.
Main features:
- add something to remember servers (jabber/transports) that were previously entered
- add the ability to modify an XML file (not the configuration file) to save the list of jabber servers
- add the ability to modify the XML configuration file to add the transports notincluded in the defaut "Service Browse" of servers.
<<less
Download (0.004MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1225 downloads
LibsX 2004-01-23

LibsX 2004-01-23


LibsX (formerly LibSpeedX) is a C++ multi-platform set of basic libraries (like strings, ini files, etc). more>>
LibsX (formerly LibSpeedX) is a C++ multi-platform set of basic libraries (like strings, ini files, etc) optimized for speed and made from scratch.

LibsXs goal is to make programs like games with basic libraries highly optimized for speed and without unnecesary checks or code, so when a project starts, the basic functions are very fast (in contrast to MFC: CStrings).
<<less
Download (0.027MB)
Added: 2006-03-16 License: LGPL (GNU Lesser General Public License) Price:
1318 downloads
Anti-censorship Tools (proxyTools) 2004.12.2

Anti-censorship Tools (proxyTools) 2004.12.2


ProxyTools is a package of Perl network utilities designed mainly to assist those whose Internet access is censored, unreliable. more>>
ProxyTools is a package of Perl network utilities designed mainly to assist those whose Internet access is censored, unreliable, or otherwise damaged. Uncensored access is provided to any outside service required (Usenet News, Web browsing, IRC, Socks etc.). Setup requires installation of Perl and some modules; this is doable by even a novice MS Windows user with email instruction, allowing help to be provided to those inside these countries from expert users outside.

In pursuit of this rather non-specific goal, some interesting network utilities are already produced. We think the code is interesting in itself, useful in other areas, and would welcome contributions to the overall sum of ideas, concepts and ideals expressed in these tools.

The project is of interest to the following groups of people:

those who live in Internet censoring countries (or corporations, schools, universities) such as the Middle East (United Arab Emirates, Kingdom of Saudi Arabia, Kuwait, Syria), China, Burma, etc.
those who would wish to assist those in the group above.
those who are interested in Perl code dealing with many aspects of networks at the socket level, and transactions using HTTP proxies. One tool in this project offers a failover capability, and intelligent choice, between various censor-bypassing strategies and network paths, offering the user a robust, uncensored connection even in a low bandwidth, unreliable, packet filtered and proxy-poor environment.
those who administer the firewalls which do the censoring, and those who might be considering this.
those who are just curious about the current techniques used by the first group above.
<<less
Download (0.54MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1211 downloads
Kraptor Final 2004

Kraptor Final 2004


Kraptor is a classic shoot em up scroller game, where you must fight against tons of bad dudes. more>>
Kraptor is a classic shoot em up scroller game, where you must fight against tons of bad dudes.
The game offers high speed action, with massive destruction and lots of fun. Kraptor features a powerful engine for 2D shooter scroller games. Massive destruction, powerful weapons, all that you always wanted in this kind of games! It is also multi-platform (DOS, Win32, Linux and more!)
Main features:
- FULL SOURCE CODE AVAILABLE FREE (Under MIT license)
- Works on many platforms, including DOS, Windows and Linux!
- Supports all resolutions, like 320x200, 640x480, 1024x768, etc.; even those bizarre ones, like 160x120, 320x400, etc.
- Uses stereo positional sound (you hear the ships flying around you)
- Has a incredible particle system, that let all sorts of particle effects in the explosions, fire on the ground, the ships going down in flames,and the weapons can let a trail of smoke, beams, etc
- Has a dynamic fire, smoke and explosions system based on layers and on-fly rendering, that let show a massive destruction effect on the air and ground.
- Has a dynamic enviroment sub-engine to render rain, snow, etc.
- The ships explodes into pieces, and the builds on the ground blows up in a chain-explosion effect.
- Enemys of any size, and custom IAs and weapons.
- All kind of animated bad dudes, from tiny ones to big bad bosses.
- All the flying objects cast shadows over the background, with perspective correction.
- Support for animations and cinematic, with sound and subtitles.
- A on-fly translation system with UNICODE and UTF-8 support, that can translate on the fly all the GUIs to other language.
- Multiple weapons for player and enemies.
- Has original music sound-track.
- You can lower/raise the detail level, in low detail, the game runs good even on a 486 DX2!
- Original story, with cool movies.
- Realistic huge hi-res backgrounds levels.
- Original high quality stereo sounds and music
- Support for Spanish and English translation on-fly
- Black market shop to buy new weapons, upgrade ship, etc.
- GUI driven interface like the one used in Unre*l.
- You can Save / Load your game
<<less
Download (10MB)
Added: 2005-08-11 License: GPL (GNU General Public License) Price:
1537 downloads
SIMD Cross-platform headers 2004.10.26

SIMD Cross-platform headers 2004.10.26


SIMD Cross-platform headers is a cross- platform, cross-compiler, cross CPU C/C++ header collection. more>>
SIMD Cross-platform headers is a cross- platform, cross-compiler, cross CPU C/C++ header collection that aids the creation portable vectorized (SIMD) C/C++ code.
SIMD Cross-platform headerst supports (or partially supports) x86 (MMX/SSE/SSE2) GCC and MSVC, PPC Altivec GCC and CodeWarrior, ARM GCC, and software-emulated SIMD.
NOTE: Code must be 16-byte aligned. Align to 16 when allocating memory.
X86/XSCALE (Intel) vs. PowerPC/MIPS
While the PowerPC and MIPS SIMD instructions take 2 source vectors and a destination vector, the Intel platforms only take a source and destination. Example:
PPC/MIPS can do:
C = A + B
X86 can only do:
A = A + B (or A+=B)
Code written either way will work on the X86, and still be faster than 387 math, but preserving the registers takes significant overhead (Disassemble the test program for an example. The prints preserve, the disassembly test does not.) For the fastest code between systems, write your SIMD math as the X86 expects, manually preserving SIMD variables.
At least GCC for PPC doesnt seem to have any issues figuring out how to deal with a source and destination memory address being the same.
Enhancements:
- Created file with some i386, GCC dialect
<<less
Download (0.008MB)
Added: 2006-03-17 License: zlib/libpng License Price:
1319 downloads
NavynOS 2004.07

NavynOS 2004.07


Navyn OS is a gnu/linux distribution based on Gentoo. more>>
NavynOS is a Linux distribution based on Gentoo.

The heart of Navyn OS is kernel 2.6.8.1 and I tried to put the newest versions of software on the cdrom. There is for example xorg 6.7.0, mplayer 1.0, and gimp2.0. Fluxbox is the default window manager, because it is very fast and comfortable, the memory requirements are minimal in contrast to such slow and bloated window managers like KDE or GNOME.

The system was also designed to be easy for iso customizing, so you can add programs to the cdrom image using special scripts. While the system is booting it configures all your hardware ( especially network cards and sound cards ), and all the programs have small hardware requirements.

On the cd there are complete library headers so it is great for compiling programs. I tried to include many programs connected with security and network. There are for example sniffers like dsniff, tcpdumpm and also port scanners: nmap, nessus.
<<less
Download (MB)
Added: 2007-05-17 License: GPL (GNU General Public License) Price:
540 downloads
KBall Final 2004

KBall Final 2004


KBall is a game of skill and reflexes, non violent, suitable for all ages. more>>
KBall is a game of skill and reflexes, non violent, suitable for all ages.
The idea is to move a ball around the map, without falling, without running out of time, and getting the prizes, in order to reach the exit.
The map has different traps, such as slides, pushers, jumps, falls, walls, etc.
Maps are viewed from top view, and the walls and players ball are real-time rendered in beautiful 3D.
Main features:
- Is 100% non-violent FUN - Suitable for ALL ages.
- Also, a easy to use, full map editor included! You can do your OWN maps!!!
- Available with cross-platform support for DOS, Windows, Unix, Linux, BeOS, QNX and MacOS systems.
- Source code also available (under open source license)
- Made in C++, using Allegro game library and other open source tools.
Enhancements:
- New speech sounds for game over and won screen.
- Fixed some engine bugs.
- New levels.
- Removed the "demo" message.
- Entering final stage of release.
- F11 key toggles show or not fps.
- New Windows installer.
<<less
Download (0.067MB)
Added: 2005-08-11 License: GPL (GNU General Public License) Price:
1539 downloads
Bonzai Linux 3.2

Bonzai Linux 3.2


Bonzai Linux has been build to offer a Debian based Desktop-OS that fits on a 180MB CD-R(W). more>>
Bonzai Linux has been build to offer a Debian based Desktop-OS that fits on a 180MB CD-R(W).

The Distribution includes the current stable version of KDE and has been modified for easier installation.

Version 1.5 was released May 20, 2003. Version 3.2 was released January 14, 2004.
<<less
Download (190MB)
Added: 2005-05-16 License: GPL (GNU General Public License) Price:
923 downloads
regular expression parser 1.1

regular expression parser 1.1


regular expression parser is a C++ regexp parser that accomplishes The Open Group specification Issue 6. more>>
regular expression parser is a C++ regexp parser that accomplishes The Open Group specification Issue 6, IEEE Std 1003.1, 2004 Edition.

regular expression parser allows you to parse input using regular expressions, and to retrieve parsed sub-expression matches in a few steps.

<<less
Download (0.33MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
624 downloads
gUnrealTools 1.0 Beta

gUnrealTools 1.0 Beta


gUnrealTools is a program that serves as a set of GUI tools for Unreal Tournament 2004 in Linux. more>>
gUnrealTools is a single program which provides the following GUI tools for Unreal Tournament 2004 in Linux: a cache manager, a umod unpacker, a uz2 compressor/decompressor, and a dedicated server launcher.
It uses a Gtk+ interface, and requires UT2004 retail or the free dedicated server version installed.
Enhancements:
- This version of guts is incomplete, as it is still in Beta stage.
- Yet, all the key functionalities of the tools should be there, as this is a working version.
<<less
Download (0.38MB)
Added: 2005-11-29 License: GPL (GNU General Public License) Price:
1428 downloads
WebService::TestSystem 0.06

WebService::TestSystem 0.06


WebService::TestSystem is a Perl module with Web service for implementing a distributed testing system. more>>
WebService::TestSystem is a Perl module with Web service for implementing a distributed testing system.

my $testsys = new WebService::TestSystem;

# Getting a list of tests foreach my $test (@{$testsys->get_tests()}) { print "$test->{id} $test->{descriptor}n"; }

# Getting a list of hosts foreach my $host (@{$testsys->get_hosts()}) { print "$host->{id} $host->{descriptor}n"; }

# Submitting tests my %request; if (! $testsys->validate_test_request(%request) ) { my %errors = $testsys->get_validation_errors(); } else { my $test_request_id = $testsys->request_test(%request); print "Test request #$test_request_id submittedn"; }

# System Metrics @metrics = $testsys->metrics_test_run_time(2004, 12); @metrics = $testsys->metrics_requests_per_month(2004, all) @metrics = $testsys->metrics_distros_tested_per_month(2004) etc.

WebService::TestSystem presents a programmatic interface (API) for remote interactions with a software testing service. In other words, this provides a set of remote procedure calls (RPCs) for requesting test runs, monitoring systems under test (SUT), and so forth.

<<less
Download (0.039MB)
Added: 2007-03-01 License: Perl Artistic License Price:
967 downloads
Multistat 0.1

Multistat 0.1


Multistat is designed to be a flexible log file parser for multiple game servers. more>>
Multistat is designed to be a flexible log file parser for multiple game servers.

Designed with an extensible plugin interface, it is able to process statistics for any game and output them in any format simply by the use of custom modules.

Currently modules for Halflife, Counterstrike Source, Unreal Tournament 2004, Call of Duty 1, Unreal Tournament, and HTML output are included.

<<less
Download (0.20MB)
Added: 2006-04-27 License: GPL (GNU General Public License) Price:
1276 downloads
Geo::Track::Log 0.02

Geo::Track::Log 0.02


Geo::Track::Log is a Perl module that represent track logs and find a location based on a track log and a date. more>>
Geo::Track::Log is a Perl module that represent track logs and find a location based on a track log and a date.

SYNOPSIS

use Geo::Track::Log;
my $log = new Geo::Track::Log;

# add a point to a track log.
$log->addPoint( {
timestamp => 2004-12-25 12:00:00,
lat => 0.0,
long=> 0.0,
} );

$log->addPoint( {
timestamp => 2004-12-25 13:00:00,
lat => 0.0,
long=> 1.0,
} );

Get our location at a time
my ($pt, $sPt, $ePt) = $log->whereWasI(2004-12-25 12:30:00);
or (a synonym)
my ($pt, $sPt, $ePt) = $log->interpolate(2004-12-25 12:30:00);
(see DESCRIPTION for more)

Load tracklog from a Garnix format file
$log->loadTrackFromGarnix(file handle);

Load Waypoint from a Garnix format file
$log->loadWayFromGarnix(file handle);

Fix the funky Garnix line format
my $pt = $log->fixGarnixTrackLine ( qq( 44? 3 33.23" -123? 5 0.07" 148.0 WGS84 00:50:19-2004/07/12 [1];) )

Load a GPX (GPS XML) format file
$log->loadTrackFromGPX(file handle);

return the earliest point, by time
my $pt = $log->minTimeStamp();

return the latest point, by time
my $pt = $log->maxTimeStamp();

What percent of the way is time $d between the time at points $sPt and $dPt?
my $pct = $self->getPercent($d, $sPt, $ePt);

<<less
Download (0.017MB)
Added: 2006-06-15 License: Perl Artistic License Price:
1226 downloads
Compact Flash Linux Project 1.0p7

Compact Flash Linux Project 1.0p7


The Compact Flash Linux Project is a Linux distribution designed to run on a compact flash card in read-only mode. more>>
The Compact Flash Linux Project is a Linux distribution designed to run on a compact flash card in read-only mode. It is as small as possible, and currently needs around 14 MB.
Compact Flash Linux Project includes OpenSSH, quagga, iptables, hostap, madwifi, wireless-tools, pppoe, tcpdump, bridge-utils, and more. The initial release was v0.1.1, dated January 8, 2004. Version 0.1.4 was released July 23, 2004.
Enhancements:
- Many packages were upgraded.
- The package manager was improved a bit.
<<less
Download (0.17MB)
Added: 2007-02-25 License: GPL (GNU General Public License) Price:
992 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5