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

Lester B Pearson School Board software
Filter: All | Freeware | Demo
 

Lester B Pearson School Board

< 1 2 3 4 5 > 
Added: August 16, 2010 | Visits: 860

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: March 11, 2010 | Visits: 952

Chromium B.S.U. Chromium B.S.U. is a fast paced, arcade-style, top-scrolling space shooter. You are captain of the cargo ship Chromium B.S.U., responsible for delivering supplies to our troops on the front line. Your ship has a small fleet of robotic fighters which you control from the relative safety of the...





Platforms: *nix

License: Freeware Size: 634.88 KB Download (98): Chromium B.S.U. Download

Added: May 09, 2010 | Visits: 825

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

Added: July 02, 2010 | Visits: 1.262

Plan-B Linux Plan-B is a bootable Linux environment without the need for a hard drive, it runs entirely in ram or from the cd, based on a basic, stripped installation of Red Hat Linux and the fundamental workings of the SuperRescue CD. A list of tools and utilities are also included for projects such as: *...


Platforms: *nix

License: Freeware Size: 546 MB Download (118): Plan-B Linux Download

Added: February 11, 2010 | Visits: 2.640

Ryans In/Out Board Ryans In/Out Board is a perl driven in/out board for small-medium size organisations that needs staff to be aware of other staff whereabouts. (Ryans In/Out Board will work for larger organisations but it may be more cumbersome to use with larger numbers of staff).. Ryan's In/Out Board is a perl...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (110): Ryans In/Out Board 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.504

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: August 18, 2010 | Visits: 1.021

B::Graph B::Graph is a Perl compiler backend to produce graphs of OP trees. SYNOPSIS perl -MO=Graph,-text prog.pl >graph.txt perl -MO=Graph,-vcg prog.pl >graph.vcg xvcg graph.vcg perl -MO=Graph,-dot prog.pl | dot -Tps >graph.ps This module is a backend to the perl compiler (B::*) which, instead...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (90): B::Graph Download

Added: April 16, 2010 | Visits: 965

B::Deparse B::Deparse is a Perl compiler backend to produce perl code. SYNOPSIS perl -MO=Deparse[,-d][,-fFILE][,-p][,-q][,-l] [,-sLETTERS][,-xLEVEL] prog.pl B::Deparse is a backend module for the Perl compiler that generates perl source code, based on the internal compiled structure that perl itself...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (93): B::Deparse 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: 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: October 26, 2010  |  Added: November 25, 2010 | Visits: 2.473

QZ School Management QZ School Management is a management software that turn your school,education center,learning center,kindergarten,child care center and daycare center to more manageable.It consists of several modules that simplifies and electronically all the information under the roof. Modules: 1)...


Platforms: Windows, Other

License: Freeware Size: 1.39 MB Download (1016): QZ School Management Download

Released: December 13, 2017  |  Added: December 24, 2017 | Visits: 2.288

Driving School Driving School can be used by Driving School Owners, Managers, Operators and Independent Instructors. Keep track of lessons and finances for all your instructors with one complete software system. Keeps all of your customer information and schedules organized so you can view them on a calendar...


Platforms: Windows, Windows 7, Windows Server

License: Shareware Cost: $49.95 USD Size: 16.79 MB Download (1000): Driving School Download

Released: June 13, 2016  |  Added: July 21, 2016 | Visits: 1.811

Online School Calendar Teachers or administrators can post events that appear on targeted calendars, the school website, and on homepages of each student and parent. You can quickly create color-coded online calendars for different types of events, for example: class schedules, tests, sports events, performances,...


Platforms: Windows, Windows 7, Windows Server

License: Demo Cost: $4.95 USD Size: 195.12 KB Download (129): Online School Calendar Download

Released: October 01, 2012  |  Added: October 20, 2012 | Visits: 1.573

School Software Pack Pro School Software Pack by PrimaSoft includes pre-designed, ready-to-use database solutions: School Library System Textbook Manager Tool/Equipment Tracking System Inventory System Teacher Organizer Visitor Organizer Amigo (Calendar/Reminder) + over 100 database templates. Learn once use multiple...


Platforms: Windows

License: Shareware Cost: $349.00 USD Size: 7.31 MB Download (119): School Software Pack Pro Download

< 1 2 3 4 5 >