dictionary postscript
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 430
Dictionary 1.00
Every site needs a dictionary. . . for all the special terms and words which are unique to your own industry. Easy to set up and manage, your users will love having access to those hard to understand more>>
This is a great way to get repeat visitors!If the subject matter of your site contains words or phrases which are unique to your industry, why not place a searchable dictionary on your site?Upload a text file with your words and definitions along with the script and soon youll have a searchable dictionary. There is a feature to allow clickable links to other terms within the dictionary which are displayed with the definitions. This is great for music sites, which have their own unique Latin, French, and German terms, as well as medical sites, mechanical sites, and much more!Registered Version comes with support and unlimited updates.
Requirements: Perl, Webserver
<<less Download (0.00KB)
Added: 2009-04-13 License: Commercial Price: $0.00
206 downloads
EnRus dictionary tools 1.1c
EnRus dictionary tools project is a set of Tcl/Tk scripts for manipulating textual (plain or gzipped) dictionary base. more>>
EnRus dictionary tools project is a set of Tcl/Tk scripts for manipulating textual (plain or gzipped) dictionary base.
Its also used for compiling new dictionary bases from plain text files.
It consists of a few TCL console scripts and a Tk interface to them.
It is configurable for different languages.
The dictionary base may contain proper formatting and output procedures.
Main features:
- Find tool - finds records starting with exact pattern.
- Look tool - looks for words, starting with pattern.
- View tool - lets you to view all records that start with words starting with pattern.
- Search tool - searchs in dictionary base for records that answer to request.
- Guess tool - tries to guess words similar to pattern.
- Wander tool - returns random word (records) from file (WANDERWORDS in dictionary base directory or .enruswords in $HOME).
Enhancements:
- Default settings changed for working with Tk 8.3.
<<lessIts also used for compiling new dictionary bases from plain text files.
It consists of a few TCL console scripts and a Tk interface to them.
It is configurable for different languages.
The dictionary base may contain proper formatting and output procedures.
Main features:
- Find tool - finds records starting with exact pattern.
- Look tool - looks for words, starting with pattern.
- View tool - lets you to view all records that start with words starting with pattern.
- Search tool - searchs in dictionary base for records that answer to request.
- Guess tool - tries to guess words similar to pattern.
- Wander tool - returns random word (records) from file (WANDERWORDS in dictionary base directory or .enruswords in $HOME).
Enhancements:
- Default settings changed for working with Tk 8.3.
Download (0.067MB)
Added: 2006-10-10 License: GPL (GNU General Public License) Price:
1111 downloads
Sdictionary 2.7 (Perl Module)
Sdictionary is a cross-platform dictionary project uses own Sdict dictionary format. more>>
Sdictionary is a cross-platform dictionary project uses own Sdict dictionary format. Sdictionary includes Sdict, the main program and two simple applications: Jotter and Data. Unlike ptkdic or gtkdic no MySQL needed, so you can work with dictionary files directly. Currently it is known to work under UNIX, Win32 and Symbian OS.
Main features:
- Cross-platform, works under UNIX, Win32 and Symbian OS
- Open Source, binary .dct format is also open and described in documentation
- Unicode, all words and articles are stored in UTF-8
- Two index levels: short and full
- Compression for dictionary articles
- Tools to convert from text file to .dct and vice versa under both Win32 and UNIX
- Simple Web Dictionary which is included into package
- C library framework with simple CLI, Win32 binaries are available
- Perl API (Sdict.pm module)
- Simple, but powerful Jotter and Data applications
- Compiler which helps you to create own dictionaries
<<lessMain features:
- Cross-platform, works under UNIX, Win32 and Symbian OS
- Open Source, binary .dct format is also open and described in documentation
- Unicode, all words and articles are stored in UTF-8
- Two index levels: short and full
- Compression for dictionary articles
- Tools to convert from text file to .dct and vice versa under both Win32 and UNIX
- Simple Web Dictionary which is included into package
- C library framework with simple CLI, Win32 binaries are available
- Perl API (Sdict.pm module)
- Simple, but powerful Jotter and Data applications
- Compiler which helps you to create own dictionaries
Download (0.023MB)
Added: 2006-10-05 License: Freely Distributable Price:
1118 downloads
Other version of Sdictionary
License:GPL (GNU General Public License)
License:GPL (GNU General Public License)
owl dictionary 0.12
owl is a program to display electronic dictionaries. more>>
owl is a program to display electronic dictionaries. It uses the extensive markup language dicML.
Two dictionaries are currently available with this program: a huge English/German dictionary originally published by Technical University of Chemnitz, and a French/German dictionary written from scratch for dicML and therefore not as big as the first one.
Main features:
- support of the whole dicML standard
- available for all important operating systems
- user interface in English, German and French
- possibility to print
- for free and open source
<<lessTwo dictionaries are currently available with this program: a huge English/German dictionary originally published by Technical University of Chemnitz, and a French/German dictionary written from scratch for dicML and therefore not as big as the first one.
Main features:
- support of the whole dicML standard
- available for all important operating systems
- user interface in English, German and French
- possibility to print
- for free and open source
Download (0.69MB)
Added: 2005-12-30 License: BSD License Price:
1400 downloads
RADIUS::Dictionary 1.0
RADIUS::Dictionary is a RADIUS dictionary parser. more>>
RADIUS::Dictionary is a RADIUS dictionary parser.
SYNOPSIS
use RADIUS::Dictionary;
my $dict = new RADIUS::Dictionary "/etc/radius/dictionary";
$dict->readdict("/some/other/file");
my $num = $dict->attr_num(User-Name);
my $name = $dict->attr_name(1);
This is a simple module that reads a RADIUS dictionary file and parses it, allowing conversion between dictionary names and numbers.
METHODS
new
Returns a new instance of a RADIUS::Dictionary object. If given an (optional) filename, it calls readdict for you.
->readdict
Parses a dictionary file and learns the namenumber mappings.
->attr_num($attrname)
Returns the number of the named attribute.
->attr_type($attrname)
Returns the type (string, integer, ipaddr, or time) of the named attribute.
->attr_name($attrnum)
Returns the name of the attribute with the given number.
->attr_numtype($attrnum)
Returns the type of the attribute with the given number.
->attr_has_val($attrnum)
Returns a true or false value, depending on whether or not the numbered attribute has any known value constants.
->val_has_name($attrnum)
Alternate (bad) name for attr_has_val.
->val_num($attrnum, $valname)
Returns the number of the named value for the attribute number supplied.
->val_name
Returns the name of the numbered value for the attribute number supplied.
<<lessSYNOPSIS
use RADIUS::Dictionary;
my $dict = new RADIUS::Dictionary "/etc/radius/dictionary";
$dict->readdict("/some/other/file");
my $num = $dict->attr_num(User-Name);
my $name = $dict->attr_name(1);
This is a simple module that reads a RADIUS dictionary file and parses it, allowing conversion between dictionary names and numbers.
METHODS
new
Returns a new instance of a RADIUS::Dictionary object. If given an (optional) filename, it calls readdict for you.
->readdict
Parses a dictionary file and learns the namenumber mappings.
->attr_num($attrname)
Returns the number of the named attribute.
->attr_type($attrname)
Returns the type (string, integer, ipaddr, or time) of the named attribute.
->attr_name($attrnum)
Returns the name of the attribute with the given number.
->attr_numtype($attrnum)
Returns the type of the attribute with the given number.
->attr_has_val($attrnum)
Returns a true or false value, depending on whether or not the numbered attribute has any known value constants.
->val_has_name($attrnum)
Alternate (bad) name for attr_has_val.
->val_num($attrnum, $valname)
Returns the number of the named value for the attribute number supplied.
->val_name
Returns the name of the numbered value for the attribute number supplied.
Download (0.042MB)
Added: 2007-04-11 License: Perl Artistic License Price:
933 downloads
GenericTionary 1.0
GenericTionary is a multilingual dictionary software which makes it possible to generate dictionaries from flat files. more>>
GenericTionary is a multilingual dictionary software which makes it possible to generate dictionaries from flat files, to import the dictionaries which are generated with itself, and to export them back to flat files. It can handle multiple dictionaries.
GenericTionary has been developed using Qt 3.3.5 under Pardus.
With GenericTionary you can generate new dictionaries which can be used with GenericTionary, import them into GenericTionary and export back to flat files.
<<lessGenericTionary has been developed using Qt 3.3.5 under Pardus.
With GenericTionary you can generate new dictionaries which can be used with GenericTionary, import them into GenericTionary and export back to flat files.
Download (0.072MB)
Added: 2006-05-22 License: GPL (GNU General Public License) Price:
1250 downloads
Simple dictionary application 1.04
Simple dictionary application allows users to use any plain text dictionary. more>>
Simple dictionary application project allows users to use any plain text dictionary that is UTF-8 with one translation per line and words separated by tabulators.
Applications allow users to use free bilingual dictionaries offline. All dictionaries have to be UTF-8 files with one translation per line and words separated by tabulators. Hundreds of free bilingual dictionaries can be created and downloaded from the Universal dictionary system. Universal dictionary currently interconnects 33 languages (Afrikaans, Basque, Bulgarian, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Finnish, French, German, Greek, Hungarian, Icelandic, Indonesian, Italian, Japanese, Japanese Romaji, Latin, Lithuanian, Norwegian Bokmal, Polish, Portuguese, Romanian, Russian, Simplified Chinese, Slovak, Slovenian, Spanish, Swedish, Turkish)
<<lessApplications allow users to use free bilingual dictionaries offline. All dictionaries have to be UTF-8 files with one translation per line and words separated by tabulators. Hundreds of free bilingual dictionaries can be created and downloaded from the Universal dictionary system. Universal dictionary currently interconnects 33 languages (Afrikaans, Basque, Bulgarian, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Finnish, French, German, Greek, Hungarian, Icelandic, Indonesian, Italian, Japanese, Japanese Romaji, Latin, Lithuanian, Norwegian Bokmal, Polish, Portuguese, Romanian, Russian, Simplified Chinese, Slovak, Slovenian, Spanish, Swedish, Turkish)
Download (0.25MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
1381 downloads
Homemade Dictionary 2.01
Homemade Dictionary is a customizable and easy to use dictionary, with features including background music support. more>>
Homemade Dictionary is a customizable and easy to use dictionary, with features including background music support.
Homemade Dictionary has a built in "Test Your Word Power Game", a medical dictionary, and a nice GUI.
The dictionary has an initial database of of around 5600 words, including slang. You can add your personal words on the fly. It is very small in size (only 637 KB).
Enhancements:
- Wordlist has been updated
<<lessHomemade Dictionary has a built in "Test Your Word Power Game", a medical dictionary, and a nice GUI.
The dictionary has an initial database of of around 5600 words, including slang. You can add your personal words on the fly. It is very small in size (only 637 KB).
Enhancements:
- Wordlist has been updated
Download (0.63MB)
Added: 2006-12-03 License: Freely Distributable Price:
1216 downloads
CAD::Drawing::IO::PostScript 0.03
CAD::Drawing::IO::PostScript is a Perl module with PostScript output methods. more>>
CAD::Drawing::IO::PostScript is a Perl module with PostScript output methods.
I would like this module to both load and save PostScript vector graphics, but I have not yet found a suitable PostScript parsing package.
This module should be considered pre-ALPHA and untested. Some features rely on the authors hacks to PostScript::Simple, which may or may not have been incorporated into the CPAN distribution of PostScript::Simple. For bleeding-edge code, see http://ericwilhelm.homeip.net.
Requisite Plug-in Functions
See CAD::Drawing::IO for a description of the plug-in architecture.
check_type
Returns true if $type is "circ" or $filename is a directory containing a ".circ" file.
$fact = check_type($filename, $type);
Methods
load
load();
save
$drw->save($filename, %opts);
PostScript::Simple::setpscolor
PostScript::Simple::setpscolor();
<<lessI would like this module to both load and save PostScript vector graphics, but I have not yet found a suitable PostScript parsing package.
This module should be considered pre-ALPHA and untested. Some features rely on the authors hacks to PostScript::Simple, which may or may not have been incorporated into the CPAN distribution of PostScript::Simple. For bleeding-edge code, see http://ericwilhelm.homeip.net.
Requisite Plug-in Functions
See CAD::Drawing::IO for a description of the plug-in architecture.
check_type
Returns true if $type is "circ" or $filename is a directory containing a ".circ" file.
$fact = check_type($filename, $type);
Methods
load
load();
save
$drw->save($filename, %opts);
PostScript::Simple::setpscolor
PostScript::Simple::setpscolor();
Download (0.008MB)
Added: 2007-03-17 License: Perl Artistic License Price:
952 downloads
PostScript::File 1.01
PostScript::File is a Perl base class for creating Adobe PostScript files. more>>
PostScript::File is a Perl base class for creating Adobe PostScript files.
SYNOPSIS
use PostScript::File qw(check_tilde check_file
incpage_label incpage_roman);
Simplest
An hello world program:
use PostScript::File;
my $ps = new PostScript::File();
$ps->add_to_page( Letter,
height => 500,
width => 400,
bottom => 30,
top => 30,
left => 30,
right => 30,
clip_command => stroke,
clipping => 1,
eps => 1,
dir => ~/foo,
file => "bar",
landscape => 0,
headings => 1,
reencode => ISOLatin1Encoding,
font_suffix => -iso,
errors => 1,
errmsg => Failed:,
errfont => Helvetica,
errsize => 12,
errx => 72,
erry => 300,
debug => 2,
db_active => 1,
db_xgap => 120,
db_xtab => 8,
db_base => 300,
db_ytop => 500,
db_color => 1 0 0 setrgbcolor,
db_font => Times-Roman,
db_fontsize => 11,
db_bufsize => 256,
);
<<lessSYNOPSIS
use PostScript::File qw(check_tilde check_file
incpage_label incpage_roman);
Simplest
An hello world program:
use PostScript::File;
my $ps = new PostScript::File();
$ps->add_to_page( Letter,
height => 500,
width => 400,
bottom => 30,
top => 30,
left => 30,
right => 30,
clip_command => stroke,
clipping => 1,
eps => 1,
dir => ~/foo,
file => "bar",
landscape => 0,
headings => 1,
reencode => ISOLatin1Encoding,
font_suffix => -iso,
errors => 1,
errmsg => Failed:,
errfont => Helvetica,
errsize => 12,
errx => 72,
erry => 300,
debug => 2,
db_active => 1,
db_xgap => 120,
db_xtab => 8,
db_base => 300,
db_ytop => 500,
db_color => 1 0 0 setrgbcolor,
db_font => Times-Roman,
db_fontsize => 11,
db_bufsize => 256,
);
Download (0.022MB)
Added: 2006-09-26 License: Perl Artistic License Price:
1124 downloads
GNU dictionary framework 0.6.6
GNU dictionary framework project contains a toolkit for connecting to different dictionaries. more>>
GNU dictionary framework project contains a toolkit for connecting to different dictionaries.
It uses plugins to connect to different dictionaries (stardict, dictd, babylon..).
Enhancements:
- compile with Qt 4.0.1 and add check it require Qt 4.0
- make better directory installation
- tune the qmake file
- support splash screen (linux may have problem)
<<lessIt uses plugins to connect to different dictionaries (stardict, dictd, babylon..).
Enhancements:
- compile with Qt 4.0.1 and add check it require Qt 4.0
- make better directory installation
- tune the qmake file
- support splash screen (linux may have problem)
Download (0.18MB)
Added: 2006-10-20 License: GPL (GNU General Public License) Price:
1103 downloads
Sunrise Data Dictionary 1.00
Sunrise Data Dictionary is a library for hashtable storage of arbitrary data objects. more>>
Sunrise Data Dictionary is a library for hashtable storage of arbitrary data objects with built-in reference counting and guaranteed order iteration for the C programming language.
Sunrise Data Dictionary library can participate in external reference counting systems or use its own built-in reference counting. It comes with a variety of hash functions and allows the use of runtime supplied hash functions via callback mechanism. The source code is well documented.
The Sunrise Data Dictionary was specifically designed for use within the Afelio and Callweaver telephony servers, the implementation focuses on performance and scalability.
Enhancements:
- This is the initial release of the full API (all header files) and a developer snapshot of the implementation.
<<lessSunrise Data Dictionary library can participate in external reference counting systems or use its own built-in reference counting. It comes with a variety of hash functions and allows the use of runtime supplied hash functions via callback mechanism. The source code is well documented.
The Sunrise Data Dictionary was specifically designed for use within the Afelio and Callweaver telephony servers, the implementation focuses on performance and scalability.
Enhancements:
- This is the initial release of the full API (all header files) and a developer snapshot of the implementation.
Download (0.17MB)
Added: 2007-07-16 License: MIT/X Consortium License Price:
832 downloads
Computer Dictionary Computer Terminology 1.0
Computer Dictionary: What is an Operating System or OS. This computer terminology explained in plain English in this simple video computer lesson you ... more>> <<less
Download (48145KB)
Added: 2009-04-06 License: Freeware Price: Free
241 downloads
PostScript::Graph::Bar 1.02
PostScript::Graph::Bar Perl module can draw a bar chart on a postscript file. more>>
PostScript::Graph::Bar Perl module can draw a bar chart on a postscript file.
SYNOPSIS
Simplest
Take labels and values from a csv file and output as a bar chart on a postscript file.
use PostScript::Graph::Bar;
my $bar = new PostScript::Graph::Bar();
$bar->build_chart("survey.csv");
$bar->output("survey");
Typical
use PostScript::Graph::Bar;
my $bar = new PostScript::Graph::Bar(
file => {
paper => A4,
landscape => 1,
},
layout => {
background => [1, 1, 0.9],
heading => Test results,
},
y_axis => {
smallest => 4,
},
style => {
auto => [qw(green blue red)],
}
);
$bar->series_from_file( data.csv );
$bar->build_chart();
$bar->output( results );
The file data.csv has a row of headings followed by 4 rows of 10 items. This produces a bar chart with four groups of ten bars each. The groups are labelled with the first value in each row. The bars in each group are coloured ranging from brown through green and then shades of blue. A Key links the row of headings to each colour. In addition, the background is beige, a heading is placed above the chart and the y axis is not too crowded.
All options
use PostScript::Graph::Bar;
my $bar = new PostScript::Graph::Bar(
file => {
# Paper size, orientation etc
# See PostScript::File
},
layout => {
# General proportions, headings
# See PostScript::Graph::Paper
},
x_axis => {
# All settings for X axis
# See PostScript::Graph::Paper
},
y_axis => {
# All settings for Y axis
# See PostScript::Graph::Paper
},
style => {
# Appearance of bars
# See PostScript::Graph::Style
},
key => {
# Settings for any Key area
# See PostScript::Graph::Key
},
show_key => 1,
labels_row => 1,
);
<<lessSYNOPSIS
Simplest
Take labels and values from a csv file and output as a bar chart on a postscript file.
use PostScript::Graph::Bar;
my $bar = new PostScript::Graph::Bar();
$bar->build_chart("survey.csv");
$bar->output("survey");
Typical
use PostScript::Graph::Bar;
my $bar = new PostScript::Graph::Bar(
file => {
paper => A4,
landscape => 1,
},
layout => {
background => [1, 1, 0.9],
heading => Test results,
},
y_axis => {
smallest => 4,
},
style => {
auto => [qw(green blue red)],
}
);
$bar->series_from_file( data.csv );
$bar->build_chart();
$bar->output( results );
The file data.csv has a row of headings followed by 4 rows of 10 items. This produces a bar chart with four groups of ten bars each. The groups are labelled with the first value in each row. The bars in each group are coloured ranging from brown through green and then shades of blue. A Key links the row of headings to each colour. In addition, the background is beige, a heading is placed above the chart and the y axis is not too crowded.
All options
use PostScript::Graph::Bar;
my $bar = new PostScript::Graph::Bar(
file => {
# Paper size, orientation etc
# See PostScript::File
},
layout => {
# General proportions, headings
# See PostScript::Graph::Paper
},
x_axis => {
# All settings for X axis
# See PostScript::Graph::Paper
},
y_axis => {
# All settings for Y axis
# See PostScript::Graph::Paper
},
style => {
# Appearance of bars
# See PostScript::Graph::Style
},
key => {
# Settings for any Key area
# See PostScript::Graph::Key
},
show_key => 1,
labels_row => 1,
);
Download (0.054MB)
Added: 2007-07-24 License: Perl Artistic License Price:
825 downloads
PostScript::Graph::Style 1.02
PostScript::Graph::Style is a style settings for postscript objects. more>>
SYNOPSIS
Simplest
Each time a new object is created the default style will be slightly different.
use PostScript::File;
use PostScript::Graph::Style;
my $file = new PostScript::File();
my $seq = new PostScript::Graph::Sequence();
while (...) {
my $style = new PostScript::Graph::Style(
sequence => $seq,
point => {}
);
$style->write($file);
$file->add_to_page(<<less
Download (0.054MB)
Added: 2006-07-31 License: Perl Artistic License Price:
1180 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above dictionary postscript search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed