Main > Free Download Search >

Free americau0027s got talent auditions software for linux

americau0027s got talent auditions

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3964
Dangerous Snowboarding 2.0

Dangerous Snowboarding 2.0


Dangerous Snowboarding is a game where you must run humans and bears with your snowboard down. more>>
Dangerous Snowboarding is a game where you must run humans and bears with your snowboard down.
This game was made for a programmers-contest (got the 3rd place).
Control the snowboarder with your arrow keys. Jumping on objects in row will give you a combination-bonus.
Objects:
- Human - You can run it down however you want to.
- Bear - Jump on it.
- Tree - Absolute deadly.
<<less
Download (0.42MB)
Added: 2007-05-21 License: GPL (GNU General Public License) Price:
896 downloads
Gravers Football Squares 1.3

Gravers Football Squares 1.3


Gravers Football Squares project is a Web-based version of Superbowl Squares. more>>
Gravers Football Squares project is a Web-based version of Superbowl Squares.

Gravers Football Squares was created so multiple people could enjoy Football Squares during the Superbowl or any other major game that may be going on.

Ive been using it for the last few years, and thought I would release it for everyone else to enjoy. If you use it, please provide a link back to the Squares homepage so others know where you got it from.

You will probably need to know some Perl, as well as standard Unix commands.

