featuring
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 8666
Gimp::Feature 1.211
Gimp::Feature is a Perl module that can check for specific features to be present before registering the script. more>>
Gimp::Feature is a Perl module that can check for specific features to be present before registering the script.
SYNOPSIS
use Gimp::Feature;
or
use Gimp::Feature qw(feature1 feature2 ...);
This module can be used to check for specific features to be present. This can be used to deny running the script when neccessary features are not present. While some features can be checked for at any time, the Gimp::Fu module offers a nicer way to check for them.
gtk
checks for the presence of the gtk interface module.
gtk-1.1, gtk-1.2
checks for the presence of gtk-1.1 (1.2) or higher.
perl-5.005
checks for perl version 5.005 or higher.
pdl
checks for the presence of a suitable version of PDL (>=1.9906).
gnome
checks for the presence of the Gnome-Perl module.
gtkxmhtl
checks for the presence of the Gtk::XmHTML module.
unix
checks wether the script runs on a unix-like operating system. At the moment, this is every system except windows, macos, os2 and vms.
persistency
checks wether the Gimp::Data module (Gimp::Data) can handle complex persistent data structures, i.e. perl references in addition to plain strings.
The following features can only be checked after Gimp-main> has been called (usually found in the form exit main). See Gimp::Fu on how to check for these.
gimp-1.1, gimp-1.2
checks for the presense of gimp in at least version 1.1 (1.2).
FUNCTIONS
present(feature)
Checks for the presense of the single feature given as the argument. Returns true if the feature is present, false otherwise.
need(feature,[function-name])
Require a specific feature. If the required feature is not present the program will exit gracefully, logging an appropriate message. You can optionally supply a function name to further specify the place where this feature was missing.
This is the function used when importing symbols from the module.
missing(feature-description,[function-name])
Indicates that a generic feature (described by the first argument) is missing. A function name can further be specified. This function will log the given message and exit gracefully.
describe(feature)
Returns a string describing the given feature in more detail, or undef if there is no description for this feature.
list()
Returns a list of features that can be checked for. This list might not be complete.
<<lessSYNOPSIS
use Gimp::Feature;
or
use Gimp::Feature qw(feature1 feature2 ...);
This module can be used to check for specific features to be present. This can be used to deny running the script when neccessary features are not present. While some features can be checked for at any time, the Gimp::Fu module offers a nicer way to check for them.
gtk
checks for the presence of the gtk interface module.
gtk-1.1, gtk-1.2
checks for the presence of gtk-1.1 (1.2) or higher.
perl-5.005
checks for perl version 5.005 or higher.
pdl
checks for the presence of a suitable version of PDL (>=1.9906).
gnome
checks for the presence of the Gnome-Perl module.
gtkxmhtl
checks for the presence of the Gtk::XmHTML module.
unix
checks wether the script runs on a unix-like operating system. At the moment, this is every system except windows, macos, os2 and vms.
persistency
checks wether the Gimp::Data module (Gimp::Data) can handle complex persistent data structures, i.e. perl references in addition to plain strings.
The following features can only be checked after Gimp-main> has been called (usually found in the form exit main). See Gimp::Fu on how to check for these.
gimp-1.1, gimp-1.2
checks for the presense of gimp in at least version 1.1 (1.2).
FUNCTIONS
present(feature)
Checks for the presense of the single feature given as the argument. Returns true if the feature is present, false otherwise.
need(feature,[function-name])
Require a specific feature. If the required feature is not present the program will exit gracefully, logging an appropriate message. You can optionally supply a function name to further specify the place where this feature was missing.
This is the function used when importing symbols from the module.
missing(feature-description,[function-name])
Indicates that a generic feature (described by the first argument) is missing. A function name can further be specified. This function will log the given message and exit gracefully.
describe(feature)
Returns a string describing the given feature in more detail, or undef if there is no description for this feature.
list()
Returns a list of features that can be checked for. This list might not be complete.
Download (0.26MB)
Added: 2006-07-13 License: Perl Artistic License Price:
1201 downloads
Aquamarine 0.2.1
Aquamarine package contains the KWin themes for the Beryl project. more>>
Aquamarine package contains the KWin themes for the Beryl project.
Aquamarine provides support for KDE users who dont want to give up their KWin theme.
Featuring full KWin theme support as well as direct integration with KControl, users dont have to know the difference.
<<lessAquamarine provides support for KDE users who dont want to give up their KWin theme.
Featuring full KWin theme support as well as direct integration with KControl, users dont have to know the difference.
Download (MB)
Added: 2007-03-18 License: GPL (GNU General Public License) Price:
954 downloads
WeatherBug 1.0.0.2
WeatherBug is a Firefox extension that can get live, local weather conditions in Firefox web browser. more>>
WeatherBug is a Firefox extension that can get live, local weather conditions in Firefox web browser. Featuring forecasts, radar, and severe weather alerts from WeatherBugs community of neighborhood weather stations.
<<less Download (0.037MB)
Added: 2007-05-30 License: MPL (Mozilla Public License) Price:
559 downloads
Bio::DB::GFF::Feature 1.4
Bio::DB::GFF::Feature is a relative segment identified by a feature type. more>>
Bio::DB::GFF::Feature is a relative segment identified by a feature type.
Bio::DB::GFF::Feature is a stretch of sequence that corresponding to a single annotation in a GFF database. It inherits from Bio::DB::GFF::RelSegment, and so has all the support for relative addressing of this class and its ancestors. It also inherits from Bio::SeqFeatureI and so has the familiar start(), stop(), primary_tag() and location() methods (it implements Bio::LocationI too, if needed).
Bio::DB::GFF::Feature adds new methods to retrieve the annotations type, group, and other GFF attributes. Annotation types are represented by Bio::DB::GFF::Typename objects, a simple class that has two methods called method() and source(). These correspond to the method and source fields of a GFF file.
Annotation groups serve the dual purpose of giving the annotation a human-readable name, and providing higher-order groupings of subfeatures into features. The groups returned by this module are objects of the Bio::DB::GFF::Featname class.
Bio::DB::GFF::Feature inherits from and implements the abstract methods of Bio::SeqFeatureI, allowing it to interoperate with other Bioperl modules.
Generally, you will not create or manipulate Bio::DB::GFF::Feature objects directly, but use those that are returned by the Bio::DB::GFF::RelSegment->features() method.
Important note about start() vs end()
If features are derived from segments that use relative addressing (which is the default), then start() will be less than end() if the feature is on the opposite strand from the reference sequence. This breaks Bio::SeqI compliance, but is necessary to avoid having the real genomic locations designated by start() and end() swap places when changing reference points.
To avoid this behavior, call $segment->absolute(1) before fetching features from it. This will force everything into absolute coordinates.
For example:
my $segment = $db->segment(CHROMOSOME_I);
$segment->absolute(1);
my @features = $segment->features(transcript);
<<lessBio::DB::GFF::Feature is a stretch of sequence that corresponding to a single annotation in a GFF database. It inherits from Bio::DB::GFF::RelSegment, and so has all the support for relative addressing of this class and its ancestors. It also inherits from Bio::SeqFeatureI and so has the familiar start(), stop(), primary_tag() and location() methods (it implements Bio::LocationI too, if needed).
Bio::DB::GFF::Feature adds new methods to retrieve the annotations type, group, and other GFF attributes. Annotation types are represented by Bio::DB::GFF::Typename objects, a simple class that has two methods called method() and source(). These correspond to the method and source fields of a GFF file.
Annotation groups serve the dual purpose of giving the annotation a human-readable name, and providing higher-order groupings of subfeatures into features. The groups returned by this module are objects of the Bio::DB::GFF::Featname class.
Bio::DB::GFF::Feature inherits from and implements the abstract methods of Bio::SeqFeatureI, allowing it to interoperate with other Bioperl modules.
Generally, you will not create or manipulate Bio::DB::GFF::Feature objects directly, but use those that are returned by the Bio::DB::GFF::RelSegment->features() method.
Important note about start() vs end()
If features are derived from segments that use relative addressing (which is the default), then start() will be less than end() if the feature is on the opposite strand from the reference sequence. This breaks Bio::SeqI compliance, but is necessary to avoid having the real genomic locations designated by start() and end() swap places when changing reference points.
To avoid this behavior, call $segment->absolute(1) before fetching features from it. This will force everything into absolute coordinates.
For example:
my $segment = $db->segment(CHROMOSOME_I);
$segment->absolute(1);
my @features = $segment->features(transcript);
Download (4.7MB)
Added: 2006-06-09 License: Perl Artistic License Price:
1232 downloads
Bio::Graphics::Feature 1.4
Bio::Graphics::Feature is a simple feature object for use with Bio::Graphics::Panel. more>>
Bio::Graphics::Feature is a simple feature object for use with Bio::Graphics::Panel.
SYNOPSIS
use Bio::Graphics::Feature;
# create a simple feature with no internal structure
$f = Bio::Graphics::Feature->new(-start => 1000,
-stop => 2000,
-type => transcript,
-name => alpha-1 antitrypsin,
-desc => an enzyme inhibitor,
);
# create a feature composed of multiple segments, all of type "similarity"
$f = Bio::Graphics::Feature->new(-segments => [[1000,1100],[1500,1550],[1800,2000]],
-name => ABC-3,
-type => gapped_alignment,
-subtype => similarity);
# build up a gene exon by exon
$e1 = Bio::Graphics::Feature->new(-start=>1,-stop=>100,-type=>exon);
$e2 = Bio::Graphics::Feature->new(-start=>150,-stop=>200,-type=>exon);
$e3 = Bio::Graphics::Feature->new(-start=>300,-stop=>500,-type=>exon);
$f = Bio::Graphics::Feature->new(-segments=>[$e1,$e2,$e3],-type=>gene);
This is a simple Bio::SeqFeatureI-compliant object that is compatible with Bio::Graphics::Panel. With it you can create lightweight feature objects for drawing.
<<lessSYNOPSIS
use Bio::Graphics::Feature;
# create a simple feature with no internal structure
$f = Bio::Graphics::Feature->new(-start => 1000,
-stop => 2000,
-type => transcript,
-name => alpha-1 antitrypsin,
-desc => an enzyme inhibitor,
);
# create a feature composed of multiple segments, all of type "similarity"
$f = Bio::Graphics::Feature->new(-segments => [[1000,1100],[1500,1550],[1800,2000]],
-name => ABC-3,
-type => gapped_alignment,
-subtype => similarity);
# build up a gene exon by exon
$e1 = Bio::Graphics::Feature->new(-start=>1,-stop=>100,-type=>exon);
$e2 = Bio::Graphics::Feature->new(-start=>150,-stop=>200,-type=>exon);
$e3 = Bio::Graphics::Feature->new(-start=>300,-stop=>500,-type=>exon);
$f = Bio::Graphics::Feature->new(-segments=>[$e1,$e2,$e3],-type=>gene);
This is a simple Bio::SeqFeatureI-compliant object that is compatible with Bio::Graphics::Panel. With it you can create lightweight feature objects for drawing.
Download (4.7MB)
Added: 2006-10-21 License: Perl Artistic License Price:
1098 downloads
PeaZip 1.9
PeaZip is an archiving application, archive/extract: 001 (raw file split/join), 7z, 7zip sfx, Bzip2, Gzip, Pea, Tar, Z, Zip. more>>
PeaZip project is an archiver tool that supports its native Pea archive format (featuring compression, split volumes, and flexible encryption and integrity check schemes) and other mainstream formats, with special focus on handling open formats.
Full support: 7Z, 7-Zip sfx, Bzip2, Gzip, PEA, split TAR and ZIP.
Browse/test/extract-only support for ARJ, CAB, CHM, CPIO, DEB, ISO, LZH, NSIS installers, OOo files, RAR, RPM, Z.
PeaZips UI aims giving aid to the user to: edit, save and restore layout of archives (input files and folders list) to speed up definition of archiving and backup operations; save job definition, as plain text, to be used in scripts or for learning purpose; have a detailed job log after each operation.
The interface is fully skinnable (skins can be customised and saved as plain text to be re-edited as freely as possible) and uses customisable transparency.
The program doesnt need to be installed/unistalled, it can run from any path (even remote; a writeable path is recommended), however Windows version is released both as a standalone binary and as a fully automated installer/uninstaller package, allowing tight system integration to use PeaZip right from Explorer.
PeaZip acts as a graphic frontend for Pea executable (graphical) from the same Author and for Igor Pavlovs 7z executable (Myspaces 7z POSIX port under Linux), that can run in console mode or through a graphical wrapper to allow more user-friendly handling of output information.
Enhancements:
- Release 1.9 introduces several updates, new functions and interface enhancements over 1.8 series, based on feedback collected on previous 1.8 release series, featuring a substantially renewed user interface driven to a cleaner design and better usability. The layout composer and the archive browser were improved, introducing multiple selection, AZ/ZA sorting, better designed popup menus, options organized in a tabs, archive browsing navigation bar, recent archives history and many other under the hood usability improvements; see change log for a detailed description.
<<lessFull support: 7Z, 7-Zip sfx, Bzip2, Gzip, PEA, split TAR and ZIP.
Browse/test/extract-only support for ARJ, CAB, CHM, CPIO, DEB, ISO, LZH, NSIS installers, OOo files, RAR, RPM, Z.
PeaZips UI aims giving aid to the user to: edit, save and restore layout of archives (input files and folders list) to speed up definition of archiving and backup operations; save job definition, as plain text, to be used in scripts or for learning purpose; have a detailed job log after each operation.
The interface is fully skinnable (skins can be customised and saved as plain text to be re-edited as freely as possible) and uses customisable transparency.
The program doesnt need to be installed/unistalled, it can run from any path (even remote; a writeable path is recommended), however Windows version is released both as a standalone binary and as a fully automated installer/uninstaller package, allowing tight system integration to use PeaZip right from Explorer.
PeaZip acts as a graphic frontend for Pea executable (graphical) from the same Author and for Igor Pavlovs 7z executable (Myspaces 7z POSIX port under Linux), that can run in console mode or through a graphical wrapper to allow more user-friendly handling of output information.
Enhancements:
- Release 1.9 introduces several updates, new functions and interface enhancements over 1.8 series, based on feedback collected on previous 1.8 release series, featuring a substantially renewed user interface driven to a cleaner design and better usability. The layout composer and the archive browser were improved, introducing multiple selection, AZ/ZA sorting, better designed popup menus, options organized in a tabs, archive browsing navigation bar, recent archives history and many other under the hood usability improvements; see change log for a detailed description.
Download (MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
812 downloads
Lingua::Phonology::Features 0.32
Lingua::Phonology::Features is a module to handle a set of hierarchical features. more>>
Lingua::Phonology::Features is a module to handle a set of hierarchical features.
SYNOPSIS
use Lingua::Phonology;
my $phono = new Lingua::Phonology;
my $features = $phono->features;
# Add features programmatically
$features->add_feature(
Node => { type => privative, children => [Scalar, Binary, Privative] },
Scalar => { type => scalar },
Binary => { type => binary },
Privative => { type => privative }
);
# Drop features
$features->drop_feature(Privative);
# Load feature definitions from a file
$features->loadfile(phono.xml);
# Load default features
$features->loadfile;
Lingua::Phonology::Features allows you to create a hierarchy of features of various types, and includes methods for adding and deleting features and changing the relationships between them.
By "heirarchical features" we mean that some features dominate some other features, as in a tree. By having heirarchical features, it becomes possible to set multiple features at once by assigning to a node, and to indicate conceptually related features that are combined under the same node. This module, however, does not instantiate values of features, but only establishes the relationships between features.
Lingua::Phonology::Features recognizes multiple types of features. Features may be privative (which means that their legal values are either true or undef), binary (which means they may be true, false, or undef), or scalar (which means that their legal value may be anything). You can freely mix different kinds of features into the same set of features.
Finally, while this module provides a full set of methods to add and delete features programmatically, it also provides the option of reading feature definitions from a file. This is usually faster and more convenient. The method to do this is "loadfile". Lingua::Phonology::Features also comes with an extensive default feature set.
<<lessSYNOPSIS
use Lingua::Phonology;
my $phono = new Lingua::Phonology;
my $features = $phono->features;
# Add features programmatically
$features->add_feature(
Node => { type => privative, children => [Scalar, Binary, Privative] },
Scalar => { type => scalar },
Binary => { type => binary },
Privative => { type => privative }
);
# Drop features
$features->drop_feature(Privative);
# Load feature definitions from a file
$features->loadfile(phono.xml);
# Load default features
$features->loadfile;
Lingua::Phonology::Features allows you to create a hierarchy of features of various types, and includes methods for adding and deleting features and changing the relationships between them.
By "heirarchical features" we mean that some features dominate some other features, as in a tree. By having heirarchical features, it becomes possible to set multiple features at once by assigning to a node, and to indicate conceptually related features that are combined under the same node. This module, however, does not instantiate values of features, but only establishes the relationships between features.
Lingua::Phonology::Features recognizes multiple types of features. Features may be privative (which means that their legal values are either true or undef), binary (which means they may be true, false, or undef), or scalar (which means that their legal value may be anything). You can freely mix different kinds of features into the same set of features.
Finally, while this module provides a full set of methods to add and delete features programmatically, it also provides the option of reading feature definitions from a file. This is usually faster and more convenient. The method to do this is "loadfile". Lingua::Phonology::Features also comes with an extensive default feature set.
Download (0.098MB)
Added: 2006-06-13 License: Perl Artistic License Price:
1228 downloads
Trixbox 2.2
Trixbox enables even the novice user to quickly set up a voice over IP phone system. more>>
Trixbox enables even the novice user to quickly set up a voice over IP phone system.
Trixbox can be configured to handle a single phone line for a home user, several lines for a small office, or several T1s for a million minute a month call center.
Enhancements:
- The trixbox team released the final version of trixbox 2.2 today. This is a much improved version of trixbox 2.0 featuring the following: easier upgrades to future versions; enhanced call data reports; new network interface manager; enhanced dashboard; new system status administrator screen; the latest versions of Asterisk and Zaptel; support for all Digium, Rhino and Sangoma hardware; enhanced Endpoint Manager (now supports Polycom, Linksys, Aastra, Snom, Grandstream, and Cisco).
<<lessTrixbox can be configured to handle a single phone line for a home user, several lines for a small office, or several T1s for a million minute a month call center.
Enhancements:
- The trixbox team released the final version of trixbox 2.2 today. This is a much improved version of trixbox 2.0 featuring the following: easier upgrades to future versions; enhanced call data reports; new network interface manager; enhanced dashboard; new system status administrator screen; the latest versions of Asterisk and Zaptel; support for all Digium, Rhino and Sangoma hardware; enhanced Endpoint Manager (now supports Polycom, Linksys, Aastra, Snom, Grandstream, and Cisco).
Download (547MB)
Added: 2007-05-05 License: GPL (GNU General Public License) Price:
567 downloads
SuperTuxKart 0.3.0
SuperTuxKart is an enhanced version of TuxKart, a kart racing game. more>>
SuperTuxKart is an enhanced version of TuxKart, a kart racing game, originaly done by Steve Baker, featuring Tux and a bunch of his friends.
Main features:
- new characters
- new tracks
- a completly new userinterface
- some smaller graphical improvemnts (skidmarks, smoke, animated wheels, etc.)
- whole bunch of new bugs, in its current state its not really playable
<<lessMain features:
- new characters
- new tracks
- a completly new userinterface
- some smaller graphical improvemnts (skidmarks, smoke, animated wheels, etc.)
- whole bunch of new bugs, in its current state its not really playable
Download (10MB)
Added: 2007-07-21 License: GPL (GNU General Public License) Price:
1170 downloads
Martian Memory 1.2
Martian Memory project consists of a simple memory game. more>>
Martian Memory project consists of a simple memory game.
Martian Memory is a simple memory game oriented to kids, featuring the Pachi el marcianos world characters.
The goal of the game is to pick up two identical chips from a board that contains 32. The game contains very nice visual effects, sounds, and very nice music composed by Jonne Valtonen.
Installing
Just do:
./configure
make
make install (as root).
Enhancements:
- Added the -f or --fullscreen switch.
- Changed some chips (removed bloody ones) the game is now "child safe".
- program exits if close window or press [F10].
- if two scores are equal they are ordered by minor time.
- time stops during a combo FX.
- the hiscores screen displays a "press right mouse button to return" sign.
<<lessMartian Memory is a simple memory game oriented to kids, featuring the Pachi el marcianos world characters.
The goal of the game is to pick up two identical chips from a board that contains 32. The game contains very nice visual effects, sounds, and very nice music composed by Jonne Valtonen.
Installing
Just do:
./configure
make
make install (as root).
Enhancements:
- Added the -f or --fullscreen switch.
- Changed some chips (removed bloody ones) the game is now "child safe".
- program exits if close window or press [F10].
- if two scores are equal they are ordered by minor time.
- time stops during a combo FX.
- the hiscores screen displays a "press right mouse button to return" sign.
Download (MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1034 downloads
Elgg: the Learning Landscape 0.8
Elgg is a community building platform written in PHP for Apache and MySQL. more>>
Elgg: the Learning Landscape is a community building platform written in PHP for MySQL and Apache.
It gives you the tools to create active and vibrant learning communities, featuring Weblogging, podcasting, social networking, file storage, tag searching, customised user themes, gettext multi-language support, and more.
Users can control exactly who has access to each bit of their profile, each blog post, file, etc., and then search using tags to find other resources and people related to the same topic.
Although originally designed for education, it has a broad range of uses in a variety of different settings.
Enhancements:
- Generalised comments
- Bugfixes, efficiency improvements
<<lessIt gives you the tools to create active and vibrant learning communities, featuring Weblogging, podcasting, social networking, file storage, tag searching, customised user themes, gettext multi-language support, and more.
Users can control exactly who has access to each bit of their profile, each blog post, file, etc., and then search using tags to find other resources and people related to the same topic.
Although originally designed for education, it has a broad range of uses in a variety of different settings.
Enhancements:
- Generalised comments
- Bugfixes, efficiency improvements
Download (6.1MB)
Added: 2007-07-05 License: GPL (GNU General Public License) Price:
844 downloads
Tomb Raider 1
Tomb Raider is a KDM theme featuring Angelina Jolie. more>>
Tomb Raider is a KDM theme featuring Angelina Jolie. This is the first of several Tomb Raider themes. I also intend to make Login Splash screens. Ill post the links here when I do.
<<less Download (0.53MB)
Added: 2007-04-02 License: GPL (GNU General Public License) Price:
8473 downloads
DeadFTP 0.1.3
DeadFTP is a graphical FTP client for GNOME featuring transfers resuming, a transfers queue, drap-n-drop, and proxy support. more>>
DeadFTP is a graphical FTP client for GNOME featuring transfers resuming, a transfers queue, drap-n-drop, and proxy support.
Enhancements:
- Fixed bug with saving of firewall settings
- Added support for limiting port range of sockets
- Fixed problem with loading certain values in settings dialog
- Improved format of console log file
- Re-added display of login message dialog
- Re-added color changing to settings dialog
- Fixed issue with queue reordering
- Improved how preferences are saved/loaded and used
- Added support for changing file modes
- Improved proxy interface and socket code
- New preferences dialog
- Added new status bars to display information on queue transfer time
- Added queue clear function
- Added (untested) SOCKS4 support
- New resume code & new resume dialog
- Improved interaction with server and status message is now displayed
- Added directory transfer support
- Many other bug fixes
<<lessEnhancements:
- Fixed bug with saving of firewall settings
- Added support for limiting port range of sockets
- Fixed problem with loading certain values in settings dialog
- Improved format of console log file
- Re-added display of login message dialog
- Re-added color changing to settings dialog
- Fixed issue with queue reordering
- Improved how preferences are saved/loaded and used
- Added support for changing file modes
- Improved proxy interface and socket code
- New preferences dialog
- Added new status bars to display information on queue transfer time
- Added queue clear function
- Added (untested) SOCKS4 support
- New resume code & new resume dialog
- Improved interaction with server and status message is now displayed
- Added directory transfer support
- Many other bug fixes
Download (0.255MB)
Added: 2006-06-13 License: GPL (GNU General Public License) Price:
1228 downloads
PengSwim 0.3.0
PengSwim project is an SDL-based game featuring a penguin swimming and eating fish. more>>
PengSwim project is an SDL-based game featuring a penguin swimming and eating fish.
PengSwim is a game of swimming and eating, a penguins two favorite activities. The object of PengSwim is to eat as many fish as possible within the time limit.
Once youve eaten all the fish on the level, you move to a new level with more fish to eat. The SDL, SDL_mixer, and SDL_ttf libraries are required.
System requirements:
- Ive only tested the game on Linux, but it may be possible to install in on other systems, provided you fix the Makefile accordingly. I use SDL, SDL_mixer, and SDL_ttf, all of which have been ported to a variety of systems. Youll also need a TrueType font, preferrably Helvetica (see Installation). Other than that, it should compile without a problem. Let me know of any success stories on non-Linux platforms.
<<lessPengSwim is a game of swimming and eating, a penguins two favorite activities. The object of PengSwim is to eat as many fish as possible within the time limit.
Once youve eaten all the fish on the level, you move to a new level with more fish to eat. The SDL, SDL_mixer, and SDL_ttf libraries are required.
System requirements:
- Ive only tested the game on Linux, but it may be possible to install in on other systems, provided you fix the Makefile accordingly. I use SDL, SDL_mixer, and SDL_ttf, all of which have been ported to a variety of systems. Youll also need a TrueType font, preferrably Helvetica (see Installation). Other than that, it should compile without a problem. Let me know of any success stories on non-Linux platforms.
Download (0.57MB)
Added: 2006-11-11 License: GPL (GNU General Public License) Price:
1077 downloads
Jackbeat 0.6.1
Jackbeat is an audio sequencer with support for the JACK Audio Connection Kit. more>>
Jackbeat project is an audio sequencer with support for the JACK Audio Connection Kit.
Featuring a drum-machine-like interface, it is designed with real-time operation in mind: while playing, the pattern can be edited, the BPM rate modified, and new samples loaded.
The number of tracks and beats is virtually unlimited, and though it is simple, it becomes a powerful tool when connected to other JACK applications providing mastering, effects plugins, etc.
Main features:
- drummachine-like interface for fast and easy editing
- realtime operation : while playing, the sequence can be edited and resized, the bpm rate modified, and new samples loaded,
- virtually unlimited number of tracks and beats
- easy to use and yet powerful : just JACK it into jack-rack and you can apply LADSPA effect plugins on a per track basis, perform mastering with jackeq , etc...
- loads and saves .jab files, Jackbeats file format, based on xml and packed with tar,
- unique masking feature : allows to insert silences with precision into a given track.
<<lessFeaturing a drum-machine-like interface, it is designed with real-time operation in mind: while playing, the pattern can be edited, the BPM rate modified, and new samples loaded.
The number of tracks and beats is virtually unlimited, and though it is simple, it becomes a powerful tool when connected to other JACK applications providing mastering, effects plugins, etc.
Main features:
- drummachine-like interface for fast and easy editing
- realtime operation : while playing, the sequence can be edited and resized, the bpm rate modified, and new samples loaded,
- virtually unlimited number of tracks and beats
- easy to use and yet powerful : just JACK it into jack-rack and you can apply LADSPA effect plugins on a per track basis, perform mastering with jackeq , etc...
- loads and saves .jab files, Jackbeats file format, based on xml and packed with tar,
- unique masking feature : allows to insert silences with precision into a given track.
Download (0.30MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
968 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above featuring search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed