Main > Free Download Search >

Free visual perl tk software for linux

visual perl tk

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4833
Visual Perl/Tk 1.22

Visual Perl/Tk 1.22


Visual Perl/Tk is a GUI development solution for beginners and professionals. more>> <<less
Download (0.088MB)
Added: 2006-07-17 License: GPL (GNU General Public License) Price:
1211 downloads
Davids Perl Games 0.1.1

Davids Perl Games 0.1.1


Davids Perl Games project is a collection of ASCII graphics arcade style games written in Perl. more>>
Davids Perl Games project is a collection of ASCII graphics arcade style games written in Perl.

These games are recreations of simple ASCII graphics games originally written in BASIC.

They are ideal for use as Perl programming tutorials. Some of the first few games are PerlBlaster (defend your planet from invading aliens), PerlRacer (steer your car through the twisting passages), and PerlArena (eliminate the mutant hordes).

<<less
Download (0.063MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1076 downloads
CVS Perl library 0.07

CVS Perl library 0.07


CVS Perl library is a Perl module which is is a wrapper around the CVS command with an object-oriented interface. more>>
CVS Perl library is a Perl module which is a wrapper around the CVS command with an object-oriented interface.

Installation:

To install this module type the following:

perl Makefile.PL
make
make test
make install

<<less
Download (0.024MB)
Added: 2006-03-22 License: LGPL (GNU Lesser General Public License) Price:
1312 downloads
Perl OS 4

Perl OS 4


Perl OS is a program written in Perl/Tk, designed to look like a simple operating system. more>>
Perl OS is a program written in the Perl programming language combined with the Perl module Tk.

Perl OS was created to make an easy interface to run Perl/Tk programs. It was also created to be an easy working environment complete with a text editor, paint program, and more.

The program comes with several programs, along with a utility to add many more which can be found on the Internet.

From the outside, Perl OS looks like a simple operating system. But inside, it is a powerful system for working with Perl and Tk.

For more details please visit the Perl OS home page:

http://perlos.sourceforge.net/

<<less
Download (0.14MB)
Added: 2007-08-04 License: GPL v3 Price:
812 downloads
Perl Chat 0.1.1

Perl Chat 0.1.1


http://perlchat.sourceforge.net more>>
Perl Chat is a project that consists of a client and a server, both written in perl.

The goal of this project is to create a chat server that can be used on smaller networks such as a college campus or a business network.

Both the client and the server are written in Perl, and the client uses the Tk module to generate its GUI.

Installation:

First of all you need a working version of Perl. Preferably 5.6 but 5.005X should also work fine. For versions of Perl Chat < 0.1.0 you will need to compile Perl with Threads. (Keep in mind that Threads are still experimental) I designed this program with Perl 5.6.0 which can be found HERE.

You will need to read the installation instructions to compile it with Threads. I advise anyone who is doing this to install this new version of perl into /usr/local/ so as to not overwrite your old perl. Then by changing the first line of the script you can toggle between the different installs of perl.
<<less
Download (0.036MB)
Added: 2006-09-19 License: GPL (GNU General Public License) Price:
1135 downloads
fruMailer 0.121

fruMailer 0.121


fruMailer is a cross platform MUA written in both Java and Perl. more>>
fruMailer is a cross platform MUA written in both Java and Perl. The idea behind GUI is to have a mail client with a GIMP-like interface. FruMailer is a project written in Perl/Tk that aims to be an e-mail client (MUA) with a small, fast, light, and simple GUI interface.
Enhancements:
- MIME parsing/encoding
- http link parsing
- changelog started
- newline error fixed
- updated interface and some functionality
- lost much functionality
<<less
Download (0.008MB)
Added: 2006-06-09 License: GPL (GNU General Public License) Price:
1232 downloads
Digest::Perl::MD4 1.4

Digest::Perl::MD4 1.4


Digest::Perl::MD4 is a Perl implementation of Ron Rivests MD4 Algorithm. more>>
Digest::Perl::MD4 is a Perl implementation of Ron Rivests MD4 Algorithm.

This is not C-code interface (like Digest::MD5) but a Perl-only implementation of MD4 (like Digest::Perl::MD5). Because of this, it is slow but avoids platform specific complications. For efficiency you should use Digest::MD4 instead of this module if it is available.

SYNOPSIS

# Functional style
use Digest::Perl::MD4 qw(md4 md4_hex md4_base64);

$hash = md4 $data;
$hash = md4_hex $data;
$hash = md4_base64 $data;


# OO style
use Digest::Perl::MD4;

$ctx = Digest::Perl::MD4->new;

$ctx->add($data);
$ctx->addfile(*FILE);

$digest = $ctx->digest;
$digest = $ctx->hexdigest;
$digest = $ctx->b64digest;

<<less
Download (0.007MB)
Added: 2007-02-22 License: Perl Artistic License Price:
976 downloads
MyCMS perl module 1.0

MyCMS perl module 1.0


MyCMS perl module provides the MN::CMS Perl module used by the MyCMS. more>>
MyCMS perl module provides the MN::CMS Perl module used by the MyCMS.

MyCMS perl module contains Perl object classes to manage the data of MyCMS (such as articles, links, and images).

MN::CMS is a perl module that allows you to manage an Internet
publishing system.#

MyCMS is an extension module of MyNews.

MyCMS introduces the concept of article, author and moderator.

<<less
Download (0.016MB)
Added: 2007-02-13 License: Perl Artistic License Price:
986 downloads
Markup::Perl 0.5

Markup::Perl 0.5


Markup::Perl is a brilliant Perl module that will turn your CGI inside-out. more>> Markup:Perl 0.5 is a brilliant Perl module that will turn your CGI inside-out.

For some problems, particularly in the presentation layer, thinking of the solution as a webpage that can run perl is more natural than thinking of it as a perl script that can print a webpage.

It's been done before, but this module is simple. The source code is compact: one file and less than 2k of code. Simply put: if you can do it in Perl, you can do it in Markup:Perl, only without all the print statements, heredocs and quotation marks.

Requirements:

  • Perl
<<less
Added: 2008-10-03 License: Perl Artistic License Price: FREE
1 downloads
Syntax::Highlight::Perl 1.0

Syntax::Highlight::Perl 1.0


Syntax::Highlight::Perl is a Perl module that can highlight Perl Syntactical Structures. more>>
Syntax::Highlight::Perl is a Perl module that can highlight Perl Syntactical Structures.

SYNOPSIS

# simple procedural
use Syntax::Highlight::Perl :BASIC; # or :FULL

print format_string($my_string);


# OO
use Syntax::Highlight::Perl;

my $formatter = new Syntax::Highlight::Perl;
print $formatter->format_string($my_string);

This module provides syntax highlighting for Perl code. The design bias is roughly line-oriented and streamed (ie, processing a file line-by-line in a single pass). Provisions may be made in the future for tasks related to "back-tracking" (ie, re-doing a single line in the middle of a stream) such as speeding up state copying.

<<less
Download (0.033MB)
Added: 2007-04-03 License: Perl Artistic License Price:
935 downloads
Perl Playlist 0.1

Perl Playlist 0.1


Perl Playlist is a command line application to generate m3u files based on your all your MP3s. more>>
Perl Playlist is a command line application to generate m3u files based on your all your MP3s.

Perl Playlist uses MP3::Info to read the MP3 tags.

Perl playlist maker was designed to build a playlist on a remote machine that does not have a screen or X windows.

<<less
Download (0.10MB)
Added: 2006-03-27 License: GPL (GNU General Public License) Price:
1312 downloads
Code::Perl 0.03

Code::Perl 0.03


Code::Perl is a Perl module to produce Perl code from a tree. more>>
Code::Perl is a Perl module to produce Perl code from a tree.

SYNOPSIS

use Code::Perl::Expr qw( :easy );

my $c = derefh(scal(hash), calls(getkey));

print $c->perl; # ($hash)->{getkey()}

Code::Perl allows you to build chunks of Perl code as a tree and then when youre finished building, the tree can output the Perl code. This is useful if you have built your own mini-language and you want to generate Perl from it. Rather than generating the Perl at parse time and having to worry about quoting, escaping, parenthese etc, you can just build a tree using Code::Perl and then dump out the correct Perl at the end.

<<less
Download (0.017MB)
Added: 2006-10-05 License: Perl Artistic License Price:
1127 downloads
Perl OpenID 1.1

Perl OpenID 1.1


Perl OpenID is a perl module for verifying OpenID identities. more>>
Perl OpenID is a perl module for verifying OpenID identities.
Main features:
- asy-to-use API
- Does not depend on underlying web framework
- Extensive documentaion
- Ready-to-use store implementation
- Test suite
- Licensed under the LGPL
Enhancements:
- This release contains a tested, documented library with support for OpenID extensions and Yadis.
- There are examples for both the consumer and server.
<<less
Download (0.057MB)
Added: 2006-06-15 License: LGPL (GNU Lesser General Public License) Price:
1227 downloads
gtk2-perl 1.151

gtk2-perl 1.151


gtk2-perl is the collective name for a set of perl bindings for Gtk+ 2.x and various related libraries. more>>
gtk2-perl project is the collective name for a set of perl bindings for Gtk+ 2.x and various related libraries. These modules make it easy to write Gtk and Gnome applications using a natural, perlish, object-oriented syntax.

This set of extension modules gives the Perl developer full access to the gtk+ widget set and several gnome libraries in a perlish, object-oriented way.

You can create new widgets and non-gui objects, and do just about anything you can do in C. We also include POD for every object (installed as manpages), and provide tools for binding other GObject-based libraries to Perl.

<<less
Download (0.65MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
1180 downloads
Perl Panel 0.9.1

Perl Panel 0.9.1


Perl Panel is an X11 panel program written in Perl. more>>
PerlPanel is an attempt to build a useable, lean panel program (like the Gnome Panel or the KDE Kicker) in Perl, using the Gtk2-Perl libraries.

PerlPanel is the ideal accompaniment to a light-weight Window Manager such as OpenBox, or a desktop-drawing program like iDesk. Click here to see all three working together.

Most of PerlPanels features are provided by applets - simple widgets that each do a different job. PerlPanel currently ships with 36 different applets.

<<less
Download (0.34MB)
Added: 2005-04-27 License: GPL (GNU General Public License) Price:
1646 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5