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

B F Skinner Box freeware
Filter: All | Freeware | Demo
 

B F Skinner Box

< 1 2 3 4 5 > 
Added: November 21, 2010 | Visits: 789

B::Bblock B::Bblock - Walk basic blocks. SYNOPSIS # External interface perl -MO=Bblock[,OPTIONS] foo.pl # Programmatic API use B::Bblock qw(find_leaders); my $leaders = find_leaders($root_op, $start_op); This module is used by the B::CC back end. It walks "basic blocks". A basic block is a...



Platforms: *nix

License: Freeware Size: 12.2 MB Download (93): B::Bblock Download

Added: January 23, 2010 | Visits: 780

B::Asmdata B::Asmdata is an autogenerated data about Perl ops, used to generate bytecode. SYNOPSIS use B::Asmdata qw(%insn_data @insn_name @optype @specialsv_name); Provides information about Perl ops in order to generate bytecode via a bunch of exported variables. Its mostly used by B::Assembler and...





Platforms: *nix

License: Freeware Size: 12.2 MB Download (91): B::Asmdata Download

Added: February 08, 2010 | Visits: 756

B::Terse B::Terse - Walk Perl syntax tree, printing terse info about ops. SYNOPSIS perl -MO=Terse[,OPTIONS] foo.pl This version of B::Terse is really just a wrapper that calls B::Concise with the -terse option. It is provided for compatibility with old scripts (and habits) but using B::Concise...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (90): B::Terse Download

Added: September 06, 2010 | Visits: 941

B::Lint B::Lint module contains Perl lint. SYNOPSIS perl -MO=Lint[,OPTIONS] foo.pl The B::Lint module is equivalent to an extended version of the -w option of perl. It is named after the program lint which carries out a similar process for C programs. OPTIONS AND LINT CHECKS Option words are...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (101): B::Lint Download

Added: August 16, 2010 | Visits: 859

B::Assembler B::Assembler is a Perl module created to assemble Perl bytecode. SYNOPSIS use B::Assembler qw(newasm endasm assemble); newasm(&printsub); # sets up for assembly assemble($buf); # assembles one line endasm(); # closes down use B::Assembler qw(assemble_fh); assemble_fh($fh, &printsub); #...


Platforms: *nix

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

Added: May 09, 2010 | Visits: 824

B::More B::More Perl module contains additional introspection methods and functions. Adds stuff I needed in B and wasnt there. Feel free to email me with suggestions for other methods I can add. B::SV METHODS svref Inverse of B::svref_2object. B::PVMG METHODS magic Returns a string...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (87): B::More Download

Added: May 25, 2010 | Visits: 1.299

Geo::TigerLine::Record::B Geo::TigerLine::Record::B is a TIGER/Line 2003 Polygon Geographic Entity Codes: Corrections. SYNOPSIS use Geo::TigerLine::Record::B; @records = Geo::TigerLine::Record::B->parse_file($fh); @records = Geo::TigerLine::Record::B->parse_file($fh, &callback); $record =...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (95): Geo::TigerLine::Record::B Download

Added: September 11, 2010 | Visits: 870

B::LintSubs B::LintSubs is a Perl compiler backend to check sub linkage. SYNOPSIS perl -MO=LintSubs [FILE] [-e PROGRAM] When using use strict, subroutine names are not checked at the callsite; this makes the following a perfectly valid program at compiletime, that only blows up at runtime use strict;...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (92): B::LintSubs Download

Added: January 02, 2010 | Visits: 793

B::TerseSize B::TerseSize is a Perl module that prints information about ops and their (estimated) size. SYNOPSIS perl -MO=TerseSize[,OPTIONS] foo.pl The B::Size and B::TerseSize modules attempt to measure the size of Perl op codes. The output of B::TerseSize is similar to that of B::Terse, but includes...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (95): B::TerseSize Download

Released: August 16, 2012  |  Added: August 16, 2012 | Visits: 1.409

B::Tree B::Tree is a simplified version of B::Graph for demonstration. SYNOPSIS perl -MO=Tree program | dot -Tps > tree.ps This is a very cut-down version of B::Graph; it generates minimalist tree graphs of the op tree of a Perl program, merely connecting the op nodes and labelling each node with...


