Main > Free Download Search >

Free 0.02 software for linux

0.02

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 232
Wily 0.02

Wily 0.02


Wily is a Perl extension for interfacing with Wily. more>>
Wily is a Perl extension for interfacing with Wily.

SYNOPSIS

use Wily;
use Wily::Message;

# opens a file in wily and exits when the window is destroyed

my $wily = Wily->new();
my $win = $wily->win(/tmp/file_to_edit, 1);
$win->set_callback(Wily::Message::WEdestroy, sub {exit;});
$win->attach(Wily::Message::WEdestroy);
$wily->event_loop();

Provides a reasonably high level OO interface to wily. A lower level interface is available via Wily::RPC, and an even lower level one through Wily::Message and Wily::Connect.

The actual windows in wily are represented by Wily::Win objects.

<<less
Download (0.021MB)
Added: 2007-05-10 License: Perl Artistic License Price:
898 downloads
OzDB 0.02

OzDB 0.02


OzDB is a database Perl interface module for OzBot. more>>
OzDB is a database Perl interface module for OzBot.

SYNOPSIS

use OzDB;

The OzDB Perl module handles authentication and access control for the OzBot based utility bots. The basic database format is the authentication schema. This is based on a numerical ordering authentication system. If the users Authentication level is higher than that of the commands authentication level then the user is authenticated for the command and the commands special arguments will be returned to the function.

This is useful for BACKEND authentication only, where the usernames are entered by an already physically or password authorized connection. This is for information purposes, and is not to be used as an actual database such as MySQL or PgSQL. This is written to faciliate developers with rudimentary information storage and any protected information, including passwords, should not be stored in this database. It is simply a method to allow applications to store and retrieve data in an arbitrary and extensible format with special delimiters.

METHODS

$obj->authenticate("authuser.db", "authcmd.db", "$name", "$command");
$obj->add_user("$authuserdb", "$authcmddb", "$name", "$authlevel");

<<less
Download (0.012MB)
Added: 2007-05-15 License: Perl Artistic License Price:
892 downloads
AEAE 0.02

AEAE 0.02


AEAE project is the Ajax Enhanced Asynchroneous Experience. more>>
AEAE project is the Ajax Enhanced Asynchroneous Experience.

USAGE:

To use AEAE, you only got two things to write:

The actual server task to do.

For this just make a class that inherits from AEAE::Command, and simply implement the _doIt() method.

See the AEAE::ComandExample :

(extract):
sub _doItReal{
my $self = shift ;
my $mustDie = shift ;
my $i = 0 ;

print "Let us start !n";
local $| = 1 ;
while( $i < 101){

$AEAE::Command::processCommand->oneStep($i);
print STDERR "We are here:".$i."n";
print STDOUT "Step ".$i."n";
$i += 5 ;
sleep(1);
if( ( $i > 70 ) && $mustDie){ confess( "An horrible error" );}
}
print "Now its over!n";
}

See AEAE::Command for full doc and AEAE::CommandExample for full example!

The importants things are:

- All you need to do is to implement your task just as if would be a regular one. Dont worry about synchroneous issues.
- All you write on STDOUT and STDERR will be visible to the final user, so dont be too wordy.
- If you die or confess, the error message will be visible to the user, so be clear!
- You got to use the $AEAE::Command::processCommand->oneStep( ); to gives information to the user on how much your task is complete. If number >= 100, your task will be considered as complete (thus eliminated) by the system, so give number between 1 and 99 !

The CGI that generates the interface.

Once your command is written, you got to write the cgi that will generate your web interface. For that, you will use the AEAE::AsyncCGIPage module.

Just a simple example:

#! /usr/bin/perl -w

use AEAE::AsyncCGIPage ;

use strict ;

use CGI ;

my $c = new CGI ;

my $page = AEAE::AsyncCGIPage->new($c,1);
$page->command(AEAE::CommandExample);
$page->arguments([0]);
$page->debug(1);
print $page->generateAjaxedHTML();

This CGI generates an ajaxed page that will control the AEAE::CommandExample and will give it the argument 0 .

The debug(1) makes ajax call appears in the page.

See AEAE::AsyncCGIPage for full documentation about all features.

<<less
Download (0.010MB)
Added: 2007-06-22 License: Perl Artistic License Price:
854 downloads
PerlIO 0.02

PerlIO 0.02


PerlIO is a Perl module created to load on demand PerlIO layers and root of PerlIO::* name space. more>>
PerlIO is a Perl module created to load on demand PerlIO layers and root of PerlIO::* name space.

SYNOPSIS

open($fh,":utf8", "data.utf");
print F $out;
close(F);

