Main > Free Download Search >

Free configfile for haskell software for linux

configfile for haskell

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 682
ConfigFile for Haskell 1.0.0

ConfigFile for Haskell 1.0.0


ConfigFile for Haskell is a configuration file parser and writer library for Haskell. more>>
ConfigFile for Haskell is a configuration file parser and writer library for Haskell.
The ConfigFile module works with configuration files in a standard format that is easy for the user to edit, easy for the programmer to work with, yet remains powerful and flexible. It is inspired by, and compatible with, Pythons ConfigParser module. It uses files that resemble Windows .INI-style files, but with numerous improvements.
ConfigFile provides simple calls to both read and write config files. Its possible to make a config file parsable by this module, the Unix shell, and make.
Enhancements:
- This package was formerly part of MissingH and is being split off as part of the MissingH transition plan.
<<less
Download (0.034MB)
Added: 2006-12-11 License: LGPL (GNU Lesser General Public License) Price:
1047 downloads
LDAP for Haskell 0.6.1

LDAP for Haskell 0.6.1


LDAP for Haskell package contains a LDAP binding for Haskell. more>>
LDAP for Haskell package contains a LDAP binding for Haskell. This package provides read and write support for LDAP directories.

Haskell is a standardized purely functional programming language with non-strict semantics, named after the logician Haskell Curry. It is one of the more popular functional languages, and the lazy functional language on which the most research is being performed.

Characteristic features of Haskell include pattern matching, currying, list comprehensions, guards, definable operators, and single assignment. The language also supports recursive functions and algebraic data types, as well as lazy evaluation. Unique concepts include monads, and type classes. The combination of such features can make functions which would be difficult to write in a procedural programming language almost trivial to implement in Haskell.

Several variants have been developed: parallelizable versions from MIT and Glasgow, both called Parallel Haskell; more parallel and distributed versions called Distributed Haskell (formerly Goffin) and Eden; a speculatively evaluating version called Eager Haskell and several object oriented versions: Haskell++, OHaskell and Mondrian.

There is also a Haskell-like language that offers a new method of support for GUI development called Concurrent Clean. Its biggest deviations from Haskell are use of uniqueness types for input instead of monads.

<<less
Download (0.017MB)
Added: 2007-03-09 License: LGPL (GNU Lesser General Public License) Price:
959 downloads
Config::IniFiles 2.38

Config::IniFiles 2.38


Config::IniFiles is a module for reading .ini-style configuration files. more>>
Config::IniFiles is a module for reading .ini-style configuration files.

SYNOPSIS

use Config::IniFiles;
my $cfg = new Config::IniFiles( -file => "/path/configfile.ini" );
print "The value is " . $cfg->val( Section, Parameter ) . "."
if $cfg->val( Section, Parameter );

Config::IniFiles provides a way to have readable configuration files outside your Perl script. Configurations can be imported (inherited, stacked,...), sections can be grouped, and settings can be accessed from a tied hash.

FILE FORMAT

INI files consist of a number of sections, each preceded with the section name in square brackets. The first non-blank character of the line indicating a section must be a left bracket and the last non-blank character of a line indicating a section must be a right bracket. The characters making up the section name can be any symbols at all. However section names must be unique.

Parameters are specified in each section as Name=Value. Any spaces around the equals sign will be ignored, and the value extends to the end of the line. Parameter names are localized to the namespace of the section, but must be unique within a section.

[section]
Parameter=Value

