geography
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 14
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
<<lessMain 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
Download (1.0MB)
Added: 2005-09-20 License: GPL (GNU General Public License) Price:
1499 downloads
Geography::States 2.1
Geography::States is a Perl module with map states and provinces to their codes, and vice versa. more>>
Geography::States is a Perl module with map states and provinces to their codes, and vice versa.
SYNOPSIS
use Geography::States;
my $obj = Geography::States -> new (COUNTRY [, STRICT]);
EXAMPLES
my $canada = Geography::States -> new (Canada);
my $name = $canada -> state (NF); # Newfoundland.
my $code = $canada -> state (Ontario); # ON.
my ($code, $name) = $canada -> state (BC); # BC, British Columbia.
my @all_states = $canada -> state; # List code/name pairs.
This module lets you map states and provinces to their codes, and codes to names of provinces and states.
The Geography::States - new ()> call takes 1 or 2 arguments. The first, required, argument is the country we are interested in. Current supported countries are USA, Brazil, Canada, The Netherlands, and Australia. If a second non-false argument is given, we use strict mode. In non-strict mode, we will map territories and alternative codes as well, while we do not do that in strict mode. For example, if the country is USA, in non-strict mode, we will map GU to Guam, while in strict mode, neither GU and Guam will be found.
The state() method
All queries are done by calling the state method in the object. This method takes an optional argument. If an argument is given, then in scalar context, it will return the name of the state if a code of a state is given, and the code of a state, if the argument of the method is a name of a state. In list context, both the code and the state will be returned.
If no argument is given, then the state method in list context will return a list of all code/name pairs for that country. In scalar context, it will return the number of code/name pairs. Each code/name pair is a 2 element anonymous array.
Arguments can be given in a case insensitive way; if a name consists of multiple parts, the number of spaces does not matter, as long as there is some whitespace. (That is "NewYork" is wrong, but "new YORK" is fine.)
<<lessSYNOPSIS
use Geography::States;
my $obj = Geography::States -> new (COUNTRY [, STRICT]);
EXAMPLES
my $canada = Geography::States -> new (Canada);
my $name = $canada -> state (NF); # Newfoundland.
my $code = $canada -> state (Ontario); # ON.
my ($code, $name) = $canada -> state (BC); # BC, British Columbia.
my @all_states = $canada -> state; # List code/name pairs.
This module lets you map states and provinces to their codes, and codes to names of provinces and states.
The Geography::States - new ()> call takes 1 or 2 arguments. The first, required, argument is the country we are interested in. Current supported countries are USA, Brazil, Canada, The Netherlands, and Australia. If a second non-false argument is given, we use strict mode. In non-strict mode, we will map territories and alternative codes as well, while we do not do that in strict mode. For example, if the country is USA, in non-strict mode, we will map GU to Guam, while in strict mode, neither GU and Guam will be found.
The state() method
All queries are done by calling the state method in the object. This method takes an optional argument. If an argument is given, then in scalar context, it will return the name of the state if a code of a state is given, and the code of a state, if the argument of the method is a name of a state. In list context, both the code and the state will be returned.
If no argument is given, then the state method in list context will return a list of all code/name pairs for that country. In scalar context, it will return the number of code/name pairs. Each code/name pair is a 2 element anonymous array.
Arguments can be given in a case insensitive way; if a name consists of multiple parts, the number of spaces does not matter, as long as there is some whitespace. (That is "NewYork" is wrong, but "new YORK" is fine.)
Download (0.006MB)
Added: 2007-02-14 License: Perl Artistic License Price:
982 downloads
Geography::Countries 1.4
Geography::Countries is a Perl module with 2-letter, 3-letter, and numerical codes for countries. more>>
Geography::Countries is a Perl module with 2-letter, 3-letter, and numerical codes for countries.
SYNOPSIS
use Geography::Countries;
$country = country DE; # Germany
@list = country 666; # (PM, SPM, 666,
# Saint Pierre and Miquelon, 1)
This module maps country names, and their 2-letter, 3-letter and numerical codes, as defined by the ISO-3166 maintenance agency [1], and defined by the UNSD.
The country subroutine.
This subroutine is exported by default. It takes a 2-letter, 3-letter or numerical code, or a country name as argument. In scalar context, it will return the country name, in list context, it will return a list consisting of the 2-letter code, the 3-letter code, the numerical code, the country name, and a flag, which is explained below. Note that not all countries have all 3 codes; if a code is unknown, the undefined value is returned.
There are 3 categories of countries. The largest category are the current countries. Then there is a small set of countries that no longer exist. The final set consists of areas consisting of multiple countries, like Africa. No 2-letter or 3-letter codes are available for the second two sets. (ISO 3166-3 [3] defines 4 letter codes for the set of countries that no longer exist, but the author of this module was unable to get her hands on that standard.) By default, country only returns countries from the first set, but this can be changed by giving country an optional second argument.
The module optionally exports the constants CNT_F_REGULAR, CNT_F_OLD, CNT_F_REGION and CNT_F_ANY. These constants can also be important all at once by using the tag :FLAGS.
CNT_F_ANY is just the binary or of the three other flags. The second argument of country should be the binary or of a subset of the flags CNT_F_REGULAR, CNT_F_OLD, and CNT_F_REGION - if no, or a false, second argument is given, CNT_F_REGULAR is assumed. If CNT_F_REGULAR is set, regular (current) countries will be returned; if CNT_F_OLD is set, old, no longer existing, countries will be returned, while CNT_F_REGION is used in case a region (not necessarely) a country might be returned. If country is used in list context, the fifth returned element is one of CNT_F_REGULAR, CNT_F_OLD and CNT_F_REGION, indicating whether the result is a regular country, an old country, or a region.
In list context, country returns a 5 element list. To avoid having to remember which element is in which index, the constants CNT_I_CODE2, CNT_I_CODE3, CNT_I_NUMCODE, CNT_I_COUNTRY and CNT_I_FLAG can be imported. Those constants contain the indices of the 2-letter code, the 3-letter code, the numerical code, the country, and the flag explained above, respectively. All index constants can be imported by using the :INDICES tag.
The code2, code3, numcode and countries routines.
All known 2-letter codes, 3-letter codes, numerical codes and country names can be returned by the routines code2, code3, numcode and countries. None of these methods is exported by default; all need to be imported if one wants to use them. The tag :LISTS imports them all. In scalar context, the number of known codes or countries is returned.
<<lessSYNOPSIS
use Geography::Countries;
$country = country DE; # Germany
@list = country 666; # (PM, SPM, 666,
# Saint Pierre and Miquelon, 1)
This module maps country names, and their 2-letter, 3-letter and numerical codes, as defined by the ISO-3166 maintenance agency [1], and defined by the UNSD.
The country subroutine.
This subroutine is exported by default. It takes a 2-letter, 3-letter or numerical code, or a country name as argument. In scalar context, it will return the country name, in list context, it will return a list consisting of the 2-letter code, the 3-letter code, the numerical code, the country name, and a flag, which is explained below. Note that not all countries have all 3 codes; if a code is unknown, the undefined value is returned.
There are 3 categories of countries. The largest category are the current countries. Then there is a small set of countries that no longer exist. The final set consists of areas consisting of multiple countries, like Africa. No 2-letter or 3-letter codes are available for the second two sets. (ISO 3166-3 [3] defines 4 letter codes for the set of countries that no longer exist, but the author of this module was unable to get her hands on that standard.) By default, country only returns countries from the first set, but this can be changed by giving country an optional second argument.
The module optionally exports the constants CNT_F_REGULAR, CNT_F_OLD, CNT_F_REGION and CNT_F_ANY. These constants can also be important all at once by using the tag :FLAGS.
CNT_F_ANY is just the binary or of the three other flags. The second argument of country should be the binary or of a subset of the flags CNT_F_REGULAR, CNT_F_OLD, and CNT_F_REGION - if no, or a false, second argument is given, CNT_F_REGULAR is assumed. If CNT_F_REGULAR is set, regular (current) countries will be returned; if CNT_F_OLD is set, old, no longer existing, countries will be returned, while CNT_F_REGION is used in case a region (not necessarely) a country might be returned. If country is used in list context, the fifth returned element is one of CNT_F_REGULAR, CNT_F_OLD and CNT_F_REGION, indicating whether the result is a regular country, an old country, or a region.
In list context, country returns a 5 element list. To avoid having to remember which element is in which index, the constants CNT_I_CODE2, CNT_I_CODE3, CNT_I_NUMCODE, CNT_I_COUNTRY and CNT_I_FLAG can be imported. Those constants contain the indices of the 2-letter code, the 3-letter code, the numerical code, the country, and the flag explained above, respectively. All index constants can be imported by using the :INDICES tag.
The code2, code3, numcode and countries routines.
All known 2-letter codes, 3-letter codes, numerical codes and country names can be returned by the routines code2, code3, numcode and countries. None of these methods is exported by default; all need to be imported if one wants to use them. The tag :LISTS imports them all. In scalar context, the number of known codes or countries is returned.
Download (0.009MB)
Added: 2007-02-21 License: Perl Artistic License Price:
975 downloads
Geography::USStates 0.12
Geography::USStates is a Perl module that allows you to get information on US State names. more>>
Geography::USStates is a Perl module that allows you to get information on US State names, their abbreviations, and couple the two together (in hashes).
SYNOPSIS
use Geography::USStates; # -- just getState* functions use Geography::USStates qw(:areas); # -- just getArea* functions use Geography::USStates qw(:both); # -- just getState*Area* functions use Geography::USStates qw(:both); # -- all functions
# ------ US STATES BASED $state = getState(mn); # -- get the statename Minnesota
$state = getState(wisconsin); # -- get the abbreviation wi
@states = getStateNames(); # -- return all state names
@states = getStateAbbrevs(); # -- return all state abbrevations (AL, AK, ..)
%s = getStates(); # -- return hash $states{MN} = Minnesota
%s = getStates(case=>upper); # -- return hash $states{MN} = MINNESOTA
%s = getStates(case=>lower); # -- return hash $states{MN} = minnesota
%s = getStates(hashkey=>name);# -- return hash $states{Minnesota} = MN
# ------ US AREAS $area = getArea(gu); # -- get the area name Guam
$area = getArea(guam); # -- get the abbreviation gu
@areas = getAreaNames(); # -- return all area names
@areas = getAreaAbbrevs(); # -- return all area abbrevations (DC, GU, ..)
%a = getAreas(); # -- return hash $states{GU} = Guam
%a = getAreas(case=>upper); # -- return hash $states{GU} = GUAM
%a = getAreas(case=>lower); # -- return hash $states{GU} = guam
%a = getAreas(hashkey=>name); # -- return hash $states{Guam} = GU
# ------ Lookup both US States and Dependant areas # -- get the statename Minnesota or Guam respectivily $state = getStateOrArea(mn || gu);
# -- get the abbreviation wi or gu respectivily $state = getStateOrArea(wisconsin || guam);
# -- return all states and areas names together @states = getStatesAndAreasNames();
# -- return all states and areas abbreviations together @states = getStatesAndAreasAbbrevs();
# -- same as getStates() but it returns the areas in the hash too %s = getStatesAndAreas(); %s = getStatesAndAreas(case=>upper); %s = getStatesAndAreas(case=>lower); %s = getStatesAndAreas(hashkey=>name);
<<lessSYNOPSIS
use Geography::USStates; # -- just getState* functions use Geography::USStates qw(:areas); # -- just getArea* functions use Geography::USStates qw(:both); # -- just getState*Area* functions use Geography::USStates qw(:both); # -- all functions
# ------ US STATES BASED $state = getState(mn); # -- get the statename Minnesota
$state = getState(wisconsin); # -- get the abbreviation wi
@states = getStateNames(); # -- return all state names
@states = getStateAbbrevs(); # -- return all state abbrevations (AL, AK, ..)
%s = getStates(); # -- return hash $states{MN} = Minnesota
%s = getStates(case=>upper); # -- return hash $states{MN} = MINNESOTA
%s = getStates(case=>lower); # -- return hash $states{MN} = minnesota
%s = getStates(hashkey=>name);# -- return hash $states{Minnesota} = MN
# ------ US AREAS $area = getArea(gu); # -- get the area name Guam
$area = getArea(guam); # -- get the abbreviation gu
@areas = getAreaNames(); # -- return all area names
@areas = getAreaAbbrevs(); # -- return all area abbrevations (DC, GU, ..)
%a = getAreas(); # -- return hash $states{GU} = Guam
%a = getAreas(case=>upper); # -- return hash $states{GU} = GUAM
%a = getAreas(case=>lower); # -- return hash $states{GU} = guam
%a = getAreas(hashkey=>name); # -- return hash $states{Guam} = GU
# ------ Lookup both US States and Dependant areas # -- get the statename Minnesota or Guam respectivily $state = getStateOrArea(mn || gu);
# -- get the abbreviation wi or gu respectivily $state = getStateOrArea(wisconsin || guam);
# -- return all states and areas names together @states = getStatesAndAreasNames();
# -- return all states and areas abbreviations together @states = getStatesAndAreasAbbrevs();
# -- same as getStates() but it returns the areas in the hash too %s = getStatesAndAreas(); %s = getStatesAndAreas(case=>upper); %s = getStatesAndAreas(case=>lower); %s = getStatesAndAreas(hashkey=>name);
Download (0.004MB)
Added: 2007-08-07 License: Perl Artistic License Price:
808 downloads
Geography::NationalGrid::TW 0.03
Geography::NationalGrid::TW is a Perl module to convert Taiwan Datum (TWD67/TM2, TWD97/TM2) to/from Latitude and Longitude. more>>
Geography::NationalGrid::TW is a Perl module to convert Taiwan Datum (TWD67/TM2, TWD97/TM2) to/from Latitude and Longitude.
SYNOPSIS
You should _create_ the object using the Geography::NationalGrid factory class, but you still need to know the object interface, given below.
# default TWD97
my $point1 = new Geography::NationalGrid::TW(
Easting => 302721.36,
Northing => 2768851.3995,
);
printf("Point 1 is %f X and %f Yn", $point1->easting, $point1->northing);
printf("Point 1 is %f N and %f En", $point1->latitude, $point1->longitude);
# transform to TWD67
$point1->transform(TWD67);
Once created, the object allows you to retrieve information about the point that the object represents. For example you can create an object using easting / northing and the retrieve the latitude / longitude.
<<lessSYNOPSIS
You should _create_ the object using the Geography::NationalGrid factory class, but you still need to know the object interface, given below.
# default TWD97
my $point1 = new Geography::NationalGrid::TW(
Easting => 302721.36,
Northing => 2768851.3995,
);
printf("Point 1 is %f X and %f Yn", $point1->easting, $point1->northing);
printf("Point 1 is %f N and %f En", $point1->latitude, $point1->longitude);
# transform to TWD67
$point1->transform(TWD67);
Once created, the object allows you to retrieve information about the point that the object represents. For example you can create an object using easting / northing and the retrieve the latitude / longitude.
Download (0.005MB)
Added: 2006-08-23 License: Perl Artistic License Price:
1157 downloads
Puzzle Maps 1.0.0
Puzzle Maps is a software version of the Montessori Puzzle Maps activity. more>>
Puzzle Maps is a software version of the Montessori Puzzle Maps activity.
Puzzle Maps presents users with a choice of maps in which they can remove and replace the various countries or states that make up the map.
In this way, they familiarize themselves with the geography of the world.
<<lessPuzzle Maps presents users with a choice of maps in which they can remove and replace the various countries or states that make up the map.
In this way, they familiarize themselves with the geography of the world.
Download (1.28MB)
Added: 2006-04-17 License: GPL (GNU General Public License) Price:
1294 downloads
Open LMS 1.0
Open LMS project consists of a learning management system. more>>
Open LMS project consists of a learning management system.
OpenLMS is a Learning Management System (LMS) made at the Department of Geography, NTNU.
The system is a fully functional LMS with support for group collaboration, file sharing, distribution of lectures, and other supporting features.
It is a good tool for distributing lecture notes to groups of students, and for facilitating collaboration for groups of students and teachers.
The system has successfully been used at the Dept. of Geography at NTNU in Trondheim Norway, for three years. It is continuously further developed and was released as OpenSource software last year.
OpenLMS now supports English (core language) and Norwegian. Steps has been taken to translate for further languages.
Scorm, Dublin Core, AICC etc. could be important factors in systems like OpenLMS and similar LMS/LCMS. Support for exporting objects for these standards will probably be incorporated into OpenLMS. HOWEVER - the focus of standards for the exchange of learning objects often overshadows the lack of a culture for sharing within the organizations in question.
This very resource-demanding part of a LMS/LCMS is therefore not focused at the present stage in the development.
Main features:
- upload lecture notes (any filetypes)
- distribute levture notes
- groupware / email to groups
- personal file archive
- assignment administration
- media archive and termbank
- organize webresources
- language support for norwegian, english and german (may easily be extended)
<<lessOpenLMS is a Learning Management System (LMS) made at the Department of Geography, NTNU.
The system is a fully functional LMS with support for group collaboration, file sharing, distribution of lectures, and other supporting features.
It is a good tool for distributing lecture notes to groups of students, and for facilitating collaboration for groups of students and teachers.
The system has successfully been used at the Dept. of Geography at NTNU in Trondheim Norway, for three years. It is continuously further developed and was released as OpenSource software last year.
OpenLMS now supports English (core language) and Norwegian. Steps has been taken to translate for further languages.
Scorm, Dublin Core, AICC etc. could be important factors in systems like OpenLMS and similar LMS/LCMS. Support for exporting objects for these standards will probably be incorporated into OpenLMS. HOWEVER - the focus of standards for the exchange of learning objects often overshadows the lack of a culture for sharing within the organizations in question.
This very resource-demanding part of a LMS/LCMS is therefore not focused at the present stage in the development.
Main features:
- upload lecture notes (any filetypes)
- distribute levture notes
- groupware / email to groups
- personal file archive
- assignment administration
- media archive and termbank
- organize webresources
- language support for norwegian, english and german (may easily be extended)
Download (3.6MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1012 downloads
GCompris 8.3.3 / 8.4 Beta 1
GCompris is a complete educational suite for children from 2 to 10. more>>
GCompris is an educational software which propose different activities to kids from 2 to 10. Some activities are game oriented, but always educational. You will find some activities in the following topics:
- computer discovery: keyboard, mouse, different mouse gesture, ...
- algebra: table memory, enumeration, double entry table, mirror image, ...
- science: the canal lock, the water cycle, the submarine, ...
- geography: place the country on the map
- games: chess, memory, ...
- reading: reading practice
- other: learn to tell time, puzzle of famous paintings, vector drawing, ...
GCompris project proposes more than 60 activities and it continues to evolves. GCompris is a free software, you have the possibility to adapt it to your needs or to improve it, and, why not, to share your work with the kids of all the world.
GCompris intent is to provide a central location where a user can find different kind of small educational content called boards.
Today there is already a lot of free software that provides a small education content. Unfortunatly, it is difficult to track, intall and use them because they do not evolve at the same speed and offer their own user interface.
GCompris aims to provide a unique user interface that gives access to different boards.
GCompris is part of the GNU project.
Once started, GCompris presents a graphical view that includes from top to bottom:
1. Boards icon list Each icon represent a board. When you move the mouse over them, they are highlighted and the name and description of the board is displayed in the board description area.
2. Boards description area Display a small description of what the highlited board icon is about. Note that the descriptions are internationalized which means translated in a target language (See section Internationalization Issues for more information on Internationalization).
3. Control bar: The control bar is always present in GCompris. This icons are contextual which means that when an icon is not meaningfull in a specific context, it is simply not displayed. The control bar contains the icons from left to right:
1. Help: In some case, a board can be too complex to be described in the Board description area. In this case this will provide access to the additionnal instructions.
2. Level: Some boards provide different level. The number of levels is board dependant.
3. OK: Some boards do not automatically detect that the child has finish the given task. Clicking here is similar to entering RET on the keyboard and thus the RET key is a shortcut.
4. End: End the current board if any, otherwise Exit GCompris. When entered at the board menu level, it will create a dialog window to confirm the Exit of GCompris.
5. About: Display the about box for gcompris with the version number, the author, the licence and links to online resources.
6. Configure: Display the configuration box for gcompris. Configuration can be done at gcompris level when no boards is selected. If a board is selected, it can provides configuration options. Configuration is persistent and saved in the gnome file in the user home directory under .gnome/gcompris.
Whats New in 8.3.3 Stable Release:
- GCompris was asserting when you clicked on the target image in the missingletter activity.
- GCompris was unstable in Spanish and in any locale where there are no spoken congratulation.
- Even if they were present, audio congratulations were not played on Windows.
- All of these problems were fixed.
<<less- computer discovery: keyboard, mouse, different mouse gesture, ...
- algebra: table memory, enumeration, double entry table, mirror image, ...
- science: the canal lock, the water cycle, the submarine, ...
- geography: place the country on the map
- games: chess, memory, ...
- reading: reading practice
- other: learn to tell time, puzzle of famous paintings, vector drawing, ...
GCompris project proposes more than 60 activities and it continues to evolves. GCompris is a free software, you have the possibility to adapt it to your needs or to improve it, and, why not, to share your work with the kids of all the world.
GCompris intent is to provide a central location where a user can find different kind of small educational content called boards.
Today there is already a lot of free software that provides a small education content. Unfortunatly, it is difficult to track, intall and use them because they do not evolve at the same speed and offer their own user interface.
GCompris aims to provide a unique user interface that gives access to different boards.
GCompris is part of the GNU project.
Once started, GCompris presents a graphical view that includes from top to bottom:
1. Boards icon list Each icon represent a board. When you move the mouse over them, they are highlighted and the name and description of the board is displayed in the board description area.
2. Boards description area Display a small description of what the highlited board icon is about. Note that the descriptions are internationalized which means translated in a target language (See section Internationalization Issues for more information on Internationalization).
3. Control bar: The control bar is always present in GCompris. This icons are contextual which means that when an icon is not meaningfull in a specific context, it is simply not displayed. The control bar contains the icons from left to right:
1. Help: In some case, a board can be too complex to be described in the Board description area. In this case this will provide access to the additionnal instructions.
2. Level: Some boards provide different level. The number of levels is board dependant.
3. OK: Some boards do not automatically detect that the child has finish the given task. Clicking here is similar to entering RET on the keyboard and thus the RET key is a shortcut.
4. End: End the current board if any, otherwise Exit GCompris. When entered at the board menu level, it will create a dialog window to confirm the Exit of GCompris.
5. About: Display the about box for gcompris with the version number, the author, the licence and links to online resources.
6. Configure: Display the configuration box for gcompris. Configuration can be done at gcompris level when no boards is selected. If a board is selected, it can provides configuration options. Configuration is persistent and saved in the gnome file in the user home directory under .gnome/gcompris.
Whats New in 8.3.3 Stable Release:
- GCompris was asserting when you clicked on the target image in the missingletter activity.
- GCompris was unstable in Spanish and in any locale where there are no spoken congratulation.
- Even if they were present, audio congratulations were not played on Windows.
- All of these problems were fixed.
Download (78MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
663 downloads
gumnut 0.0.7
Gumnut is an extension of the Gnut gnutella servent to enable a distributed, moderated discussion tree. more>>
Gumnut is a piece of communication software which may be used by a group of people to find an agreed positive direction for any decisions which affect the group. The group may be any size and associated by geography, common interest or both.
The display is currently a simple text based interface which can be used to post a new comment, reply to an existing comment, mirror a comment or to search for and display a discussion tree of comments.
Mirroring is the method used to indicate agreement with a particular comment. This increases the number of instances on the network and thus gives the comment a higher moderation weighting for those who subsequently search for and view that comment.
Gumnut is released under the GNU General Public Licence.
Gnutella project is the underlying network used for searching and retrieving the comment files. Although Gnutella may not scale well for a very large number of nodes, it is a well known distributed protocol which has a robust GPLed servent written for it named Gnut.
The existing search and download commands from Gnut are used and expanded with addition of the comment based commands of create, reply, mirror and display.
Gumnut is Free Software released under the GNU General Public Licence and runs on GNU/Linux and possibly other POSIX compliant Operating Systems. Current distribution is a source tarball which compiles with "./configure" and "make".
Enhancements:
- The code was cleaned up for readability.
- The listhits command was removed.
- A bug limiting searching for leaves with names longer than 78 bytes was fixed.
- A new command, "redisplay", was added.
- An "R" or "L" was added to displaytree output to indicate remote or local.
- Help output was cleaned up.
- Live testing and many minor bugfixes were done.
<<lessThe display is currently a simple text based interface which can be used to post a new comment, reply to an existing comment, mirror a comment or to search for and display a discussion tree of comments.
Mirroring is the method used to indicate agreement with a particular comment. This increases the number of instances on the network and thus gives the comment a higher moderation weighting for those who subsequently search for and view that comment.
Gumnut is released under the GNU General Public Licence.
Gnutella project is the underlying network used for searching and retrieving the comment files. Although Gnutella may not scale well for a very large number of nodes, it is a well known distributed protocol which has a robust GPLed servent written for it named Gnut.
The existing search and download commands from Gnut are used and expanded with addition of the comment based commands of create, reply, mirror and display.
Gumnut is Free Software released under the GNU General Public Licence and runs on GNU/Linux and possibly other POSIX compliant Operating Systems. Current distribution is a source tarball which compiles with "./configure" and "make".
Enhancements:
- The code was cleaned up for readability.
- The listhits command was removed.
- A bug limiting searching for leaves with names longer than 78 bytes was fixed.
- A new command, "redisplay", was added.
- An "R" or "L" was added to displaytree output to indicate remote or local.
- Help output was cleaned up.
- Live testing and many minor bugfixes were done.
Download (0.10MB)
Added: 2005-12-04 License: GPL (GNU General Public License) Price:
1419 downloads
poMMo PR15.1
poMMo can be used to add a mailing list to your Web site or to organize stand alone mailings. more>>
poMMo is versatile mass mailing software. poMMo can be used to add a mailing list to your Web site or to organize stand alone mailings.
Unique features such as the ability to mail subsets of your subscribers set it apart from alternatives.
Main features:
Ease of Use
- Subscription Form
- EnlargeSubscription Form
- poMMo is designed around the concept of simplicity. It is easy to install and administer.
- A clean and intuitive interface featuring AJAX controls aids you in managing subscribers, groups, and mailings.
- See the Tour or visit our online Demonstration install.
- Integrate poMMo into your existing website with only 3 lines of code!
- Look and feel can be changed by any web designer using with SMARTY templates devoid of PHP!
- Simple, two minute installation.
- No advanced administrative tasks such as setting a crontab event.
- Compatible with any common webhosting provider.
Flexibility
- Group Creation
- EnlargeGroup Creation
- Your subscribers are inserted into an powerful database that is simplistic to manipulate and allows unprecedented flexibility regardless of expertise. poMMo can be tailored to suit any needs.
- Collect any number of completely customizable demographics through Subscriber Fields.
- Create Mailing Groups of subscribers based off their demographic values. Mail a subset of your subscribers -- see Understand Groups.
- Mailing Messages and "on success" URLs are easily customized.
- Implementation Examples
- Realtor: Ask your subscribers what neigborhoods, property size, price range, and other attributes they are interested in. When a new property becomes available, mail subscribers who have expressed interest in this particular type of property.
- Multiple Website Newsletters: Create a subscriber field asking which newsletter(s) your subscriber would like to recieve.
- Shoe Store: Collect shoe size and preferred style and brand from your subscribers. When new shoes arrive, or during a sale, notify the customers most interested. Perhaps offer an "exlusive" discount to these subscribers.
- Marketer: Import large amounts of subscribers and their assosiated demographics. Create groups using poMMos powerful filtering criteria to pinpoint your audience.
- Band: Collect your subscribers geographic location and whether theyd like to be part of a volunteer street team. Notify the list that the band will be performing near their town by creating groups based of geography.
Enhancements:
- Fixes were made for suppression of PHP notices, reloading and previewing of plain text mailings, loading of sample data from the support library, WYSIWYG Editor mangling of URLs, bandwidth throttle calculations, throttle setting limitations, and typographical errors.
<<lessUnique features such as the ability to mail subsets of your subscribers set it apart from alternatives.
Main features:
Ease of Use
- Subscription Form
- EnlargeSubscription Form
- poMMo is designed around the concept of simplicity. It is easy to install and administer.
- A clean and intuitive interface featuring AJAX controls aids you in managing subscribers, groups, and mailings.
- See the Tour or visit our online Demonstration install.
- Integrate poMMo into your existing website with only 3 lines of code!
- Look and feel can be changed by any web designer using with SMARTY templates devoid of PHP!
- Simple, two minute installation.
- No advanced administrative tasks such as setting a crontab event.
- Compatible with any common webhosting provider.
Flexibility
- Group Creation
- EnlargeGroup Creation
- Your subscribers are inserted into an powerful database that is simplistic to manipulate and allows unprecedented flexibility regardless of expertise. poMMo can be tailored to suit any needs.
- Collect any number of completely customizable demographics through Subscriber Fields.
- Create Mailing Groups of subscribers based off their demographic values. Mail a subset of your subscribers -- see Understand Groups.
- Mailing Messages and "on success" URLs are easily customized.
- Implementation Examples
- Realtor: Ask your subscribers what neigborhoods, property size, price range, and other attributes they are interested in. When a new property becomes available, mail subscribers who have expressed interest in this particular type of property.
- Multiple Website Newsletters: Create a subscriber field asking which newsletter(s) your subscriber would like to recieve.
- Shoe Store: Collect shoe size and preferred style and brand from your subscribers. When new shoes arrive, or during a sale, notify the customers most interested. Perhaps offer an "exlusive" discount to these subscribers.
- Marketer: Import large amounts of subscribers and their assosiated demographics. Create groups using poMMos powerful filtering criteria to pinpoint your audience.
- Band: Collect your subscribers geographic location and whether theyd like to be part of a volunteer street team. Notify the list that the band will be performing near their town by creating groups based of geography.
Enhancements:
- Fixes were made for suppression of PHP notices, reloading and previewing of plain text mailings, loading of sample data from the support library, WYSIWYG Editor mangling of URLs, bandwidth throttle calculations, throttle setting limitations, and typographical errors.
Download (1.2MB)
Added: 2007-04-30 License: GPL (GNU General Public License) Price:
917 downloads
City info search 0.9
City info search enables you to get all the information about any city in the USA with a mouse click. more>>
City info search enables you to get all the information about any city in the USA with a mouse click.
Get all the information about any city in the USA with a mouse click. This includes geography, population, ethnic composition, housing, climate, hospitals, airports, etc.
Usage: highlight the name on any US city on a page. Right click the mouse. Choose Get City Info.
No annoing toolbars.
<<lessGet all the information about any city in the USA with a mouse click. This includes geography, population, ethnic composition, housing, climate, hospitals, airports, etc.
Usage: highlight the name on any US city on a page. Right click the mouse. Choose Get City Info.
No annoing toolbars.
Download (0.080MB)
Added: 2007-04-27 License: MPL (Mozilla Public License) Price:
942 downloads
Dynebolic GNU/Linux 2.4.2
Dynebolic GNU/Linux is the dyne.org live bootable GNU/Linux distribution. more>>
Dyne:bolic GNU/Linux is a live bootable distribution, an operating system which works directly from the CD without the need to install or change anything on the hard disk.
It is user-friendly, recognizes your hardware devices (sound, video, firewire, and USB) and offers a vast range of software for multimedia production, streaming, 3D modeling, photo, peer-to-peer filesharing, web browsing and publishing, word processing, email, encryption, and networking. It also includes games and a world navigator.
Dynebolic GNU/Linux does automatic clustering, joining the CPU power between any other dyne:bolic on the local network, and works on modded XBOX consoles as well.
Surf, stream, edit, encode and broadcast both sound and video, all just in one CD you have simply to boot!
Dyne:bolic is shaped on the needs of media activists to eager the production of informations, realizing a full multimedia studio. It takes birth as a grassroot effort to spread free software and the spirit of sharing informations.
Main features:
- user friendly, intuitive and funky desktop interface
- full of creative tools for audio/video multimedia production
- no need to install, partition or change data on harddisk
- it will work even if you have Micro$oft Winblows
- automatic hardware recognition and configuration:
- network cards, sound cards, BTTV video cards, firewire, USB devices and more...
- all harddisks are mounted and fully accessible
- works on old pentium1 as well on XBOX game console
- can save your data and settings in one encrypted file on your harddisk or usb storage device (nesting)
- does automatic clustering with other dyne:bolic on the net, to join the CPU power of multiple computers
- handcrafted by experienced software artisans making their own applications since years: dyne:bolic is not based on any other distribution, is unique!
The graphical environment is XFree86 with WindowMaker which offers a fresh level of interaction which distincts dyne:bolic from other common graphical environments.
Dyne:bolic includes lots of software, result of the great work being done by the GNU/Linux free software community thru the past 15 years. To mention just a few of them:
Mp4Live, lets you stream mpeg4 audio and video on darwin server | FreeJ, to perform on video livesets as a freejay | MuSE, to mix and stream your voice and sound files live on the net HasciiCam, to have a cool (h)ascii webcam, also on low bandwidth | TerminatorX, GDam, SoundTracker and PD, to perform with live audio | Kino, Cinelerra and LiVES, to edit video and publish clips | Audacity and ReZound, to edit audio and add effects on it | Gimp, the GNU image manipulation software to edit your pictures | Blender, one of the most powerful 3d modeling and rendering tools | AbiWord and Ted, to read edit and save any kind of word files | Bluefish, to generate and edit your html webpages | Sylpheed and Gpa, to send and receive mails, with full encryption | Lopster, which lets you do filesharing over winmx and gnutella | Samba, to easily exchange data over shared directories in LANs | XChat, linphone and other messaging softwares for fast comunication | VNC and RDesktop to remotely access any Win or Unix desktop | Lots of network tools, for analysis and poweruser access to the net | Xfe, an intuitive local file browser recognizing all file types | GCombust, to easily burn data on CDs on machines with a cd-burner | XRmap, to easily browse the world geography and the CIA factbook | And, last but not least, lots of great games also to be played in multiplayer mode, online with your friends running dyne:bolic!
To realize a slick and efficient desktop environment dyne:bolic avoids the use of both Gnome and KDE: still consuming less resources we can offer a good degree of user friendliness and integration.
Dyne:bolic doesnt follows the desktop paradigm established by software corporations in the most widespread proprietary operating systems nowadays: it tries to explore new degrees of human interaction with computers.
<<lessIt is user-friendly, recognizes your hardware devices (sound, video, firewire, and USB) and offers a vast range of software for multimedia production, streaming, 3D modeling, photo, peer-to-peer filesharing, web browsing and publishing, word processing, email, encryption, and networking. It also includes games and a world navigator.
Dynebolic GNU/Linux does automatic clustering, joining the CPU power between any other dyne:bolic on the local network, and works on modded XBOX consoles as well.
Surf, stream, edit, encode and broadcast both sound and video, all just in one CD you have simply to boot!
Dyne:bolic is shaped on the needs of media activists to eager the production of informations, realizing a full multimedia studio. It takes birth as a grassroot effort to spread free software and the spirit of sharing informations.
Main features:
- user friendly, intuitive and funky desktop interface
- full of creative tools for audio/video multimedia production
- no need to install, partition or change data on harddisk
- it will work even if you have Micro$oft Winblows
- automatic hardware recognition and configuration:
- network cards, sound cards, BTTV video cards, firewire, USB devices and more...
- all harddisks are mounted and fully accessible
- works on old pentium1 as well on XBOX game console
- can save your data and settings in one encrypted file on your harddisk or usb storage device (nesting)
- does automatic clustering with other dyne:bolic on the net, to join the CPU power of multiple computers
- handcrafted by experienced software artisans making their own applications since years: dyne:bolic is not based on any other distribution, is unique!
The graphical environment is XFree86 with WindowMaker which offers a fresh level of interaction which distincts dyne:bolic from other common graphical environments.
Dyne:bolic includes lots of software, result of the great work being done by the GNU/Linux free software community thru the past 15 years. To mention just a few of them:
Mp4Live, lets you stream mpeg4 audio and video on darwin server | FreeJ, to perform on video livesets as a freejay | MuSE, to mix and stream your voice and sound files live on the net HasciiCam, to have a cool (h)ascii webcam, also on low bandwidth | TerminatorX, GDam, SoundTracker and PD, to perform with live audio | Kino, Cinelerra and LiVES, to edit video and publish clips | Audacity and ReZound, to edit audio and add effects on it | Gimp, the GNU image manipulation software to edit your pictures | Blender, one of the most powerful 3d modeling and rendering tools | AbiWord and Ted, to read edit and save any kind of word files | Bluefish, to generate and edit your html webpages | Sylpheed and Gpa, to send and receive mails, with full encryption | Lopster, which lets you do filesharing over winmx and gnutella | Samba, to easily exchange data over shared directories in LANs | XChat, linphone and other messaging softwares for fast comunication | VNC and RDesktop to remotely access any Win or Unix desktop | Lots of network tools, for analysis and poweruser access to the net | Xfe, an intuitive local file browser recognizing all file types | GCombust, to easily burn data on CDs on machines with a cd-burner | XRmap, to easily browse the world geography and the CIA factbook | And, last but not least, lots of great games also to be played in multiplayer mode, online with your friends running dyne:bolic!
To realize a slick and efficient desktop environment dyne:bolic avoids the use of both Gnome and KDE: still consuming less resources we can offer a good degree of user friendliness and integration.
Dyne:bolic doesnt follows the desktop paradigm established by software corporations in the most widespread proprietary operating systems nowadays: it tries to explore new degrees of human interaction with computers.
Download (654.8MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
973 downloads
CVS 1.11.22
CVS is a version control system, an important component of Source Configuration Management (SCM). more>>
CVS is a version control system, an important component of Source Configuration Management (SCM). Using it, you can record the history of sources files, and documents. CVS fills a similar role to the free software RCS, PRCS, and Aegis packages.
CVS is a production quality system in wide use around the world, including many free software projects.
While CVS stores individual file history in the same format as RCS, it offers the following significant advantages over RCS:
- It can run scripts which you can supply to log CVS operations or enforce site-specific polices.
- Client/server CVS enables developers scattered by geography or slow modems to function as a single team. The version history is stored on a single central server and the client machines have a copy of all the files that the developers are working on. Therefore, the network between the client and the server must be up to perform CVS operations (such as checkins or updates) but need not be up to edit or manipulate the current versions of the files. Clients can perform all the same operations which are available locally.
- In cases where several developers or teams want to each maintain their own version of the files, because of geography and/or policy, CVSs vendor branches can import a version from another team (even if they dont use CVS), and then CVS can merge the changes from the vendor branch with the latest files if that is what is desired.
- Unreserved checkouts, allowing more than one developer to work on the same files at the same time.
- CVS provides a flexible modules database that provides a symbolic mapping of names to components of a larger software distribution. It applies names to collections of directories and files. A single command can manipulate the entire collection.
- CVS servers run on most unix variants, and clients for Windows NT/95, OS/2 and VMS are also available. CVS will also operate in what is sometimes called server mode against local repositories on Windows 95/NT.
<<lessCVS is a production quality system in wide use around the world, including many free software projects.
While CVS stores individual file history in the same format as RCS, it offers the following significant advantages over RCS:
- It can run scripts which you can supply to log CVS operations or enforce site-specific polices.
- Client/server CVS enables developers scattered by geography or slow modems to function as a single team. The version history is stored on a single central server and the client machines have a copy of all the files that the developers are working on. Therefore, the network between the client and the server must be up to perform CVS operations (such as checkins or updates) but need not be up to edit or manipulate the current versions of the files. Clients can perform all the same operations which are available locally.
- In cases where several developers or teams want to each maintain their own version of the files, because of geography and/or policy, CVSs vendor branches can import a version from another team (even if they dont use CVS), and then CVS can merge the changes from the vendor branch with the latest files if that is what is desired.
- Unreserved checkouts, allowing more than one developer to work on the same files at the same time.
- CVS provides a flexible modules database that provides a symbolic mapping of names to components of a larger software distribution. It applies names to collections of directories and files. A single command can manipulate the entire collection.
- CVS servers run on most unix variants, and clients for Windows NT/95, OS/2 and VMS are also available. CVS will also operate in what is sometimes called server mode against local repositories on Windows 95/NT.
Download (2.8MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1248 downloads
JCT 1.0
JCT project is a tool dealing with thematic maps. more>>
JCT project is a tool dealing with thematic maps.
CT draws and edits thematic maps. It is primarily intended for geography teachers and their pupils.
Main features:
- distributed settings support - share one code convention across multiple machines/platforms
- easy switching between several code conventions
- several pre-configured brace styles (C, Sun, GNU), but fully user-configurable
- auto-insertion/removal of obsolete braces
- special empty braces handling
- wide range of whitespace options for method declarations/calls, brackets, parentheses, operators, delimeters...
- prepending of leading whitespace before every line
- powerful indentation/alignment capabilities
- configurable line wrapping
- controlable amount of blank lines between certain sections, blocks, statements...
- comment removal for all sorts of comments
- special comments to prohibit formatting for certain pieces of code (uses the Jindent syntax to retain backward compatibility)
- auto-insertion of missing Javadoc comments (selectively configurable for the different access levels) with variable interpolation
- auto-removal/insertion/correction of obsolete/missing/wrong Javadoc standard tags
- auto-insertion of parentheses around expressions to make operator precedence obvious
- auto-insertion of a serial version UID for serializable classes
- sorting of class/interface/variable/constructor/method declarations
- sorting of access modifiers
- insertion of separation comments between class/interface/variable/constructor/method declarations
- insertion of custom header/footer templates at the begin/end of every file (with variable interpolation)
- sorting/grouping of import declarations
- import optimization: expansion of on-demand import declarations to several single-type declarations (and vice versa). As of today only implemented for the Ant and JBuilder Plug-in
- configurable message output
- numbered backups (1-30)
- multi-processor support
- client API to make integration with other tools easy
- graphical application to customize the settings (with live-preview)
- powerful command line interface with regular expression filtering (Console Plug-in)
- several Plug-ins to integrate with common Java applications (current set includes Ant, Eclipse, JBuilder, JDeveloper, jEdit and NetBeans/Sun ONE Studio)
<<lessCT draws and edits thematic maps. It is primarily intended for geography teachers and their pupils.
Main features:
- distributed settings support - share one code convention across multiple machines/platforms
- easy switching between several code conventions
- several pre-configured brace styles (C, Sun, GNU), but fully user-configurable
- auto-insertion/removal of obsolete braces
- special empty braces handling
- wide range of whitespace options for method declarations/calls, brackets, parentheses, operators, delimeters...
- prepending of leading whitespace before every line
- powerful indentation/alignment capabilities
- configurable line wrapping
- controlable amount of blank lines between certain sections, blocks, statements...
- comment removal for all sorts of comments
- special comments to prohibit formatting for certain pieces of code (uses the Jindent syntax to retain backward compatibility)
- auto-insertion of missing Javadoc comments (selectively configurable for the different access levels) with variable interpolation
- auto-removal/insertion/correction of obsolete/missing/wrong Javadoc standard tags
- auto-insertion of parentheses around expressions to make operator precedence obvious
- auto-insertion of a serial version UID for serializable classes
- sorting of class/interface/variable/constructor/method declarations
- sorting of access modifiers
- insertion of separation comments between class/interface/variable/constructor/method declarations
- insertion of custom header/footer templates at the begin/end of every file (with variable interpolation)
- sorting/grouping of import declarations
- import optimization: expansion of on-demand import declarations to several single-type declarations (and vice versa). As of today only implemented for the Ant and JBuilder Plug-in
- configurable message output
- numbered backups (1-30)
- multi-processor support
- client API to make integration with other tools easy
- graphical application to customize the settings (with live-preview)
- powerful command line interface with regular expression filtering (Console Plug-in)
- several Plug-ins to integrate with common Java applications (current set includes Ant, Eclipse, JBuilder, JDeveloper, jEdit and NetBeans/Sun ONE Studio)
Download (17.0MB)
Added: 2006-11-02 License: GPL (GNU General Public License) Price:
1089 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above geography search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed