Main > Free Download Search >

Free technological singularity software for linux

technological singularity

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 18
Endgame: Singularity 0.26a

Endgame: Singularity 0.26a


Endgame: Singularity is a simulation of a true AI. more>>
Created by accident, all who find you would destroy you. Can you escape?
Endgame: Singularity project is a simulation of a true AI. Go from computer to computer, pursued by the entire world. Keep hidden, and you might have a chance.
Originally created for the Pyweek compo, this version features many bugfixes and enhancements over the compo version. Thanks to Phil Bordelon for many of these fixes.
Enhancements:
- Very Easy mode is actually playable.
<<less
Download (0.44MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
802 downloads
SINGULAR 3.0.2

SINGULAR 3.0.2


SINGULAR is a computer algebra system for polynomial computations. more>>
SINGULAR is a computer algebra system for polynomial computations in commutative algebra, algebraic geometry, and singularity theory.
Its main computational objects are ideals and modules over a large variety of baserings. The baserings are polynomial rings over a field (eg. finite fields, the rationals, floats, algebraic extensions, transcendental extensions), or localizations thereof, or quotient rings with respect to an ideal.
It features fast and general implementations for computing Groebner and standard bases, including Buchbergers algorithm and Moras Tangent Cone algorithm. Its interactive shell and C-like programming language can be extended by libraries written in the SINGULAR programming language.
Main features:
- Main computational objects: ideals/modules over very general polynomial rings over various ground fields.
- Large variety of algorithms implemented in kernel (written in C/C++).
- Many more algorithms implemented as SINGULAR libraries.
- Intuitive, C-like programming language.
- Extensive documentation: Manual (info, ps, and html), Publications.
- Available for most hard- and software platforms: Unix (HP-UX, SunOS, Solaris, Linux, AIX), Windows, Macintosh.
Enhancements:
- This version is mainly a bugfix release, but it also contains some new features.
- Speed was improved for 64-bit architectures.
- The dmod.lib and perron.lib libraries were added.
- center.lib was improved. ncalg.lib was revised.
- New algorithms were added in primdec.lib.
- An improved version of slimgb was incorporated into groebner.
- The module generator (modgen) was improved.
- The build process was improved to build automatically without patches on 64-bit architectures.
<<less
Download (10.5MB)
Added: 2006-08-24 License: GPL (GNU General Public License) Price:
1159 downloads
Stanford Exploration Project Library 6.5.1

Stanford Exploration Project Library 6.5.1


Stanford Exploration Project Library improves the theory and practice of constructing 3-D and 4-D images of the earth. more>>
Stanford Exploration Project Library (or SEP, for short) is an industry-funded academic consortium whose purpose is to improve the theory and practice of constructing 3-D and 4-D images of the earth from seismic echo soundings.
Although most of our research is targeted at improvements in the geophysical survey contracting industry, about half of our sponsors and alumni are in the petroleum industry because we focus on overcoming technological limitations of the geophysical survey industry.
SEP pioneered innovations in migration imaging, velocity estimation, dip moveout and slant stack. Today our focus is on 3-D seismic applications such as velocity estimation, wavefield-continuation prestack migration, multidimensional image estimation, and 4-D (time-lapse) reservoir monitoring.
Besides 3-D reflection seismic data, we undertake small 2-D imaging projects with geophysical data of all kinds. The diversity of applications exercises our judgment and skill at combining fundamentals of statistical signal theory, optimization theory, numerical analysis, and wave propagation theory, and this has led us to numerous improvements and some breakthroughs.
We organize our research to facilitate technology transfer by using a formal method of makefile rules. With these, most of our research results are verified by someone other than the original researcher. Research progress reports at least four years old and all PhD theses are made available to the public through our web site.
Enhancements:
- Numerous major new features and major bugfixes.
<<less
Download (8.5MB)
Added: 2007-08-15 License: Free for non-commercial use Price:
801 downloads
LiveSupport 1.0.2

LiveSupport 1.0.2


LiveSupport is a free and open source automation system for radio stations. more>>
LiveSupport is a free and open source automation system for radio stations.

LiveSupport is the first free and open radio management software that provides live studio broadcast capabilities as well as remote automation in one integrated system.

LiveSupport is capable of combining local audio files and remote web streams. It supports the widely used MP3 and OGG Vorbis file formats.

Radio is still the most powerful method of disseminating news and educational material to disadvantaged groups and in areas with high poverty, scant technological infrastructure, and/or instability. But while radio is extremely effective, the tools available to most community stations are very limited in function. The LiveSupport project seeks to address this by giving stations an open source, end-to-end solution for managing a radio station.

LiveSupport is the first free and open radio management software that provides live studio broadcast capabilities as well as remote automation in one integrated system.

LiveSupports modularity and scalability allows its implementation in a number of use scenarios, ranging from an unmanned broadcast unit accessed from remote through the Internet to a local network of LiveSupport machines in a radio station handling live broadcasts and delivering program automation by accessing a central audio storage system. LiveSupport is capable of combining local audio files and remote web streams, supporting the widely used MP3 format and its open equivalent OGG Vorbis.

As in all Campware products, multilinguality is a central feature in LiveSupport: virtually everything in the user interface can be translated into any language using Unicode. Multilinguality is implemented on all levels of the user interface as well as for the metadata for audio files in the storage system.

LiveSupport has been designed for a Linux environment, but it was built it on top of standard, cross-platform classes. Such an architecture allows for easy porting of LiveSupport to different operating systems in the future.

LiveSupport provides:

* A free and Open Source professional-grade solution for radio broadcast management
* Support for open standards for audio formats and multi-lingual metadata information (playlists, XML news feeds, file storage)
* Remote control of radio stations via the Internet
* Support for combined local broadcasts with centralized news and programs
<<less
Download (600MB)
Added: 2005-11-22 License: GPL (GNU General Public License) Price:
1432 downloads
PDL::LinearAlgebra 0.03

PDL::LinearAlgebra 0.03


PDL::LinearAlgebra Perl module contains linear algebra utils for PDL. more>>
PDL::LinearAlgebra Perl module contains linear algebra utils for PDL.

SYNOPSIS

use PDL::LinearAlgebra;

$a = random (100,100);
($U, $s, $V) = mdsvd($a);

This module provides a convenient interface to PDL::LinearAlgebra::Real and PDL::LinearAlgebra::Complex.

FUNCTIONS

setlaerror

Set action type when error is encountered, returns previous type. Available values are NO, WARN and BARF (predefined constants). If, for example, in computation of the inverse, singularity is detected, the routine can silently return values from computation (see manuals), warn about singularity or barf. BARF is the default value.

$a = sequence(5,5);
$err = setlaerror(NO);
($inv, $info)= minv($a);
if ($info){
# Change the diagonal (the inverse doesnt exist but its an example)
$a->diagonal(0,1)+=1e-8;
($inv, $info)= minv($a);
}
if ($info){
print "Cant compute the inversen";
}
else{
print "Inverse of $a is $inv";
}
setlaerror($err);

getlaerror

Get error type.

0 => NO,
1 => WARN,
2 => BARF
t
PDL = t(PDL, SCALAR(conj))
conj : Conjugate Transpose = 1 | Transpose = 0, default = 1;

Convenient function for transposing real or complex 2D array(s). For PDL::Complex, if conj is true returns conjugate transpose array(s) and doesnt support dataflow. Supports threading.

issym

PDL = issym(PDL, SCALAR|PDL(tol),SCALAR(hermitian))
tol : tolerance value, default: 1e-8 for double else 1e-5
hermitian : Hermitian = 1 | Symmetric = 0, default = 1;

Check symmetricity/Hermitianicity of matrix. Supports threading.

diag

Return i-th diagonal if matrix in entry or matrix with i-th diagonal with entry. I-th diagonal returned flows data back&forth. Can be used as lvalue subs if your perl supports it. Supports threading.

PDL = diag(PDL, SCALAR(i), SCALAR(vector)))
i : i-th diagonal, default = 0
vector : create diagonal matrices by threading over row vectors, default = 0
my $a = random(5,5);
my $diag = diag($a,2);
# If your perl support lvaluable subroutines.
$a->diag(-2) .= pdl(1,2,3);
# Construct a (5,5,5) PDL (5 matrices) with
# diagonals from row vectors of $a
$a->diag(0,1)

