Main > Free Download Search >

Free a5 paper software for linux

a5 paper

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 166
Paper::Specs 0.07

Paper::Specs 0.07


Paper::Specs is a Perl module with size and layout information for paper stock, forms, and labels. more>>
Paper::Specs is a Perl module with size and layout information for paper stock, forms, and labels.

SYNOPSIS

use Paper::Specs units => "cm";
my $form = Paper::Specs->find( brand => "Avery", code => "1234");

use Paper::Specs units => "cm", brand => "Avery";
my $form = Paper::Specs->find( code => "1234");

# location of first label on sheet
my ($xpos, $ypos) = $form->label_location( 1, 1);
my ($h, $w) = $form->label_size;

I appologise in advance for the hasty nature of this code. I want to get it out to support some other code I am writing. I promise to revisit it shortly to clear up the rough patches - however your valuable input is most welcome.

CAVEAT ALPHA CODE - This is a preliminary module and will be subject to fluctuations in API and structure based on feedback from users.

I expect that there will be some interest in this code and it should firm up quickly.

If this module does not deliver what you are looking for then you are encouraged to contact the author and voice your needs!

OTHER LABELS - I know about the Labels.xml file which is part of OpenOffice but have not figured out how it is encoded. I have the gLabels specifications file too. I plan to use these to help populate the data for this module.

<<less
Download (0.017MB)
Added: 2007-02-27 License: Perl Artistic License Price:
971 downloads
Page Curl 0.5

Page Curl 0.5


Page Curl plug-in does the well-known page curl effect (a la KPT). more>>
Page Curl plug-in does the well-known page curl effect (a la KPT).

It is likewhen you curl one of the corners of a sheet of paper.

<<less
Download (MB)
Added: 2006-09-20 License: Perl Artistic License Price:
658 downloads
Paper Harbour 1.0.4

Paper Harbour 1.0.4


Paper Harbour is a multi-user document management system. more>>
Paper Harbour is a software based system which allows you to securely organise and distribute your electronic documentation.
Paper Harbour runs over a network and allows clients to access a central document archive. Paper Harbour is compatible with both Windows and Linux platforms and is designed to work with MySQL open source database, although it is compatible with other databases.
Paper Harbour can provide a central point for information exchange in the form of shared documents.
Whether the organisation is project based, product based or service based Paper Harbour can provide structure and tools to aid business development.
Paper Harbour doesnt only store documents, it stores information about the documents. It also includes functionality which supports distribution of documents, unique document ids, document reviews, searching and more.
Paper Harbour is designed to be simple so that users do not need a high degree of technical knowledge to be able to use it. This simplicity is defined in the concept which Paper Harbour is built on.
Paper Harbour is also designed as a platform for document management. It can be installed and run with the standard functions or it can be modified to include customer specific functions. In addition, Paper Harbour is supplied with the source code so our customers are free to make their own modifications.
The Paper Harbour has been designed so that it is compatible with Open Source solutions. This means that our customers can reduce their implementation cost. Supporting Technologies Nordic are committed to ensuring that Paper Harbour is affordable for all sizes of organisations, so that smaller organisation can have access to the same technologies that large organisations use.
Main features:
- Centralised Storage
- Automatic Distribution
- Version and Change Control
- Security
<<less
Download (0.90MB)
Added: 2005-04-12 License: LGPL (GNU Lesser General Public License) Price:
1835 downloads
Optar 1.0

Optar 1.0


Optar stands for OPTical ARchiver. more>>
Optar stands for OPTical ARchiver. This project is a codec for encoding data on paper. Optar fits 200kB on an A4 page, then you print it with a laser printer. If you want to read the recording, scan it with a scanner and feed into the decoder program.

A practical level of reliability is ensured using forward error correction code (FEC). Automated processing of page batches facilitates storage of files larger than 200kB.
<<less
Download (0.028MB)
Added: 2007-07-14 License: GPL (GNU General Public License) Price:
834 downloads
Stage Managers Helper 0.4.4

Stage Managers Helper 0.4.4


