Main > Free Download Search >

Free south park software for linux

south park

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 143
Root Park 0.5.1

Root Park 0.5.1


Root Park project will build a network that will stand the test of time. more>>
Root Park project will build a network that will stand the test of time.
RootPark is a Civilization-like game based on the history of computers and networks. You can play it with as many other players as you want since it has full networking capabilities.
The game begins in 1960, when computers started to become very powerful. RootPark provides you the opportunity to experience these historical years, and a large range of possibilities.
This source and binaries of the game will be available soon. It will be playable on Linux, BSD (and surely other UNIX like OSF1).
Main features:
- strategy game, turn based.
- topic : history of computers and networks.
- multiplayer (using local or internet networks)
- fully playable on Linux and NetBSD(and surely some others Unix).
- programmed using C language.
- opensource game, everybody can improve it
- uses GTK X-Windows library.
- uses 16 millions colors (24 bits)
- you can change the themes of the graphical interface
- you can import your own graphisms
- communication between players during the game (like irc)
- generator of random map whatever the number of players.
- handles the visibility of units and hosts (fog of war)
- interactive help online
- complete encyclopedy on the history of computers
<<less
Download (0.27MB)
Added: 2006-12-01 License: GPL (GNU General Public License) Price:
1061 downloads
fortune-mod-southpark 0.2

fortune-mod-southpark 0.2


fortune-mod-southpark project consists of a fortune file with quotes from South Park. more>>
fortune-mod-southpark project consists of a fortune file with quotes from South Park.
South Park Fortunes is a package containing various quotes from "South Park: Bigger, Longer, and Uncut" in the UNIX fortune file format.
Examples:
Rub my nipples as I torture this little piggy!
No dude, Id be scared too, youre mom is a fucking bitch.
Dont call my mom a bitch, you fat fuck!
Dont call me fat you buttfucking son of a bitch.
Should we blame the government?
Or blame society?
Or should we blame the images on TV?
NO! Blame Canada!