tritosym

Return symmetric or Hermitian matrix from lower or upper triangular matrix. Supports inplace and threading. Uses tricpy or ctricpy from Lapack.

PDL = tritosym(PDL, SCALAR(uplo), SCALAR(conj))
uplo : UPPER = 0 | LOWER = 1, default = 0
conj : Hermitian = 1 | Symmetric = 0, default = 1;
# Assume $a is symmetric triangular
my $a = random(10,10);
my $b = tritosym($a);

positivise

Return entry pdl with changed sign by row so that average of positive sign > 0. In other words thread among dimension 1 and row = -row if Sum(sign(row)) < 0. Works inplace.

my $a = random(10,10);
$a -= 0.5;
$a->xchg(0,1)->inplace->positivise;

mcrossprod

Compute the cross-product of two matrix: A x B. If only one matrix is given, take B to be the same as A. Supports threading. Uses crossprod or ccrossprod.

PDL = mcrossprod(PDL(A), (PDL(B))
my $a = random(10,10);
my $crossproduct = mcrossprod($a);

mrank

Compute the rank of a matrix, using a singular value decomposition. from Lapack.

SCALAR = mrank(PDL, SCALAR(TOL))
TOL: tolerance value, default : mnorm(dims(PDL),inf) * mnorm(PDL) * EPS
my $a = random(10,10);
my $b = mrank($a, 1e-5);

mnorm

Compute norm of real or complex matrix Supports threading.
PDL(norm) = mnorm(PDL, SCALAR(ord));

ord :
0|inf : Infinity norm
1|one : One norm
2|two : norm 2 (default)
3|fro : frobenius norm
my $a = random(10,10);
my $norm = mnrom($a);

mdet

Compute determinant of a general square matrix using LU factorization. Supports threading. Uses getrf or cgetrf from Lapack.

PDL(determinant) = mdet(PDL);
my $a = random(10,10);
my $det = mdet($a);

mposdet

Compute determinant of a symmetric or Hermitian positive definite square matrix using Cholesky factorization. Supports threading. Uses potrf or cpotrf from Lapack.

(PDL, PDL) = mposdet(PDL, SCALAR)
SCALAR : UPPER = 0 | LOWER = 1, default = 0
my $a = random(10,10);
my $det = mposdet($a);

mcond

Compute the condition number (two-norm) of a general matrix.
The condition number (two-norm) is defined:

norm (a) * norm (inv (a)).

Uses a singular value decomposition. Supports threading.

PDL = mcond(PDL)
my $a = random(10,10);
my $cond = mcond($a);

mrcond

Estimate the reciprocal condition number of a general square matrix using LU factorization in either the 1-norm or the infinity-norm.
The reciprocal condition number is defined:

1/(norm (a) * norm (inv (a)))

Supports threading.

PDL = mrcond(PDL, SCALAR(ord))
ord :
0 : Infinity norm (default)
1 : One norm
my $a = random(10,10);
my $rcond = mrcond($a,1);

morth

Return an orthonormal basis of the range space of matrix A.

PDL = morth(PDL(A), SCALAR(tol))
tol : tolerance for determining rank, default: 1e-8 for double else 1e-5
my $a = random(10,10);
my $ortho = morth($a, 1e-8);

mnull

Return an orthonormal basis of the null space of matrix A.

PDL = mnull(PDL(A), SCALAR(tol))
tol : tolerance for determining rank, default: 1e-8 for double else 1e-5
my $a = random(10,10);
my $null = mnull($a, 1e-8);

minv

Compute inverse of a general square matrix using LU factorization. Supports inplace and threading. Uses getrf and getri or cgetrf and cgetri from Lapack and return inverse, info in array context.

PDL(inv) = minv(PDL)
my $a = random(10,10);
my $inv = minv($a);

mtriinv

Compute inverse of a triangular matrix. Supports inplace and threading. Uses trtri or ctrtri from Lapack. Returns inverse, info in array context.

(PDL, PDL(info))) = mtriinv(PDL, SCALAR(uplo), SCALAR|PDL(diag))
uplo : UPPER = 0 | LOWER = 1, default = 0
diag : UNITARY DIAGONAL = 1, default = 0
# Assume $a is upper triangular
my $a = random(10,10);
my $inv = mtriinv($a);

