1.3 ounce asian weight
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 924
Bio::NEXUS::WeightSet 0.67
Bio::NEXUS::WeightSet is a Perl module that represents column weights in alignment ( for each character). more>>
Bio::NEXUS::WeightSet is a Perl module that represents column weights in alignment ( for each character).
SYNOPSIS
new Bio::NEXUS::WeightSet($name, @weights, $iswt);
A module representing column weights in alignment (for each character)
METHODS
new
Title : new
Usage : $node = new Bio::NEXUS::WeightSet($name, @weights);
Function: Creates a new Bio::NEXUS::WeightSet object
Returns : Bio::NEXUS::WeightSet object
Args : none
set_weights
Title : set_weights
Usage : $weight->set_weights(@weights);
Function: stores it in the list weights
Returns : none
Args : list of weights
get_weights
Title : get_weights
Usage : @wts=@{$weightset->get_weights()};
Function: Returns the weights array
Returns : reference to array containing weights
Args : none
select_weights
Title : select_weights
Usage : $set->select_weights($columns);
Function: select a subset of characters
Returns : new self with subset of weights
Args : column numbers
is_wt
Title : is_wt
Usage : croak unless $weight->is_wt();
Function: Returns if object has weights (1 yes, 0 no)
Returns : weight existence (integer)
Args : none
set_name
Title : set_name
Usage : $weight->set_name($name);
Function: Sets the name of the weightset
Returns : none
Args : name (string)
get_name
Title : get_name
Usage : $name=$weight->get_name();
Function: Returns the name of the weightset
Returns : name (string)
Args : none
equals
Name : equals
Usage : $set->equals($another);
Function: compare if two WeightSet objects are equal
Returns : boolean
Args : an WeightSet object
<<lessSYNOPSIS
new Bio::NEXUS::WeightSet($name, @weights, $iswt);
A module representing column weights in alignment (for each character)
METHODS
new
Title : new
Usage : $node = new Bio::NEXUS::WeightSet($name, @weights);
Function: Creates a new Bio::NEXUS::WeightSet object
Returns : Bio::NEXUS::WeightSet object
Args : none
set_weights
Title : set_weights
Usage : $weight->set_weights(@weights);
Function: stores it in the list weights
Returns : none
Args : list of weights
get_weights
Title : get_weights
Usage : @wts=@{$weightset->get_weights()};
Function: Returns the weights array
Returns : reference to array containing weights
Args : none
select_weights
Title : select_weights
Usage : $set->select_weights($columns);
Function: select a subset of characters
Returns : new self with subset of weights
Args : column numbers
is_wt
Title : is_wt
Usage : croak unless $weight->is_wt();
Function: Returns if object has weights (1 yes, 0 no)
Returns : weight existence (integer)
Args : none
set_name
Title : set_name
Usage : $weight->set_name($name);
Function: Sets the name of the weightset
Returns : none
Args : name (string)
get_name
Title : get_name
Usage : $name=$weight->get_name();
Function: Returns the name of the weightset
Returns : name (string)
Args : none
equals
Name : equals
Usage : $set->equals($another);
Function: compare if two WeightSet objects are equal
Returns : boolean
Args : an WeightSet object
Download (0.15MB)
Added: 2006-12-19 License: Perl Artistic License Price:
1039 downloads
Absolute Linux 12.2.5
Absolute Linux is a lightweight modification of Slackware. more>>
Absolute Linux 12.2.5 offers you a wonderful and very helpful product which is a lightweight modification of Slackware. Makes configuration and maintenance much easier, has common applications installed and configured.
Plays audio CDs, DVDs and movies "out of the box", easy to configure and simple to use. Uses icewm/rox-filer for window/file managers. Has backup of fluxbox/fox pathfinder. Installer is same setup as Slackware, with a couple changes. Automatically installs all packages that weight in at 1.7Gb when complete.
Enhancements:
- Every single package has been at least re-packed, majority modified/updated.
- Interface updated along with kernel, python, packaging system which is now txz-based and due to higher compression the main release contains much more than previously: OpenOffice and Java, as well as many other applications now fit on a single CD.
- Pcmanfm and rox have both been modified to seamlessly work with the TXZ package archives as well as the new "Add/Remove Programs" item in root menu.
- New volume control (now in system tray, sleeker.) New theme, more complete file type handling.
Added: 2009-06-06 License: GPL Price: FREE
15 downloads
Other version of Absolute Linux
License:GPL (GNU General Public License)
Graph::Weighted 0.1301
Graph::Weighted is an abstract, weighted graph implementation. more>>
Graph::Weighted is an abstract, weighted graph implementation.
SYNOPSIS
use Graph::Weighted;
$g = Graph::Weighted->new(
data => [
[ 0, 1, 2, 0, 0 ], # A vertex with two edges.
[ 1, 0, 3, 0, 0 ], # "
[ 2, 3, 0, 0, 0 ], # "
[ 0, 0, 1, 0, 0 ], # A vertex with one edge.
[ 0, 0, 0, 0, 0 ] # A vertex with no edges.
]
);
$g = Graph::Weighted->new(
data => {
weight => {
a => { b => 1, c => 2 }, # A vertex with two edges.
b => { a => 1, c => 3 }, # "
c => { a => 2, b => 3 }, # "
d => { c => 1 }, # A vertex with one edge.
e => {} # A vertex with no edges.
}
foo => [
[ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ]
],
}
);
$g = Graph::Weighted->new(
data => $Math_Matrix_object,
retrieve_as => ARRAY,
);
$data = $g->weight_data;
$w = $g->graph_weight;
$w = $g->vertex_weight($v1);
$w = $g->vertex_weight($v1, $w + 1);
$w = $g->edge_weight($v1, $v2);
$w = $g->edge_weight($v1, $v2, $w + 1);
$vertices = $g->heaviest_vertices;
$vertices = $g->lightest_vertices;
$w = $g->max_weight; # Weight of the largest vertices.
$w = $g->min_weight; # Weight of the smallest vertices.
# Call the weight methods of the inherited Graph module.
$x = $g->MST_Kruskal;
$x = $g->APSP_Floyd_Warshall;
$x = $g->MST_Prim($p);
<<lessSYNOPSIS
use Graph::Weighted;
$g = Graph::Weighted->new(
data => [
[ 0, 1, 2, 0, 0 ], # A vertex with two edges.
[ 1, 0, 3, 0, 0 ], # "
[ 2, 3, 0, 0, 0 ], # "
[ 0, 0, 1, 0, 0 ], # A vertex with one edge.
[ 0, 0, 0, 0, 0 ] # A vertex with no edges.
]
);
$g = Graph::Weighted->new(
data => {
weight => {
a => { b => 1, c => 2 }, # A vertex with two edges.
b => { a => 1, c => 3 }, # "
c => { a => 2, b => 3 }, # "
d => { c => 1 }, # A vertex with one edge.
e => {} # A vertex with no edges.
}
foo => [
[ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ]
],
}
);
$g = Graph::Weighted->new(
data => $Math_Matrix_object,
retrieve_as => ARRAY,
);
$data = $g->weight_data;
$w = $g->graph_weight;
$w = $g->vertex_weight($v1);
$w = $g->vertex_weight($v1, $w + 1);
$w = $g->edge_weight($v1, $v2);
$w = $g->edge_weight($v1, $v2, $w + 1);
$vertices = $g->heaviest_vertices;
$vertices = $g->lightest_vertices;
$w = $g->max_weight; # Weight of the largest vertices.
$w = $g->min_weight; # Weight of the smallest vertices.
# Call the weight methods of the inherited Graph module.
$x = $g->MST_Kruskal;
$x = $g->APSP_Floyd_Warshall;
$x = $g->MST_Prim($p);
Download (0.011MB)
Added: 2007-08-07 License: Perl Artistic License Price:
812 downloads
Chaos Visualization 0.9
Chaos Visualization is a program for quickly calculating the amount of predictability in a very simple system. more>>
Chaos Visualization is a program for quickly calculating the amount of predictability in a very simple system: a spring with one side connected to the origin and the other to a weight under gravity.
This amount is chaos is visualized in TIFF images, which can be put in a sequence to show the evolution of chaotic behaviour in this system.
<<lessThis amount is chaos is visualized in TIFF images, which can be put in a sequence to show the evolution of chaotic behaviour in this system.
Download (0.022MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1095 downloads
Community Content Management 1.0
Community Content Management project consists of a light-weight CMS, designed for communities. more>>
Community Content Management project consists of a light-weight CMS, designed for communities.
Community Content Management is a light-weight CMS, which is designed for small communities, such as churches, schools, and neighborhood watch groups.
It allows someone with relatively little knowledge of the Internet to publish news stories and events. It sets archive/publishing dates, allowing groups to write press releases/articles about events before they happen.
Its output conforms to XHTML 1.0 and uses CSS 2, and its configuration comprises one file, which sets the site title, database, host, and meta tags.
Enhancements:
- Login - code changed so correct variables are passed to login script :)
- Search - Search Engine Added
- Articles - new lines (n) are replaced with "
" instead of " "
<<lessCommunity Content Management is a light-weight CMS, which is designed for small communities, such as churches, schools, and neighborhood watch groups.
It allows someone with relatively little knowledge of the Internet to publish news stories and events. It sets archive/publishing dates, allowing groups to write press releases/articles about events before they happen.
Its output conforms to XHTML 1.0 and uses CSS 2, and its configuration comprises one file, which sets the site title, database, host, and meta tags.
Enhancements:
- Login - code changed so correct variables are passed to login script :)
- Search - Search Engine Added
- Articles - new lines (n) are replaced with "
" instead of " "
Download (MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
1009 downloads
CeaMuS 2.0.6
CeaMuS is a simple, powerful way to build a web site. more>>
CeaMuS is a simple, powerful way to build a web site. CeaMuS project is a light weight Content Management System to help you edit web pages and build image galleries.
Who Can Benefit From CeaMuS
- Web Designers who want to make maintaining client sites faster and easier
- Web Site Owners who want to maintain their own web sites
- Bloggers who want a site that doesnt look like every other blog on the net
- Churchs and non-profit organizations who need to update sites frequently, often with whatever labor happens to be available
- Dog, horse and cat breeders, who need to update photos and breeding information regularly
- Families who want to share photos and vacation experiences with family and friends
- Small Businesses selling their products on the web
<<lessWho Can Benefit From CeaMuS
- Web Designers who want to make maintaining client sites faster and easier
- Web Site Owners who want to maintain their own web sites
- Bloggers who want a site that doesnt look like every other blog on the net
- Churchs and non-profit organizations who need to update sites frequently, often with whatever labor happens to be available
- Dog, horse and cat breeders, who need to update photos and breeding information regularly
- Families who want to share photos and vacation experiences with family and friends
- Small Businesses selling their products on the web
Download (14.8MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1193 downloads
PyFortune 1.0b
PyFortune is a GUI fortune program with over 10,000 fortunes built-in. more>>
PyFortune project is a GUI fortune program with over 10,000 fortunes built-in.
PyFortune is a BSD fortune-compatible GUI fortune program.
It has over 10,000 fortunes built-in, keeps track of all fortunes that have been displayed so they arent repeated prematurely, a history with back and forward, bookmarks with a bookmark editor, a fortune weight function to make some categories more likely to appear than others, and a search to find specific fortunes.
Main features:
- Over 10000 fortunes built-in
- Keeps track of which fortunes have been displayed so you dont see any again
- Unlimited history of displayed fortunes
- Built-in bookmarks and bookmark editor
- Loading and saving BSD fortune files
- Fortune weight function to make categories more likely to appear
- Find function to find specific fortunes
<<lessPyFortune is a BSD fortune-compatible GUI fortune program.
It has over 10,000 fortunes built-in, keeps track of all fortunes that have been displayed so they arent repeated prematurely, a history with back and forward, bookmarks with a bookmark editor, a fortune weight function to make some categories more likely to appear than others, and a search to find specific fortunes.
Main features:
- Over 10000 fortunes built-in
- Keeps track of which fortunes have been displayed so you dont see any again
- Unlimited history of displayed fortunes
- Built-in bookmarks and bookmark editor
- Loading and saving BSD fortune files
- Fortune weight function to make categories more likely to appear
- Find function to find specific fortunes
Download (1.1MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1045 downloads
Algorithm::SocialNetwork 0.07
Algorithm::SocialNetwork is a social network analysis. more>>
Algorithm::SocialNetwork is a social network analysis.
SYNOPSIS
use Graph::Undirected;
use Algorithm::SocialNetwork;
my $G = Graph::Undirected->new();
$G->add_edges([qw(a b)], [qw(b c)]);
my $algo = Algorithm::SocialNetwork->new(graph => $G3);
my $BC = $algo->BetweenessCentrality();
# $BC->{a} is 0
# $BC->{b} is 2
# $BC->{c} is 0
METHODS
So far this module implement the algorithm provided in [1]. More handy algorithm would be included in the future.
This module is a Spiffy module, methods provided as "field" are marked.
new([graph => $G])
Object constructor, an optional graph parameter could be passed in to specify the network graph to be analyzed.
graph([$G]) [Spiffy field]
Without arguments, this method return the current Graph object.
BetweenessCentrality([$vertex])
The implementation of algorithm provided in [1], if an optional parameter $vertex is given, return the BetwenessCentrality value of that vertex, otherwise, return all vertices BetweenessCentrality value, stored in a hash, which hash node name as keys.
ClusteringCoefficient($vertex)
Return the clustering coefficient of a given vertex.
WeightedClusteringCoefficient($vertex)
Return the weighted clustering coefficient of a given vertex. The graph object passed in should have weight attribute set on edges. Weights are default to 1 if its not set.
DistanceCentrality($vertex)
Return the distance centrality of a given vertex.
ClosenessCentrality($vertex)
An alias of DistanceCentrality().
GraphCentrality($vertex)
Return the graph centrality of a given vertex.
edges(@vertices)
Return a list of edges that connets any two of @vertices.
<<lessSYNOPSIS
use Graph::Undirected;
use Algorithm::SocialNetwork;
my $G = Graph::Undirected->new();
$G->add_edges([qw(a b)], [qw(b c)]);
my $algo = Algorithm::SocialNetwork->new(graph => $G3);
my $BC = $algo->BetweenessCentrality();
# $BC->{a} is 0
# $BC->{b} is 2
# $BC->{c} is 0
METHODS
So far this module implement the algorithm provided in [1]. More handy algorithm would be included in the future.
This module is a Spiffy module, methods provided as "field" are marked.
new([graph => $G])
Object constructor, an optional graph parameter could be passed in to specify the network graph to be analyzed.
graph([$G]) [Spiffy field]
Without arguments, this method return the current Graph object.
BetweenessCentrality([$vertex])
The implementation of algorithm provided in [1], if an optional parameter $vertex is given, return the BetwenessCentrality value of that vertex, otherwise, return all vertices BetweenessCentrality value, stored in a hash, which hash node name as keys.
ClusteringCoefficient($vertex)
Return the clustering coefficient of a given vertex.
WeightedClusteringCoefficient($vertex)
Return the weighted clustering coefficient of a given vertex. The graph object passed in should have weight attribute set on edges. Weights are default to 1 if its not set.
DistanceCentrality($vertex)
Return the distance centrality of a given vertex.
ClosenessCentrality($vertex)
An alias of DistanceCentrality().
GraphCentrality($vertex)
Return the graph centrality of a given vertex.
edges(@vertices)
Return a list of edges that connets any two of @vertices.
Download (0.009MB)
Added: 2007-08-16 License: Perl Artistic License Price:
801 downloads
Tree::Simple::View::HTML 0.16
Tree::Simple::View::HTML is a Perl class for viewing Tree::Simple hierarchies in HTML. more>>
Tree::Simple::View::HTML is a Perl class for viewing Tree::Simple hierarchies in HTML.
SYNOPSIS
use Tree::Simple::View::HTML;
## a simple example
# use the defaults (an unordered list with no CSS)
my $tree_view = Tree::Simple::View::HTML->new($tree);
## more complex examples
# use the CSS properties
my $tree_view = Tree::Simple::View::HTML->new($tree => (
list_type => "ordered",
list_css => "list-style: circle;",
list_item_css => "font-family: courier;",
expanded_item_css => "font-family: courier; font-weight: bold",
));
# use the CSS classes
my $tree_view = Tree::Simple::View::HTML->new($tree => (
list_css_class => "myListClass",
list_item_css_class => "myListItemClass",
expanded_item_css_class => "myExpandedListItemClass",
));
# mix the CSS properties and CSS classes
my $tree_view = Tree::Simple::View::HTML->new($tree => (
list_css => "list-style: circle;",
list_item_css => "font-family: courier;",
expanded_item_css_class => "myExpandedListItemClass",
node_formatter => sub {
my ($tree) = @_;
return "" . $tree->getNodeValue()->description() . "";
}
));
# print out the tree fully expanded
print $tree_view->expandAll();
# print out the tree expanded along a given path (see below for details)
print $tree_view->expandPath("Root", "Child", "GrandChild");
<<lessSYNOPSIS
use Tree::Simple::View::HTML;
## a simple example
# use the defaults (an unordered list with no CSS)
my $tree_view = Tree::Simple::View::HTML->new($tree);
## more complex examples
# use the CSS properties
my $tree_view = Tree::Simple::View::HTML->new($tree => (
list_type => "ordered",
list_css => "list-style: circle;",
list_item_css => "font-family: courier;",
expanded_item_css => "font-family: courier; font-weight: bold",
));
# use the CSS classes
my $tree_view = Tree::Simple::View::HTML->new($tree => (
list_css_class => "myListClass",
list_item_css_class => "myListItemClass",
expanded_item_css_class => "myExpandedListItemClass",
));
# mix the CSS properties and CSS classes
my $tree_view = Tree::Simple::View::HTML->new($tree => (
list_css => "list-style: circle;",
list_item_css => "font-family: courier;",
expanded_item_css_class => "myExpandedListItemClass",
node_formatter => sub {
my ($tree) = @_;
return "" . $tree->getNodeValue()->description() . "";
}
));
# print out the tree fully expanded
print $tree_view->expandAll();
# print out the tree expanded along a given path (see below for details)
print $tree_view->expandPath("Root", "Child", "GrandChild");
Download (0.022MB)
Added: 2007-08-21 License: Perl Artistic License Price:
795 downloads
CLC Free Workbench 4.0
Bioinformatics program for DNA, RNA, and protein sequence analysis more>>
CLC Free Workbench creates a software environment enabling users to make basic bioinformatics analyses and smooth data management, combined with excellent graphical viewing and output options.
Main features:
- GenBank searching and viewing (linear and circular views)
- Multiple alignment of DNA, RNA and proteins (2 alignment algorithms)
- Open reading frame determination
- Translation from DNA to proteins (all genetic translation tables)
- Reports with residue composition, molecular weight and iso electric point (for proteins)
- Neighbor-joining and UPGMA phylogenies
- Restriction site analysis and viewing
- Other reporting facilities
- Import/export to a number of data formats
- Launch of external files
- Detailed History Log
<<lessMain features:
- GenBank searching and viewing (linear and circular views)
- Multiple alignment of DNA, RNA and proteins (2 alignment algorithms)
- Open reading frame determination
- Translation from DNA to proteins (all genetic translation tables)
- Reports with residue composition, molecular weight and iso electric point (for proteins)
- Neighbor-joining and UPGMA phylogenies
- Restriction site analysis and viewing
- Other reporting facilities
- Import/export to a number of data formats
- Launch of external files
- Detailed History Log
Download (45.1MB)
Added: 2007-06-28 License: Freeware Price:
849 downloads
Calorie Burning Calculator 2.1
Calorie Burning Calculator can calculate how many calories they require a day to maintain their body weight. more>>
Calorie Burning Calculator project is a free, nicely-formatted online calculator to help your web site visitors calculate how many calories they require a day to maintain their body weight, or basal metabolic rate (BMR).
Main features:
- Calorie Burning Calculator is easy to install, just unzip, upload and youre done!
- Simple interface makes it easy for visitors to use the calculator, and will encourage them to come back to use it again and again!
- Adjust the Calorie Burning Calculator to fit the look and feel of your own site.
- A great way to add some extra content to your health related web site.
- Calorie Burning Calculator is completely free!
<<lessMain features:
- Calorie Burning Calculator is easy to install, just unzip, upload and youre done!
- Simple interface makes it easy for visitors to use the calculator, and will encourage them to come back to use it again and again!
- Adjust the Calorie Burning Calculator to fit the look and feel of your own site.
- A great way to add some extra content to your health related web site.
- Calorie Burning Calculator is completely free!
Download (0.025MB)
Added: 2006-03-17 License: Freeware Price:
1317 downloads
MUTE File Sharing 0.5.1
MUTE File Sharing is a peer-to-peer network that provides easy search-and-download functionality. more>>
MUTE File Sharing is a peer-to-peer network that provides easy search-and-download functionality while also protecting your privacy.
It compiles as a fast, native application for many platforms (no Java, no Python, etc.).
MUTE protects your privacy by avoiding direct connections with your sharing partners in the network. Most other file sharing programs use direct connections to download or upload, making your identity available to spies from the RIAA and other unscrupulous organizations.
MUTE is based on research, and experiments show that it works quite well. MUTEs ant-inspired routing is light-weight, robust, and adaptive. Results from experiments in real MUTE networks show that the collective behavior of MUTE nodes quickly finds the shortest (or fastest) routing path between two nodes on the network.
Enhancements:
- This release fixes bugs in MUTEs initial connection to the network upon startup.
- MUTE has also been upgraded to Crypto++ 5.4, so it should now compile using GCC 4.1.
<<lessIt compiles as a fast, native application for many platforms (no Java, no Python, etc.).
MUTE protects your privacy by avoiding direct connections with your sharing partners in the network. Most other file sharing programs use direct connections to download or upload, making your identity available to spies from the RIAA and other unscrupulous organizations.
MUTE is based on research, and experiments show that it works quite well. MUTEs ant-inspired routing is light-weight, robust, and adaptive. Results from experiments in real MUTE networks show that the collective behavior of MUTE nodes quickly finds the shortest (or fastest) routing path between two nodes on the network.
Enhancements:
- This release fixes bugs in MUTEs initial connection to the network upon startup.
- MUTE has also been upgraded to Crypto++ 5.4, so it should now compile using GCC 4.1.
Download (0.70MB)
Added: 2007-04-23 License: GPL (GNU General Public License) Price:
921 downloads
Perl Panel 0.9.1
Perl Panel is an X11 panel program written in Perl. more>>
PerlPanel is an attempt to build a useable, lean panel program (like the Gnome Panel or the KDE Kicker) in Perl, using the Gtk2-Perl libraries.
PerlPanel is the ideal accompaniment to a light-weight Window Manager such as OpenBox, or a desktop-drawing program like iDesk. Click here to see all three working together.
Most of PerlPanels features are provided by applets - simple widgets that each do a different job. PerlPanel currently ships with 36 different applets.
<<lessPerlPanel is the ideal accompaniment to a light-weight Window Manager such as OpenBox, or a desktop-drawing program like iDesk. Click here to see all three working together.
Most of PerlPanels features are provided by applets - simple widgets that each do a different job. PerlPanel currently ships with 36 different applets.
Download (0.34MB)
Added: 2005-04-27 License: GPL (GNU General Public License) Price:
1646 downloads
Weight Loss Recipe Book 3.1
Weight Loss Recipe Book is a free, online, community-built recipe book. more>>
Weight Loss Recipe Book is a free, online, community-built recipe book. Weight Loss Recipe Book contains everything you need to allow your web site visitors to submit recipes and everything your administrator needs to administer the recipes.
When a visitor submits a recipe, the recipe is added to a database and awaits approval from the administrator before being added to the public site.
Main features:
- Community built, meaning you just have to approve entries and watch your web site expand!
- Captcha validation to prevent automated entries into the recipe book.
- Complete administrator system - add administrators, recipe categories, manage recipes and more!
- Best of all, Weight Loss Recipe Book is totally free!
<<lessWhen a visitor submits a recipe, the recipe is added to a database and awaits approval from the administrator before being added to the public site.
Main features:
- Community built, meaning you just have to approve entries and watch your web site expand!
- Captcha validation to prevent automated entries into the recipe book.
- Complete administrator system - add administrators, recipe categories, manage recipes and more!
- Best of all, Weight Loss Recipe Book is totally free!
Download (0.061MB)
Added: 2006-05-08 License: Freeware Price:
1267 downloads
Kate OS 3.2
Kate OS is an independently developed light-weight Linux distribution. Some of its concepts were derived from Slackware Linux. more>>
Kate OS is an independently developed light-weight Linux distribution. Some of its concepts were derived from Slackware Linux.
Enhancements:
- Kate OS 3.2 is the third edition of the III series. It brings, as usual, many fixes, updates, and novelties the community has been waiting for. It includes a new graphical package management tool, KatePKG, which allows for easy and intuitive installation, removal, and updating of packages. KatePKG can handle any number of repositories, including user-created ones on the local drive. KatePKG was written in PHP using the PHP-GTK2 library. Kate OS 3.2 uses glibc library 2.5 which ensures binary compatibility with future editions. It also includes the Xfce environment version 4.4RC2, GNOME 2.16.2, KDE 3.5.5, OpenOffice.org 2.0.4, Firefox 2.0, and many other current applications.
<<lessEnhancements:
- Kate OS 3.2 is the third edition of the III series. It brings, as usual, many fixes, updates, and novelties the community has been waiting for. It includes a new graphical package management tool, KatePKG, which allows for easy and intuitive installation, removal, and updating of packages. KatePKG can handle any number of repositories, including user-created ones on the local drive. KatePKG was written in PHP using the PHP-GTK2 library. Kate OS 3.2 uses glibc library 2.5 which ensures binary compatibility with future editions. It also includes the Xfce environment version 4.4RC2, GNOME 2.16.2, KDE 3.5.5, OpenOffice.org 2.0.4, Firefox 2.0, and many other current applications.
Download (697MB)
Added: 2006-12-22 License: GPL (GNU General Public License) Price:
1063 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above 1.3 ounce asian weight 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