<<less
Download (0.008MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1073 downloads
Pascals Triangle 3D 24032003

Pascals Triangle 3D 24032003


Pascals Triangle 3D is a Java3d project which prints pascals triangle using both a recursive and iterative algorithm. more>>
Pascals Triangle 3D is a Java3d project which prints pascals triangle using both a recursive and iterative algorithm.

A friend needed a software to print pascals triangle using both a recursive and iterative algorithm. So I helped him with the code.

But then we got the idea to create a program to visualize the triangle in 3D. Well, hours of perusing Java3D documentation ensued (neither of us having ever before done anything in 3D).

The result, a hacked up version of several java3d examples that lets you rotate the triangle with your mouse and zoom in and out with keyboard.

<<less
Download (0.008MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1068 downloads
Chanta Claus 0.15

Chanta Claus 0.15


Chanta Claus is a christmas arcade game for all childrens. more>>
Chanta Claus is a christmas arcade game for all childrens.

In the game Chanta Claus, our protagonist must collect several bills of dispersed dollars in each level.

When we got to collect all, we will be able to accede at the next level. 2 versions of this game exist, the recent version (developed with SDL and C++) and an old version only for systems D.O.S.

We have including the unloading of both but down, although single we will continue developing the recent version. Both versions are available under license GPL.

<<less
Download (0.29MB)
Added: 2006-01-24 License: GPL (GNU General Public License) Price:
1368 downloads
Small Arms Ballistics 1.3.2

Small Arms Ballistics 1.3.2


Small Arms Ballistics is a ballistics calculator for small arms fire. more>>
Small Arms Ballistics is, as the name says, a ballistics calculator for small arms fire. It is a terminal application written using curses.
Small Arms Ballistics is derived from smallball, which was written by Ole-Hj. Kristensen. I have pretty much rewritten the entire program, but smallball got me started. All major
trajectory calculations have been implemented, and a variety of bullet drag models are available.
The program needs a color capable terminal, otherwise it wont run.
Enhancements:
- distribution didnt include saballistics.lsm.in
<<less
Download (0.22MB)
Added: 2005-07-01 License: GPL (GNU General Public License) Price:
1590 downloads
wmcapshare 0.1

wmcapshare 0.1


wmcapshare is a dockapp to control and manage the HP Capshare Information Appliance. more>>
wmcapshare is a dockapp to control and manage the HP Capshare Information Appliance.

The goal is to provide a linux replacement for the CapShares own application which HP has seen fit to discontinue.

Why

I got sick of having to deal with the openobex sample application as my only interface to my HP Capshare. So I finally sat down and dealt with it. Also HP recently discontinued the product and no longer support it. I had been using it with windows when I needed to, but the drivers no longer work with Win2K.

What

The HP CapShare is a handheld document scanner. wmcapshare is a dockapp to manage the files you upload
<<less
Download (0.018MB)
Added: 2006-10-18 License: GPL (GNU General Public License) Price:
1101 downloads
Net:IPMessenger::ToStdoutEventHandler 0.06

Net:IPMessenger::ToStdoutEventHandler 0.06


Net:IPMessenger::ToStdoutEventHandler is a Perl module for event handler for standard output. more>>
Net:IPMessenger::ToStdoutEventHandler is a Perl module for event handler for standard output.

SYNOPSIS

use Net::IPMessenger::ToStdoutEventHandler;

...

$ipmsg->add_event_handler( new Net::IPMessenger::ToStdoutEventHandler );

IP Messenger receive event handler for standard output.

METHODS

output

output($user->nickname . " joined.");

This actually converts encodings and output to STDOUT.

debug

Outputs debug receive message.

BR_ENTRY

Outputs "someone joined." message.

BR_EXIT

Outputs "someone left." message.

SENDMSG

Outputs "youve got message from someone." message.

<<less
Download (0.012MB)
Added: 2007-01-25 License: Perl Artistic License Price:
1006 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
Got Word Database Maker 1.3

Got Word Database Maker 1.3


Bible trivia game that is a cross between the TV game show Who Wants to be a Millionaire? more>>
Hello! Thank you for donating your knowledge and time to our cause. Pariahware, Inc. is currently working on a Bible trivia game that is a cross between the TV game show "Who Wants to be a Millionaire?" and the electronic game series "You Dont Know Jack!" As one might imagine, this can be a daunting task.
That is why we are asking for your help in coming up with some GREAT Bible questions in order to make this game even more fun than we could do by ourselves! When you are finished submitting all of your questions, please e-mail the "qanda.rsd" file back to submissions@pariahware.com. By submitting the questions that you come up with, you agree to the following:
The Legal:
1. You expect no royalty fees or other payment for Pariahware, Inc. using your questions in the game.
2. Any parts of the questions you submit may be altered at will by the members of Pariahware, Inc.
3. Even though you submit a question for the game, that does not necessarily mean it will appear in the game.
4. If your name is included in your e-mail, Pariahware, Inc. has the right to add it as an acknowledgement, unless otherwise noted. You will not be paid as a result of having your name listed.
The How To:
1. Make sure that the Got Word DB Maker application and the "qanda.rsd" file are in the same folder or the program will not work.
2. Double-click the Got Word DB Maker application icon.
3. Select the radio button in the lower-left-hand corner that says "Add new question".
4. There are five text fields. The large one on the top is for the question. The other four are for potential answers. All of these need to be filled.
5. The correct answer needs to be selected by the "drop down" in the upper-right-hand corner.
6. The book of the Bible, in which the question is referencing, needs to be selected in the upper-left-hand corner.
7. Below the book selection is value (points) for the question. This needs to be selected as well.
8. When all of this has been done, the "Save New Question" button will activate. Click it to save your question.
Word of Caution:
To make changes to question that you have already entered, click the "edit existing questions" radio button.
Enhancements:
- Bug Fixes.
<<less
Download (1.3MB)
Added: 2006-04-21 License: Freeware Price:
1283 downloads
WizSQLiteAdmin 0.5.2

WizSQLiteAdmin 0.5.2


WizSQLiteAdmin is a PHP script to manage SQLite databases. more>>
WizSQLiteAdmin is a PHP script to manage SQLite databases.

If you use SQLite databases you can manage their contents with WizSQLiteAdmin: its very simple to use and avoid you to perform a lot of action.

SQLite is a simply but powerful database embedded into PHP5. See here for more information about it!

This application got the 2nd prize at 2nd PHP Programming Marathon at dotgeek.org
<<less
Download (0.017MB)
Added: 2007-03-23 License: GPL (GNU General Public License) Price:
945 downloads
Spotter 2.3.0

Spotter 2.3.0


Spotter is a program that lets students check their answers to math and science questions. more>>
Spotter is a program that lets students check their answers to math and science questions. It handles symbolic as well as numerical answers.
Spotter application is free and open source.
I got the idea for Spotter from LON-CAPA, which is also free and open-source. The programs are alike in some ways and different in others. There is another program called WeBWorK that also does similar things; it doesnt cost money, but Im not sure if its open-source or copylefted.
Enhancements:
- This version adds a general mechanism for creating qualitative questions using JavaScript, and uses that mechanism to implement multiple-choice questions.
<<less
Download (0.13MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
977 downloads
Get File 1.2.2

Get File 1.2.2


Get File is a Firefox extension that can get a file from an URL. more>>
Get File is a Firefox extension that can get a file from an URL.

To use this extension, go in File menu and choose "Get a File".

Ive also developed a french freeware for supervision of your computer.

http://www.pastouchexp.info/

<<less
Download (0.014MB)
Added: 2007-07-09 License: MPL (Mozilla Public License) Price:
875 downloads
Test::Differences 0.47

Test::Differences 0.47


Test::Differences Perl module contains test strings and data structures and show differences if not ok. more>>
Test::Differences Perl module contains test strings and data structures and show differences if not ok.

SYNOPSIS

use Test; ## Or use Test::More
use Test::Differences;

eq_or_diff $got, "anbncn", "testing strings";
eq_or_diff @got, [qw( a b c )], "testing arrays";

## Passing options:
eq_or_diff $got, $expected, $name, { context => 300 }; ## options

## Using with DBI-like data structures

use DBI;

... open connection & prepare statement and @expected_... here...

eq_or_diff $sth->fetchall_arrayref, @expected_arrays "testing DBI arrays";
eq_or_diff $sth->fetchall_hashref, @expected_hashes, "testing DBI hashes";

## To force textual or data line numbering (text lines are numbered 1..):
eq_or_diff_text ...;
eq_or_diff_data ...;

<<less
Download (0.008MB)
Added: 2007-07-18 License: Perl Artistic License Price:
828 downloads
PHP Big Brother Hosts Configurator 0.3

PHP Big Brother Hosts Configurator 0.3


PHP Big Brother Hosts Configurator is a collection of PHP scripts to configure hosts for the Big Brother network. more>>
PHP Big Brother Hosts Configurator (phpBBHC) is a collection of PHP scripts and one C program to configure hosts
for the Big Brother network monitoring software. It doesnt cover all the possible settings for Big Brothers hosts file but it should be enough for
most demands.

Ammendment: Big Brother has been pretty much replaced by Hobbit. I havent got around to using Hobbit yet but Ive heard its pretty backwards compatible with Big Brothers configuration and scripts. Ive heard of successful stories
of phpBBHC being used to configure Hobbit.

<<less
Download (0.011MB)
Added: 2007-02-22 License: Freely Distributable Price:
975 downloads
JavaOp 42b Beta

JavaOp 42b Beta


JavaOp provides a Binary Bot for Battle.net. more>>
JavaOp provides a Binary Bot for Battle.net.
JavaOp is a cross-platform, flexible, plugin-oriented Battle.net Binary Bot.
I did some work on it, and got a bot that could connect. But after christmas, I got a job where I was doing a lot of Java coding. I decided that I could do much better with Java, so I took a stab at it. Eventually, I got it to connect to Battle.net, and continued with it. Eventually, while travelling to BC to hook up with some friends, I had time to kill at the airport, and Fr0z3N had requested a stripped down version of JBBot. So I got rid of all the GUI code and a lot of other crap, structured it differently, and called it JavaOp. Tuberload joined me, and it was going well, but eventually I got the feeling I had coded myself into a corner. It was too hard to expand anything.
Eventually, I decided to start from scratch. I used several of my login and utility classes, but completely restructured it, and coded 95% from scratch. I based a lot of ideas for plugins and such on Gaims code. The bot was totally plugin-oriented. Although its still specific to Battle.net (I decided not to go that far), it is very easy to write powerful plugins for it. Everything from login to display to moderation is done through plugins, and the core is very small, just providing a way to communicate among co-existing plugins.
Enhancements:
- The StayConnected plugin was recreated.
- Another attempt at detecting disconnects and acting upon them was implemented.
- CheckRevision can be reenabled on a by-product basis.
- Currently, it is set up to throw an InvalidVersion exception (which is caught, of course) if the product is STAR, SEXP, or W2BN.
- This allows D2DV D2XP, WAR3, and W3XP to hash locally, although they will need their local hashing information updated.
<<less
Download (MB)
Added: 2007-06-10 License: Public Domain Price:
869 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5