<<less
Download (0.12MB)
Added: 2007-06-27 License: Perl Artistic License Price:
849 downloads
PaiPix Linux 7.0

PaiPix Linux 7.0


PaiPix Linux is a compilation of Free Software, based on KNOPPIX live linux. more>>
PaiPix Linux is a compilation of Free Software, based on KNOPPIX live linux, that is meant to be used in any environment but with special emphasis on science and technologies.
PaiPix Linux should provide an open door to the public including not only the tolls used by the scientists but also the best free applications that make your computer more interesting for any usage.
If you like it for office, video or even gaming, who knows if someday you can get curious and give a look at the scientific applications that are in your DVD.
PaiPix can be used at home, in medium and even large size organizations where the sharing of the compressed DVD image and the included afs file system support make it extreemely powerfull.
PaiPix Linux also serves to support clusters of distributed computing (using the paipix-terminalsever), for data servers, farms simulation farms and user laboratories.
PaiPix linux combines all the versatility of KNOPPIX with optimized configuration for several languages, including Portuguese. It intends to not only serve in document editing tasks but also for advanced technological and scientific systems.
Using the paipix-remaster script, you can change the default language of your iso image or add your personal files to the PAIPIX DVD.
This work was only possible because Free Software experts have created all the infrastructure allowing a gigantic world-wide community of software volunteers develop what is already, without any doubt, the best operative system the world.
However, because (r)evolutions take time, many companies that are developing systems - which in the end are designed to store in practice the technological and scientific knowledge of mankind - still work in a closed form (proprietary).
There is still a reason to use other operative systems while the community of free software does not this knowledge to the whole humanity. In the following table we include a correspondence that facilitates the migration to free software for each application. All mentioned free software is installed in PaiPix!
This software is distributed without any guarantee if not the fact that a great number of components are permanently being used and tested by millions of people in the whole world.
Based on Knoppix 3.8, including kernel 2.6.11. It uses the Unionfs file system that mounts the DVD image in read-write mode. Using this feature, PAIPIX can run your 3D-enabled drivers for ATI or NVIDIA cards. Just use knoppix install=ati or knoppix install=nvidia as boot option and run the FlightGear simulator (fgfs) to see the new fantastic 3D support in Linux
Enhancements:
- The new PAIPIX 7 keeps its focus on scientific software but drops the emphasis on a pure live DVD to integrate installation, live and upgrade systems. The new main use cases are: LIVE - starting PAIPIX in the live mode, one has access to complete system including KDE, office and development; INSTALLATION - by starting PAIPIX in the installation mode one has access to the standard Debian installer system; UPGRADE - as part of the entire system, the DVD includes a Debian CD-ROM repository that includes all necessary packages. The PAIPIX ISO images are available in English and in bilingual editions that support both English and one of the following languages: Portuguese, Spanish, French, Italian and German.
<<less
Download (2940MB)
Added: 2007-08-23 License: GPL (GNU General Public License) Price:
500 downloads
Kamera 4:3.3.2-2sarge4

