Main > Free Download Search >

Free professor fizzwizzle 1.02 software for linux

professor fizzwizzle 1.02

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 128
Professor X 0.4.1

Professor X 0.4.1


Professor X is an extension which lets you see inside a pages head without viewing the sourcecode. more>>
Professor X is an extension which lets you see inside a pages head without viewing the sourcecode.

Once installed the Professor X command is available by right-clicking as well as in the Tools menu. When applied to a page it will display the contents of the pages head element, including Meta, Script and Style content.

This can help you see how a website was constructed without having to go back and forth between the sourcecode and the page in your browser.

This is the companion extension to X-Ray although either can be installed and used on their own. They were created to help people learning web design at various levels of experience.

<<less
Download (0.023MB)
Added: 2007-04-03 License: MPL (Mozilla Public License) Price:
936 downloads
PCL::Simple 1.02

PCL::Simple 1.02


PCL::Simple is a Perl module to create PCL for printing plain text files. more>>
PCL::Simple is a Perl module to create PCL for printing plain text files.

SYNOPSIS

use PCL::Simple qw( PCL_pre PCL_post );

open PLAIN, ready_for_printing.txt or die;

print SNAZZY PCL_pre( -w => 132, -lpp => 66 );
print SNAZZY while ( );
print SNAZZY PCL_post;

close PLAIN;
close SNAZZY;

PCL::Simple will provide PCL strings that cause your printer to print a plain text file with *exactly* the right font -- i.e. the exact font needed to fill the page with as many fixed width characters across and down as you specify.

In addition to providing for your desired width and height layout, the provided PCL strings will also cause the printer to honor your other desires regarding paper size, paper orientation, sides printed, and number of copies.

USAGE

Two functions are exportable: PCL_pre and PCL_post.
PCL_post takes no parameters, it simply returns a string containing the "Printer Reset Command" and "Universal Exit Language Command" as specified by PCL documentation. This string is meant for appending to the end of your plain text document.

PCL_pre takes a list or an href of key value pairs and returns a PCL string for insertion at the beginning of your plain text document. PCL_pre Paramaters are:

-w

Width (Required)

-lpp

Lines Per Page (Required)

-ms

Media Size defaults to letter. Valid values are: executive, letter, legal, ledger, a4, a3, monarch, com-10, d1, c5, b5

-msrc

Media Source is not set by default. Valid values are: numbers from 0 to 69. Generally refers to paper trays or feeders. See your printer documentation for details.

-o

Orientation defaults to portrait. Valid values are: landscape, portrait.

-s

Sides defaults to 0. Valid values are: 0 (Single), 1 (Double Long), 2 (Double Short)

-c

Copies defaults to 1.

<<less
Download (0.005MB)
Added: 2007-04-03 License: Perl Artistic License Price:
565 downloads
Para::Frame 1.02

Para::Frame 1.02


Para::Frame is a system to use for dynamic web sites. more>>
Para::Frame is a system to use for dynamic web sites. Para::Frame runs as a backend daemon taking page requests from a Apache mod_perl client and returns a HTTP response.
The URLs in the site corresponds to templates for displaying information. Operations on the data is put in perl modules separated from the templates.
Para::Frame handles multitasking within the process, enabeling you to keep your initialized objects in memory with no need to sync with the DB for each request.
The session data lives in memory. No need to save it in an external format.
Para::Frame uses "routes" for planning things to do in a session, taking care of which page to display next, depending on form actions. Integrated with exception handling.
One Para::Frame daemon can handle many sites on the same server. It uses the Apache configuration for handling URL to file translation.
You can have any number of Para::Frame daemons running in parallell on the same server. Maby using one for development, one for the stable version and one backup in case of failure. You can easily configure the site to use a backup daemon as a last resort.
A Watchdog makes sure that the system works. It pings the daemon in regular intervals and restarts it if locks up or if the memory limit is reached. The restart is done by forking.
There are tons of useful functions.
Enhancements:
- A lot of major changes and additions were made.
- 19 new classes were added, including classes for relational database access, internationalization, and file and directory handling.
- The server/client communication has changed and is now safer and faster.
- A load-page will display a progress report from the server before the new page is loaded.
- The html/pf directory now contains some default images, styles, JavaScript, and more.
- A demo has been included.
<<less
Download (0.11MB)
Added: 2006-09-09 License: Perl Artistic License Price:
1141 downloads
PostScript::Graph::Style 1.02

PostScript::Graph::Style 1.02


PostScript::Graph::Style is a style settings for postscript objects. more>>


SYNOPSIS

Simplest

Each time a new object is created the default style will be slightly different.

use PostScript::File;
use PostScript::Graph::Style;

my $file = new PostScript::File();
my $seq = new PostScript::Graph::Sequence();