SMHelper provides Web-based tools to speed up the process of keeping paperwork for each show. more>>
SMHelper provides Web-based tools to speed up the process of keeping paperwork for each show.
Stage Managers Helper is a set of PHP scripts to assist the Stage Managers of the world in keeping all the minutiae and paperwork which is associated with live entertainment under control. Rather than have to recreate the form for each show you use, or open a heavy application like a word processor, I find it much easier to just let the scripts generate the layout, and then fill in the blanks and click away. This should hopefully automate show management to some degree, and in so doing, ease the load on web Stage Managers servers.
Hopefully, by having the forms available via a web browser, the SM need only have a computer with access to the server and need not worry whether s/he remembered to pack their computer. In addition, since the data is stored on the server, the other members of a production team need only visit the website to see the days report, should they lose their paper copy or simply not desire more paper in their lives.
That said, I cant create this software alone. I need feedback. I want to know what you need or want from this software. If I can get it done in any sane way, Ill put it in the works. Currently planned:
Collation: Collect all data for one person/department into a single page,automatically,over a range of dates.
Currently included [and at least semi-working] in the package are pages for:
Generating Daily Reports
Viewing Daily Reports [Soon with print view]
Basic Show Info Setup
Props list generation and maintenance
Collation and summarization
French Scene Setup and Tables Generation
Enhancements:
- Added actual_sections.php. Script for setting up the breakdown of your show. *Fixed up french_scener.php to display entered data, at least rudimentarily. *Cosmetic fixes: Unified title blocks, interface consistency where possible
<<less
Download (0.018MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1218 downloads
Spreadsheet::Perl 0.07

Spreadsheet::Perl 0.07


Spreadsheet::Perl is a pure Perl implementation of a spreadsheet engine. more>>
Spreadsheet::Perl is a pure Perl implementation of a spreadsheet engine.
SYNOPSIS
use Spreadsheet::Perl;
use Spreadsheet::Perl::Arithmetic ;
my $ss = tie my %ss, "Spreadsheet::Perl"
$ss->SetNames("TEST_RANGE" => A5:B8) ;
$ss{TEST_RANGE} = 7 ;
DefineSpreadsheetFunction(AddOne, &AddOne) ;
$ss{A3} = PerlFormula($ss->AddOne("A5") + $ss{A5}) ;
print "A3 formula => " . $ss->GetFormulaText(A3) . "n" ;
print "A3 = $ss{A3}n" ;
$ss{ABC1:ABD5} = 10 ;
$ss{A4} = PerlFormula($ss->Sum("A5:B8", "ABC1:ABD5")) ;
print "A4 = $ss{A4}n" ;
...
Main features:
- set and get values from cells or ranges
- handle cell private data
- has fetch/store callback
- has cell attributes access
- has cell/range fillers (auto-fill functionality)
- set formulas (pure perl and common format)
- compute the dependencies between cells
- formulas can fetch data from multiple spreadsheets and the dependencies still work
- checks for circular dependencies
- debugging triggers
- has a simple architecture for expansion
- has a simple architecture for debugging (and some flags are already implemented)
- can read its data from a file
- supports cell naming
- cell and range locking
- input validators
- cell formats (pod, HTML, ...)
- can define spreadsheet functions from the scripts using it or via a new module of your own
- Recalculate() / AUTOCALC
- value caching to speed up formulas and volatile cells
- cell address offsetting functions
- Automatic formula offsetting
- Relative and fixed cell addresses
- slice access
- Perl scalar mapping to a cell
- some debugging tool (dump, dump table, dump to HTML, formula stack trace, ...)
<<less
Download (0.042MB)
Added: 2007-07-05 License: Perl Artistic License Price:
844 downloads
phpRPG 0.8.0

phpRPG 0.8.0


phpRPG is a Web-based multiplayer fantasy RPG. more>>
phpRPG project is a Web-based multiplayer fantasy RPG.
phpRPG is a multiplayer fantasy role-playing game driven by PHP and MySQL, with aims to develop a Web-based game engine which shares common qualities between multiple user dungeons (MUDs), paper & pen RPGs, and computer RPGs.
Enhancements:
- With this release, the code was reviewed and tidied up to comply with the coding standards, the need for cookies was eliminated
- all of the images were changed to .png or .jpg format
- the dynamic hexagonal grid image is now replaced by image tiles
- JavaScript was incorporated to provide better player control
- an event processor was implemented
- the map editor was advanced and database structures reorganised
- the chat system was improved (but emotions are disabled for the moment)
- there are new items-related functions such as take, drop, identify, and equip
- there is now a rough but functional and playable combat system.
<<less
Download (MB)
Added: 2007-01-03 License: GPL (GNU General Public License) Price:
1032 downloads
Image::Density Perl Module 0.2

Image::Density Perl Module 0.2


The metric implemented in the Image::Density Perl Module estimates the density of data where there is data. more>>
The metric implemented in the Image::Density Perl Module estimates the density of data where there is data, and has a reasonable correlation with goodness as judged by humans.

That is, if you let a human look at a set of images and judge quality, the density values for those images as calculated here tend to correlate well with the human judgement (densities that are too high or too low represent "bad images).

This project is intended for use on bitonal TIFF images, such as those from scanning paper documents.
<<less
Download (0.63MB)
Added: 2007-05-15 License: Perl Artistic License Price:
892 downloads
Matrix Public Net 0.5.0

Matrix Public Net 0.5.0


Matrix Public Net spreads short voice messages through a web of trust. more>>
Matrix Public Net spreads short voice messages through a web of trust; credibility decays until a threshold where the message is dropped.

Matrix Public Net comes with a program for recording and sending messages as well as plugins for XMMS and WinAmp that play received messages.

Extending the Blogosphere

This is a proposal for the extension of the Blogosphere, the network of Weblogs.
Individual Blogs are connected by their users implicitly: a community emerges, because users regularly read and comment on others entries. By making this connexions explicit, a web of trust is created which functions like a reputation mechanism.

The resulting system leverages the advantages of social networks for the distribution of news. It can be implemented as a decentralised system, with a simple extension to the Blogosphere.

The system is explained in a paper and in the presentation at the Mobile Entertainment conference in Manchester.

The RSS MPN-Interest module is the first part of this extension.
<<less
Download (0.45MB)
Added: 2006-05-12 License: GPL (GNU General Public License) Price:
1260 downloads
Warm 1.0

Warm 1.0


Warm is a GTK theme with sandy colors and a hint of sunset. more>>
Warm 1.0 is yet another nice theme for Linux users. It has sandy colors with a hint of sunset. This also includes a panel back ground for top and bottom panels and a wall paper that goes well with it.
<<less
Added: 2008-08-13 License: GPL Price: FREE
1 downloads
PCL::Simple 1.02

PCL::Simple 1.02


PCL::Simple is a Perl module to create PCL for printing plain text files. more>>
PCL::Simple is a Perl module to create PCL for printing plain text files.

SYNOPSIS

use PCL::Simple qw( PCL_pre PCL_post );

open PLAIN, ready_for_printing.txt or die;

print SNAZZY PCL_pre( -w => 132, -lpp => 66 );
print SNAZZY while ( );
print SNAZZY PCL_post;

close PLAIN;
close SNAZZY;

PCL::Simple will provide PCL strings that cause your printer to print a plain text file with *exactly* the right font -- i.e. the exact font needed to fill the page with as many fixed width characters across and down as you specify.

In addition to providing for your desired width and height layout, the provided PCL strings will also cause the printer to honor your other desires regarding paper size, paper orientation, sides printed, and number of copies.

USAGE

Two functions are exportable: PCL_pre and PCL_post.
PCL_post takes no parameters, it simply returns a string containing the "Printer Reset Command" and "Universal Exit Language Command" as specified by PCL documentation. This string is meant for appending to the end of your plain text document.

PCL_pre takes a list or an href of key value pairs and returns a PCL string for insertion at the beginning of your plain text document. PCL_pre Paramaters are:

-w

Width (Required)

-lpp

Lines Per Page (Required)

-ms

Media Size defaults to letter. Valid values are: executive, letter, legal, ledger, a4, a3, monarch, com-10, d1, c5, b5

-msrc

Media Source is not set by default. Valid values are: numbers from 0 to 69. Generally refers to paper trays or feeders. See your printer documentation for details.

-o

Orientation defaults to portrait. Valid values are: landscape, portrait.

-s

Sides defaults to 0. Valid values are: 0 (Single), 1 (Double Long), 2 (Double Short)

-c

Copies defaults to 1.

<<less
Download (0.005MB)
Added: 2007-04-03 License: Perl Artistic License Price:
565 downloads
Mash 0.2

Mash 0.2


Mash project is a software implementation of the pencil & paper game called mash. more>>
Mash project is a software implementation of the pencil & paper game called mash.
Mash is a software implementation of the pencil and paper game of Mash.
Its an easy to learn game which can be played by anyone.
Currently it is implemented using the FOX GUI toolkit, which allows it to be ported with ease to both X11 (over Linux, BSD, etc.) and Win32.
Enhancements:
- updated to use FOX 1.0.43
- also compiles with FOX 1.1.33 (under Linux)
- obj/Makefile updated
- obj/Makefile.dmc created, allows for Win32 compilation using Digital Mars C++
- copyright dates updated in source and header files
<<less
Download (MB)
Added: 2006-11-21 License: MIT/X Consortium License Price:
1984 downloads
DataDrafter Personal Edition 1.1

DataDrafter Personal Edition 1.1


DataDrafter is a new and unique program that allows you to create your own interactive graphics applications. more>>
DataDrafter project is a new and unique program that allows you to create your own interactive graphics applications with data editing, navigation, search and reporting features built in. Use DataDrafter instead of Visio for example, to create diagrams, maps and technical drawings that are interactive and fully integrated with your data.

Your visualizations become real applications instead of just wall paper. You can even share your graphics and data as an application on the web or on your own intranet.
If you use a combination of drawings and spreadsheets to manage data, try using DataDrafter instead.

The Integrated Data/Graphics Environment ensures that both your data and graphics stay synchronized. With DataDrafter your drawings become an interactive part of your data management process. Why put all that effort into your drawings just to hang them on the wall? Put them to work for you and others while keeping them up to date with DataDrafter.

<<less
Download (MB)
Added: 2006-05-25 License: Freeware Price:
1263 downloads
phpFaber TinyLink 1.0.005

phpFaber TinyLink 1.0.005


phpFaber TinyLink project is a Web script for creating tiny URLs. more>>
phpFaber TinyLink project is a Web script for creating tiny URLs.
You probably received internet adress (or links) that did not work with your mail software. The link seems to be cut in half and connect you to an error page.
phpFaber TinyLink allows you to convert quite instantly an endless internet adress into a new shorter one, that points to the exact same page but that is only about 20 characters long.
Internet adresses esay to write one a real sheet of paper !! While reducing the lenght of the internet adress to about 20 characters, phpFaber TinyLink allows you to write it down a piece of paper with far less chances of error.
These two Internet adress are equivalent. phpFaber TinyLink is free. It is fully customizable and doesnt require any programming skills! You can create your site just in 3 clicks!
Enhancements:
- Minor code updates were done.
<<less
Download (0.30MB)
Added: 2006-01-19 License: GPL (GNU General Public License) Price:
1375 downloads
CodePrinter 1.0.3

CodePrinter 1.0.3


CodePrinter is a tiny utility to print out source code or other text files. more>>
CodePrinter is a tiny utility to print out source code or other text files. CodePrinter projects main intent is to provide you with print-outs for your code reviews and to save some paper by fitting two code pages onto one sheet of paper.
CodePrinter is written in Java and makes use of the Java Printing API. Its an Open Source project hosted at SourceForge.net and is protected by the GNU General Public License.
Unix- & Linux people should consider a2ps as an alternative.
Main features:
- Printing of one or multiple files
- Line numbering
- Simple syntax highlighting for .java, .html and .xml files
- Preview with zoom-in/zoom-out functionality
- Printing of a single or all previewed pages
- Font and font size selection
<<less
Download (MB)
Added: 2005-12-16 License: GPL (GNU General Public License) Price:
1413 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5