Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.062.496 Times

Tie Fighter Sound freeware
Filter: All | Freeware | Demo
 

Tie Fighter Sound

< 1 2 3 4 5 > 
Added: June 23, 2010 | Visits: 988

Tie::Hash::RegexKeys Tie::Hash::RegexKeys will match hash keys using Regular Expressions. SYNOPSIS use Tie::Hash::RegexKeys; use Data::Dumper; my %h; tie %h, Tie::Hash::RegexKeys; my $a = .1.2.3.4.5.6.2; my $b = .1.2.3.4.5.7; my $c = .1.2.3.4.5.6.1; my $d = .1.2.3.4.5.6.1.6; $h{$a}="key1";...



Platforms: *nix

License: Freeware Size: 3.07 KB Download (104): Tie::Hash::RegexKeys Download

Added: November 18, 2010 | Visits: 895

Tie::Array::RestrictUpdates Tie::Array::RestrictUpdates can limit the number of times you change elements in an array. SYNOPSIS use Tie::Array::RestrictUpdates; tie @foo,"Tie::Array::RestrictUpdates",1; # Default limit is 1. # Every element from the array can only be changed once @foo = qw(A B C D E); for(0..4) {...





Platforms: *nix

License: Freeware Size: 3.07 KB Download (90): Tie::Array::RestrictUpdates Download

Added: May 25, 2010 | Visits: 874

Tie::Scalar::Sticky Tie::Scalar::Sticky is a Perl module with block assignments to scalars. SYNOPSIS use strict; use Tie::Scalar::Sticky; tie my $sticky, Tie::Scalar::Sticky; $sticky = 42; $sticky = ; # still 42 $sticky = undef; # still 42 $sticky = 0; # now its zero tie my $sticky, Tie::Scalar::Sticky...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (88): Tie::Scalar::Sticky Download

Added: March 16, 2010 | Visits: 782

Tie::CharArray Tie::CharArray module can access Perl scalars as arrays of characters. SYNOPSIS use Tie::CharArray; my $foobar = a string; tie my @foo, Tie::CharArray, $foobar; $foo[0] = A; # $foobar = A string push @foo, !; # $foobar = A string! print "@foon"; # prints: A s t r i n g ! tie my @bar,...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (95): Tie::CharArray Download

Added: July 19, 2010 | Visits: 1.006

Sound Monitor Sound Monitor is a GNOME panel applet, it displays the current Volume output of the Esound daemon, also, optionally shows the Esound status: Off(error), Standby, Ready. The esound server information can be displayed, the balance and volume can be also be adjusted for streams and samples. An extra...


Platforms: *nix

License: Freeware Size: 307.2 KB Download (108): Sound Monitor Download

Added: February 05, 2010 | Visits: 676

Tie::OffsetArray Tie::OffsetArray can tie one array to another, with index offset. SYNOPSIS use Tie::OffsetArray; tie @a, Tie::OffsetArray, 1, @b; # offset=1; use given array. tie @c, Tie::OffsetArray, 2; # use anonymous array. $a[0] = x; # assign to $b[1]; tied(@a)->array->[0] = y; # assign to $b[0]....


Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Tie::OffsetArray Download

Added: November 15, 2010 | Visits: 850

