Main > Free Download Search >

Free strong js 1.00 software for linux

strong js 1.00

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 440
Salat Book 1.00

Salat Book 1.00


Salat Book gives you the wonderful choice of a Salat / Namaz prayer database and tracking application. more>>

Salat Book 1.00 gives you the wonderful choice of a Salat / Namaz prayer database and tracking application. It is using month calendars, salat completion datagrid, statistics and graphs and is specially useful for Kaza (missed Salat) prayers.

Enhancements:

  • Statistics filter & Graphs flter now changed to single Date Filter.
  • Date Filter now enabled for Pie Charts & Bar Chart.
  • Removal of Error Statistics debugging pop-ups with grand total stats.
  • Graphs Bar Chart legend moved to top left.
  • Application window & components resized & compacted for better visibility on
  • lower resolution screens.
  • Prayer Tab Salat selection button highlighting added.
  • Prayer Tab Month datagrid...absent salah colour changed from light red/pink
  • red to a darker red.
  • Options Tab Backup function now enabled.
  • Options Tab Restore function now enabled.
  • Options Tab Error removal on Edit/Save function, corrupting data files.
  • Application data files integrity check & repair code added during startup.

Requirements:

  • Adobe AIR
<<less
Added: 2009-06-29 License: Freeware Price: FREE
1 downloads
Dictionary 1.00

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
Il Catalogo 1.00

Il Catalogo 1.00


A classical CD music cataloging utility more>> A classical CD music cataloging utility

Il Catalogo will allow you to keep track of all your CDs and organize you classical music collection. An easy to use and handy cataloguer written in Java.

<<less
Download (865KB)
Added: 2009-04-07 License: GPL Price: FREE
199 downloads
XML::DifferenceMarkup 1.00

XML::DifferenceMarkup 1.00


XML::DifferenceMarkup is a XML diff and merge. more>>
XML::DifferenceMarkup is a XML diff and merge.

SYNOPSIS

use XML::DifferenceMarkup qw(make_diff);

$parser = XML::LibXML->new();
$parser->keep_blanks(0);
$d1 = $parser->parse_file($fname1);
$d2 = $parser->parse_file($fname2);

$dom = make_diff($d1, $d2);
print $dom->toString(1);

This module implements an XML diff producing XML output. Both input and output are DOM documents, as implemented by XML::LibXML.

The diff format used by XML::DifferenceMarkup is meant to be human-readable (i.e. simple, as opposed to short) - basically the diff is a subset of the input trees, annotated with instruction element nodes specifying how to convert the source tree to the target by inserting and deleting nodes. To prevent name colisions with input trees, all added elements are in a namespace http://www.locus.cz/diffmark (the diff will fail on input trees which already use that namespace).

<<less
Download (0.056MB)
Added: 2007-08-17 License: Perl Artistic License Price:
798 downloads
Bloo 1.00 RC2

Bloo 1.00 RC2


Bloo is a free, public-domain, object-oriented implementation of full-featured blog software, based on the Phoo Phramework. more>>
Bloo is a free, public-domain, object-oriented implementation of full-featured blog software, based on the Phoo Phramework. Both Phoo and Bloo are PHP systems. This projects are both covered under the Gnu Public License.
Main features:
- Role-based security at the object level (in other words, security is pervasive)
- Those with posting privileges can create and edit posts
- Readers can comment on posts
- Posts can receive trackbacks
- Comment and trackback moderation, spam and troll destruction, etc.
- Administrators have full control over the look and feel of the blog, via the overlay editor. All visual element templates can be edited on the fly, with a non-destructive edit.
- Themes control the look and feel. Administrators can create themes on the fly, cascade themes from other themes, and select the default theme.
- Optional theme-selector for blog readers to pick their favorite theme
- Bloo-administered Blogroll ("Bloogroll")
- Configurable blogroll categories
- Multiple Spam Control Extension SnapOns
- Multiple users
- Multiple post categories per post.
- Post keyword searches
- Easy to use installation and upgrade programs
- Developers can create new Extension SnapOns to add functionality to the blog
- All input and output components of the system are XML-based and separate from the code
- New functionality can be added via Bloo Extension SnapOns
Enhancements:
- New features in this release include support for multiple post categories, IP blacklist and comments-flood protection, an enhanced theme selector, RSS fixes, among others.
<<less
Download (MB)
Added: 2007-08-09 License: GPL (GNU General Public License) Price:
809 downloads
Inline::SLang::Assoc 1.00

Inline::SLang::Assoc 1.00


Inline::SLang::Assoc module contains support for associative arrays. more>>
Inline::SLang::Assoc module contains support for associative arrays.

SYNOPSIS

use Inline SLang;

# you can send hash references to S-Lang
print_in_slang( { a => 23, "b b" => "foo" } );

# and get them back from S-Lang
$href = get_from_slang();
print "The assoc array contains:n" .
join( "", map { "t$_ => $$href{$_}n"; } keys %$href );

__END__
__SLang__