Platforms: *nix

License: Freeware Size: 2.05 KB Download (100): B::Tree Download

Added: January 18, 2010 | Visits: 1.503

B::Generate B::Generate is a Perl module which you can create your own op trees. SYNOPSIS use B::Generate; # Do nothing, slowly. CHECK { my $null = new B::OP("null",0); my $enter = new B::OP("enter",0); my $cop = new B::COP(0, "hiya", 0); my $leave = new B::LISTOP("leave", 0, $enter, $null);...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (98): B::Generate Download

Added: January 13, 2010 | Visits: 668

B::Utils B::Utils is a helper functions for op tree manipulation. SYNOPSIS use B::Utils; These functions make it easier to manipulate the op tree. FUNCTIONS all_starts all_roots Returns a hash of all of the starting ops or root ops of optrees, keyed to subroutine name; the optree for main...


Platforms: *nix

License: Freeware Size: 44.03 KB Download (98): B::Utils Download

Added: February 07, 2010 | Visits: 801

B::Flags B::Flags is a Perl module that provides a friendlier flags for B. SYNOPSIS use B::Flags; print B::main_root->flagspv; print B::main_root->privatepv; print $some_b_sv_object->flagspv; By default, $foo->flags when passed an object in the B class will produce a relatively meaningless...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (95): B::Flags Download

Added: January 07, 2010 | Visits: 734

B::Concise B::Concise is a Perl syntax tree, printing concise info about ops. SYNOPSIS perl -MO=Concise[,OPTIONS] foo.pl use B::Concise qw(set_style add_callback); This compiler backend prints the internal OPs of a Perl programs syntax tree in one of several space-efficient text formats suitable for...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (89): B::Concise Download

Added: July 20, 2010 | Visits: 1.564

Roster-in-a-Box Roster-in-a-Box project is a course management system designed to facilitate the use of autograded homework assignments, while also allowing for text-based questions to be submitted online and graded online by the instructor. I developed and currently use the system for my introductory statistics...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (126): Roster-in-a-Box Download

Added: June 25, 2010 | Visits: 686

b. b. is a Web-based manager for Web bookmarks. Bookmarks are stored in an XML file. Operations on the data are done with Perl scripts..


Platforms: *nix

License: Freeware Size: 81.92 KB Download (94): b. Download

Released: July 12, 2012  |  Added: July 12, 2012 | Visits: 1.181

Protomissume Software Box Shot Maker Protomissume Software Box Shot Maker (OpenSource Version) creates realistic images of 3D boxes for your software. It is very easy to use. You simply provide two to three images, adjust the box orientation and save the result as an image file. Despite being free and opensource, the tool is packed...


Platforms: Windows

License: Freeware Size: 122.88 KB Download (71): Protomissume Software Box Shot Maker Download

Released: June 07, 2012  |  Added: June 07, 2012 | Visits: 532

F@HMonitor F@H Monitor is a resiable Windows gadget that will show Folding@home tasks progress. F@H Monitor saves its settings to a gadgetname_Settings.ini file location in the %APPDATA% folder. Color changeable for all gadget's elements, include background. Folding@home is a distributed computing...


Platforms: Windows

License: Freeware Download (429): F@HMonitor Download

Released: July 20, 2012  |  Added: July 20, 2012 | Visits: 1.229

US ZIP Code Database PO Box Edition The database includes a list of more than 9,000 Post Office Box (PO Box) only ZIP codes, state and city name. It is bundled with the ZIPCodeWorld US Gold Edition which includes 5-Digit ZIP code, city name, alias city name, state code, phone area code, city type, country name, country FIPS, time...


Platforms: Windows

License: Freeware Download (484): US ZIP Code Database PO Box Edition Download

Released: November 24, 2012  |  Added: November 24, 2012 | Visits: 714

Icy Box Icons for Mac OS Desktop icons showing the silver and black Icy Box external aluminium case with USB interface. They are intended as a replacement for the generic external hard disk icon in Mac OS X Leopard. - iContainer + Mac - Leopard ready (512'”512 and all other sizes of course) - including 7 icons (with 2...


Platforms: Mac

License: Freeware Size: 5 MB Download (55): Icy Box Icons for Mac OS Download

< 1 2 3 4 5 >