Both the hash mark (#) and the semicolon (;) are comment characters. by default (this can be changed by configuration) Lines that begin with either of these characters will be ignored. Any amount of whitespace may precede the comment character.

Multi-line or multi-valued parameters may also be defined ala UNIX "here document" syntax:

Parameter=<<less
Download (0.036MB)
Added: 2006-06-15 License: Perl Artistic License Price:
1226 downloads
OpenOffice.org for Linux

OpenOffice.org for Linux


free OpenOffice - Open source multi-platform office suite more>>
OpenOffice.org is the open source project through which Sun Microsystems is releasing the technology for the popular StarOffice productivity suite.
It is an international office suite that will run on all major platforms and provide access to all functionality and data through open-component based APIs and an XML- based file format.
It establishes the necessary facilities to make this open source technology available to the developer community.
<<less
Download (76.4MB)
Added: 2009-04-07 License: Freeware Price:
199 downloads
Bowzilla for Linux

Bowzilla for Linux


Bowzilla is a mini Game for 2 players. more>>
Bowzilla is a mini Game for 2 players. Leaned against the old QBasic Gorilla, you must fire at your opponent in real-time.

Particularly the realistic blood is to be considered with the lightning strike. You have to find a whole in the target range. However, you should not expect to much from it.
<<less
Download (7.1MB)
Added: 2005-10-07 License: Freeware Price:
1479 downloads
VCL for PHP 1.0

VCL for PHP 1.0


VCL for PHP is a PHP framework to help you build PHP web applications faster and easier than ever. more>>
VCL for PHP is a PHP framework to help you build PHP web applications faster and easier than ever.
This framework has been designed to provide visual design capabilities and its being used on Delphi for PHP.
Enhancements:
- The code in this release is the same you can get when buying Delphi for PHP.
<<less
Download (2.2MB)
Added: 2007-04-11 License: LGPL (GNU Lesser General Public License) Price:
929 downloads
App::Conf::File 0.965

App::Conf::File 0.965


App::Conf::File is a Perl module to load and access configuration data. more>>
App::Conf::File is a Perl module to load and access configuration data.

SYNOPSIS

use App::Conf;

$config = App::Conf->new();
$config = App::Conf->new(configFile => $file);
print $config->dump(), "n"; # use Data::Dumper to spit out the Perl representation

# accessors
$property_value = $config->get($property_name);
$branch = $config->get_branch($branch_name); # get hashref of properties

# on-demand loading helper methods (private methods)
$config->overlay($config2); # merge the two config structures using overlay rules
$config->overlay($config1, $config2); # merge $config2 onto $config1
$config->graft($branch_name, $config2); # graft new config structure onto branch

# By convention, the configurations for each App-Context service will be located
# two levels under the hash ref as shown.

$config->{Conf} # config settings for all Conf services
$config->{Conf}{default} # config settings for the default Conf service
$config->{Security} # config settings for all Security services
$config->{Security}{default} # config settings for the default Security service
$config->{Template}{tt} # config settings for the Template service named "tt"

# The default driver (if "configClass" not supplied) reads in a Perl
# data structure from the file. Alternate drivers can read a Storable,
# unvalidated XML, DTD-validated XML, RDF-validated XML, or any other
# file format or data source anyone cares to write a driver for.

$conf = {
Standard => {
Log-Dispatch => {
logdir => /var/p5ee,
}
},
Authen => {
passwd => /etc/passwd,
seed => 303292,
},
};

# A comparable unvalidating XML file would look like this.

< conf>
< Standard>
< Log-Dispatch logdir="/var/p5ee"/>
< /Standard>
< Authen passwd="/etc/passwd" seed="303292"/>
< /conf>

# A comparable ini file (.ini) would look like this.

[Standard.Log-Dispatch]
logdir = /var/p5ee
[Authen]
passwd = /etc/passwd
seed = 303292

# A comparable Java properties-like file would look like this.

Standard.Log-Dispatch.logdir = /var/p5ee
Authen.passwd = /etc/passwd
Authen.seed = 303292

<<less
Download (0.12MB)
Added: 2007-06-21 License: Perl Artistic License Price:
856 downloads
RSA-Haskell 2.0.1

RSA-Haskell 2.0.1


RSA-Haskell is a collection of command-line cryptography tools and a cryptography library written in Haskell. more>>
RSA-Haskell is a collection of command-line cryptography tools and a cryptography library written in Haskell. The project is intended to be useful to anyone who wants to secure files or communications or who wants to incorporate cryptography in their Haskell application.
The libraries include Haskell implementations of SHA1, EME-OAEP, EMSA-PSS, MGF, RSAES-OAEP, and RSA-PSS. These standards implement signature/verification, strong cryptography, and hashing.
Enhancements:
- Documentation is now available for the command line utilities.
- An easy-to-use Windows binary release is available.
<<less
Download (0.37MB)
Added: 2007-05-03 License: Public Domain Price:
904 downloads
The Glasgow Haskell Compiler 6.6

The Glasgow Haskell Compiler 6.6


The Glasgow Haskell Compiler is a compiler for Haskell 98. more>>
The Glasgow Haskell Compiler is a state-of-the-art, open source, compiler and interactive environment for the functional language Haskell.
Main features:
- GHC supports the entire Haskell 98 language plus a wide variety of extensions.
- GHC works on several platforms including Windows and most varieties of Unix, and several different processor architectures. There are detailed instructions for porting GHC to a new platform.
- GHC has extensive optimisation capabilities, including inter-module optimisation.
- GHC compiles Haskell code either by using an intermediate C compiler (GCC), or by generating native code on some platforms. The interactive environment compiles Haskell to bytecode, and supports execution of mixed bytecode/compiled programs.
- Profiling is supported, both by time/allocation and various kinds of heap profiling.
- GHC comes with a wide range of libraries.
GHC is heavily dependent on its users and contributors. Please come and join the mailing lists and send us your comments, suggestions, bug reports and contributions!
Enhancements:
- SMP support and impredicative polymorphism were added.
- The libraries were split into core and extra.
- Many more changes were made.
<<less
Download (6.7MB)
Added: 2006-10-15 License: BSD License Price:
1105 downloads
Article for Plone 3.2.3

Article for Plone 3.2.3


Article for Plone provides a Plone document incorporating images, attachments and links, whith a free choice of layout. more>>
Article for Plone provides a Plone document incorporating images, attachments and links, whith a free choice of layout.

<<less
Download (1.1MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
987 downloads
Sysinfo for Pardus 1.4.2

Sysinfo for Pardus 1.4.2


Sysinfo for Pardus is OpenSuses sysinfo:/ kioslave ported to Pardus more>>
Sysinfo for Pardus is OpenSuses sysinfo:/ kioslave ported to Pardus

<<less
Download (0.80MB)
Added: 2007-07-18 License: GPL (GNU General Public License) Price:
828 downloads
KMSBII for Slackware 2.1.0

KMSBII for Slackware 2.1.0


KDE Menu Sidebar Image Improvement is a simple improvement for your KDE Menu. more>>
KDE Menu Sidebar Image Improvement is a simple improvement for your KDE Menu that replaces default KDE Menu Sidebar image with one designed specifically for your Slackware GNULinux distribution.
Having say a Slackware or Debian or FreeBSD or any other OS/distribution logo instead of default KDE gear may be a much better choice for those of you who are just in love with your favorite *nix.
Personalized it looks sexy, it looks witty, it stresses the facts.
This project proved to be a little success because people seem to appreciate it.
So, now here we are with updated package again and it is my pleasure to hear from you that youve given it a try.
Enhancements:
- Project structure has been redefined so that it is now template based and extensible. This is basically a first attempt to unify all types of KMSBII presented at kde-look.org.
- Installation script has been dramastically improved; added new features to control the installation process and the ability to perform post-installation actions; run `./install.sh help for more information. The script is quite verbose now and informs user of every action performed in a user-friendly manner;
- Abbreviations of the project related names have been introduced to provide a convenient way to refer to them. See "ABBREVIATIONS" section of `./install.sh help output;
- Graphic source files as well as KMSBI files have been changed once again, changes have been made to achieve the best look of the KMSBI;
- Added KMSBII for Slackware GNULinux distribution v11.0.0;
- Updated documentation.
- Licensing agreement has been introduced to protect intellectual property and rights of its owner. See COPYING file for more details and "Licensing Agreement" section of this file for short explanations on how this licensing agreement works.
<<less
Download (0.082MB)
Added: 2007-01-11 License: GPL (GNU General Public License) Price:
1018 downloads
SILC Plugin for Kopete 0.3

SILC Plugin for Kopete 0.3


SILC Plugin for Kopete is a protocol plugin for Kopete, the KDE Instant Messenger. more>>
SILC Plugin for Kopete is a protocol plugin for Kopete, the KDE Instant Messenger. If you ever cursed that you cannot join the SILC Network using Kopete this can help you. It will add SILC support to Kopete.
The plugin is based on libsilc which is part of the SILC Toolkit mentioned above. The library was initially written by Pekka Riikonen and is still maintained by him.
Main features:
- Channels can be joined or added to the contact list.
- One-to-one chats can be initiated by clicking members participating in group chats.
- Password protected channels are supported.
- User invitation is handy through drag-and-drop functionality.
- Signature verification and public key handling are fully supported.
- File transfesr to other buddies is possible, including graphical progress information and automatic detection of NATed workstations.
- guided channel configuration is partially available, this is, mainly topic setting and some boolean options
- MIME support is fully implemented. So it is possible to send files to channels.
- Attributes can distribute your mood, your location on earth or the medium you want to be contacted through.
<<less
Download (0.097MB)
Added: 2007-05-31 License: GPL (GNU General Public License) Price:
878 downloads
Knotify for Pidgin 0.1

Knotify for Pidgin 0.1


Knotify for Pidgin is a plugin for the Pidgin chat client that uses Knotify to do notifications. more>>
Knotify for Pidgin is a plugin for the Pidgin chat client that uses Knotify to do notifications. This is for those who like pidgin but dont like the lack of KDE integration.

<<less
Download (0.003MB)
Added: 2007-07-23 License: LGPL (GNU Lesser General Public License) Price:
826 downloads
Screensavers for Xandros 4.x

Screensavers for Xandros 4.x


Screensavers for Xandros 4.x contains twelve different screensavers you can try out for Xandros. more>>
Screensavers for Xandros 4.x contains twelve different screensavers you can try out for Xandros. They are static builds, so they should work out of the box. You may need OpenAL for the Really Slick Screensavers, and the sound is a bit scratchy, since I compiled the thing with Arts so the sounds would work all the time.
You dont have to have OpenAL installed though, you just wont get sound. Kanjisaver needs the Chineese fonts installed in order to function properly, so if you deselected those, pop in your Xandros cd and install them before installing it.
Other than that, the rest *should* work out of the box just fine. There are additional builds available, but this only gives me 12 spots. Simply right-click save the link for the package you want. Then Double click to install.
Additional info at http://forums.xandros.com/viewtopic.php?t=26918
P.S. Thanks to all the authors of these fine screensavers.
Main features:
- Flower Attack
- Kanjisaver
- KBiof
- KCad
- KCometen3
- KFieldlines
- KFlocks
- Kogs
- SmoothSlideSaver
- Really Slick Screensavers
- Kannasaver
- Tropical TuxSaver
<<less
Download (MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
1012 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5