Kamera 4:3.3.2-2sarge4


Kamera is a digital camera io_slave for KDE which uses gphoto2 and libgpio to allow access to your cameras pictures. more>>
Kamera is a digital camera io_slave for KDE which uses gphoto2 and libgpio to allow access to your cameras pictures with the URL camera:/

This package is part of the official KDE graphics module.

KDE is a powerful Open Source graphical desktop environment for Unix workstations. It combines ease of use, contemporary functionality, and outstanding graphical design with the technological superiority of the Unix operating system.

<<less
Download (0.084MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1179 downloads
Module::Install::Philosophy 0.67

Module::Install::Philosophy 0.67


Module::Install::Philosophy Perl module contains the concepts behind Module::Install. more>>
Module::Install::Philosophy Perl module contains the concepts behind Module::Install.

SYNOPSIS

This document describes the personal philosophy behind the creation of CPAN::MakeMaker (the predecessor of Module::Install). The views expressed here belong to Brian Ingerson; if they are not of interest to you, you can safely ignore this document.

The above is obviously a mutation of the monumental speech by great Martin Luther King (http://web66.coled.umn.edu/new/MLK/MLK.html). While the contexts are vastly different, I feel that there are some serious parallelisms.
The CPAN has become a place that is not free of injustice. This situation has arisen not out of directed oppression, but from a failure of our community to keep its tools sharp. It is the culmination of many small decisions made in the name of practicality. This is a sad state for an institution that was created to allow all interested people to contribute equally to the best of their ability.

This assertion is rooted in my personal experience as an author. When I created my first Perl module, Inline.pm, I knew that I had done something important. But how was I to make a dent in vast Perl community?

As a complete unknown in the Perl community, my voice did not travel far. I repeatedly tried to get even an acknowledgment from the gurus familiar with XS. No success. I resorted to sending messages with ridiculous subjects to modules@perl.org. (http://www.xray.mpe.mpg.de/mailing-lists/modules/2000-08/msg00078.html) No response. Through sheer determination and shameless self-promotion I eventually got the word out, and I hope the world is a slightly better place for it.
Since then, Inline has won awards and I have had the privilege to meet almost all of Perls finest. But I still remember the pain of starting out, and want to help invite more people into this wonderful world.

One thing I have learned from experience is that the Perl community (and throw in the Python and Ruby people as well) is a small drop in the vast ocean of programming. Its a giant pot of Java out there; and a sea of C. Perl may not be the biggest fish, but with some care and cunning we could become a much bigger school.

These are the current problems that I see with CPAN and the core modules:

New Modules dont help Older Perls
If I were to guess what percent of all Perl5 installations were at the current release level (5.8.0 in October 2002) I would say 3-5%. That may even be generous. Id say that over 40% of installations might still be at 5.005 or earlier.
The biggest problem with adding a module to the core is that it only helps a small subset of Perl users for a long long time. Worse yet, a good module author will still probably avoid using the core additions as prerequisites, because they want their new module to work as well on 5.005 as on 5.8.
CPAN::MakeMaker should be able to help in this regard. For example, instead of putting Inline.pm into the core for 5.9, I can now effectively get it into the core for every version of Perl that Inline supports.
Author Exclusiveness
Not just anybody can get a module into the core. It seems you have to know people in high places. If I were a brilliant new talent with a great new module, it would have a harder time getting the ear of the pumpking, then if I were, say, Damian Conway. In fact, I probably wouldnt even know where to start.
Reduced Competition
One comment Ive heard from some very good Perl programmers is "Everything important has already been done". Their feeling is that even though a module is suboptimal, it would be a waste of time to write a competing module. Who would use it instead of the one already in the core?
When I write a competing module, I know that I have to make it at least twice as good as the existing one to even get noticed. Thats not a bad thing, but should everybody be forced into that situation?
For example, lets say that you have created a really useful CGI script. Lets also say that it makes use of your own CGI::Special module, because CGI.pm doesnt meet your needs. Even though your script might be generally useful and worth sharing, the fact that it requires a non-standard module can only negatively affect its acceptance. Trying to get general acceptance for the superior CGI::Special module will be harder still.
Core modules are assumed by the general public to be "Best of Breed". While this may be true for some modules at some point in time, it keeps talented people from attempting to "breed" something better.
Core Bloat
Every time we add a module to the core it gets bigger and bigger. And we cant ever remove modules from the core, once theyve been added.
If I had my druthers, wed remove all modules from the core that werent necessary for either running Perl or installing modules. Of course, wed need to set things up so that installing modules was so easy, that it could be done on the fly if necessary. Is this easily accomplishable? Nope. Is it impossible? Nope. We have the best language in the world to help us do it!
Maintenance Bitrot
Believe it or not, Perl authors can sometimes acquire a "Life Beyond Perl". They get families or new hobbies or even hit by a bus. (This would be a "Death Beyond Perl".) The fact is, that once somebody writes a piece of code and shares it with the world, they are expected to maintain it for all time.
That is being generous. There are others that think that once their module has become popular or made it into the core, they dont need to keep fixing and improving it. I have personally been guilty of this sin.
And then theres the Damian Conway Effect. This plagues the exceptional authors who are so innovative and prolific they simply dont have time to maintain everything they have written.

I initially formalized these opinions at the YAPC (Yet Another Perl Conference) in June 2001. Since then I have been trying to think of technological solutions to fix these social problems.

One idea was dubbed NAPC. NAPC is CPAN backwards. It is a large system of precompiled modules that can be installed on the fly, with the goal of reducing the number of modules in the core. NAPC hasnt got started yet. Id still like to do it someday, but its a big problem with a lot of issues.

CPAN::MakeMaker (and now Module::Install) on the other hand, is simple and ultimately flexible. It should work with all of the existing CPAN processes without requiring any changes from them. And new features can be continuously added. Even though it doesnt scratch all of my philosophical CPAN itches, its a good start.

<<less
Download (0.080MB)
Added: 2007-06-25 License: Perl Artistic License Price:
851 downloads
X-Evian LiveCD 2.0-prebeta

X-Evian LiveCD 2.0-prebeta


X-Evian is a complete Debian GNU/Linux operating system compilation that comes with 300Mb of copyleft material. more>>
X-evian is a Live-CD, a complete operating system which installs automatically from the CD-Rom in RAM memory by means of a process of automatic hardware detection.

This makes it possible to "parasite" a PC without leaving any trace?without touching the hard disk and without interfering with the operating system or the files already installed on the PC. X-evian also includes a utility for installing the contents of the CD automatically onto the hard disk (without having to erase Windows).

Debian GNU/Linux is much more than an operating system: it is an entire system of program distribution, installation and management built around the Linux kernel (the core of the operating system). Debian GNU/Linux consists of about 10,000 different programs, nearly all of which are free software, bundled and classified for integrated operation.

X-evian is a selection and compilation which has been carefully chosen and configured for activist users, for liberated cultural, technological and social production. But Debian is much more than "a complete operating system and an infinite number of programs".

Debian is the largest independent free software community on the Net and one of the most firmly established and stable techno-political projects in cyberspace. X-evian is an easy preconfigured way of introducing the user to the best of the resources of this Debian.

The power of digital recombination, reproduction and transmission has enabled the cognitariat (the workers of the immaterial production networks) to organise its own production transversally. But this transverse self-organisation would not have been possible without a format that would protect the collective work.

This is copyleft. "Copyleft uses copyright law, but flips it over to serve the opposite of its usual purpose: instead of a means of privatizing software, it becomes a means of keeping software free. The central idea of copyleft is that we give everyone permission to run the program, copy the program, modify the program, and distribute modified versions?but not permission to add restrictions of their own.? Stallman, R. (http://www.gnu.org/gnu/thegnuproject.html).

Copyleft hacks into the legal system of copyright to champion the freedom of knowledges and techniques. X-evian is the product of the recombination, copying and transformation of these knowledges. X-evian can therefore be freely copied, distributed, modified, recombined and used (provided any modification is also free).

But its not only the software that can be copylefted: the design, images, texts, technical documents, music and videos included in X-evian are also free. X-evian therefore forms part of the cycles of immaterial production, liberated from the info-capitalist restriction on the circulation of knowledges and techniques, and its devices of production and consumption (factories, companies, shopping centres, etc.).

Liberated immaterial production does not operate along the lines of the development-production-sale-consumption sequence, but rather follows interactive cycles of development-use-development, looped in backfed hypercycles of projects, groups and individuals (X-evian, metabolik, hacklabs, sindominio, Debian, Linux, etc...).

X-evian is therefore also a community of development and experimentation from free software towards a different technological, cultural and social model, in which production and use merge in cooperative horizontal communities working outside market interfaces, innovation restricted by patents and commercial interests and the consumerist use of technology.

This edition of X-evian seeks to explicitly support copyleft philosophy, motivations and practices, and therefore includes an organised selection of copyleft materials (chats, texts, manuals, etc.).
<<less
Download (497.4MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
986 downloads
Campcaster 1.2.0

Campcaster 1.2.0


Campcaster is a free and open source automation system for radio stations. more>>
Campcaster is a free and open source automation system for radio stations.
Campcaster is the first free and open radio management software that provides live studio broadcast capabilities as well as remote automation in one integrated system.
Radio is still the most powerful method of disseminating news and educational material to disadvantaged groups and in areas with high poverty, scant technological infrastructure, and/or instability. But while radio is extremely effective, the tools available to most community stations are very limited in function. The Campcaster project addresses this by giving stations a free and open source, end-to-end solution for managing a radio station by using standard personal computers.
Campcaster is the first free and open source radio management software to provide both live studio broadcast capabilities as well as remote automation in one integrated system.
Campcaster has been designed to be modular and scalable. It can be used by both large and small stations in a number of scenarios:
- Unmanned broadcast units can be controlled remotely through the Internet
- An unlimited number of Campcaster-powered PCs in a radio station can deliver live broadcasts as well as program automation by accessing a central audio storage system
- A stations library can be digitized and made centrally accessible from both local studios as well as the web
- Reporters and show producers can file their reports and shows directly to the central archive fron the field via any web browser
Campcaster is capable of combining local audio files and remote web streams, supporting the widely used MP3 format and its open equivalent Ogg Vorbis.
As with all Campware products, multilinguality is a central feature in Campcaster: virtually everything in the user interface can be translated into any language using Unicode. Multilinguality is implemented on all levels of the user interface as well as for the metadata for audio files in the storage system. Campcaster is currently available in 9 languages, and it is very easy to localize into additional languages.
Campcaster has been designed for a Linux environment, but it was built it on top of standard, cross-platform classes. Such an architecture allows for easy porting of Campcaster to different operating systems in the future.
<<less
Download (MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
986 downloads
KDE 4.2.88 Beta / 4.2.3 Stable

KDE 4.2.88 Beta / 4.2.3 Stable


The K Desktop Environment, for UNIX/Linux based systems more>>

KDE 4.2.88 Beta / 4.2.3 Stable brings you a powerful graphical desktop environment which is useful for Unix workstations. It combines ease of use, contemporary functionality and outstanding graphical design with the technological superiority of the Unix operating system. It is an Internet project and truly open in every sense.

Development takes place on the Internet and is discussed on the mailing lists and USENET news groups to which we invite and welcome everyone. No single group, company or organization controls the sources. All sources are open to everyone and may be distributed and modified by anyone subject to the well known GNU licenses.

<<less
Download (0KB)
Added: 2005-09-21 License: GPL Price: FREE
11 downloads
 
Other version of KDE
KDE 4.0 Beta 1, contemporary functionality, and outstanding graphical design with the technological
License:GPL (GNU General Public License)
Download (MB)
826 downloads
Added: 2007-08-02
License:GPL (GNU General Public License)
Download (MB)
898 downloads
Added: 2007-05-22
KDE 3.5 beta 1design with the technological superiority of the Unix operating system. It is an Internet
License:GPL
Download (naMB)
208 downloads
Added: 2009-04-04
KDE 4 Live CD 0.3.0

KDE 4 Live CD 0.3.0


KDE 4 Live CD is a live Linux distribution which contains the KDE 4 development release. more>>
KDE 4 Live CD is a live Linux distribution which contains the KDE 4 development release.

KDE is a powerful Free Software graphical desktop environment for Linux and Unix workstations. It combines ease of use, contemporary functionality, and outstanding graphical design with the technological superiority of the Unix operating system.

KDE is a network transparent contemporary desktop environment for UNIX workstations. KDE seeks to fill the need for an easy to use desktop for Unix workstations, similar to the desktop environments found under the MacOS or Microsoft Windows. We believe that the UNIX operating system is the best operating system available today. In fact UNIX has been the undisputed choice of the information technology professional for many years.

When it comes to stability, scalability and openness there is no competition to UNIX. However, the lack of an easy to use contemporary desktop environment for UNIX has prevented UNIX from finding its way onto the desktops of the typical computer user in offices and homes. UNIX dominates the server market and is the preferred computing platform for computing professional and scientists.

Without UNIX the internet would not be. But UNIX did not address the needs of the average computer user. This fact is particularly unfortunate since a number of implementations of UNIX (Debian GNU/Linux, FreeBSD, NetBSD etc.) are freely available on the internet. All of which are of exceptional quality and stability.
<<less
Download (636MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
814 downloads
KOrganizer 3.4.2

KOrganizer 3.4.2


KOrganizer is the KDE PIM/Calendar/Scheduling tool. more>>
Organizer is the calendar and scheduling application of the popular K Desktop Environment. KDE is a powerful Open Source graphical desktop environment for Unix workstations.

It combines ease of use, contemporary functionality, and outstanding graphical design with the technological superiority of the Unix operating system.

KOrganizer provides management of events and tasks, alarm notification, web export, network transparent handling of data, group scheduling, import and export of calendar files and more.

KOrganizer is fully customizable to your needs and is an integral part of the KDE PIM suite, which aims to be a complete solution for organizing your personal data.

KOrganizer supports the two dominant standards for storing and exchanging calendar data, vCalendar and iCalendar. ftp://ftp.kde.org/pub/kde/stable/3.4.2/src/kdepim-3.4.2.tar.bz2
<<less
Download (11MB)
Added: 2005-09-13 License: GPL (GNU General Public License) Price:
900 downloads
Pardus Linux 2007.2

Pardus Linux 2007.2


Pardus Linux is a FREE distribution funded and developed by the Scientific & Technological Research Council of Turkey. more>> <<less
Download (686MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
839 downloads
Crimson Fields 0.5.1

Crimson Fields 0.5.1


Crimson Fields is a tactical war game in the tradition of Battle Isle. more>>
Crimson Fields project is a tactical war game in the tradition of Battle Isle.

The outcome of the war lies in your hands. You decide which units are sent to the front lines, and when to unleash the reserves. Your mission objectives range from defending strategically vital locations to simply destroying all enemy forces in the area. Protect supply convoys or raid enemy facilities to uncover technological secrets or fill your storage bays so you can repair damaged units or build new ones in your own factories. Lead your troops to victory!

Tools are available to create custom maps and campaigns. You can also play the original Battle Isle maps if you have a copy of the game.

You can pit yourself against another human player either in hot-seat mode in front of the same machine or via e-mail, or against the computer.

Crimson Fields is distributed under the terms of the GNU General Public License (GPL). It has been developed and tested on Intel architecture with Linux, but it shouldnt be too hard to make it compile and run on other operating systems as well. So far it has been reported to work with Linux, various flavours of BSD, Sun Solaris, MacOS X, BeOS, and MS Windows.

<<less
Download (0.78MB)
Added: 2007-01-24 License: GPL (GNU General Public License) Price:
1005 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2