Main > Free Download Search >

Free compound sentences software for linux

compound sentences

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 100
Automated support for compound RPC calls 0.2

Automated support for compound RPC calls 0.2


Automated support for compound RPC calls is a project which augments RPCGEN to support NFSv4-style compound procedures. more>>
Automated support for compound RPC calls is a project which augments RPCGEN to support NFSv4-style compound procedures.

NFSv4 specifies that the RPC calls be batched into a "compound" call. There is no support for this in RPCGEN.

By rearranging the ONC IDL for NFSv4 into AutoGen definitions, these templates will emit the original IDL *plus* all the code to package, send, distribute, collect, return, and dispatch the results.

The distributed program author merely needs to call and supply server procedures for the routines specified in the IDL.

Templates for these calls and service routines is provided, too. The NFSv4 definitions are included.

<<less
Download (0.022MB)
Added: 2007-04-05 License: BSD License Price:
938 downloads
mod_perlservice 0.0.2

mod_perlservice 0.0.2


mod_perlservice enables you to directly call perl methods and get return value over the internet. more>>
mod_perlservice enables you to directly call perl methods and get return value over the internet.

mod_perlservice? What is that?

The cool new way to do remoting with Perl and Apache! But, lets start by breaking that crazy name apart. mod - perl - service

mod - Its a module for the popular and ubiquitous Apache HTTP Server.
perl - Of course, its the popular and ubiquitous programming language.
service - Ah, this is the unique part. Its the new ingredient that unifies Apache, Perl and XML into an easy to use web-services system.

With the mod_perlservice system, you can write perl subs and packages on your server and call them over the internet from client code. Clients can pass scalars, arrays and hashes to the server-side subroutines and obtain the return value ( scalar, array or hash ) back from the remote code. Some folks refer to this functionality as "remoting" or "RPC", so if you like, you can say mod_perlservice is remoting with Perl and Apache. Client programs may be written in a variety of languages; libraries for C, Perl, and Flash Action Script are all ready to go!

Now that you know what mod_perlservice is, lets look at why it is. The author (Thats me!) believes that mod_perlservice has a very clean, easy-to-use interface when compared with other RPC systems. Also, since it builds on the Apache platform, it benefits from Apaches ubiquity, security, and status as a standard. Since mod_perlservice sports an embedded perl interpreter, it offers high performance for demanding applications.

So what can I use this mod_perlservice for?

You can use it to create networked applications that require client-server communication, information processing and sharing. mod_perlservice is for applications and you will not use it to create dynamic content for your HTML pages. However, you surely can use it for Flash remoting with Perl.

Here are some usage examples:

A desktop application (written using your favorite C++ GUI library) that records the current local air temperatue and sends it to an online database every 10 minutes. The server can be queried to obtain the current and historical local air temperature of any other participating client.

A Flash-based stock portfolio management system. You can create model stock portfolios and retrieve realtime stock quote information and news.

A command-line utility in Perl that accepts English sentences on standard input and outputs the sentences in French. Translation occurs in server-side Perl code. If the sentence is idomatic and the translation is incorrect, the user has the option of sending the server a correct translation that will be stored in an online idiom database.

<<less
Download (0.30MB)
Added: 2006-05-02 License: GPL (GNU General Public License) Price:
1270 downloads
Objective-C Foundation Classes 0.7.1

Objective-C Foundation Classes 0.7.1


