Main > Free Download Search >

Free cruz azul club software for linux

cruz azul club

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 34
MKGI Chess Club 1.6.1

MKGI Chess Club 1.6.1


MKGI Chess Club is a chess playing server with a pure Web interface. more>>
MKGI Chess Club is a chess playing server with a pure Web interface.
It features complete player profile management, full html email notification with embedded board display.
MKGI Chess Club also features an interface to match against chess engines such as gnuchess, phalanx, and crafty.
Enhancements:
- Fixed the notification feature which was broken since 1.6.0.
- Fixed undo availability immediately after a move.
- Implemented partial dragndrop of pieces on the chess board.
<<less
Download (0.12MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
816 downloads
CalorieKing Toolbar 1.1.0.0

CalorieKing Toolbar 1.1.0.0


CalorieKing Toolbar is a Firefox extension which lets you search CalorieKing.com. more>>
CalorieKing Toolbar is a Firefox extension which lets you search CalorieKing.com.

The CalorieKing Toolbar puts an ultra-convenient toolbar right into FireFox which lets you search CalorieKing.com wherever you are on the Internet, all for free.

CalorieKing Club members get the benefit of additional quicklinks straight into their food and exercise diaries, check-ins and forums.

<<less
Download (0.013MB)
Added: 2007-07-19 License: MPL (Mozilla Public License) Price:
832 downloads
Quantum Minigolf 1.0.0

Quantum Minigolf 1.0.0


Quantum Minigolf is nearly the same as the game minigolf - except that the ball obeys the laws of quantum mechanics. more>>
Quantum Minigolf is nearly the same as the game minigolf - except that the ball obeys the laws of quantum mechanics.

Such a ball can be at several places at once. It can diffract around obstacles and interfere with itself. Apart from that, the rules are the same: You can play on various tracks involving various obstacles. You hit the ball with a club and try to kick it into a hole on the other side of the track.


The software

To play quantum minigolf, download the game in the download section. It is a GPLed C++ program, which has been tested under Windows and Linux. It features a simple user interface. You can add your own tracks by editing them in any image editing software and saving them in bmp format.

The hardware

There also exists a (virtually) real version of quantum minigolf. It permits to play with a real club and a ball which is projected onto the track by a video projector mounted on a 2m (6ft) high tripod. The club is marked by an infrared LED, and detected by a webcam next to the video projector. An image recognition algorithm in the quantum minigolf software computes the club position and feeds back hits into the simulation.

<<less
Download (0.46MB)
Added: 2007-03-07 License: Freeware Price:
966 downloads
Microracers 0.2

Microracers 0.2


Microracers is a fun 2D top-view racing game. more>>
Microracers is a fun 2D top-view racing game.

Microracers aims to be a fun 2D top-view racing game. It is inspired on the old Micromachines game, but it isnt meant to be a clone of it.

For now, it only has a racing gameplay where you have to beat computer vehicles (or other 3 humans on the same seat) by completing 2 laps the first.

The game is under the GPL. Everyone is free to contribute! Contact us.

<<less
Download (2.6MB)
Added: 2005-11-07 License: GPL (GNU General Public License) Price:
1449 downloads
Glubs 0.3

Glubs 0.3


Glubs is written in Perl and its a clubbing system similar to Yahoo! or MSN Groups. more>>
Glubs is written in Perl and its a clubbing system similar to Yahoo! or MSN Groups.

Users browse through a category-hierarchy and create clubs to share news, files, pics, links and a calendar with friends.

Some of the core features are multi-language and -timezone support, and custom HTML templates/skins.

<<less
Download (0.24MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1143 downloads
IntraSchool 0.1.0

IntraSchool 0.1.0


IntraSchool project is a school intranet management system. more>>
IntraSchool project is a school intranet management system.
IntraSchool is a school intranet management system for Announcements, Attendance, Assignments, and Computer Issue Tracking throughout a school.
Main features:
- Announcements
- Schoolwide: Viewable by any visitor [Events, Days off]
- Teacherwide: Viewable only by teachers
- Group/Clubwide: Viewable by all, but separated announcements for specific clubs
- Assignments
- Individual classbased assignments
- Students can subscribe to class assignment mailing list
- Students can retrieve missed assignments and scanned worksheets
- Students can submit homework online
- Web
- Standardized Layout that fits with entire site
- Word>HTML
- Scheduling
<<less
Download (0.12MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1105 downloads
Chess::ICClib 1.00

Chess::ICClib 1.00


Chess::ICClib is a Perl interface to Internet Chess Server commands. more>>
Chess::ICClib is a Perl interface to Internet Chess Server commands.

SYNOPSIS

use Chess::ICClib;
my $icc = Chess::ICClib->new([-prompt=>$ICC],
[-host=>$host,-port=>$port]
[-user=>$user,-pass=>$password]);
$icc->ICCCommand("finger romm");

Chess::ICClib - Perl interface to Internet Chess Server commands. Provides a tool able to connect, login and send commands to an Internet Chess Server as well as return responses from the server. Can be used as a basis for information retrieval tool as well as for a player or a chess program interface.

Since ICS [Internet Chess Server] (any, commercial and free alike) are built upon the telnet protocol, this module is built upon the Net::Telnet module where the telnet connection serves as the read/write socket.

This module has been tested against ICC (Internet Chess Club, http://www.chessclub.com, telnet king.chessclub.com 5000) but it should work fine against other chess servers unless they propose another "more" preprompt. More about prompts see in ICCCommand method section.

The following methods are available:

Constructor

$icc = Chess::ICClib->new([-prompt=>$ICC], [-host=>$host,-port=>$port] [-user=>$user,-pass=>$password]);

Creates an ICC object, then connects and logins into the ICS. All parameters are optional.

-prompt

The ICS prompt. The default is the ICC prompt aics%. Several other popular servers prompt are provided - see the EXPORT section.

-host,-port

The ICS host and port. The defaults are the ICC host 204.178.125.65 and the ICC port 5000. In later versions hosts and ports for most popular ICS will be added for export.

-user,-pass

The ICS user name and password. There are no defaults. guest login is sufficient on most of the servers (USChessLive and FreeICS are not supporting guest logins!) The module tries to look up the file ~/.icsrc to read the username and password from it.

ICCCommand

my $response = $icc->ICCCommand($icccommand)

This method performs an ICC Command $icccommand and sets the output into $response. The interface of ICC (and supposedly of other ICS) pages the output automatically with preprompt Type "more" to see more and the output unpages it scrolling with issuing the "more" command consecutively until the preprompt disappears. Please note that ICS is case-insensitive while Perl is.

<<less
Download (0.004MB)
Added: 2007-01-08 License: Perl Artistic License Price:
598 downloads
MapCal 0.1

MapCal 0.1


MapCal is a mapping event calendar. more>>
MapCal is a mapping event calendar. MapCal project has the ability to add/modify/delete events and show them on a list like other event calendars. The difference with MapCal is that it also shows your events on an embeded Google Map.

This works great for things like a motorcycle club, or a craft show exibitor. Any place you want to show events and their location. Take a look at the on-line demo. MapCal uses PHP and MySQL. PHP 5+ is required.

It has a built-in geocoder - that is it can look up coordinates based on your event address (Google maps only work with lat/lon coordinates, not raw addresses). Thanks to Eric Angel who offers a web service to do this.

MapCal is free for non-commercial or commercial use, released under the GNU License. Google has their own license for using their mapping service, youll have to review that and see if it fits with your desired use.

<<less
Download (0.026MB)
Added: 2006-04-25 License: GPL (GNU General Public License) Price:
1281 downloads
Wordplay 0.3

Wordplay 0.3


Wordplay is a game for Unix/GTK+. more>>
Wordplay is a game for Unix/GTK+. Wordplay is primarily aimed at Scrabble players looking to improve their anagramming and hooking skills, but can also be played for fun. The dictionary used is the full TWL98 word list (used for tournaments and club play in the U.S. and Canada).

Three types of games are available:

Word Mine: Find all words of a certain length which can be formed from the letters of a larger word. Letters may be repeated only as often as they appear in the given word.
Word Hooks: Find all words which "hook" off a given word: forming a new word by adding a letter to the beginning or end.
Bingos: Find all anagrams of the given (seven or more) letters. In a Scrabble game, playing a word which uses all letters on your rack is a bingo, netting you a 50-point bonus. The bingo puzzles included with wordplay comprise the 500 most statistically likely bingo-able 7-letter and 8-letter combinations, based on the standard Scrabble bag letter distribution.

<<less
Download (0.25MB)
Added: 2007-08-19 License: GPL (GNU General Public License) Price:
799 downloads
Hikarunix 0.4

Hikarunix 0.4


Hikarunix is a Linux live CD based on Damn Small Linux and dedicated to Go - a popular Asian strategy game. more>>
Hikarunix linux is a Live Linux CD distribution. Any PC that can boot to CD can boot to Hikarunix instead of the computers regular operating system. Since it boots entirely in RAM and only borrows the peripherals, Hikarunix doesnt touch the host machine at all.
Shut the machine down, pop the CD out, reboot and youll find yourself back with the same old OS that you started with. No installation or partitioning necessary. The fact that it fits on a pocket sized miniCD and can boot on just about any machine makes it extremely portable. Internet cafes, Library computers, a borrowed laptop can all be your personal, temporary Go workstation. If you wish you can also install it to your harddrive.
The name was inspired by the Japanese manga and anime series Hikaru No Go. Its about the world of Professional Go as seen by Junior High School student Hikaru and his ghost Go mentor Sai. Its a lot better then I make it sound, besides, admit it, reading comics is still fun. Pick up a copy of the English translation of the comic here.
Hikarunix itself and any additions Ive made are covered by the GNU General Public License, although the individual packages installed in Hikarunix retain their original licenses. This means that Hikarunix is entirely free. Feel welcome to make copies for your friends, family and co-workers, start a Go club and hand it out to all members. I put this CD together to open this great game to a wider audience, so the more copies that are out there the better.
Hikarunix will always be free, but if youd like to contribute to the cause you might consider donating to the project. You can also pick up an "official" miniCD, a Hikarunix USB drive, or a plethora of mugs and tshirts from our store. I also an just a beginner at Go and am still terrible at the game. If anyone would like to donate a Go lesson I can be found on most Go servers as t1ckt0ck.
Enhancements:
- firefox updated to 1.0.6 with support for Chinese/Japanese/Korean fonts
- Kogos Joseki updated to 27.Mar.2005
- Local snapshot of Senseis Library updated to 3.Jan.2005
- GNUGo updated to 3.7.4
- Jacoto 1.2.15 added as primary SGF manager
- Quarry updated to 0.1.14
- CGoban updated to 2.6.12
- sgf2misc updated to 2.9.2
- simple GUIs for easier access to sgf2misc, sgfmerger, and sgfsplit
- GoGrinder updated to 1.11
- Jago updated to 4.6
- PANDA-glGo updated to 1.3.1
- qGo updated to 1.0.2
- K3s UGF/SGF/NGF Conversion tool added
- Now over 9300 Go Problems (3400+ than 0.3)
- Now over 8500 Game records (2600+ than 0.3)
- Simplified/Traditional Chinese, Japanese, and Korean locales and fonts (experimental)
<<less
Download (202.6MB)
Added: 2005-11-22 License: GPL (GNU General Public License) Price:
1445 downloads
Sanefile 1.05

Sanefile 1.05


Sanefile is a tool to easily and quickly clean and change a large number of filenames. more>>
Sanefile is a tool to easily and quickly clean and change a large number of filenames. The idea started when I started “ripping” my own CD’s and the filenames were all different and full of errors. When I started getting TV downloads from other sources, the issue became a problem.

I had to find an efficient way of changing a large number of filenames. Sanefile was the result. Simple, single-purpose and very efficient at it with total exploitation of Tcl’s rich Regular Expression capabilities.

What this tool is NOT: spy-ware, spam-ware, virus or any other crappy stuff.

With Sanefile, you can use the full power of regular expressions. For instance, imagine that you want to filter off all files starting with a A. To use the just A would remove from the list all the files with A in it. Not the solution. If you use ^A (Carat and A) it means that it has to match A only at the beginning of the text.

More examples:

^text matches "text" in the beginning of the name
text$ matches "text" in the END of the filename
. matches ANY character
[ ] range indicator as in:
[a-z] matches ONE letter "a" to "z"
[a-zA-Z] matches ONE letter "a" to "z" and "A" to "Z"
[0-9] matches ONE digit
[^range] (caret) matches if NOT in the range as in:
[^0-9] matches if it is NOT a digit
* operator for repetition
.* matches everything
[0-9]* multiple digits
[^a-zA-Z0-9]* a bunch of everything BUT a letter or digit
escape operator
t tab
( when you want to match (
. when you want to match .
when you want to match (RARELY DONE! Think why.)
() used to group expressions
ab* a followed with multiple bs
(ab)* multiple ab (different from above!)

^Doors.*([A-Z][0-9]*).*.mp3$ Matches all files starting with Doors, have somewhere in the middle a letter followed by digits and end in ".mp3"
<<less
Download (0.007MB)
Added: 2006-12-11 License: Artistic License Price:
1047 downloads
CreditCard Validator 1.8

CreditCard Validator 1.8


The CreditCard Validator will help you tell: (1) if a credit card number is valid (2) which credit card vendor handles that number. It validates the prefix and the checkdigit. It does *not* contact the credit card company to ensure that number has actually been issued and that the account is in good standing. It will also tell you which of the following credit card companies issued the card: Amex, Diners Club, Carte Blanche,Discover... more>>

CreditCard Validator - The CreditCard Validator will help you tell:

1. if a credit card number is valid,

2. which credit card vendor handles that number.

It is a simple Applet to demonstrate the use of the ValidateCreditCard class.

It validates the prefix and the checkdigit. It does *not* contact the credit card company to ensure that number has actually been issued and that the account is in good standing.

It will also tell you which of the following credit card companies issued the card: Amex, Diners Club, Carte Blanche, Discover, enRoute, JCB, MasterCard or Visa.

ATM cards use a different secret scheme which this program does not handle. Unfortunately, there is not even a reliable way to tell an ATM card from a credit card just by the number.

It is primarily designed to be included in your own Java program, though it can be used standalone or as an Applet.

To install, Extract the zip download with Winzip, available from http://www.winzip.com (or similar unzip utility) into any directory you please, often C: -- ticking off the (user folder names) option. To run as an application, type:

java -jar C:commindprodcreditcardcreditcard.jar

adjusting as necessary to account for where the jar file is.

You must have Java version 1.1 or later installed to use this package.

See http://mindprod.com/jgloss/installingjava.html for details.


Enhancements:
Version 1.8

convert to JDK 1.5. simplify code using enum.


System Requirements:
<<less
Download (670Kb)
Added: 2008-03-06 License: Free Price: Free
12 downloads
DVD Manager 0.4

DVD Manager 0.4


DVD Manager provides an easy-to-use Web-based DVD management tool. more>>
DVD Manager provides an easy-to-use Web-based DVD management tool.

DVD Manager is an e107 CMS plugin. This plugin will enable users to manage their DVD collection and show it to other members via the Web whether it is online or offline.

<<less
Download (2.5MB)
Added: 2007-01-25 License: GPL (GNU General Public License) Price:
1006 downloads
SVG-cards 2.0.1

SVG-cards 2.0.1


SVG-cards is a set of playing cards made from pure SVG with all kings, queens, jacks, numbers, jokers, and backs of cards. more>>
SVG-cards is a set of playing cards made from pure SVG with all kings, queens, jacks, numbers, jokers, and backs of cards.
You can use SVG-cards everywhere you like : Web pages, games, the GNOME desktop, the KDE desktop, and so on...
You can print them on your color printer and make real cards or T-shirts.
The kings, queens and jacks are based on the french representation, because I find them beautiful. You can access to each either by rendering the file into a pixmap and clipping each card or by using their name with a DOM interface. All cards are inside a SVG group.
Example :
the king of spade is inside this group :
< g id="king_spade" >
...
< /g >
Names are the following :
black_joker
red_joker
back
{king,queen,jack}_{club,diamond,heart,spade}
{1,2,3,4,5,6,7,8,9,10}_{club,diamond,heart,spade}
Examples :
- the ace of club is 1_club
- the queen of diamond is queen_diamond
Enhancements:
- A bug that prevented SVG cards from being displayed in Firefox and Adobe Illustrator was fixed.
<<less
Download (0.34MB)
Added: 2006-06-30 License: LGPL (GNU Lesser General Public License) Price:
1219 downloads
BoboMail 0.6pre1

BoboMail 0.6pre1


BoboMail is a so called webmail application, which provides mail access through a web interface. more>>
BoboMail is a so called webmail application, which provides mail access through a web interface.
It is distributed under the GNU GPL. See COPYING in the package or go to http://www.gnu.org for details.
The first version of BoboMail was used for about a year and a half in the intranet of the Computer Club Ostfriesland (one of Germanys largest computer clubs, see http://www.cco-ev.de if you understand German). I wrote my own webmailer, because at that time only some Perl scripts were available, which were not easy to customize (e.g. German interface).
The name of BoboMail comes from former name of ZPublisher, a cgi framework used by the developer.
I hope you will find BoboMail usefull. Please send complaints (e.g. spelling mistakes), criticism, security advices, suggestions, praises and everything else to ich@henning-schroeder.de or visit me (Henning) on my personal webpage at http://www.henning-schroeder.de/en Important acknowledgement: This product includes software developed by Digital Creations for use in the Z Object Publishing Environment (htt://www.zope.org).
The BoboMail distribution contains Zopes ZPublisher and ZTemplates. These compoments underly the Zope Public License (ZPL). They are packages with BoboMail for easier installation. BoboMail is hosted at Sourceforge (http://sourceforge.net). If you are interested in BoboMail development please visit the its webpage at http://bobomail.sourceforge.net Besides I want to make BoboMail even more modular so that my stuff can be used for a mailinglist archiver or a web-forum. Attention: I really would like to know where you will use BoboMail. Please tell me your success stories
Main features:
- read, write, reply, forward, delete and bounce messages
- send and receive attachments
- decodes quoted-printable, base64 and uuencoded
- handles HTML-mails properly (with inline images!)
- does not need Javascript
- direct support for the following MIME types: message/rfc822, message/delivery-status, multipart/alternative, multipart/mixed, multipart/report, multipart/related, multipart/digest, text/plain, text/html, text/x-vcard, image/jpeg, text/rfc822-headers, image/png, image/x-xpixmap, image/gif
- works with POP3-servers and partially IMAP4 (spool-files under development)
- easy to modify and customize through HTML-templates
- modular design provides easy interface for other authentication methods and mail protocols
- provides optionally its own fast multithreading webserver (BoboMailHTTPD)
- multi-lingual support (i18n) - currently English, Brazilian Portuguese, Finish, Spanish and German
- and its 100% Python
Enhancements:
- with the help from Ken Causey the annoying first-login-bug is fixed now :-)
- IMAP support for uw-imapd, expects additional folders in $HOME/Mail
- now runs with Python 2.x without problems
- new look, using nicer template inspired by zope.org
- and some other small bug fixes (see cvs if you like)
<<less
Download (0.29MB)
Added: 2006-06-10 License: GPL (GNU General Public License) Price:
1232 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3