Main > Free Download Search >

Free south software for linux

south

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 124
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
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
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
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
import_checker 1.1

import_checker 1.1


import_checker checks Python programs for circular (or recursive) imports. more>>
import_checker checks Python programs for circular (or recursive) imports.

Python is a fine programming language. There is one horrendous thing with it though, that bites even the most experienced python programmers every now and then: the scope of variables.

Weve been taught to use the keyword global, and heartily do so. Still, problems occur when running into a "recursive import" problem.

Example:

### program A ###

import B

var = 0

if __name__ == __main__:
var = 10
B.doit()

### module B ###

import A

def doit():
print A.var

### end of example ###

Module B will see A.var having value 0, even though in program A we assigned it a value of 10. Python is right and it is not a python bug, but it is $#@! confusing and it is being caused by the recursive import; A imports B, and B imports A.

The import_checker.py is a tool that detects recursive imports.

This problem only occurs for global variables in modules.

The best way of solving the problem is to put var into a new module C,
and import C from both A and B.

<<less
Download (0.009MB)
Added: 2006-10-24 License: GPL (GNU General Public License) Price:
1095 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
Lapsus 0.0.5

Lapsus 0.0.5


Lapsus is a set of programs created to help manage additional laptop features found on Asus laptops. more>>
Lapsus is a set of programs created to help manage additional laptop features found on Asus laptops and supported by asus-laptop kernel module from ACPI4Asus project, such as additional LEDs, hotkeys, backlight control etc. The project consist of a daemon program monitoring ACPI events, reading/writing /sys/ files created by asus-laptop module and run commands that need privileged access.

The daemon can be controlled over DBus using the client program, or any other programs which has support for that, or can be customized to do so. It can also be controlled with dbus-send utility.

Client program is a KDE Panel Applet (standalone client is planned). It gives easy access to daemons functions, as well as (in the future) providing additional features, such as ACPI hotkeys bindings or power status monitoring.

<<less
Download (0.78MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
861 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
txt2html 2.45

txt2html 2.45


txt2html is a Perl program that uses the HTML::TextToHTML perl module to convert plain text to HTML. more>>
txt2html is a Perl program that converts plain text to HTML. txt2html project uses the HTML::TextToHTML perl module to do so.
HTML::TextToHTML is a Perl module that converts plain text to HTML.
It supports headings, lists, some tables, simple character markup, and hyperlinking, and is highly customizable.
It recognizes some of the apparent structure of the source document (mostly whitespace and typographic layout), and attempts to mark that structure explicitly using HTML.
Our intent in writing this tool is to provide an easier way of converting existing text documents to HTML format.
txt2html is not a program to convert wordprocessor files or other marked-up document formats. It is also not a program to convert HTML to text. Most HTML browsers do that.
If you need to convert something other than plain text to HTML, or you need to convert from HTML, you should look for a more appropriate tool.
txt2html is not a program for automatically generating a table-of-contents from a file. If you want that, then use txt2html to generate a HTML file, and then use htmltoc or hypertoc on the HTML file.
Enhancements:
- This release fixes a bug with umlauts and a bug with UTF-8 characters.
- The "--underline_delimiter" option was added.
<<less
Download (0.11MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1003 downloads
KGeography 0.4

KGeography 0.4


KGeography is a geography learning tool. more>>
KGeography is a geography learning tool.
Main features:
- Browse the maps clicking in a map division to see its name
- The game tells you a map division name and you have to click on it
- The game tells you a capital and you have to guess the division it belongs to
- The game tells you a division and you have to guess its capital
- The game shows you a map division flag and you have to guess its name
- The game tells you a map division name and you have to guess its flag
Maps available in current release are:
- Africa
- Europe
- France
- Germany
- Italy
- North and Central America
- South America
- Spain
- USA
Enhancements:
New maps included:
- Asia
- Austria
- Brazil
- Canada
- China
- Italy by provinces
- Netherlands
- Norway
- Poland
- World
<<less
Download (1.0MB)
Added: 2005-09-20 License: GPL (GNU General Public License) Price:
1499 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
postprox 0.2.0

postprox 0.2.0


postprox is an SMTP proxy which copies an SMTP conversation between its input and another SMTP server. more>>
postprox is an SMTP proxy which copies an SMTP conversation between its input and another SMTP server, but spools the DATA portion to a temporary file and runs a specified program on it before passing it on to the output server - or outputting an SMTP error code instead if the content filter says so.

postprox is design to do only one job: proxy SMTP conversations and pass message contents to another program to determine whether to accept or reject the message.

With this in mind, postprox is small and has a minimal feature set; its reduced complexity reduces the risk of bugs and security holes.

<<less
Download (0.025MB)
Added: 2006-01-25 License: Artistic License Price:
1367 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
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5