Main > Free Download Search >

Free functions software for linux

functions

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3102
Database Functions 1.0

Database Functions 1.0


Database Functions is a PHP class that can be used to build and execute MySQL database queries. more>>
Database Functions is a PHP class that can be used to build and execute MySQL database queries.

It can build SELECT, INSERT, UPDATE and DELETE queries from lists of parameters and values.

The class can also execute the generated queries and retrieve the SELECT query results into associative arrays.

<<less
Download (MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
830 downloads
Bio::NEXUS::Functions 0.67

Bio::NEXUS::Functions 0.67


Bio::NEXUS::Functions is a Perl module that provides private utility functions for the module. more>>
Bio::NEXUS::Functions is a Perl module that provides private utility functions for the module.

This package provides private functions that are not object-specific.

<<less
Download (0.15MB)
Added: 2006-12-19 License: Perl Artistic License Price:
1039 downloads
Text::MicroMason::Functions 1.992

Text::MicroMason::Functions 1.992


Text::MicroMason::Functions Perl module contains Function Exporter for Simple Mason Templates. more>>
Text::MicroMason::Functions Perl module contains Function Exporter for Simple Mason Templates.

SYNOPSIS

Use the execute function to parse and evalute a template:

use Text::MicroMason::Functions qw( execute );
print execute($template, name=>Dave);

Or compile it into a subroutine, and evaluate repeatedly:

use Text::MicroMason::Functions qw( compile );
$coderef = compile($template);
print $coderef->(name=>Dave);
print $coderef->(name=>Bob);

Templates stored in files can be run directly or included in others:

use Text::MicroMason::Functions qw( execute_file );
print execute_file( "./greeting.msn", name=>Charles);

Safe usage restricts templates from accessing your files or data:

use Text::MicroMason::Functions qw( safe_execute );
print safe_execute( $template, name=>Bob);

All above functions are available in an error-catching "try_*" form:

use Text::MicroMason::Functions qw( try_execute );
($result, $error) = try_execute( $template, name=>Alice);

As an alternative to the object-oriented interface, text containing MicroMason markup code can be compiled and executed by calling the following functions.
Please note that this interface is maintained primarily for backward compatibility with version 1 of Text::MicroMason, and it does not provide access to some of the newer features.

Each function creates a new MicroMason object, including any necessary traits such as Safe compilation or CatchErrors for exceptions, and then passes its arguments to an appropriate method on that object.

You may import any of these functions by including their names in your use Text::MicroMason statement.

<<less
Download (0.068MB)
Added: 2007-07-10 License: Perl Artistic License Price:
837 downloads
Data management and GTK functions 0.08

Data management and GTK functions 0.08


Data management and GTK functions is a package of various utility programs that were used in building applications. more>>
Data management and GTK functions is a package of various utility programs that were used in building the other applications on this web site.
The source code is already included with the other applications. This package includes documentation that will make it easier to use these programs for other projects. A menu-driven test program for most of the utilities is also included.
Main features:
- MatchWild compare a string to a string with multiple wildcards (* and ? characters)
- SearchWild search for files matching a pathname with wildcards anywhere
- convDS convert double to string with specified digits of precision
- bsearch binary search function
- HeapSort heapsort using a callback to compare records, allowing any kind of sort
- HashTab hash table C++ class (fast string store and search)
- Queue queue C++ class (push, pop newest, pop oldest) (thread safe)
- Tree C++ class, store and find data by set of names or numbers (sparse array)
- GTK menus build GTK menus and toolbars with 1/3 as much code
- zlock use GTK in threads more easily and safely
- wprintf printf interface to scrolling windows
- zdialog build GTK dialogs with 1/3 the code and 1/10 the reference docs
- pixbuf_rotate rotate a GDK pixbuf through any angle (like 56.7 degrees)
<<less
Download (0.21MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
821 downloads
Getopt::Function 0.017

Getopt::Function 0.017


Getopt::Function is a Perl module to provide mixed options with help information. more>>
Getopt::Function is a Perl module to provide mixed options with help information.

SYNOPSIS

use Getopt::Function qw(maketrue makevalue);
$::opthandler = new Getopt::Function
[ ], { => [ , ,
] }
$result = GetOptions (...option-descriptions...);
$::opthandler->std_opts;
$::opthandler->check_opts;

The aim of this module is to make it easy to provide sophisticated and complex interfaces to commands in a simple to use and clear manner with proper help facilities.

It is designed to do this by making it possible to write the options, with documentation and subroutines to implement them, directly into a hash and then call the appropriate ones as options detected on the command line.

<<less
Download (0.013MB)
Added: 2006-10-30 License: Perl Artistic License Price:
1089 downloads
Relations 0.95

Relations 0.95


Relations is a Perl module with functions to use with databases and queries. more>>
Relations is a Perl module with functions to use with databases and queries.

SYNOPSIS

use Relations;

$as_clause = as_clause({full_name => "concat(f_name, ,l_name)",
{status => "if(married,Married,Single)"})

$query = "select $as_clause from person";

$avoid = to_hash("virustbug","t");

if ($avoid->{bug}) {

print "Avoiding the bug...";

}

unless ($avoid->{code}) {

print "Not avoiding the code...";

}

<<less
Download (0.018MB)
Added: 2007-05-16 License: Perl Artistic License Price:
891 downloads
FuncPlotter 2.0

FuncPlotter 2.0


FuncPlotter is a combined Java application and applet for displaying two-dimensional plots. more>>
FuncPlotter is a combined Java application and applet for displaying two-dimensional plots of explicit functions in one variable (i.e., functions of the form y = f(x), where f(x) is an arbitrary function composed from a set of common mathematical operators).
Up to 20 functions can be plotted simultaneously, and sets of functions can be loaded and saved.
Enhancements:
Modifications:
- The function-list UI component has been modified so that the position of a function in the list can now be changed by dragging the function up or down the list with the left mouse button.
- Configuration parameters have been added to allow the FuncPlotter applet to display specified functions when it starts up.
<<less
Download (0.23MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
808 downloads
Fatal::Exception 0.01

Fatal::Exception 0.01


Fatal::Exception - succeed or throw exception. more>>
Fatal::Exception - succeed or throw exception.

SYNOPSIS

use Fatal::Exception Exception::System => qw ;
open FILE, "/nonexistent"; # throw Exception::System

use Exception::Base Exception::My;
sub juggle { ... }
import Fatal::Exception Exception::My => juggle;
juggle; # succeed or throw exception
unimport Fatal::Exception juggle;
juggle or die; # restore original behavior

Fatal::Exception provides a way to conveniently replace functions which normally return a false value when they fail with equivalents which raise exceptions if they are not successful. This is the same as Fatal module but it throws Exception::Base object on error.

IMPORTS

use Fatal::Exception Exception => function, function, ...

Replaces the original functions with wrappers which provide do-or-throw equivalents. You may wrap both user-defined functions and overridable CORE operators (except exec, system which cannot be expressed via prototypes) in this way.

If the symbol :void appears in the import list, then functions named later in that import list raise an exception only when these are called in void context.
You should not fatalize functions that are called in list context, because this module tests whether a function has failed by testing the boolean truth of its return value in scalar context.

If the exception class is not exist, its module is loaded with "use Exception" automatically.

unimport Fatal::Exception function, function, ...

Restores original functions for user-defined functions or replaces the functions with do-without-die wrappers for CORE operators.

In fact, the CORE operators cannot be restored, so the non-fatalized alternative is provided instead.

The functions can be wrapped and un-wrapped all the time.

<<less
Download (0.008MB)
Added: 2007-05-23 License: Perl Artistic License Price:
884 downloads
CoreLinux++ Function Load Library 0.1.1

CoreLinux++ Function Load Library 0.1.1


libclfll++ takes advantage of the abstract Library Load framework in the CoreLinux libclfw++ library. more>>
CoreLinux++ Function Load Library (libclfll++) takes advantage of the abstract Library Load framework in the CoreLinux libclfw++ library by providing management of loading Linux shared libraries.
Application developers define function objects as wrappers and can then dynamically load the functions. It is very useful for implementing a framework for plug-ins.
Main features:
- Enlist members ( for requirements, analysis, design, and development )
- Formalize conventions for Object Oriented Analysis (OOA) and Design (OOD).
- Formalize standards and conventions for C++ code style.
- Gather requirements. Perform OOA and OOD using UML as the modeling language.
- Implement designs and example drivers.
- Develop utilities and applications for Linux that are CoreLinux++ certified
- Showcase CoreLinux++ certified applications by others
<<less
Download (0.091MB)
Added: 2006-05-31 License: LGPL (GNU Lesser General Public License) Price:
1247 downloads
Inter-Thread Communication 1.1.3

Inter-Thread Communication 1.1.3


Inter-Thread Communication (ITC) aims to make it exceedingly easy to call functions in other threads. more>>
Inter-Thread Communication (ITC) aims to make it exceedingly easy to call functions in other threads.
The lexer does all the work, so just run the lexer on your headers, then call the stub functions.
In addition, it also provides a complete threading API, with the four threading primitives and a high speed threadsafe FIFO class.
Enhancements:
- It add support for GCC 4.x, and the build system is fixed.
<<less
Download (0.41MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1214 downloads
Fast Icon Users for Linux -

Fast Icon Users for Linux -


User icons with functions like: add, chat, edit, offline, remove, send, upload more>> Description:
11 icons of users.
Content:
User icons with functions like: add, chat, edit, offline, remove, send, upload, user, user group, video chat, voice chat
<<less
Download (313KB)
Added: 2009-04-04 License: Freeware Price:
211 downloads
INVSTR 1.0

INVSTR 1.0


INVSTR is a library of C functions that follow the behavior of the standard library string functions. more>>
INVSTR is a library of C functions that follow the behavior of the standard library string functions, but starting all searches and the like from the end of the string rather than the start.
Enhancements:
This initial release includes the following functions:
- invstrinv
- iwcsinv
- invstrspn
- iwcsspn
- invstrcspn
- iwcscspn
- invstrpbrk
- iwcspbrk
- invstrcpbrk
- iwcscpbrk.
<<less
Download (0.010MB)
Added: 2005-11-04 License: Freeware Price:
1449 downloads
Dummy plugin

Dummy plugin


Dummy plugin is an xmms plugin that helps newbee vis plugin coders with the needed functions for xmms vis plugins. more>>
Dummy plugin is an xmms plugin that helps newbee vis plugin coders with the needed funcions for xmms vis plugins.

Dummy plugin only has the needed functions and a working audio renderer.



<<less
Download (0.14MB)
Added: 2006-04-05 License: GPL (GNU General Public License) Price:
1306 downloads
ClikMenu 0.9

ClikMenu 0.9


ClikMenu is a library of functions for creating drop-down and popup menus with JavaScript. more>>
ClikMenu project is a library of functions for creating drop-down and popup menus with JavaScript.

Support for multi-level (i.e. cascading or hierarchical) menus is standard, and entries can be URI links, "onmousedown"-type function calls, plaintext labels, or submenus.

ClikMenu is compatible with Firefox, Internet Explorer 6, and other recent browsers. There are no server-side requirements.
<<less
Download (0.031MB)
Added: 2006-08-15 License: LGPL (GNU Lesser General Public License) Price:
1166 downloads
python-gastables 0.1

python-gastables 0.1


python-gastables includes Python modules for compressible gas flow calculations. more>>
python-gastables includes Python modules for compressible gas flow calculations.

The project includes Python modules for isentropic relations, normal shock relations, oblique shock relations, Fanno flow, isothermal flow, Rayleigh flow, and Prandtl Meyer functions.
<<less
Download (0.016MB)
Added: 2007-04-06 License: GPL (GNU General Public License) Price:
931 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5