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.479.958 Times

B C freeware
Filter: All | Freeware | Demo
 

B C

1 2 3 4 5 > 
Added: October 19, 2010 | Visits: 877

B::C B::C is Perl compilers C backend. SYNOPSIS perl -MO=C[,OPTIONS] foo.pl This compiler backend takes Perl source and generates C source code corresponding to the internal structures that perl uses to run your program. When the generated C source is compiled and run, it cuts out the time which... Platforms: *nix

License: Freeware Size: 12.2 MB Download (101): B::C Download

Released: November 21, 2012  |  Added: November 21, 2012 | Visits: 473

B. C. Rich Handcrafted Desktop Set for Mac OS The B.C. Rich beautiful guitars.... Bich Bass, Stealth Guitar, Gunslinger Guitar, Draco Guitar. 7 desktop images in all. Guitars you will see No Where Else! Platforms: Mac

License: Freeware Size: 4 MB Download (47): B. C. Rich Handcrafted Desktop Set for Mac OS Download

Added: July 06, 2010 | Visits: 1.119

Math::Combinatorics Math::Combinatorics is a Perl module that can perform combinations and permutations on lists. SYNOPSIS Available as an object oriented API. use Math::Combinatorics; my @n = qw(a b c); my $combinat = Math::Combinatorics->new(count => 2, data => [@n], ); print "combinations of 2 from:... Platforms: *nix

License: Freeware Size: 10.24 KB Download (168): Math::Combinatorics Download

Added: May 15, 2010 | Visits: 1.191

Set::Partition Set::Partition is a Perl module that can enumerate all arrangements of a set in fixed subsets. SYNOPSIS use Set::Partition; my $s = Set::Partition->new( list => [qw(a b c d e)], partition => [2, 3], ); while (my $p = $s->next) { print join( , map { "(@$_)" } @$p ), $/; } # produces... Platforms: *nix

License: Freeware Size: 7.17 KB Download (133): Set::Partition Download

Added: September 16, 2010 | Visits: 1.285

Grid::Transform Grid::Transform is a Perl module with fast grid transformations. SYNOPSIS use Grid::Transform; $g = Grid::Transform->new([a..o], rows=>5); $g->rotate_270->flip_vertical; print join( , $g->grid), "n"; The Grid::Transform module provides fast methods to transform a grid of arbitrary data... Platforms: *nix

License: Freeware Size: 36.86 KB Download (104): Grid::Transform Download

Added: October 23, 2010 | Visits: 940

Array::PatternMatcher Array::PatternMatcher is a pattern matching for arrays. SYNOPSIS This section inlines the entire test suite. Please excuse the ok()s. use Array::PatternMatcher; Matching logical variables to input stream # 1 - simple match of logical variable to input my $pattern = AGE ; my $input =... Platforms: *nix

License: Freeware Size: 6.14 KB Download (118): Array::PatternMatcher Download

Added: October 19, 2010 | Visits: 835

UNIVERSAL::derived_classes SYNOPSIS require UNIVERSAL::derived_classes; package A; package B; @ISA = qw( A ); package C; @ISA = qw( B ); package main; my @derived_classes = A->derived_classes; # B, C my @derived_classes_reversed = A->derived_classes_reversed; # C, B UNIVERSAL::derived_classes provides the... Platforms: *nix

License: Freeware Size: 3.07 KB Download (97): UNIVERSAL::derived_classes Download

Added: June 25, 2013 | Visits: 593

Eigensystem Realization Algorithm [A,B,C,D]=era(h,n,N,Ts,def);This function returns the state-space model (A,B,C,D) in continuous or discrete time. The input parameters are the discrete-time impulse response function (IRF); the order of the system; the number of samples to assembly the Hankel matrix and the sample... Platforms: Matlab

License: Freeware Size: 10 KB Download (48): Eigensystem Realization Algorithm Download

Added: March 28, 2013 | Visits: 397

Standalone Pulldown Menus [A, B, C, ...] = PULLDOWN(TITLE, X, Y, Z, ...) will invoke a simple pulldown menu with title TITLE, and lists of choices in cell arrays, X, Y, Z, ..., and provides the choice index for list X in A, the choice index for list Y in B, etc. CHOICES = PULLDOWN(TITLE, X, Y, Z, ...) does the same thing,... Platforms: Matlab

License: Freeware Size: 10 KB Download (48): Standalone Pulldown Menus Download

Added: September 17, 2010 | Visits: 752

B::CC B::CC is Perl compilers optimized C translation backend. SYNOPSIS perl -MO=CC[,OPTIONS] foo.pl This compiler backend takes Perl source and generates C source code corresponding to the flow of your program. In other words, this backend is somewhat a "real" compiler in the sense that many... Platforms: *nix

License: Freeware Size: 12.2 MB Download (100): B::CC Download