while (...) {
my $style = new PostScript::Graph::Style(
sequence => $seq,
point => {}
);
$style->write($file);

$file->add_to_page(<<less
Download (0.054MB)
Added: 2006-07-31 License: Perl Artistic License Price:
1180 downloads
RiveScript::Tutorial 1.02

RiveScript::Tutorial 1.02


RiveScript::Tutorial is a beginners guide to creating their first RiveScript brain. more>>
RiveScript::Tutorial is a beginners guide to creating their first RiveScript brain.

This tutorial outlines the various capabilities of the RiveScript specification and offers some recommended pointers for creating a well-formed RiveScript brain. What you do with this knowledge is up to you; be creative!

Be sure to skim over the RiveScript manpage first, because this tutorial jumps right in to using the various RiveScript commands without always explaining what each of them do.

A Simple RiveScript Interpreter

Here is a simple Perl script for running a RiveScript interpreter. This assumes that the brains RS files will be stored in a directory called "tutorial", local to the Perl script. Youd want to edit certain parameters in this code if you see fit.

#!/usr/bin/perl -w

use strict;
use warnings;
use RiveScript;

# Create the RiveScript interpreter.
my $rive = new RiveScript();

# Load the RS tutorial brain.
$rive->loadDirectory ("./tutorial");

# Sort them.
$rive->sortReplies;

# Go into a chatting loop.
while (1) {
print "User> ";
my $msg = ;
chomp $msg;

# Grab a reply.
my @reply = $rive->reply (user,$msg);
print " Bot> $_n" foreach(@reply);
}

<<less
Download (0.20MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1064 downloads
Baes RSSMailFeed 1.02

Baes RSSMailFeed 1.02


Baes RSSMailFeed is a program to send the contents of an RSS feed through email. more>>
Baes RSSMailFeed is a program to send the contents of an RSS feed through email.
I started this because a friend wanted a way to read my locked LiveJournal posts via email. Its easy enough to get LiveJournal posts via email, but more tricky when authentication is required. I originally tried hacking rss2email, but didnt know enough python to make it work. This will email you with ALL the posts on your LiveJournal friends page, even the locked ones. (Works best with paid accounts, who can see their entire friends list as an RSS feed, instructions here and there is this nifty script will give you a list of all your friends RSS feeds if you arent a paid LJ user)
This is written in perl, and requires *nix, and command line access to set up. (can be set up on your own server, your web pages server, or any place you trust with your password)
This also works for any RSS feed, whether it requires authentication or not.
Enhancements:
- restore multiple email address support even when a directory isnt specified on the command line
<<less
Download (0.010MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
943 downloads
dnsreflector 1.02

dnsreflector 1.02


dnsreflector daemon listens for DNS queries on a local UDP port and answers with records pointing back to localhost. more>>
dnsreflector daemon listens for DNS queries on a local UDP port and answers with records pointing back to localhost. Combined with OpenBSDs packet filter pf(4) this works as a bandwidth efficient spamtrap.

dnsreflector was written and tested with OpenBSD. If you are interested in running dnsreflector on another platform, please contact me .

PF Setup

table < spamd > persist
rdr inet proto udp from < spamd > to any port 53 -> 127.0.0.1 port 53000

Usage

dnsreflector [-d] [-a address] [-p port]

-d Run as daemon in the background
-a address Bind to this address (default: 127.0.0.1)
-p port Bind to this port (default: 53000)

Linux: On popular demand I made a diff to compile dnsreflector with Linux (tested on SuSE). You will need a facility to redirect DNS queries coming from blacklisted hosts to dnsreflector. I dont know how to do this with Linux netfilter, but if you do, please tell me.
<<less
Download (0.005MB)
Added: 2006-03-07 License: BSD License Price:
1328 downloads
openflash 1.02

openflash 1.02


openflash is an open source utility to (re)program flash BIOS chips. more>>
openflash is an open source utility to (re)program flash BIOS chips. Initial support will be for the i-opener network appliance under Qnx since there is an immediate need.
Usage: qnxflash [-r < file >] [-w < file >] [-v < file >] [-iadlcV]
-r Read bios image from chip.
-w Write bios image to chip.
-v Verify chip data against image file.
-i display bios chips device Id.
-a report All verify errors.
-d Disable verify while programming.
-l List supported devices.
-c disable device id Check.
-V Verbose messages
Enhancements:
- Modifications to correct failures to exit Device ID mode on V4 Iopeners using RISE CPU. This problem was reported as an erase failure in 1.01.
- Changed the method used to exit Device mode from the one step method to the three step.
- Added code to check that Device ID mode was exited successfully. If the first attempt fails an additional 9 attempts will be made before giving up.
- Corrected a bug in WaitFlashComplete() which prevented timeout errors from being detected.
- Doubled the loop count in WaitFlashComplete().
- Added the -V switch to enable verbose error and status messages.
- Added -c switch to allow Device ID checks to be disabled.
<<less
Download (0.029MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
862 downloads
Rocket 1.02

Rocket 1.02


Rocket is a game where you try to land a rocket on a moving platform. more>>
Rocket project is a game where you try to land a rocket on a moving platform.

Running Rocket:

- Unzip the archive into its own directory.
- cd to the directory.
# perl rocket.pl

You fly the rocket with the left, right, and down keys.

Other keys:

- pause
- exit
- new game
- God mode?

<<less
Download (0.043MB)
Added: 2006-12-11 License: Perl Artistic License Price:
1052 downloads
The Cookies Are Falling! 1.02

The Cookies Are Falling! 1.02


The Cookies Are Falling! 1.02 brings you another tetris clone. more>> The Cookies Are Falling! 1.02 brings you another tetris clone. The game is written in Python and PyGame.

Enhancements:

Two bugs are realized:

  • If you are about to fill a row and you press the down key, the row clearing will get all messed up.
  • If you press the space key the moment a new shape is created, you'll lose the game.

Requirements:

  • Python
  • Pygame
<<less
Added: 2009-06-27 License: Freeware Price: FREE
1 downloads
RwdSchedule 1.02

RwdSchedule 1.02


RwdSchedule is an event database program using RubyWebDialogs. more>>
RwdSchedule is an event database program using RubyWebDialogs.
It can list events, store events, and edit, rename, and delete events.
FTP can be used to sync events with multiple systems.
ICS files can be created. Context help is sent on some screens. It should run without changes on all platforms.
It is an rwdtinker program and can take additional plugins.
Enhancements:
- changed schedule configuration screen
- updated for rwdtinker 1.66
- new helpabout
- new documents list
<<less
Download (0.12MB)
Added: 2006-09-27 License: GPL (GNU General Public License) Price:
1122 downloads
Test::Resub 1.02

Test::Resub 1.02


Test::Resub is a lexically scoped subroutine replacement for testing. more>>
Test::Resub is a lexically scoped subroutine replacement for testing.

SYNOPSIS

#!/usr/bin/perl

use Test::More tests => 4;
use Test::Resub qw(resub);

{
package Somewhere;
sub show {
my ($class, $message) = @_;
return "$class, $message";
}
}

# sanity
is( Somewhere->show(beyond the sea), Somewhere, beyond the sea );

# scoped replacement of subroutine with argument capturing
{
my $rs = resub Somewhere::show, sub { hi }, capture => 1;
is( Somewhere->show(over the rainbow), hi );
is_deeply( $rs->method_args, [[over the rainbow]] );
}

# scope ends, resub goes away, original code returns
is( Somewhere->show(waiting for me), Somewhere, waiting for me );

This module allows you to temporarily replace a subroutine/method with arbitrary code. Later, you can tell how many times was it called and with what arguments each time. You can also specify that the subroutine/method must get called, must not get called, or may be optionally called.

<<less
Download (0.014MB)
Added: 2007-07-13 License: Perl Artistic License Price:
833 downloads
Mail 2 Wordpress 1.02

Mail 2 Wordpress 1.02


Mail 2 Wordpress is an SMTP mailrobot for posting wordpress blog entries via SMTP mail. more>>
Mail 2 Wordpress is an SMTP mailrobot for posting wordpress blog entries via SMTP mail.

<<less
Download (0.007MB)
Added: 2005-12-20 License: GPL (GNU General Public License) Price:
1404 downloads
hfishs monitor 0.1.02

hfishs monitor 0.1.02


Ihfishs monitor includes support for two cpus, two ethernet interfaces, ram, swap and two partitions, nvidia gpu temp. more>>
hfishs monitor is based on this theme (http://www.kde-look.org/content/show.php?content=47852), I made some changes to best fit to my laptop.
Includes support for two cpus, two ethernet interfaces, ram, swap and two partitions, nvidia gpu temp.
Enhancements:
- Added nVidia GPU temp support
<<less
Download (0.028MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1079 downloads
Class::InsideOut 1.02

Class::InsideOut 1.02


Class::InsideOut is a Perl module with a safe, simple inside-out object construction kit. more>>
Class::InsideOut is a Perl module with a safe, simple inside-out object construction kit.
SYNOPSIS
package My::Class;
use Class::InsideOut qw( public private register id );
public name => my %name; # accessor: name()
private age => my %age; # no accessor
sub new { register( shift ) }
sub greeting {
my $self = shift;
return "Hello, my name is $name{ id $self }";
}
This is a simple, safe and streamlined toolkit for building inside-out objects. Unlike most other inside-out object building modules already on CPAN, this module aims for minimalism and robustness:
- Does not require derived classes to subclass it
- Uses no source filters, attributes or CHECK blocks
- Supports any underlying object type including black-box inheritance
- Does not leak memory on object destruction
- Overloading-safe
- Thread-safe for Perl 5.8 or better
- mod_perl compatible
- Makes no assumption about inheritance or initializer needs
It provides the minimal support necessary for creating safe inside-out objects and generating flexible accessors.
<<less
Download (0.047MB)
Added: 2006-09-27 License: Perl Artistic License Price:
1122 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5