Tie::Hash::Sorted Tie::Hash::Sorted Perl module presents hashes in sorted order. SYNOPSIS use Tie::Hash::Sorted; my %ages = ( John => 33, Jacob => 29, Jingle => 15, Heimer => 48, Smitz => 12, ); my $sort_by_numeric_value = sub { my $hash = shift; [ sort {$hash->{$b} <=> $hash->{$a}} keys %$hash ];...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (87): Tie::Hash::Sorted Download

Released: June 18, 2012  |  Added: June 18, 2012 | Visits: 752

Tie::DB_Lock Tie::DB_Lock Perl module can tie hashes to databases using shared and exclusive locks. SYNOPSIS use Tie::DB_Lock; use DB_File; tie(%hash, Tie::DB_Lock, $filename, rw); # Open for writing $hash{key} = value; untie %hash; tie(%hash2, Tie::DB_Lock, $filename); # Default is read-only...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (95): Tie::DB_Lock Download

Added: July 23, 2010 | Visits: 1.068

Tie::Trace Tie::Trace can easy print debugging with tie. SYNOPSIS use Tie::Trace; my %hash; tie %hash, "Tie::Trace"; $hash{hoge} = hogehoge; # warn Hash => Key: hoge, Value: hogehgoe at ... my @array; tie @aray, "Tie::Trace"; push @array, "array"; # warn Array => Point: 0, Value: array at ......


Platforms: *nix

License: Freeware Size: 8.19 KB Download (114): Tie::Trace Download

Added: January 09, 2010 | Visits: 1.027

Sound Mural Sound Mural is a picture-to-sound converter plugin for Xpaint. An image that has been loaded or composed in Xpaint is treated as a spectrogram, and the corresponding audio is written out as a WAV file. Examples of what Sound Mural can do, can be seen and heard on the Sound Mural Web page....


Platforms: *nix

License: Freeware Size: 10.24 KB Download (107): Sound Mural Download

Added: March 03, 2010 | Visits: 947

Tie::File Tie::File can access the lines of a disk file via a Perl array. SYNOPSIS # This file documents Tie::File version 0.96 use Tie::File; tie @array, Tie::File, filename or die ...; $array[13] = blah; # line 13 of the file is now blah print $array[42]; # display line 42 of the file $n_recs...


Platforms: *nix

License: Freeware Size: 67.58 KB Download (91): Tie::File Download

Added: November 18, 2010 | Visits: 934

Tie::HashHistory Tie::HashHistory can track history of all changes to a tied hash. SYNOPSIS my $hh = tie %hash => Tie::HashHistory, PACKAGE, ARGS...; @values = $hh->history(KEY); Tie::HashHistory interposes itself between your program and another tied hash. Fetching and storing to the hash looks...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (95): Tie::HashHistory Download

Added: May 06, 2010 | Visits: 972

Tie::Proxy::Hash Tie::Proxy::Hash is a Perl module created to efficiently merge & translate hashes. SYNOPSIS my (%hash, $ref); $ref = tie %hash, Tie::Proxy::Hash, (bart => +{a => 1, b => 2}, maggie => +{a => 5, c => 6, e => 10}, ); $hash{a} == 1; # true $hash{b} == 2; # true (bart supercedes maggie)...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (99): Tie::Proxy::Hash Download

Added: July 26, 2010 | Visits: 1.036

Tie::Hash::Stack Tie::Hash::Stack is a Perl module which maintains an array of hashes like a stack. SYNOPSIS use Tie::Hash::Stack qw(pop_hash push_hash merge_hash); my %hash; tie( %hash, "Tie::Hash::Stack" ); # Ties the hash $hash{ 1 } = "one"; $hash{ 2 } = "two"; $hash{ 3 } = "three"; push_hash...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (186): Tie::Hash::Stack Download

Added: March 22, 2010 | Visits: 1.305

The Analysis & Reconstruction Sound Engine The Analysis & Reconstruction Sound Engine also known as ARSE, is a program that analyses a sound file into a spectrogram and is able to synthetise this spectrogram, or any other user-created image, back into a sound. The ARSE consists in two main parts, a spectrographer with a base-2...


Platforms: *nix

License: Freeware Size: 696.32 KB Download (94): The Analysis & Reconstruction Sound Engine Download

Added: April 15, 2010 | Visits: 1.005

Sound Juicer 2.16.4 / Sound Juicer is a clean, mean, and lean CD ripper for GNOME 2. Sound Juicer sports a clean interface and simple preferences, aiming to do The Right Thing and What You Mean all of the time. It requires GNOME 2.10 and GStreamer 0.8..


Platforms: *nix

License: Freeware Size: 1.5 MB Download (91): Sound Juicer 2.16.4 / Download

Added: May 05, 2010 | Visits: 843

Tie::FlatFile::Array Tie::FlatFile::Array is a Perl extension which treats a flatfile database as an array of arrays. This module allows the programmer to treat a flatfile database as as array of arrays. For example, lets say you have a datafile that has fixed-length records like so: Field-name Type URL ASCII...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (94): Tie::FlatFile::Array Download

Added: October 27, 2010 | Visits: 2.360

SoundTouch Sound Processing Library SoundTouch Sound Processing Library is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or files: - Tempo (time-stretch): Changes the sound to play at faster or slower speed than original, without affecting the sound pitch. - Pitch (key)...


Platforms: *nix

License: Freeware Size: 430.08 KB Download (273): SoundTouch Sound Processing Library Download

Added: July 09, 2010 | Visits: 1.376

Simple Sound for Small Devices Simple Sound for Small Devices (libsssd) is a simple cross-platform audio library. Simple Sound for Small Devices is designed primarily for games on portable devices such as smart phones, PDAs, and hand-helds. Simple Sound for Small Devices is designed as a very portable, cross-platform API for...


Platforms: *nix

License: Freeware Size: 942.08 KB Download (89): Simple Sound for Small Devices Download

Added: June 18, 2010 | Visits: 1.579

Sound Studio Sound Studio is a Tcl/Tk application written by Paul Sharpe as his third year individual project, for which he received the Microsoft Prize for Software Engineering. It was subsequently improved by Robin Whitehead. It enables recording, playback and simple cut & paste editing of sound files of...


Platforms: *nix

License: Freeware Size: 655.36 KB Download (165): Sound Studio Download

< 1 2 3 4 5 >