Added: January 13, 2010 | Visits: 1.911

Array::Each::Tutorial Array::Each::Tutorial - POD giving various examples how to use Array::Each. SYNOPSIS man Array::Each man Array::Each::Tutorial or perldoc Array::Each perldoc Array::Each::Tutorial Overview This tutorial contains only POD, so dont do this: use Array::Each::Tutorial; # dont do this... Platforms: *nix

License: Freeware Size: 20.48 KB Download (121): Array::Each::Tutorial Download

Added: September 12, 2010 | Visits: 854

String::Scanf String::Scanf can emulate sscanf() of the C library. SYNOPSIS use String::Scanf; # imports sscanf() ($a, $b, $c, $d) = sscanf("%d+%d %f-%s", $input); ($e, $f, $g, $h) = sscanf("%x %o %s:%3c"); # input defaults to $_ $r = String::Scanf::format_to_re($f); or # works only for Perl 5.005... Platforms: *nix

License: Freeware Size: 1.7 MB Download (99): String::Scanf Download

Added: April 13, 2010 | Visits: 1.944

BigInteger BigInteger is an arbitrary length integer extension module for Perl. SYNOPSIS use Math::BigInteger; The BigInteger extension module gives access to Eric Youngs bignum library. This provides a faster alternative to the Math::BigInt library. The basic object in this library is a BigInteger.... Platforms: *nix

License: Freeware Size: 20.48 KB Download (105): BigInteger Download

Added: March 07, 2010 | Visits: 990

List::Intersperse List::Intersperse Perl module can intersperse / unsort / disperse a list. SYNOPSIS use List::Intersperse qw/intersperseq/; @ispersed = intersperseq {substr($_[0],0,1)} qw/A1 A2 B1 B2 C1 C2/; @ispersed = List::Intersperse::intersperse qw/A A B B B B B B C/; intersperse and intersperseq... Platforms: *nix

License: Freeware Size: 2.05 KB Download (93): List::Intersperse Download

Added: July 27, 2010 | Visits: 968

Number::Latin Number::Latin is a Perl module that can convert to/from the number system "a,b,...z,aa,ab..." SYNOPSIS use Number::Latin; print join( , map int2latin($_), 1 .. 30), "n"; # # Prints: # a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ac ad Some applications, notably the... Platforms: *nix

License: Freeware Size: 5.12 KB Download (103): Number::Latin Download

Released: December 24, 2012  |  Added: December 24, 2012 | Visits: 442

Secret of the Lost Cavern Secret of the Lost Cavern plunges the player into an inspiring adventure that takes place during the Paleolithic period in prehistoric time, 15,000 years B.C. At this time, our ancestors were able to communicate with one another, create fire, cook meat, cut flint and make spears for hunting...... Platforms: Mac

License: Freeware Size: 313.3 MB Download (57): Secret of the Lost Cavern Download

Released: September 26, 2012  |  Added: September 26, 2012 | Visits: 278

Secret of the Lost Cavern Lite In 15,000 B.C., strange symbols found while hunting remind Arok of an encounter with a charismatic traveler a long time ago. In order for him to find his long-forgotten friend, the most brilliant painter of Prehistoric times, Arok begins a long and perilo Platforms: Mac

License: Freeware Size: 301 MB Download (52): Secret of the Lost Cavern Lite Download

Released: September 08, 2003  |  Added: November 12, 2006 | Visits: 8.960

Happy Note! Sing 'n Learn Treble Clef ABC From 2 to 17 different notes in Treble Clef, 32 free music reading lessons in alphabetical notation system (A B C...), to learn at your own pace. Hear and sing (or read) the notes at the same time! Each lesson features 5 different tempos: Largo - Adagio - Andante - Moderato - Allegro. The color... Platforms: Windows

License: Freeware Size: 622 KB Download (519): Happy Note! Sing 'n Learn Treble Clef ABC Download

Released: January 04, 2004  |  Added: February 20, 2006 | Visits: 2.258

MaxPasswords It generates random passwords. From this version you can specify a mask for your passwords.The options are : 'l' -lowercase ,'u' -uppercase , 'n' -numeric , 's' -symbols , 'e' -extended , 'x' -any of the selected types of characters and 'a','b','c','d' for use characters from your 4 custom... Platforms: Windows

License: Freeware Size: 349 KB Download (150): MaxPasswords Download

Added: August 30, 2008 | Visits: 1.366

Graphics-Explorer Graphically plot/compute/explore/print different types of mathematical equations. Plot/print - normal, parametric, implicit, functions; Compute function/polynomial thru set of 1..40 dots; Use constants a,b,c, change them with a mouse click, graphics adjust automatically creating a movie like... Platforms: Windows

License: Freeware Size: 484 KB Download (270): Graphics-Explorer Download

1 2 3 4 5 >