cruz azul vs america
Free Conquest & Colonization of America 0.07
Free Conquest & Colonization of America is a remake of the old Microprose game Colonization. more>>
Free Conquest and Colonization of America is a remake of a fantastic old game from Microprose called Colonization. Those who have played Civilization will find the game style very similar.
In Civilization, the game time goes from pre-history to the future, but in Free Conquest and Colonization of America, all action happens during the exploration age, from 1492 to 1800. The goal of the game is to build a colony in America and make this colony grow big enough to be able to achieve independence from the motherland.
A player can choose among the English, French, Dutch, and Spanish nations, each having its own qualities and problems. During colonization, the player will face many challenges, such as negotiating (and making war, if necessary) with other European colonies and native tribes.
Winning the hearts of the colonists (by making they feel that the colony is their home) is the key to getting enough support to fight for independence. Allowing religious freedom in your colony will attract more colonists persecuted for their faith in Europe.
KEYSTROKES:
Numpad arrows -> movement
SPACE -> new round
W -> change the focus
C -> choose unit (when theres more than one unit in the same square)
E -> see Europe status
F -> fortify
S -> sentry
Q -> quits the game
Enhancements:
- beach shores
- hidden tiles
- the screen now centers on the unit
- indians
C Generic Library 0.4.2
C Generic Library is a generic data structure library is a bunch of data structures. more>>
Each data structure will contain its own basic memory management, be able to handle any object type, and hopefully constraint to strict algorithmic constraints. When the library hits version 1.0, it will contain the following data structures:
- Doubly Linked List - Done
- List-based Queue - Done
- List-based Deque - Done
- List-based Stack - Done
- Vector - Done
- Vector-based Queue - Done
- Vector-based Deque - Done
- Vector-based Stack -Done
- Binary Tree - Done(No BFS/DFS iterators)
- Hash Table - In progress
- Priority Queue - In progress
- Heap - In progress
- Memory Manager
- Object Cache w/ Garbage Collection
- AB Tree
- Split Lists
- RB Tree
- AVL Tree
Enhancements:
- Support for compilation on Windows using VS.net was added.
Tmetric 0.6
Tmetric project consists in a bandwidth discovery tool. more>>
Tmetric is a tool that determines the bandwidth from one host to another. It was inspired by the pathchar utility, although it functions quite differently.
Platforms tested include FreeBSD and Linux. It may compile on other platforms, but this is untested. Systems with particularly odd FPUs do not handle Tmetrics calculations correctly.
USAGE
usage: ./tmetric [options]
-s start of packet size range
-e end of packet size range
-r resolution of range
-d delay between each packet
-v verbosity. use many vs for more verbosity
-h this information
Enhancements:
- Fixed bug with sigint handler not showing statistics
- Trimmed source code
- Started keeping CHANGES count as of v0.4
Bastard 34c
Bastard is virtual server oriented patchset, containing essential elements for building virtual server container machines. more>>
It includes a CTX-VS patch, squashfs for creating a small template server, lufs and bme for easily creating overlayed filesystems on top of the template, and honeynet- inspired extensions to enhance monitoring of hosted servers.
Bastard project also includes VPN extensions like OpenSWAN, MPPE, and CIPE to enable direct access to hosted virtual servers in situations where IPs are scarce.
Enhancements:
- The softirq changes were backed off.
- The openwall patch was updated.
Religion::Islam::PrayerTimes 1.02
Religion::Islam::PrayerTimes is a Perl module that calculates Muslim Prayers Times and Sunrise. more>>
SYNOPSIS
use Religion::Islam::PrayerTimes;
#create new object with default options
my $prayer = Religion::Islam::PrayerTimes->new();
#Juristic Methods:
# 1 = Standard (Imams Shafii, Hanbali, and Maliki),
#2 = Hanafi
#The difference is in the Aser time only
$prayer->JuristicMethod(1);
# Calculation Method
#1: Umm Al-Qura Committee
#2: Muslim World League
#3: Egyptian General Authority of Survey
#4: University Of Islamic Sciences, Karachi
#5: ISNA, Islamic Society of North America
$prayer->CalculationMethod(3);
# Q. What is daylight saving? Ans. Many countries try to adopt their work time by subtracting
# from their clocks one hour in the Fall and Winter seasons.
$prayer->DaylightSaving(1);
#print "DaylightSaving: ". $prayer->DaylightSaving() ."n";
# set the location to clculate prayer times for.
# for Cairo, Egypt:
# http://heavens-above.com/countries.asp
$prayer->PrayerLocation(
Latitude => 30.050,
Longitude => 31.250,
Altitude => 24,
TimeZone => 2
);
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
$mon++; $year += 1900;
#Adjust the Gregorian Dates by making sure that the month lengths
#are correct if not so take the extra days to next month or year.
my ($yg0, $mg0, $dg0) = $prayer->GDateAjust($year, $mon, $mday);
# Now calculate the prayer times. Times returns in hours decimal format
#%result = $prayer->PrayerTimes($year, $mon, $mday);
%result = $prayer->PrayerTimes($yg0, $mg0, $dg0);
#print "Fajr: " . $result{Fajr} . "n";
#print "Sunrise: " . $result{Sunrise} . "n";
#print "Zohar: " . $result{Zohar} . "n";
#print "Aser: " . $result{Aser} . "n";
#print "Maghrib: " . $result{Maghrib} . "n";
#print "Isha: " . $result{Isha} . "n";
#print "Fajir Rabita: " . $result{FajirRabita} . "n"; #Fajer using exact Rabita method for places >48
#print "Isha Rabita: " . $result{IshaRabita} . "n"; #Ash using exact Rabita method for places >48
#print "Eid Prayer Time: " . $result{Eid} . "n"; #Eid Prayer Time
#print "n";
# set time mode for 12 or 24 hour for FormatTime function.
$prayer->TimeMode(1);
#print time formated
#print "TimeMode: " . $prayer->TimeMode() ."n";
my ($h, $m, $ap);
($h, $m, $ap) = $prayer->FormatTime($result{Fajr});
print "Fajr: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Sunrise});
print "Sunrise: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Zohar});
print "Zohar: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Aser});
print "Aser: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Maghrib});
print "Maghrib: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Isha});
print "Isha: $h:$m $apn";
#($h, $m, $ap) = $prayer->FormatTime($result{FajirRabita});
#print "Fajir Rabita: $h:$m $apn"; #Fajer using exact Rabita method for places >48
#($h, $m, $ap) = $prayer->FormatTime($result{IshaRabita});
#print "Isha Rabita: $h:$m $apn"; #Ash using exact Rabita method for places >48
#($h, $m, $ap) = $prayer->FormatTime($result{Eid});
#print "Eid Prayer Time: $h:$m $apn"; #Eid Prayer Time
Snoopy vs. the Red Baron 1.0
Snoopy vs. the Red Baron is an open-source one/two player combat game, available for Mac OS X, Linux, BeOS, QNX and Windows. more>>
The original Snoopy was a tiny game for the Apple Macintosh, with black and white graphics, but already almost all the levels of the new Snoopy/SDL were implemented.
Snoopy could be played by two opponents, sharing a single screen and keyboard, and although it had poor graphics and tough controls, we very much liked to play it.
While we learned programming, we constantly sought for simple, yet interesting projects. If you have ever tried to learn a new language or API, you will have recognized that the simplest way in mastering the stuff is simply reprogramming an existing application, without losing much thought on design and originality.
So my friend reprogrammed Snoopy, in Object Pascal, using SAT, the Sprite Animation Toolkit, on his Classic II. That version of Snoopy features a fully functional AI, network play, but only the first level ( weapons drop).
While he was at it, he also implemented a "missing feature", the bombs, for which there where graphics and sounds in the game, but which could not be thrown.
When I discovered SDL, I recognized that it would be ideal for the job. Running on Windows, Linux, MacOS, BeOS and many other platforms, it is my new toolkit of choice for multimedia programming. It took us several weeks to port Snoopy (besides going to school, but now the work is almost done, with only the finishing touches to be made.
I can only encourage everyone to try SDL; it is really easy and portable (if worked right).
Evil Greg Vs. Eight Year Olds 0.4.1
Evil Greg battles hordes of 8 year old kids. more>>
He claims that eventually his heartburn would allow him to breath fire and they would fall before him. The game will test the merit of his claims. This is an accurate scientific simulation.
DVD Manager 0.4
DVD Manager provides an easy-to-use Web-based DVD management tool. more>>
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.
LastPass Password Manager (beta) 1.36
LastPass is the last password you will ever need. It allows you to: Create strong passwords, knowing you only have to remember one. Log into your favorite sites with a single click. Only fill forms out once. Access and manage your data from multiple computers seamlessly. Share logins with friends and let others share logins with you. Supports IE & Firefox, Windows, Mac and Linux more>>
LastPass Password Manager (beta) - LastPass is a free password manager that makes your web browsing easier and more secure and supports IE and Firefox, allows you to import from every major password storage vendor and export too, captures passwords that other managers wont including many AJAX forms, and allows you to make strong passwords easily.
LastPass is the last password you will ever need. It allows you to:
- Create strong passwords, knowing you only have to remember one.
- Easily fill in form data
- Log into your favorite sites with a single click
- Access and manage your data from multiple computers seamlessly
- Share logins with friends and let others share logins with you
- Supports IE as well, so if you switch browsers youre always in sync, as well as when you switch computers
- Supports importing passwords from other password managers such as Roboform, Keepass, PasswordSafe, MyPasswordSafe, Firefox and IEs built in password manager
- Exporting your data always available in plugin and website.
- In windows, helps you recover lost passwords stored on your computer
- Capture passwords that other password managers will not capture like those done in AJAX logins, and multi-step logins like Bank Of America, and frustrating sites like ING bank.
- Make moving to a new computer or using multiple computers much easier
- Works with any platform that has Firefox plus IE on Windows
- Has a USB/Thumb drive portable version for Windows, Mac and Linux
- http://m.lastpass.com for mobile access
Your sensitive data is encrypted locally with AES, then uploaded to allow syncing with other computers or browsers. IE is also supported as well as
Enhancements:
Version 1.36
Save any form support
Version 1.34
Improved homepage, bug fixes
Version 1.33
Built-in fast homepage, bug fixes
Version 1.32
French, Hebrew, bug fixes with basic auth, Pocket for Mac and Linux
Version 1.31
Local Site Search, HotKeys, Secure Notes
System Requirements:233 MHz, 128MB ram<<less
MassSpec::ViewSpectrum::RealVsHypPeptide 0.02
MassSpec::ViewSpectrum::RealVsHypPeptide is a Perl module to view a real mass spectrum on the same graph. more>>
SYNOPSIS
use MassSpec::ViewSpectrum::RealVsHypPeptide;
open GRAPHIC, ">mygraphic.png" or die "Unable to open output filen";
binmode GRAPHIC;
my @masses = (78.1,81.1,81.7,85.4,86.8,88.8,89.4,97.6,99.0,99.4,108.7,112.1,129.1,
130.1,132.1,147.7,157.1,158.1,159.1,169.1,171.1,175.1,187.1,229.1,246.2,258.1,
266.0,327.2,328.2,345.2,415.2,426.2,432.2,531.2,559.3,623.4,639.3,643.3,644.4,
645.0,647.5,686.4,687.4,689.4);
my @intensities = (8.7,7.7,7.3,10.5,7.7,7.3,8.4,8.0,9.1,9.1,7.3,29.0,12.6,7.3,8.0,
7.7,11.9,9.8,10.1,7.3,10.5,131.0,9.4,50.3,22.7,44.7,16.8,30.4,18.2,53.1,25.5,
15.7,7.7,14.0,46.8,38.4,7.3,11.5,8.7,7.3,8.7,7.3,24.8,194.2);
my $peptide = "RTSVAR";
my $vs = MassSpec::ViewSpectrum::RealVsHypPeptide->new($peptide, @masses,@intensities);
$vs->set(yaxismultiplier => 1.8); # a sample tweak to adjust the output
$vs->set(title => "BSA-689 -- " . $peptide);
my $output = $vs->plot();
print GRAPHIC $output;
close GRAPHIC;
MassSpec::ViewSpectrum::RealVsHypPeptide - View a real mass spectrum on the same graph as a hypothetical spectrum generated by fragmenting a peptide in silico. The in silico fragmention is performed by generating all of the possible peptides which contain either the amino-terminal or carboxyl-terminal amino acids.
Negative peak intensity values are permitted; this permits the drawing of "pseudospectra" which, for example, illustrate peaks present in one spectrum but missing in another. Note that these negative peaks have no true intensities, but in some cases we assign different heights to illustrate the differences among different hypothetical peaks. In addition, pseudocoloring of both positive and negative peaks is performed to illustrate what type of ion that peak represents. In some cases these ions are labelled explicitly, although in practice it is best to minimize this labelling to avoid excessive clutter.
Simple Timetracker 1.1.4
Simple Timetracker provides an application for keeping a record of time vs tasks. more>>
Timetracker is a Java application for recording time spent on projects and activities.
Debian vs Pimientos 1.1.0
Debian vs Pimientos is a fun arcade in which you have to kill peppers using the logo of Debian. more>>
Debian vs Pimientos is the first game of NEOPONTEC Games, and the first to use the NNG Engine (New Neopontec Gaming Engine) developed by Hector Blanco (me) that uses the mentioned SDL Libraries.
The game concept is very easy to understand and to play. There are a lot of peppers (pimientos is the spanish word for peppers) that are flying by the sky, and you, armed with the Debian logo must fight them. The Debian logo shoots GNU heads to kill these devil pimientos
Main features:
- 800x600 resolution at 32 bits.
- High quality images.
- Addictive and funny playing experience
- Cross-platform open source game: (binaries for Win32 & Linux, and sources for other systems).
- Different classes of peppers (pimientos).

SuperGamer Supreme
SuperGamer Supreme gives you interesting games created for Linux desktop operating system. more>>
SuperGamer Supreme gives you interesting games created for Linux desktop operating system. It has all the normal Linux desktop applications such as the Firefox Browser, OpenOffice.org, etc., but also has a great many native to Linux games added, as well as some demos of proprietary games.
The games (in the order they appear on the launch bar) Include:
- Quake Wars
- Doom 3
- Prey
- Unreal Tournament
- Quake 4
- Savage 2
- Postal 2
- Enemy Territory
- Penumbra Black Plague
- Sauerbraten
- Urban Terror
- Soldier Of Fortune
- Torcs
- Tremulous
- AlienArena
- True Combat
- America's Army
- Nexus
- OpenArena
- PlaneShift
- Drop Team
- Frets On Fire
- Chromium B.S.U.
- Mad Bomber
- X-Moto
- BZ Flag
- Mega Mario
- Glaxium
- GL-117
- NeverBall
- NeverPutt
- Super Tux
- PPRacer
Major Features:
- This Supreme SuperGamer version will work on both 32 and 64 bit PCs and fills a full Live Dual Layer DVD.
- It includes support for ethernet, wireless, and dialup Internet connections.
- It can run in "Live" mode directly from the DVD and can be optionally installed to your hard drive.
- A few key includes are 2.6.27.24 kernel, Azureus, Gparted, Limewire, Gimp, K9copy, KOffice, OpenOffice 3, Hardinfo (system profiler and benchmark) along with all the plugins for firefox with forcastbar enhanced, adblock, and blockxxx included (blockxxx is a child word and website filter which is not enabled by default as it blocks alot of stuff...almost to much).
Hecl Programming Language 20060803
Hecl Programming Language is a simple, flexible scripting language for Java. more>>
Hecl is intended as a complement to the Java programming language, not a replacement. As such, it tries to do well what Java doesnt, and leaves those tasks to Java for which it is best suited.
Hecl aims to be a very immediate language - you can pick it up and start doing useful things with it quickly. It is also meant to be easy to learn. Where Java is verbose and rigid, Hecl is forgiving and quick to write. For instance, System.out.println("Hello World"); vs puts "Hello World" - 41 keystrokes (shifted letters count double) versus 22. Hecl is built to "scale down".
This makes Hecl ideal for large applications written in Java that would like to provide a user friendly scripting interface, rather than, say, a clunky XML based configuration system.
Hecl is also a small language with a minimal core. The idea is to provide only whats necessary in the language itself, and as needed, add in extensions for specific tasks.
Core Hecl is small enough to run on my Nokia 3100 cell phone as a J2ME application, presenting the interesting possibility of writing scripts, or at some point, maybe even scripting entire applications, for devices running embedded Java. As an example, you can try this MIDlet: Hecl.jar Hecl.jad
1-ClickWeather 1.1.4
1-ClickWeather is a Firefox extension which enables users to quickly view current weather conditions. more>>
1-ClickWeather is a Firefox extension which enables users to quickly view current weather conditions and up to 5 days of forecast information within the browser and allows for instant access to detailed and customized weather content through clickable icons. All weather data in provided by weather.com.
In addition, the extension features color coded severe weather alerts from the National Weather Service and links to unique features available from weather.com.
All of the weather information displayed by 1-ClickWeather relates to a user-selected geographic location. This information includes:
Weather Videos - pre-selected weather video from weather.com. Choices include Top Story, Severe Weather Outlook, European travel forecast, US national forecast or a choice of one of four US regional forecasts.
Radar - animated in-motion Doppler radar image pre-selected by the user from one of nine US regions.
Satellite - satellite map pre-selected by the user for a defined international geographic region. Choices include Europe, Russia, Asia, Middle East, Africa, Canada, Mexico, Central America, and South America.
Quick Launch - up to 16 user-defined quick launch links to unique content on the weather.com website, including local 36-hour forecasts, local 10-day forecasts and links to customized lifestyle content such as Personal PetCasts, Baseball Game Day Forecasts and PollenCasts.