define print_in_slang (assoc) {
message( "SLang thinks you sent it an assoc. array with:" );
foreach ( assoc ) using ( "keys", "values" ) {
variable k, v;
( k, v ) = ();
vmessage( " key %s = %S", k, v );
}
}
define get_from_slang() {
variable x = Assoc_Type [String_Type];
x["a key"] = "a value";
x["another key"] = "another value";
return x;
}
The output of this code - which can be found in the source-code distribution as examples/assoc.pl - is:
SLang thinks you sent it an assoc. array with:
key a = 23
key b b = foo
The assoc array contains:
another key => another value
a key => a value

<<less
Download (0.11MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
809 downloads
Devel::Pointer 1.00

Devel::Pointer 1.00


Devel::Pointer is a Perl module that can fiddle around with pointers. more>>
Devel::Pointer is a Perl module that can fiddle around with pointers.

SYNOPSIS

use Devel::Pointer;
$a = address_of($b); # a = &b;
$b = deref($a); # b = *a;

$a = unsmash_sv(0+$scalar_ref);
@a = unsmash_av(0+$array_ref);
%a = unsmash_hv(0+$hash_ref);
&a = unsmash_cv(0+$code_ref);
# OK, you cant do that, but you get the idea

$c = deref(-1); # *(-1), and the resulting segfault.

The primary purpose of this is to turn a smashed reference address back into a value. Once a reference is treated as a numeric value, you cant dereference it normally; although with this module, you can.

Be careful, though, to avoid dereferencing things that dont want to be dereferenced.

<<less
Download (0.003MB)
Added: 2007-07-26 License: Perl Artistic License Price:
821 downloads
ZOOM::IRSpy::Maintenance 1.00

ZOOM::IRSpy::Maintenance 1.00


ZOOM::IRSpy::Maintenance is a maintenance documentation for IRSpy. more>>
ZOOM::IRSpy::Maintenance is a maintenance documentation for IRSpy.
The IRSpy application is implemented by five components:
- A library of classes within the ZOOM::IRSpy "namespace".
- A command-line invocation script called irspy
- A web-based UI - either this or the command-line script can be used to run the spy software, but the latter is more capable in that it also provides ways to interrogate the database of results.
- A small additional library, ZOOM::Pod, which is used by IRSpy and which is more conveniently included in this distribution than released and maintained separately.
- The configuration for a Zebra database that stores the harvested information.
These components are discussed in turn.
<<less
Download (0.25MB)
Added: 2007-07-26 License: Perl Artistic License Price:
820 downloads
OS Independent Atomic Operations 1.00 revision 1

OS Independent Atomic Operations 1.00 revision 1


OS Independent Atomic Operations is a project that intends to develop an OS-independent atomic operations macro library. more>>
OS Independent Atomic Operations is a project that intends to develop an OS-independent atomic operations macro library with a common API for the C programming language as a cross-platform alternative to the uncoordinated efforts by OS developers.
As multi-core CPUs and multi-processor computer systems become more and more common, efficient synchronisation between concurrent execution units becomes more important. Atomic operations, that is operations which cannnot be interrupted, are needed to implement semaphores, reference counters and lock-free algorithms.
Operating systems generally provide atomic operation macros but there is no common API and no coordination between vendors and developers of different systems. Thus library and application developers are facing a dilemma. They can take advantage of one of the existing APIs for atomic operations but their software will then be tied to a particular operating system.
Enhancements:
- The initial release contains the Common AO API draft and a skeleton macro library.
- To complete the macros, the project will need contributors with inline assembly skills for various CPU architectures.
<<less
Download (0.006MB)
Added: 2007-07-25 License: MIT/X Consortium License Price:
828 downloads
Objective Modula-2 1.00 (Reference Implementation)

Objective Modula-2 1.00 (Reference Implementation)


Objective Modula-2 programming language is a hybrid between Smalltalk and Modula-2. more>>
Objective Modula-2 programming language is a hybrid between Smalltalk and Modula-2 based on the object model and runtime of Objective-C.
The design is an example how native Cocoa/GNUstep support can be added to static imperative programming languages without implementing a bridge.
Objective Modula-2s scope encompasses the design of the Objective Modula-2 programming language and the implementation of a compiler to implement it. The initial compiler will generate Objective-C source code.
Enhancements:
- This code is used to verify ideas and concepts which come up in the course of defining the language.
- It is in an early stage, incomplete and subject to frequent changes.
<<less
Download (0.019MB)
Added: 2007-07-21 License: (FDL) GNU Free Documentation License Price:
825 downloads
 
Other version of Objective Modula-2
Objective Modula-2 1.00 (Language Definition)Benjamin Kowarsch - Objective Modula-2 1.00 (Language Definition) Objective Modula-2 programming language is
License:(FDL) GNU Free Documentation License
Download (0.23MB)
516 downloads
Added: 2007-07-21
Math::BaseArith 1.00

Math::BaseArith 1.00


Math::BaseArith is a Perl extension for mixed-base number representation (like APL encode/decode). more>>
Math::BaseArith is a Perl extension for mixed-base number representation (like APL encode/decode).

SYNOPSIS

use Math::BaseArith;
encode( value, base_list );
decode( representation_list, base_list );

The inspiration for this module is a pair of functions in the APL programming language called encode (a.k.a. "representation") and decode (a.k.a. base-value). Their principal use is to convert numbers from one number base to another. Mixed number bases are permitted.

In this perl implementation, the representation of a number in a particular number base consists of a list whose elements are the digit values in that base. For example, the decimal number 31 would be expressed in binary as a list of five ones with any number of leading zeros: [0, 0, 0, 1, 1, 1, 1, 1]. The same number expressed as three hexadecimal (base 16) digits would be [0, 1, 15], while in base 10 it would be [0, 3, 1]. Fifty-one inches would be expressed in yards, feet, inches as [1, 1, 3], an example of a mixed number base.

In the following description of encode and decode, Q will mean an abstract value or quantity, R will be its representation and B will define the number base. Q will be a perl scalar; R and B are perl lists. The values in R correspond to the radix values in B.

In the examples below, assume the output of print has been altered by setting $, = and that => is your shell prompt.

<<less
Download (0.006MB)
Added: 2007-07-20 License: Perl Artistic License Price:
826 downloads
List::Intersperse 1.00

List::Intersperse 1.00


List::Intersperse Perl module can intersperse / unsort / disperse a list. more>>
List::Intersperse Perl module can intersperse / unsort / disperse a list.

SYNOPSIS

use List::Intersperse qw/intersperseq/;

@ispersed = intersperseq {substr($_[0],0,1)} qw/A1 A2 B1 B2 C1 C2/;

@ispersed = List::Intersperse::intersperse qw/A A B B B B B B C/;

intersperse and intersperseq evenly distribute elements of a list. Elements that are considered equal are spaced as far apart from each other as possible.

FUNCTIONS

intersperse LIST

This function returns a list of elements interspersed so that equivalent items are evenly distributed throughout the list.

intersperseq BLOCK LIST

intersperseq works like intersperse but it applies BLOCK to the elements of LIST to determine the equivalance key.

<<less
Download (0.002MB)
Added: 2007-07-19 License: Perl Artistic License Price:
827 downloads
Sunrise Data Dictionary 1.00

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.
<<less
Download (0.17MB)
Added: 2007-07-16 License: MIT/X Consortium License Price:
832 downloads
HTML::StripScripts 1.00

HTML::StripScripts 1.00


HTML::StripScripts can strip scripting constructs out of HTML. more>>
HTML::StripScripts can strip scripting constructs out of HTML.

SYNOPSISM

use HTML::StripScripts;

my $hss = HTML::StripScripts->new({ Context => Inline });

$hss->input_start_document;

$hss->input_start(< i >);
$hss->input_text(hello, world!);
$hss->input_end(< /i >);

$hss->input_end_document;

print $hss->filtered_document;

This module strips scripting constructs out of HTML, leaving as much non-scripting markup in place as possible. This allows web applications to display HTML originating from an untrusted source without introducing XSS (cross site scripting) vulnerabilities.

You will probably use HTML::StripScripts::Parser rather than using this module directly.

The process is based on whitelists of tags, attributes and attribute values. This approach is the most secure against disguised scripting constructs hidden in malicious HTML documents.

As well as removing scripting constructs, this module ensures that there is a matching end for each start tag, and that the tags are properly nested.

Previously, in order to customise the output, you needed to subclass HTML::StripScripts and override methods. Now, most customisation can be done through the Rules option provided to new().

The HTML document must be parsed into start tags, end tags and text before it can be filtered by this module. Use either HTML::StripScripts::Parser or HTML::StripScripts::Regex instead if you want to input an unparsed HTML document.

<<less
Download (0.040MB)
Added: 2007-07-13 License: Perl Artistic License Price:
834 downloads
Games::Go::SGF2misc::SVG 1.00

Games::Go::SGF2misc::SVG 1.00


Games::Go::SGF2misc::SVG is a Perl package to simplify SGF game rendering using Image::LibrSVG. more>>
Games::Go::SGF2misc::SVG is a Perl package to simplify SGF game rendering using Image::LibrSVG.

SYNOPSIS

use Games::Go::SGF2misc::SVG;

my $image = new Games::Go::SGF2misc::SVG(imagesize => 3in,
boardsize => 19,
gobanColor=> white );

$image->drawGoban();

$image->placeStone(b,cd);
$image->placeStone(w,[4,2]);
$image->placeStone(b,db);
$image->placeStone(w,dc);
$image->placeStone(b,cc);
$image->placeStone(w,eb);
$image->placeStone(b,cb);

$image->addCircle(cb,1);

$image->save($filename); # As a .svg
$image->export($filename); # As a .png

<<less
Download (0.006MB)
Added: 2007-07-05 License: Perl Artistic License Price:
844 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5