Objective-C Foundation Classes is an Objective-C library. more>>
Objective-C Foundation Classes is an Objective-C library.
It contains general purpose classes for easier development of applications, in areas such as data types, network, C library wrappers, collections, and compound classes.
The classes in the library are grouped in five clusters:
- DataTypes - integer, text string, fraction, bitarray, date/time, random generators, big integer, big double ...
- Collections - array, list, hash table, AVL and n-tree, circular array, graph ...
- Network - TCP/UDP server and client, HTTP client, Telnet client ...
- C-library wrappers - DBM, socket, MD5, regular expression, timer, file, directory, gzip and bzip2 file, text screen ...
- Compound - Argument parser, calendar, finite state machine, tokenizer, XML tree, discrete distribution, objective-c source tokenizer ...
Enhancements:
- A new class (DBigFraction) and a new protocol (DBitArithmetic) have been added to the library.
- There are also several bugfixes related to 64-bit platforms.
- The copy-constructor support has been improved, and as a result all collections can now be (deep) copied.
- There are some small bugfixes, and several classes have been extended with new methods.
<<less
Download (0.74MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1196 downloads
Java Stencil Report 0.3.1

Java Stencil Report 0.3.1


Java Stencil Report is designed to write school reports in a fast way by a set of user-inserted sentences. more>>
Java Stencil Report is designed to write school reports in a fast way by a set of user-inserted sentences. The project has a small vector graphics editor to create a full customizable print model. Java Stencil Report is designed for schools, but can be used to write any kind of judgement. It does not require any installation.
Enhancements:
- Lines in the print model editor (VectorGraphicsLine) can now be mouse-selected with a more accurate mask.
- VectorGraphicsElement z-depth is now displayed in the status bar.
- A new user friendly dialog for changing the form period was added.
- The placement of VectorGraphicsElement was randomized.
- Transparency was added to the selection border.
- The generic name "Indicator" is now substituted with a more appropriate "Evaluation Wizard" and "Stencil" in all label and the jstecilreport folder.
- A new set of icons was provided in the print model editor.
- Some code was optimized.
<<less
Download (MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
816 downloads
Rose::HTML::Objects 0.547

Rose::HTML::Objects 0.547


Rose::HTML::Objects is a Perl object-oriented interfaces for HTML. more>>
Rose::HTML::Objects is a Perl object-oriented interfaces for HTML.

SYNOPSIS

use Rose::HTML::Form;

$form = Rose::HTML::Form->new(action => /foo,
method => post);

$form->add_fields
(
name => { type => text, size => 20, required => 1 },
height => { type => text, size => 5, maxlength => 5 },
bday => { type => datetime },
);

$form->params(name => John, height => 6ft, bday => 01/24/1984);

$form->init_fields();

$bday = $form->field(bday)->internal_value; # DateTime object

print $bday->strftime(%A); # Tuesday

print $form->field(bday)->html;

The Rose::HTML::Object::* family of classes represent HTML tags, or groups of tags. These objects allow HTML to be arbitrarily manipulated, then serialized to actual HTML (or XHTML). Currently, the process only works in one direction. Objects cannot be constructed from their serialized representations. In practice, given the purpose of these modules, this is not an important limitation.

Any HTML tag can theoretically be represented by a Rose::HTML::Object-derived class, but this family of modules was originally motivated by a desire to simplify the use of HTML forms.

The form/field object interfaces have been heavily abstracted to allow for input and output filtering, inflation/deflation of values, and compound fields (fields that contain other fields). The classes are also designed to be subclassed. The creation of custom form and field subclasses is really the "big win" for these modules.

There is also a simple image tag class which is useful for auto-populating the width and height attributes of img tags. Future releases may include object representations of other HTML tags. Contributions are welcome.

<<less
Download (0.13MB)
Added: 2007-03-26 License: Perl Artistic License Price:
942 downloads
PicoStorage 0.1

PicoStorage 0.1


PicoStorage is a lightweight structured storage software. more>>
PicoStorage allows you to store hierarhical information (similar to "files and directories") inside a single file. The functionality offered is largely equivalent to the one offered by any filesystem, or by the Structured Storage and Compound Files.

PicoStorage can efficiently handle huge numbers of small files, with very economical disk usage; it also allows you to keep open (in RAM) simultaneously a large number of files. Transaction support guarantees data integrity.

Learn more about the distinctive advantages of PicoStorage. or look at the benchmark.

The library is available on a dual-license basis: under GPL for free, and under a commercial license for use in closed-source applications.

Using

The library contains the classes File and Dir to represent files and directories. On a File you can read or write a number of bytes from a given offset, and set/get the file size. On a Dir you can create entries (either files or subdirectories), open entries, delete entries, and iterate over the directorys content.

The storage itself (i.e. the whole hierarchical structure, contained in a filesystem file) is represented by the class Storage. Using this class, you can create or open a storage, obtain the root directory of the storage, close the storage and do commit or rollback.
<<less
Download (0.13MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
1655 downloads
Bio::Location::CoordinatePolicyI 1.4

Bio::Location::CoordinatePolicyI 1.4


Bio::Location::CoordinatePolicyI is an abstract interface for objects implementing a certain policy... more>>
Bio::Location::CoordinatePolicyI is an abstract interface for objects implementing a certain policy of computing integer-valued coordinates of a Location.

SYNOPSIS

# get a location, e.g., from a SeqFeature
$location = $feature->location();
# examine its coordinate computation policy
print "Location of feature ", $feature->primary_tag(), " employs a ",
ref($location->coordinate_policy()),
" instance for coordinate computationn";
# change the policy, e.g. because the user chose to do so
$location->coordinate_policy(Bio::Location::NarrowestCoordPolicy->new());

Objects implementing this interface are used by Bio::LocationI implementing objects to determine integer-valued coordinates when asked for it. While this may seem trivial for simple locations, there are different ways to do it for fuzzy or compound (split) locations. Classes implementing this interface implement a certain policy, like always widest range, always smallest range, mean for BETWEEN locations, etc. By installing a different policy object in a Location object, the behaviour of coordinate computation can be changed on-the-fly, and with a single line of code client-side.

<<less
Download (4.7MB)
Added: 2007-06-11 License: Perl Artistic License Price:
866 downloads
Color::Fade 0.01

Color::Fade 0.01


Color::Fade provides a Perl extension for fading text colors. more>>
Color::Fade provides a Perl extension for fading text colors.

Color::Fade uses mathematical formulas to take an input string of virtually any length, and virtually any number of colors, and assign an individual color to each character to fade between each of the input colors.

In other words, it makes your sentences look really pretty.

Methods

Fade $string among the colors in @colors, where $string is a string of length greater than zero, and @colors is an array of colors in six byte hexadecimal format, with or without the leading octothorpe. @colors must have at least two elements.

When called in array context, the method returns an array in which each element is of the format:

y

For each character, where xxxxxx is a hexadecimal color code and y is one character from the original string.

When called in scalar context, this array is joined before being returned.

<<less
Download (0.006MB)
Added: 2007-03-29 License: Perl Artistic License Price:
939 downloads
Hanzi Master 1.3

Hanzi Master 1.3


Hanzi Master project is a visual, interactive Chinese character and word dictionary. more>>
Hanzi Master project is a visual, interactive Chinese character and word dictionary.
Hanzim ("Hanzi Master") is an interactive visual dictionary for learning and seeing relationships between Chinese radicals, characters, and compounds.
All the characters with a given radical, phonetic component, or pronunciation can be displayed, and all words containing a character, with English meanings.
All data is stored locally. Either simplified or traditional characters can be used.
Main features:
- typing in pinyin gives list of characters and definitions with that pronunciation
- clicking on a radical gives list of characters and definitions with that radical
- clicking on any character in any list displays that character along with the compounds it occurs in as the first or second character.
<<less
Download (0.57MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1117 downloads
Forth Foundation Library 0.5.0

Forth Foundation Library 0.5.0


Forth Foundation Library is a Forth library. more>>
Forth Foundation Library, in short FFL is a Forth library. It gives you a collection of words written in (ANS) forth which are useful in areas such as data types, collections, interfaces, development support, and compound modules.
The modules in the library are grouped in five clusters:
- Data types - char
- Collections - single linked list
- Interfaces - crc-32
- Development - struct, unit test
- Compound - nothing yet.
Enhancements:
- This release adds four new features to the library, including an n-tree with an iterator, a SHA-256 module, and a regular expressions module.
- The library will now also run on MinForth.
<<less
Download (0.14MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
865 downloads
GMP compiler 1.0.0

GMP compiler 1.0.0


GMP compiler tool simplifies the use of GMP, the GNU multiple precision library. more>>
GMP compiler tool simplifies the use of GMP, the GNU multiple precision library. It scans a C source file for specially marked GMPS arithmetic expressions and replaces them with plain C.
The abbreviation gmpc stands for GMP compiler, or alternatively GMPS-to-C compiler. GMPS arithmetic expressions are straightforward infix expressions which transparently support the special types mpq_t, mpz_t and mpf_t as defined by GMP. GMPS means, rather unimaginatively, `GMP script.
No dependencies are added to the resulting C source, so there is no need to include additional header files or link with special libraries other than GMP.
Invoking gmpc
To translate a .gmpc file to C source, at least the input and output files must be given. The most concise invocation would look like this:
gmpc -o foo.c foo.gmpc
This will translate foo.gmpc into foo.c.
It is highly recommended to enable all warnings with the -Wall switch:
gmpc -Wall -o foo.gmpc foo.c
Other switches can be used to change the default behaviour of gmpc. They are listed in the following sections.
Enhancements:
- Added support for C-like compound assignments, increment and decrement operators.
- Fixed an assignment precedence bug.
- Temporary variables and constants are grouped together to make generated code more readable.
- Added Doxygen comments and configuration file.
<<less
Download (0.27MB)
Added: 2006-12-25 License: GPL (GNU General Public License) Price:
1044 downloads
Mr. Persister 4.0.0

Mr. Persister 4.0.0


Mr. Persister is a simple, small, object relational mapping API capable of reading Java objects. more>>
Mr. Persister is a simple, small, object relational mapping API capable of reading Java objects from, and writing Java objects to relational databases. It was first released july 2004.
Main features:
- Fast! (Faster than Hibernate)
- Read objects of any size in just 3-5 lines of code.
- Automatic and manual mapping of objects to database tables.
- No config files required.
- SQL as query language.
- Automatic connection and transaction management
- (via DAO commands).
- Automatic connection and transaction management
- (via connection and transaction scoping).
- Automatic SQL generation for most trivial tasks.
- Batch updates of multiple objects.
- Compound primary key support.
- Partial object reading and writing.
- Read Filters.
- Simplifies trivial JDBC tasks.
- Interleave custom JDBC with Mr. Persister operations.
- Fully Pluggable Design.
- Well Tested. 290 unit tests were executed against each supported database.
Enhancements:
- Mr. Persister now uses JDK 5.0.
- Some important bugs have been fixed, and the software now enables annotation-based class-to-database mappings both as an alternative and a supplement to automatic and programmatic mapping.
<<less
Download (MB)
Added: 2007-08-08 License: The Apache License 2.0 Price:
807 downloads
mod_pguserdir 1.0.4

mod_pguserdir 1.0.4


mod_pguserdir is the cool new way to do remoting with Perl and Apache! more>>
But, lets start by breaking that crazy name apart. mod - perl - service.

mod - Its a module for the popular and ubiquitous Apache HTTP Server. perl - Of course, its the popular and ubiquitous programming language. service - Ah, this is the unique part. Its the new ingredient that unifies Apache, Perl and XML into an easy to use web-services system.

With the mod_perlservice system, you can write perl subs and packages on your server and call them over the internet from client code. Clients can pass scalars, arrays and hashes to the server-side subroutines and obtain the return value ( scalar, array or hash ) back from the remote code. Some folks refer to this functionality as "remoting" or "RPC", so if you like, you can say mod_perlservice is remoting with Perl and Apache. Client programs may be written in a variety of languages; libraries for C, Perl, and Flash Action Script are all ready to go!

Now that you know what mod_perlservice is, lets look at why it is. The author (Thats me!) believes that mod_perlservice has a very clean, easy-to-use interface when compared with other RPC systems. Also, since it builds on the Apache platform, it benefits from Apaches ubiquity, security, and status as a standard. Since mod_perlservice sports an embedded perl interpreter, it offers high performance for demanding applications.

So what can I use this mod_perlservice for?

You can use it to create networked applications that require client-server communication, information processing and sharing. mod_perlservice is for applications and you will not use it to create dynamic content for your HTML pages. However, you surely can use it for Flash remoting with Perl.

Here are some usage examples:

A desktop application (written using your favorite C++ GUI library) that records the current local air temperatue and sends it to an online database every 10 minutes. The server can be queried to obtain the current and historical local air temperature of any other participating client.

A Flash-based stock portfolio management system. You can create model stock portfolios and retrieve realtime stock quote information and news.

A command-line utility in Perl that accepts English sentences on standard input and outputs the sentences in French. Translation occurs in server-side Perl code. If the sentence is idomatic and the translation is incorrect, the user has the option of sending the server a correct translation that will be stored in an online idiom database.

<<less
Download (0.30MB)
Added: 2006-05-08 License: GPL (GNU General Public License) Price:
1264 downloads
amaroKopeteBR 1.2.3

amaroKopeteBR 1.2.3


amaroKopeteBR is an amaroK plugin based on the amaroKopete plugin but translated into portuguese. more>>
amaroKopeteBR is an amaroK plugin based on the amaroKopete plugin, except that this one is translated into Portuguese (pt_BR) and it has some aditional features like if you put a couple of # between that name patterns (#Album %m# for the album, for example), the plugin will only put that on your nickname if that song is tagged with that field.

If the field is null, it will skip the whole sentence between the #. It also can put this sentence on your status message, not on your nickname.

Another feature is when you pause or stop the music, your Kopete status will change to Away, and when you begin to play it again, it will change to online.

<<less
Download (0.014MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
858 downloads
NetCDF 3.6.2

NetCDF 3.6.2


NetCDF is a format developed at Unidata that was inspired by the CDF format from NASA. more>>
NetCDF is a format developed at Unidata that was inspired by the CDF format from NASA.
NetCDF stands for "Network Common Data Form" and is a self-describing data format, commonly used in scientific and engineering applications.
Main features:
- All features of netCDF 3.6
- Large file support (> 2 GB data files)
- Use of HDF5 for storage
- Backward file-format compatibility
- Backward API compatibility
- Parallel I/O
- Multiple unlimited dimensions
- Additional Data Types
- Hierarchical Grouping of Data
- Bit packing
- Compression and other filters
- Revised documentation
- Examples
- Distribution with both netCDF and HDF5 packages
- (Unicode/ASCII) String data type
- Anonymous dimensions
- Support for compound data types, including nested compound types
- User-defined data type
- Upgrades to ncgen/ncdump/CDL to reflect new features
- NcML support for ncgen/ncdump
- F90 interface
- C++ interface
- Demonstrable performance gains in modeling contexts on advanced architectures
- HDF5 file driver support
Whats New in 4.0 Alpha 11 Development Release:
- Enum type added.
- NetCDF-4 verified support of common data model.
- ncdump support new features and NcML.
- No netCDF-4 artifacts in file.
- Uses HDF5 creation order information.
- NetCDF-4 documentation complete.
Whats New in 3.6.2 Stable Release:
- Support for shared libraries was added.
- Major documentation additions were done.
- Speedups were made on little-endian machines.
- Minor bugs were fixed.
<<less
Download (3.8MB)
Added: 2007-03-09 License: BSD License Price:
987 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5