Enhancements:
- Fixed typos, nothing noteworthy. Released for the sake of the English language
- probably final release
<<less
Download (0.010MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1050 downloads
Ximian-South

Ximian-South


Ximian-South provides a icon pack for GTK+. more>>
Ximian-South provides a icon pack for GTK+.

jimmacs and tigerts Ximian-South ported to a Gnome Icon Theme.

<<less
Download (0.72MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1005 downloads
Dartmouth OpenCA-LiveCD

Dartmouth OpenCA-LiveCD


Dartmouth OpenCA-LiveCD is a bootable CD with an installation script to help people have an OpenCA Certificate Authority. more>>
Dartmouth OpenCA-LiveCD project is an KNOPPIX remaster.

Dartmouth OpenCA-LiveCD is a bootable CD with an installation script to help people have an OpenCA Certificate Authority ready for testing in just a few minutes.

This CD works on most Intel architecture PCs regardless of what operating system is installed on its hard disk and even without any hard disk installed. It will not modify any contents of your hard disk unless you specifically ask it to do so.

On boot, you will be asked to provide your Organization, Location (state), and the email address of the OpenCA administrator. Default values will be used if no answers are provided.
<<less
Download (445MB)
Added: 2005-12-12 License: GPL (GNU General Public License) Price:
797 downloads
mod_tproxt

mod_tproxt


mod_tproxt is a transparent proxy support for Apache 1.3. more>>
mod_tproxt is a transparent proxy support for Apache 1.3.

mod_tproxt has been running on a (now old) K6-200 machine, with a max uptime of about 500 days or so.

mod_tproxt requires linux transparent proxy support. The BSDs may likely have a similar mechanism. If you port it to work with another OS, send me a patch, and Ill include it here.

This module is contributed to community under the Apache License, BSD licence or GPL, whichever you like.

<<less
Download (0.008MB)
Added: 2006-04-20 License: The Apache License Price:
1282 downloads
Locale files for South Africa 0.4

Locale files for South Africa 0.4


Locale files for South Africa are locale files for all official South African languages. more>>
Locale files for South Africa project are scripts to aid in localization of software. Deals with conversion between different translation formats (such as gettext-based .po formats, OpenOffice.org formats, and Mozilla formats). Also tools to help process localizations etc.
Translate.org.za is a non-profit organisation producing Free and Open Source software that enables and empowers South Africans.
The Translate Project started in 2001 with the vision of providing Free Software translated into the 11 official languages of South Africa. Free Software in your language is true empowerment.
Enhancements:
- The international dialing code has been changed from 09 to 00.
<<less
Download (0.011MB)
Added: 2007-04-20 License: Freely Distributable Price:
919 downloads
Locale::SubCountry 1.37

Locale::SubCountry 1.37


Locale::SubCountry is a Perl module that can convert state, province, county etc. names to/from code. more>>
Locale::SubCountry is a Perl module that can convert state, province, county etc. names to/from code.

SYNOPSIS

my $country_code = GB;
my $UK = new Locale::SubCountry($country_code);
if ( not $UK )
{
die "Invalid code $country_coden";
}
elsif ( $UK->has_sub_countries )
{
print($UK->full_name(DGY),"n"); # Dumfries and Galloway
print($UK->regional_division(DGY),"n"); # CT (Scotland)
}

my $australia = new Locale::SubCountry(AUSTRALIA);
print($australia->country,"n"); # AUSTRALIA
print($australia->country_code,"n"); # AU

if ( $australia->has_sub_countries )
{
print($australia->code(New South Wales ),"n"); # NSW
print($australia->full_name(S.A.),"n"); # South Australia
my $upper_case = 1;
print($australia->full_name(Qld,$upper_case),"n"); # QUEENSLAND
print($australia->category(NSW),"n"); # state
print($australia->FIPS10_4_code(ACT),"n"); # 01
print($australia->ISO3166_2_code(02),"n"); # NSW

my @aus_state_names = $australia->all_full_names;
my @aus_code_names = $australia->all_codes;
my %aus_states_keyed_by_code = $australia->code_full_name_hash;
my %aus_states_keyed_by_name = $australia->full_name_code_hash;

foreach my $code ( sort keys %aus_states_keyed_by_code )
{
printf("%-3s : %sn",$code,$aus_states_keyed_by_code{$code});
}
}

# Methods for country codes and names

my $world = new Locale::SubCountry::World;
my @all_countries = $world->all_full_names;
my @all_country_codes = $world->all_codes;

my %all_countries_keyed_by_name = $world->full_name_code_hash;
my %all_country_keyed_by_code = $world->code_full_name_hash;

This module allows you to convert the full name for a countries administrative region to the code commonly used for postal addressing. The reverse lookup can also be done. Sub country codes are defined in "ISO 3166-2:1998, Codes for the representation of names of countries and their subdivisions".

Sub countries are termed as states in the US and Australia, provinces in Canada and counties in the UK and Ireland.

Names and ISO 3166-2 codes for all sub countries in a country can be returned as either a hash or an array.

Names and ISO 3166-1 codes for all countries in the world can be returned as either a hash or an array.

ISO 3166-2 codes can be converted to FIPS 10-4 codes. The reverse lookup can also be done.

<<less
Download (0.062MB)
Added: 2006-08-16 License: Perl Artistic License Price:
1164 downloads
Avanor, the Land of Mystery 0.5.8

Avanor, the Land of Mystery 0.5.8


Avanor is rapidly-growing Rogue-like game with an easy ADOM-like user interface. more>>
Avanor, the Land of Mystery is rapidly-growing Rogue-like game with an easy ADOM-like user interface. It has countryside and subterranean areas to explore, a quest system, and some original features.
Moving and locations
1 - south-west
2 - south
3 - south-east
4 - west
5 - current position
6 - east
7 - north-west
8 - north
9 - north-east
w + direction - walk in direction until something interesting is found
~ - rest a while (for debugging purposes only)
o - open a door
c - close a door
< - go up stairs
> - go down stairs
l - look at a location
Dealing with objects
e - equip an item
i - display your inventory
d - drop an item
, - pick up an item
E - eat an item of food
D - drink a potion
! - mix potions
r - read a book or scroll
s or _ - sacrifice an item
O - open a chest
g - give an item to somebody
u - use a tool
P - quick pay
Characteristics and skills
A - display your skill levels
a - use a skill
q - display the quests you have undertaken
@ - display your character details
W - display your weapon skills
x - display experience needed to gain next level
Combat and spellcasting
t - target an opponent
p - pray to the gods for aid
T - change your combat tactics
Z - cast a spell
^Z - repeat the last spell cast
# - display your elemental magic levels (not yet used)
Miscellaneous commands
U - use outer objects
R - show list of alchemy recipes
C - chat with somebody
S - save the game
Q - quit the game
M - display previously shown messages
0 - recenter the screen on the player
[ - make screenshot
? - display this manual
Enhancements:
- Fixed bug with traps
- Support for compilation with modern compilers
- FHS compatibility and Gentoo Linux ebuild
<<less
Download (MB)
Added: 2006-06-01 License: GPL (GNU General Public License) Price:
1243 downloads
HomeBank 3.4

HomeBank 3.4


HomeBank is the software you have always wanted to manage your personal accounts at home. more>>
HomeBank is the software you have always wanted to manage your personal accounts at home. The main concept is to be light, simple and very easy to use. HomeBank brings you many features that allows you to analyze your finances in a detailed way instantly and dynamically with powerfull report tools based on filtering and graphical charts.

Furthermore HomeBank benefits now for more than 10 years of users experiences and feedbacks as its development started in 1995 on Amiga computers. It is now available on Amiga, GNU/Linux, and will probably be soon available for Microsoft Windows and MacOS X systems, as GTK+ exists on it.

Really, if you are looking for an easy way to do your home accounts, then HomeBank should be the software you choose. Just take a little time to try it out now, and you wont regret doing so...

<<less
Download (0.52MB)
Added: 2007-06-28 License: GPL (GNU General Public License) Price:
854 downloads
IOSEMU 0.2.5

IOSEMU 0.2.5


IOSEMU is a Cisco 7200 emulator that uses JIT to achieve good performance. more>>
IOSEMU is a Cisco 7200 emulator that uses JIT to achieve good performance. The project is able to boot real Cisco IOS images.

At this time, the emulator I have programmed is able to boot a large number of Cisco IOS releases available for the 7200 platform, including the latest 12.2S and 12.4. The following devices are emulated:

MIPS64 CPU processor. The instruction set is not completely emulated now (FPU support is lacking, TLB support is not finished and other minor things), but it is sufficient for IOS ;
DRAM and Packet SRAM memory ;
Non-Volatile Memory (NVRAM) ;
Dallas DS1620 Temperature Sensors and Voltage Sensors, allowing the Environmental Monitor to work properly ;
NMC93C46 Serial EEPROM ;
I/O and Midplane FPGA specific to the C7200 platform ;
Basic support of Serial interfaces (PA-8T) and Ethernet IOCard based on DEC21140 (Tulip) chip.
Basic Galileo GT64010 PCI controller, DEC 21050 PCI bridges and so.

To run at a decent speed, the emulator uses a JIT (Just In Time) compiler, which is working on x86 CPU (like Pentium) and x86_64 CPU (AMD64/Intel EM64T).
<<less
Download (0.12MB)
Added: 2006-10-29 License: GPL (GNU General Public License) Price:
1100 downloads
AP Radar 0.52

AP Radar 0.52


AP Radar is a Linux/GTK+ based graphical netstumbler and wireless profile manager. more>>
AP Radar is a Linux/GTK+ based graphical netstumbler and wireless profile manager.

This project makes use of the version 14 wireless extensions in linux 2.4.20 and 2.6 to provide access point scanning capabilities for most models of wireless cards.

It is meant to replace the manual process of running iwconfig and dhclient. It makes reconfiguring for different APs quick and easy.

<<less
Download (0.083MB)
Added: 2005-09-21 License: GPL (GNU General Public License) Price:
1530 downloads
AutoOpts 27.6

AutoOpts 27.6


AutoOpts is an integrated part of AutoGen. more>>
AutoOpts 25:1 is included with AutoGen 5.7.1. AutoOpts project is a very powerful command line option parser consisting of a set of AutoGen templates and a run time library that nearly eliminates the hassle of parsing and documenting command line options. This package allows you to specify several program attributes, up to 100 option types and many attributes for each option.
Using your programs option definitions, AutoGen will expand the AutoOpts templates into two C source files and, optionally, a man page document and a tex-info ``invoking document section. The header and code files constitute all the information the AutoOpts library needs to parse and handle the command line, environment variables and initialization file (rc file) options. When your program runs, the AutoOpts library will then interpret these compiled data.
Additionally, if you wish to use ``getopt_long(3GNU) or getopt(3C) to parse the options instead of AutoOpts libopts library, you may do so. A template (getopt.tpl) is distributed with AutoOpts that will take restricted AutoOpts option definitions and produce the parsing loop that calls either ``getopt(3C) or ``getopt_long(3GNU). (Which depends on whether long options are enabled in your description.) Be aware, though, that it is significantly crippled when compared with the full set of AutoOpts Features
AutoOpts is available either under the terms of the Library GNU Public License, or, at your option, the terms of the advertising-clause-free BSD license.
Enhancements:
- Configuration file data for options with compound, structured argument values were not parsed correctly. This has been fixed.
<<less
Download (0.48MB)
Added: 2007-01-28 License: GPL (GNU General Public License) Price:
1000 downloads
wyoGuide 1.0.4

wyoGuide 1.0.4


wyoGuide is a guide and a tutorial for developing well-designed cross-platform applications. more>>
wyoGuide is a guide and a tutorial for developing well-designed cross-platform applications. Where possible any guideline is accompanied with sample code. The included fully working demo application applies all these guidelines and is well suited as a starting code base for your own projects.

wyoGuides main goal is to show how to develop the GUI of your application suitable for any platform. Development with these guidelines gives your application a professional set of base functionality. Application applying these guidelines should allow for ease of use, so a user might immediately feel comfortable.

There is no limitation to use these guidelines with other languages or with other frameworks. The only obstacle is you have to write any code yourself until somebody volunteers to submit code samples to wyoGuide. So far there is only code written in C++ using the wxWidgets framework.

wyoGuide is a work in progress which means not all functionality is specified yet. This leaves a lot of room for improvement if you feel so. wyoGuide is thought for helping you but its also thought for you to help others. Any suggestion for improvement is welcomed (see feedback). These guidelines should and hopefully will get to a state where they simply are just usable.

<<less
Download (0.13MB)
Added: 2006-02-13 License: Open Software License Price:
1349 downloads
Geotrace 0.0.4

Geotrace 0.0.4


Geotrace is a geographical traceroute utility. more>>
Geotrace is a geographical traceroute utility. Geotrace provide graphical view on the map. It has many geographical maps.
In order to be able to use a new map with geotrace, you only need to know one thing: the longitude/latitude of the top left and bottom right corners. Most maps you will find will be centered on 0,0 (about 5 degs south of Ghana and 10 degs west of Gabon. for those of you who dont know, its in Africa.). So, lets do it step by step:
1) Find a map. there are plenty on the web. Nasas a good place to find them (it is a mess though). Or grab one of the few maps at a site with maps for XGlobe and XPlanet.
The image must be in a format understood by gdk-pixbuf (most images youll find will be jpeg or gif which work).
2) Go to the maps/ directory in geotrace. Put the map in there and open up maps.properties
3) on the second line, youll see MAPS:World50.gif, World100.gif etc... Thats a list of all the maps. Add the name of your recently downloaded map on that line.
4) now, you need to tell geotrace what the coordinates are. Add a line to the file that looks as follows:
filename:BOUNDARY=lon1,lat1,lon2,lat2
filename: case sensitive, map has to be in the maps/ folder
lon1 and lat1: longitude and latitude of the top left corner
lon2 and lat2: longitude and latitude of the bottom right corner
As I said earlier, for most maps youll find, youll get -180,90,180,-90 which means that the map is centered on 0,0. However, the two world maps (World100 and World50) in geotrace are centered on 10W,0
You might notice that the three maps of the US have another line associated with them. Thats the alber projection. You probably wont have to deal with that.
4) Run geotrace, select your map from the drop-down and enjoy.
Version restrictions:
- Some hops may have extravagant locations, but for once, its not my fault. The netgeo server does not have fully updated records. So my advice is, just live with it
Enhancements:
- added line color and width options.
- added cmdline args. host to trace, and startup map.
- added map options: path to maps and startup map.
- warning to check paths when run for the first time.
- added status bar
- fixed draw_trace_on_map which didnt draw in certain cases (timeouts)
- fixed bug that caused crash when a hop times out and more hops repond later
- 2001-04-05
- added option: resolve host name or not
- load/save options from file (~/.geotrace) 2001-04-04
- fixed bug that caused last map in file not to be read (world100) 2001-04-03 added options for traceroute (path to exec, timeout and maxttl)
<<less
Download (0.25MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1229 downloads
nextShows 2.0.1

nextShows 2.0.1


nextShows is a desktop applet for SuperKaramba that displays your favorite TV shows schedule. more>>
nextShows is a desktop applet for SuperKaramba that displays your favorite TV shows schedule.

PLEASE READ THIS FIRST: If youre using the previous version (1.0.0) you *MUST* remove your previous configuration/cache files or chances are nextShows 2.0.0 wont behave correctly.
Just do ...
$ rm -rf ~/.superkaramba/nextShows
... and everything should be sane enough for you to run this new version !

HISTORY:
I originally wrote this widget for myself and a couple of friends. In fact I didnt plan to release it publicly but some guys convinced me to do so. There were a bunch of releases before the first public release (which I decided to number v1.0.0 since it seemed stable enough).

Between the 1.0.0 and 2.0.0 releases, most parts of the code were fully rewritten and the project also found a new home (http://code.google.com/p/nextshows/) where you can also fetch the latest development version through SVN.

HOW DOES IT WORK?
1) When the widget if fully running you can left-click on the column entitled "When?" to change the way of displaying past/remaining days.
2) When left-clicking on a show name/title, the episode description will open on your browser.
3) You can change various nextShows parameters by right-clicking on the widget and selecting "Configure Theme" -> "Configure..."

<<less
Download (0.27MB)
Added: 2007-06-17 License: GPL (GNU General Public License) Price:
859 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5