open(F, "<<less
Download (0.014MB)
Added: 2007-05-14 License: Perl Artistic License Price:
893 downloads
XcplayC 0.02

XcplayC 0.02


XcplayC is a text-GUI for XMMS based on xcplay. more>>
XcplayC is an ncurses-based GUI for XMMS, based on xcplay.

It is useful if you wish to control and XMMS process when you dont have access to the X11 GUI.
<<less
Download (0.017MB)
Added: 2005-05-10 License: GPL (GNU General Public License) Price:
1627 downloads
Simpla 0.02

Simpla 0.02


Simpla project is a concept language for child education. more>>
Simpla project is a concept language for child education.
Simpla is a basic concept language for use in teaching children and adults with no programming experience or computer knowledge whatsoever.
The intent is to have a language which is capable of many basic scripting language tasks without adding excess complexity.
Still a barely working alpha, and Ive got contributor code to include. Added variable declaration, an improved variable parser (thanks to Richard Nolan for the explanation, and a whole lot of cleanup.
Enhancements:
- 0.02 - remains Alpha.
- Variable declatation now works, parsing of lines works (too well), code reorganization (again)
<<less
Download (0.001MB)
Added: 2006-10-31 License: Artistic License Price:
1089 downloads
Pytego 0.02

Pytego 0.02


Pytego project is a networkable Stratego clone created with Pygame. more>>
Pytego project is a networkable "Stratego" clone created with Pygame.
Pytego is a two-player, cross-platform networked clone of the classic boardgame "Stratego" from Milton Bradley developed using Pygame and SDL.
I could not find a good, networkable, free version of Stratego -- so I wrote my own. Mostly because I was interested in developing a game, partially because I think Python is a terrific language and partially because I was bored (sssh!).
This is the initial release of Pytego. Download it, try it out and send me your comments, questions, suggestions, and bug reports. Also, Im no artist, so send me new tiles and new graphics for the units -- anything! On my TODO list is support for user-customizable tilesets and icons.
Id like to acknowledge the Civil developers for inspiration (and their clear, easy-to-use networking code). Id also like to acknowledge David Clarkes Newbie Guide for convincing me to not worry about the "side issues" (rule #8) and to do things the "pythony way" (rule #13).
Enhancements:
- Reuse the "box" as the status area after the game has started, this way theres not a HUGE blank, white area after all the pieces have been placed.
<<less
Download (0.22MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
1061 downloads
Slauth 0.02

Slauth 0.02


Slauth is a Perl-based authentication and authorization module for Apache HTTPD 2. more>>
Slauth is a Perl-based authentication and authorization module for Apache HTTPD 2. Slauth project has a plugin architecture. The main plugin initially available allows subscribers of specific Mailman mail lists to self-register for authenticated web site access.

This code has been in operation since Spring 2004. But documentation is currently needed.

HISTORY

Slauth was originally developed for use by Stratofox, an amateur aerospace tracking and recovery team. (Sometimes this has also been called "nearspacecraft hunting".)

The ability to have users self-register based on Mailman mail list subscriptions resulted mostly from discussions with two rocket-building groups that Stratofox works with. The rocket-builders parted paths and didnt want each others private information available to the other. At the time both were nearly ready to attmept the first non-government space launch. After some discussion, this capability was developed by Stratofox during the search for an acceptable method to continue to
work with both groups and continue to participate in their launches.

INSTALLATION

Note: instead of using ExtUtils::MakeMaker, the installation process is based on Module::Build (which is intended to supersede it.) The process is similar, using Build.PL instead of Makefile.PL and our own generated Build script (made by Build.PL) instead of your systems make command.

To install this module type the following:

perl Build.PL
Build
Build test
Build install

<<less
Download (0.024MB)
Added: 2006-03-27 License: GPL (GNU General Public License) Price:
1306 downloads
Symbol 0.02

Symbol 0.02


Symbol is a Perl module created to manipulate Perl symbols and their names. more>>
Symbol is a Perl module created to manipulate Perl symbols and their names.

SYNOPSIS

use Symbol;

$sym = gensym;
open($sym, "filename");
$_ = ;
# etc.

ungensym $sym; # no effect

# replace *FOO{IO} handle but not $FOO, %FOO, etc.
*FOO = geniosym;

print qualify("x"), "n"; # "Test::x"
print qualify("x", "FOO"), "n" # "FOO::x"
print qualify("BAR::x"), "n"; # "BAR::x"
print qualify("BAR::x", "FOO"), "n"; # "BAR::x"
print qualify("STDOUT", "FOO"), "n"; # "main::STDOUT" (global)
print qualify(*x), "n"; # returns *x
print qualify(*x, "FOO"), "n"; # returns *x

use strict refs;
print { qualify_to_ref $fh } "foo!n";
$ref = qualify_to_ref $name, $pkg;

use Symbol qw(delete_package);
delete_package(Foo::Bar);
print "deletedn" unless exists $Foo::{Bar::};

Symbol::gensym creates an anonymous glob and returns a reference to it. Such a glob reference can be used as a file or directory handle.

For backward compatibility with older implementations that didnt support anonymous globs, Symbol::ungensym is also provided. But it doesnt do anything.

Symbol::geniosym creates an anonymous IO handle. This can be assigned into an existing glob without affecting the non-IO portions of the glob.

Symbol::qualify turns unqualified symbol names into qualified variable names (e.g. "myvar" -> "MyPackage::myvar"). If it is given a second parameter, qualify uses it as the default package; otherwise, it uses the package of its caller. Regardless, global variable names (e.g. "STDOUT", "ENV", "SIG") are always qualified with "main::".

Qualification applies only to symbol names (strings). References are left unchanged under the assumption that they are glob references, which are qualified by their nature.

Symbol::qualify_to_ref is just like Symbol::qualify except that it returns a glob ref rather than a symbol name, so you can use the result even if use strict refs is in effect.

Symbol::delete_package wipes out a whole package namespace. Note this routine is not exported by default--you may want to import it explicitly.

<<less
Download (0.015MB)
Added: 2007-05-14 License: Perl Artistic License Price:
894 downloads
StealIt 0.02

StealIt 0.02


StealIt is a service menu to take ownership on selected file/directory. more>>
StealIt is a service menu to take ownership on selected file/directory.

It is often annoying to have no rights on files created by other users or uploaded with samba or created by apache process.
<<less
Download (MB)
Added: 2006-09-29 License: GPL (GNU General Public License) Price:
1121 downloads
ViewMTN 0.02

ViewMTN 0.02


ViewMTN project provides a Web interface to the Monotone distributed version control system. more>>
ViewMTN project provides a Web interface to the Monotone distributed version control system.

ViewMTN is a Web interface to the Monotone distributed version control system.

Features include listing all branches and tags, a graphical, clickable revision ancestry chart, diffs, and retrieval of the manifest of any revision as a tar file.

<<less
Download (0.015MB)
Added: 2007-01-31 License: GPL (GNU General Public License) Price:
996 downloads
PAR2GUI 0.02

PAR2GUI 0.02


PAR2GUI project provides a GUI to the command line utility PAR2. more>>
PAR2GUI project provides a GUI to the command line utility PAR2. You can Verify , Repair and Create PAR2 files. Its very simple and provides instant user feedback via the intergrated konsole widget.

I have included instructions on the third tab on how to double click a PAR2 file and repair your files without the use of Kommander.

<<less
Download (0.024MB)
Added: 2007-03-04 License: GPL (GNU General Public License) Price:
974 downloads
GConf-FS 0.02

GConf-FS 0.02


GConf-FS script allows you to view a gconf tree as a file system. more>>
GConf-FS script allows you to view a gconf tree as a file system. This script use the FUSE perl binding and Gnome2::GConf.

<<less
Download (0.012MB)
Added: 2006-10-19 License: LGPL (GNU Lesser General Public License) Price:
1100 downloads
B::Tree 0.02

B::Tree 0.02


B::Tree is a simplified version of B::Graph for demonstration. more>>
B::Tree is a simplified version of B::Graph for demonstration.

SYNOPSIS

perl -MO=Tree program | dot -Tps > tree.ps

This is a very cut-down version of B::Graph; it generates minimalist tree graphs of the op tree of a Perl program, merely connecting the op nodes and labelling each node with the type of op.

It was written as an example of how to write compiler modules for "Professional Perl", but Ive found it extremely useful for creating simple op tree graphs for use in presentations on Perl internals.

It requires the CPAN GraphViz module and the GraphViz package from http://www.research.att.com/sw/tools/graphviz/. It takes no options.

<<less
Download (0.002MB)
Added: 2007-06-26 License: Perl Artistic License Price:
856 downloads
mooseekd 0.02

mooseekd 0.02


mooseekd is a partial fork of Museek+, containing only the standalone daemon needed to connect to the Soulseek P2P network. more>>
mooseekd project is a partial fork of Museek+, containing only the standalone daemon needed to connect to the Soulseek P2P network. Naming has been changed so as not to clash with an existing Museek+/museekd installation.

The goal of the fork is to provide a means of having only the daemon installed, without the dependencies on libxml++/glibmm, leaving it with only GLib (using GMarkup instead of libxml++) as a major dependency.

<<less
Download (0.46MB)
Added: 2006-07-29 License: GPL (GNU General Public License) Price:
1182 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5