nerolinux 2.0.0.0 6
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1620
JSlife 2.0.0.0
JSlife project is a Javascript/DHTML implementation of Conways classic game of life. more>>
NOTE: It isnt really a game and bears no resemblance to the popular board game of the same name.
Life plays out on a grid of squares where each cell is born, lives and dies according to the number of neighbors it has. A cells "neighbors" are the eight squares immediately adjacent to it. If a dead cell is surrounded by exactly three living neighbors, it is "born" and is considered "living" at the start of the next turn. If a living cell has two or three living neighbors, it remains "alive" at the start of the next turn. If a living cell has any other number of living neighbors, it "dies" and is considered "dead" at the start of the next turn.
Some implementations extend this idea by giving the cells ages, so they will not die immediately if abandoned or overcrowded. This implementation does not do this -- cells are bits; alive or dead. Living cells are gray, dead cells are white.
In this implementation, clicking a cell at any time will reverse its state (living cells become dead and vice-versa). The action can be started by clicking "Start" and will run until the number of remaining iterations reaches 0. An "iteration" calculates a number of rounds and updates the display to show the results. The most interactive way to run the simulation is to perform one round per iteration (the default) so the screen will update constantly. Because updating the screen is slow, more rounds can be performed between updates by increasing the number of rounds per iteration.
There are several counters shown on the screen to display some performance data if youre interested in how fast your browser runs Javascript.
Note that if your screen does not update after every iteration, try setting the delay to a number greater than 0. The grid size can be increased by editing the top of the source file.
<<lessLife plays out on a grid of squares where each cell is born, lives and dies according to the number of neighbors it has. A cells "neighbors" are the eight squares immediately adjacent to it. If a dead cell is surrounded by exactly three living neighbors, it is "born" and is considered "living" at the start of the next turn. If a living cell has two or three living neighbors, it remains "alive" at the start of the next turn. If a living cell has any other number of living neighbors, it "dies" and is considered "dead" at the start of the next turn.
Some implementations extend this idea by giving the cells ages, so they will not die immediately if abandoned or overcrowded. This implementation does not do this -- cells are bits; alive or dead. Living cells are gray, dead cells are white.
In this implementation, clicking a cell at any time will reverse its state (living cells become dead and vice-versa). The action can be started by clicking "Start" and will run until the number of remaining iterations reaches 0. An "iteration" calculates a number of rounds and updates the display to show the results. The most interactive way to run the simulation is to perform one round per iteration (the default) so the screen will update constantly. Because updating the screen is slow, more rounds can be performed between updates by increasing the number of rounds per iteration.
There are several counters shown on the screen to display some performance data if youre interested in how fast your browser runs Javascript.
Note that if your screen does not update after every iteration, try setting the delay to a number greater than 0. The grid size can be increased by editing the top of the source file.
Download (MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
960 downloads
Neutronium 0.6
Neutronium provides a darker Mac-lookalike theme. more>>
Neutronium provides a darker Mac-lookalike theme.
Neutronium is a darker Mac-lookalike theme. It contains themes for Metacity, Cgwd/Emerald and GTK2.
The GTK2 theme is split in two versions.
Neutronium-High has higher contrast, white text. Neutronium-Low has lower contrast, light grey text.
The Cgwd theme is split in four versions. Two of them have 7px borders and the other two 2px borders. There is also the choice between sharp or rounded corners. If you use Emerald/Beryl, rename the files to .emerald and import.
The same applies to Metacity themes. Download the tarball, extract it and import the parts in Gnome Theme Manager.
Firefox web form color fix and icon fix for Open Office are provided in /Neutronium-Theme-Pack/Neutronium-GTK2/instructions.txt
Enhancements:
- Thanks to quimchin, colors in Firefox can now be fixed. There is no longer need for a separate Firefox theme.
- Fixed the Nautilus separator issue and added instructions for fixing Open Office 2. (big thanks to zammi)
- There were some problems with the server this theme was hosted on. Gnome-look only offers to host one file per theme page, and I didnt want to split the parts on diffrent pages. Now all parts (Metacity, Cgwd and GTK2) are in one tarball.
- Some minor pixmap changes in the GTK2 themes. 2px borders added to Cgwd and Metacity themes.
<<lessNeutronium is a darker Mac-lookalike theme. It contains themes for Metacity, Cgwd/Emerald and GTK2.
The GTK2 theme is split in two versions.
Neutronium-High has higher contrast, white text. Neutronium-Low has lower contrast, light grey text.
The Cgwd theme is split in four versions. Two of them have 7px borders and the other two 2px borders. There is also the choice between sharp or rounded corners. If you use Emerald/Beryl, rename the files to .emerald and import.
The same applies to Metacity themes. Download the tarball, extract it and import the parts in Gnome Theme Manager.
Firefox web form color fix and icon fix for Open Office are provided in /Neutronium-Theme-Pack/Neutronium-GTK2/instructions.txt
Enhancements:
- Thanks to quimchin, colors in Firefox can now be fixed. There is no longer need for a separate Firefox theme.
- Fixed the Nautilus separator issue and added instructions for fixing Open Office 2. (big thanks to zammi)
- There were some problems with the server this theme was hosted on. Gnome-look only offers to host one file per theme page, and I didnt want to split the parts on diffrent pages. Now all parts (Metacity, Cgwd and GTK2) are in one tarball.
- Some minor pixmap changes in the GTK2 themes. 2px borders added to Cgwd and Metacity themes.
Download (MB)
Added: 2007-03-02 License: Freeware Price:
983 downloads
JSothello 2.0.0.0
JSothello is a Javascript/DHTML implementation of the board game Othello, also called Reversi. more>>
JSothello is a Javascript/DHTML implementation of the board game "Othello", also called "Reversi". Runs in the browser with four challenging computer intelligence levels. Play human versus computer, human versus human or computer versus computer.
JSothello is a Javascript/DHTML implementation of the board game "Othello", also called "Reversi".
Othello is very easy to play. The board is a square grid of any size. The two players pieces are black or white. Each player must place a piece on the board adjacent to one of his opponents pieces so that another of his own pieces is on the other side of his opponents piece(s). In other words, the opponents piece(s) should be "sandwiched" between the players pieces. When that occurs, all such "sandwiched" pieces are changed to the players color.
The game ends when one player cannot make a legal move. The winner is the player with the most pieces on the board.
This version allows the user to play the computer, another human or watch the computer play itself. The computer players have four levels of "intelligence", each with different styles of play:
- "Only took a minute to learn": The computer chooses random (legal) moves.
- "Laughable": The computer picks (one of) the move(s) that will flip the most pieces.
- "Respectable": Plays like "Laughable" but tries to grab the edges and the corners whenever possible while keeping its opponent from being able to grab the edges and corners.
- "Took a lifetime to master": Plays like "Respectable" but adjusts its edge/corner bias as the board fills up, favors moves that flip pieces in more than one direction, tries to prevent moves that will allow the opponent to immediately reverse its gain and places pieces closer to the corners when possible.
<<lessJSothello is a Javascript/DHTML implementation of the board game "Othello", also called "Reversi".
Othello is very easy to play. The board is a square grid of any size. The two players pieces are black or white. Each player must place a piece on the board adjacent to one of his opponents pieces so that another of his own pieces is on the other side of his opponents piece(s). In other words, the opponents piece(s) should be "sandwiched" between the players pieces. When that occurs, all such "sandwiched" pieces are changed to the players color.
The game ends when one player cannot make a legal move. The winner is the player with the most pieces on the board.
This version allows the user to play the computer, another human or watch the computer play itself. The computer players have four levels of "intelligence", each with different styles of play:
- "Only took a minute to learn": The computer chooses random (legal) moves.
- "Laughable": The computer picks (one of) the move(s) that will flip the most pieces.
- "Respectable": Plays like "Laughable" but tries to grab the edges and the corners whenever possible while keeping its opponent from being able to grab the edges and corners.
- "Took a lifetime to master": Plays like "Respectable" but adjusts its edge/corner bias as the board fills up, favors moves that flip pieces in more than one direction, tries to prevent moves that will allow the opponent to immediately reverse its gain and places pieces closer to the corners when possible.
Download (MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
959 downloads
nzbperl 0.6.6
nzbperl is a newsreader utility that can process an nzb file, autodecode, and do bandwidth throttling. more>>
nzbperl is a newsreader utility that can process an nzb file, autodecode, and do bandwidth throttling.
Run Linux (or OSX or Windows)? Need a multi-connection newsreader utility that can process an nzb file and autodecode and even do bandwidth throttling? Youve come to the right place.
I looked around for something that I could use for nzb files on my Linux setup, and I soon discovered limited options. There are progs out there that will download nzb files (nzbget and knzb are apparently the most visible ones), but none seemed to have a key feature that I put importance on: bandwidth throttling. So, like many other one-off hacks and open source projects, this little toy was built to scratch an itch.
Main features:
- Automated parsing and sorting of nzb files
- Supports multiple server connections
- Automated parts downloading, assembling, and decoding
- Decodes uuencoded and yenc encoded files (via uudeview)
- User controllable bandwidth throttling (even change speeds during runtime)
- Nice colored text display with progress information
- News server authentication (optional)
- Perl script requires no compilation.
- Few dependencies
- Small footprint (about a 57kB download)
<<lessRun Linux (or OSX or Windows)? Need a multi-connection newsreader utility that can process an nzb file and autodecode and even do bandwidth throttling? Youve come to the right place.
I looked around for something that I could use for nzb files on my Linux setup, and I soon discovered limited options. There are progs out there that will download nzb files (nzbget and knzb are apparently the most visible ones), but none seemed to have a key feature that I put importance on: bandwidth throttling. So, like many other one-off hacks and open source projects, this little toy was built to scratch an itch.
Main features:
- Automated parsing and sorting of nzb files
- Supports multiple server connections
- Automated parts downloading, assembling, and decoding
- Decodes uuencoded and yenc encoded files (via uudeview)
- User controllable bandwidth throttling (even change speeds during runtime)
- Nice colored text display with progress information
- News server authentication (optional)
- Perl script requires no compilation.
- Few dependencies
- Small footprint (about a 57kB download)
Download (0.070MB)
Added: 2005-09-28 License: GPL (GNU General Public License) Price:
1488 downloads
Hardened Linux 1.6.6-2
Hardened Linux is a hardened distribution based on a minimalized Slackware Linux 11.0. more>>
Hardened Linux is a hardened distribution based on a minimalized Slackware Linux 11.0.
This distribution is still under heavy development.
Hardened Linux (a.k.a. "Wendzel Linux") is a security distribution with 3 main targets:
- maximum security
- maximum stability
- maximum usuability
It is optimized to run on as firewall system, vpn gateway, IDS system and authentication system. Currently not all of these features are fully implemented.
Enhancements:
- This just an updated version of the 1.6.6-snapshot release. This release includes our current packages (gcc-4.2, glibc-2.5, kernel 2.6.21.3 and different other package updates). Nothing else has changed. We released this new version because it will still take a few weeks (if not months) before we can release the next snapshot version that includes a completely new package system and a completely new installer system. Please report any kind of bugs.
<<lessThis distribution is still under heavy development.
Hardened Linux (a.k.a. "Wendzel Linux") is a security distribution with 3 main targets:
- maximum security
- maximum stability
- maximum usuability
It is optimized to run on as firewall system, vpn gateway, IDS system and authentication system. Currently not all of these features are fully implemented.
Enhancements:
- This just an updated version of the 1.6.6-snapshot release. This release includes our current packages (gcc-4.2, glibc-2.5, kernel 2.6.21.3 and different other package updates). Nothing else has changed. We released this new version because it will still take a few weeks (if not months) before we can release the next snapshot version that includes a completely new package system and a completely new installer system. Please report any kind of bugs.
Download (195MB)
Added: 2007-07-07 License: GPL (GNU General Public License) Price:
839 downloads
eLearniX 2.6.6
eLearniX is a bootable CD desktop environment to help people learn and use Linux. more>>
eLearniX project is a bootable CD desktop environment to help people learn and use Linux.
It features the latest 2.6 Linux kernel, GNOME 2.4, lots of applications, and an install script to install to a dedicated hard drive or a 256MB+ Compact Flash card.
<<lessIt features the latest 2.6 Linux kernel, GNOME 2.4, lots of applications, and an install script to install to a dedicated hard drive or a 256MB+ Compact Flash card.
Download (268MB)
Added: 2006-01-14 License: GPL (GNU General Public License) Price:
1382 downloads
OnTV 2.6.0
OnTV is a GNOME Applet for monitoring current and upcoming TV programs. more>>
OnTV project is a GNOME Applet that can monitor current and upcoming TV programs.
OnTV is a GNOME Applet written in Python using PyGTK, it uses XMLTV files to monitor current and upcoming TV programs.
Main features:
- Program descriptions as tooltips.
- Remaining time of/until current/upcoming programs.
- Preferences dialog for selecting what channels to monitor and more.
<<lessOnTV is a GNOME Applet written in Python using PyGTK, it uses XMLTV files to monitor current and upcoming TV programs.
Main features:
- Program descriptions as tooltips.
- Remaining time of/until current/upcoming programs.
- Preferences dialog for selecting what channels to monitor and more.
Download (0.50MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
969 downloads
OpenKiosk 2.0.6
OpenKiosk is a multi-platform kiosk management software. more>>
OpenKiosk is an open-source multi-platform kiosk system designed for use in libraries, offices, schools, internet cafes, airports, conference rooms, and more!
Openkiosk aims to be one of the best kiosk software available in the open-souce community. The following prototype screenshots of the OpenKiosk client reflects its evolution towards the goal of acheiving simplicity and elegance in kiosk terminals.
OpenKiosk, is a system made up of a collection of programs that work together in a local network of inter-connected computers. It is a centralized management software for kiosks. It assumes that the resources are shared and centralized as well, including the Internet connection. This implies that the shared Internet connection to the outside world is assumed to be always on at some point within the local network, perhaps a NAT server. It is up to the client program to automatically limit customers individually from accessing the Internet.
When a customer walks in and uses a kiosk or a workstation, the client program obtains his/her login/user account information. It then sends this login information to the server, which in turn, verifies this data and if valid, returns the access rights and duration of use for the customer back to the client program.
The client program at this point, handles the restrictions transparently including preventing running new programs and making it appear that the Internet connection is down if the time limit is reached or if the administrator manually stopped a customer from continuing to use a kiosk/workstation.
OpenKiosk is primarily designed with the multi-user network in mind. From a library containing 20 public browsing terminals to a large internet cafe or convention center containing hundreds to thousands of kiosks or workstations, OpenKiosk is built with components that are designed to scale up. It is not meant to be used on a single stand-alone computer
The Openkiosk system is basically composed of two parts. The first program is called NodeView. It acts as the OpenKiosk central server containing the client information database. It is responsible for administering all the clients on the network either automatically or manually. Monitoring and controlling the workstations can be done locally via the graphical user interfaces or remotely from a Java Applet in a browser.
The second part is simply called "The Client". It is the actual program that sits between the customer and the operating system interface on the workstations. It is the software which physically limits the users access to the Internet, network resources, the local programs on the workstation itself.
For automatic usage, it can take in membership card login. It is also possible to interface to much more advanced hardware readers such as smart card readers. The client is also capable of simple but important tasks such as remote shutdown, instant messaging, file updates and much more.
Presently, there are two versions of clients. The X11 Linux/Unix version, which is an applet that sits on top of the KDE panel (requires at least KDE 3.X) and the Windows version (Windows 95,98,NT,2000,XP).
<<lessOpenkiosk aims to be one of the best kiosk software available in the open-souce community. The following prototype screenshots of the OpenKiosk client reflects its evolution towards the goal of acheiving simplicity and elegance in kiosk terminals.
OpenKiosk, is a system made up of a collection of programs that work together in a local network of inter-connected computers. It is a centralized management software for kiosks. It assumes that the resources are shared and centralized as well, including the Internet connection. This implies that the shared Internet connection to the outside world is assumed to be always on at some point within the local network, perhaps a NAT server. It is up to the client program to automatically limit customers individually from accessing the Internet.
When a customer walks in and uses a kiosk or a workstation, the client program obtains his/her login/user account information. It then sends this login information to the server, which in turn, verifies this data and if valid, returns the access rights and duration of use for the customer back to the client program.
The client program at this point, handles the restrictions transparently including preventing running new programs and making it appear that the Internet connection is down if the time limit is reached or if the administrator manually stopped a customer from continuing to use a kiosk/workstation.
OpenKiosk is primarily designed with the multi-user network in mind. From a library containing 20 public browsing terminals to a large internet cafe or convention center containing hundreds to thousands of kiosks or workstations, OpenKiosk is built with components that are designed to scale up. It is not meant to be used on a single stand-alone computer
The Openkiosk system is basically composed of two parts. The first program is called NodeView. It acts as the OpenKiosk central server containing the client information database. It is responsible for administering all the clients on the network either automatically or manually. Monitoring and controlling the workstations can be done locally via the graphical user interfaces or remotely from a Java Applet in a browser.
The second part is simply called "The Client". It is the actual program that sits between the customer and the operating system interface on the workstations. It is the software which physically limits the users access to the Internet, network resources, the local programs on the workstation itself.
For automatic usage, it can take in membership card login. It is also possible to interface to much more advanced hardware readers such as smart card readers. The client is also capable of simple but important tasks such as remote shutdown, instant messaging, file updates and much more.
Presently, there are two versions of clients. The X11 Linux/Unix version, which is an applet that sits on top of the KDE panel (requires at least KDE 3.X) and the Windows version (Windows 95,98,NT,2000,XP).
Download (1.1MB)
Added: 2005-08-09 License: GPL (GNU General Public License) Price:
872 downloads
GnomeBaker 0.6.0
GnomeBaker is a Gnome CD/DVD burning application. more>>
GnomeBaker is a GTK2/Gnome CD/DVD burning application. Ive been writing it in my spare time so progress is fairly slow.
Its more of a personal project as I wanted to have a go at developing on Linux and I figured that as I had got this far I may as well let it loose on the world. Maybe someone will like it and use it.
It requires a recent version of cdtools (cdrecord, readcd, cdda2wav and mkisofs), version 2 or greater should be okay.
Main features:
- Create data cds
- Blank rewritable disks
- Copy data cds
- Copy audio cds
- Burn existing cd iso images
- Can burn via scsi and atapi on linux kernels 2.4 and 2.6. Basically if cdrecord works then GnomeBaker will work.
- Drag and drop to create data cds (including DnD to and from nautilus)
- Create audio cds from existing wavs, mp3, flac and oggs
- Integrate with gconf for storage of application settings
- Burn DVDs.
- Supports multisession burning
- Blank/Format DVDs
- Burn Cue/Bin files
- Burn data cds on the fly
<<lessIts more of a personal project as I wanted to have a go at developing on Linux and I figured that as I had got this far I may as well let it loose on the world. Maybe someone will like it and use it.
It requires a recent version of cdtools (cdrecord, readcd, cdda2wav and mkisofs), version 2 or greater should be okay.
Main features:
- Create data cds
- Blank rewritable disks
- Copy data cds
- Copy audio cds
- Burn existing cd iso images
- Can burn via scsi and atapi on linux kernels 2.4 and 2.6. Basically if cdrecord works then GnomeBaker will work.
- Drag and drop to create data cds (including DnD to and from nautilus)
- Create audio cds from existing wavs, mp3, flac and oggs
- Integrate with gconf for storage of application settings
- Burn DVDs.
- Supports multisession burning
- Blank/Format DVDs
- Burn Cue/Bin files
- Burn data cds on the fly
Download (1.1MB)
Added: 2006-09-16 License: GPL (GNU General Public License) Price:
1151 downloads
bonddb 2.2.6
bonddb is a data abstration layer for SQL. more>>
Bonddb is a object oriented wrapper for postgresql SQL. bonddb project is a fast data abstraction layer written in C for C/C++ applications to allow easy access to class objects.
Bonddb is not a stand alone object orientated database, but works on top of SQL so you still get a solid proven backend with the benefits of things like prescient objects.
At the moment only postgresql is supported, though we are working with gnome-db to support a more complete range of databases.
One of the real advantages of bonddb is how easy it is to modify rows in database fields without you having to construct sql statements or worry about refreshing existing datasets. It also lets you easy map your tables together in object to object relationships.
Method calls arent supported yet but they are on the way. Direct binding into individual langauges is still been worked on.
Installation and Requierments:
In order to install bonddb you need the postgresql client development libraries installed, specifically libpq-fe.
Postgresql 7.0 or higher is required, as bonddb uses functions specific to this version. Also glib development libaries 1.2 or higher is needed.
For bonddb 0.3.0 and higher you will need bison, Ive come across some problems under older versions of bison and I recommend you have version 1.3 or higher installed.
Enhancements:
- Bugs concerning saving records and jumpto searches were fixed.
- Problems with using PostgreSQL 8.2 and OIDs were fixed.
- Improvements were made for the build process for Windows.
<<lessBonddb is not a stand alone object orientated database, but works on top of SQL so you still get a solid proven backend with the benefits of things like prescient objects.
At the moment only postgresql is supported, though we are working with gnome-db to support a more complete range of databases.
One of the real advantages of bonddb is how easy it is to modify rows in database fields without you having to construct sql statements or worry about refreshing existing datasets. It also lets you easy map your tables together in object to object relationships.
Method calls arent supported yet but they are on the way. Direct binding into individual langauges is still been worked on.
Installation and Requierments:
In order to install bonddb you need the postgresql client development libraries installed, specifically libpq-fe.
Postgresql 7.0 or higher is required, as bonddb uses functions specific to this version. Also glib development libaries 1.2 or higher is needed.
For bonddb 0.3.0 and higher you will need bison, Ive come across some problems under older versions of bison and I recommend you have version 1.3 or higher installed.
Enhancements:
- Bugs concerning saving records and jumpto searches were fixed.
- Problems with using PostgreSQL 8.2 and OIDs were fixed.
- Improvements were made for the build process for Windows.
Download (0.72MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
953 downloads
KXNeur 0.6.2
KXNeur is a X Neural Switcher front-end for KDE. more>>
KXNeur is a X Neural Switcher front-end for KDE. Its a program like Punto Switcher, but has other functionally and features.
Last version can get from svn:
svn://xneur.ru:3690/xneur/xneur and svn://xneur.ru:3690/xneur/kxneur
PS XNeur homepage ( http://xneur.ru ) on Russian only
PPS KXNeur not work without XNeur
<<lessLast version can get from svn:
svn://xneur.ru:3690/xneur/xneur and svn://xneur.ru:3690/xneur/kxneur
PS XNeur homepage ( http://xneur.ru ) on Russian only
PPS KXNeur not work without XNeur
Download (0.18MB)
Added: 2007-07-17 License: GPL (GNU General Public License) Price:
830 downloads
Encodings 1.6
Applet to list all supported encodings (character sets) supported by your browser/java. To install, Extract the zip download with Winzip, available from http://www.winzip.com (or similar unzip utility) into any directory you please, often C: -- ticking off the (user folder names) option. To run as an application, type: java -jar C:commindprodencodingsencodings.jar adjusting as necessary to account for where the jar file is. more>>
Encodings - Applet to list all supported encodings (character sets)
supported by your browser/java.
To install, Extract the zip download with Winzip, available
from http://www.winzip.com (or similar unzip utility) into
any directory you please, often C: -- ticking off the (user
folder names) option. To run as an application, type:
java -jar C:commindprodencodingsencodings.jar
adjusting as necessary to account for where the jar file is.
Enhancements:
Version 1.6
System Requirements:<<less
Download (639Kb)
Added: 2007-05-16 License: Free Price: Free
12 downloads
simple_cgi_email 2.0.0.0
simple_cgi_email is a very simple CGI script for sending email from an HTML form. more>>
simple_cgi_email is a very simple CGI script for sending email from an HTML form. Uses LAFmessage internally and runs on both Win32 and Linux (and possibly other Unix-like OSes).
simple_cgi_email is meant to provide a quick-n-dirty way to send email from an HTML form. Its output is fairly unpleasant to look at, certainly not suitable for clients or anyone else who cares about the format of their emails, but its perfect for small feedback forms, contact forms, registration forms, etc.
<<lesssimple_cgi_email is meant to provide a quick-n-dirty way to send email from an HTML form. Its output is fairly unpleasant to look at, certainly not suitable for clients or anyone else who cares about the format of their emails, but its perfect for small feedback forms, contact forms, registration forms, etc.
Download (0.35MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
959 downloads
Dropline Etiquette 0.6.6
Dropline Etiquette is a Gnome icon theme based on Etiquette icons by Andrew Fitzsimon. more>>
Dropline Etiquette is a Gnome icon theme based on Etiquette icons by Andrew Fitzsimon.
<<less Download (1.7MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1438 downloads
KGet 0.8.6
KGet is a download manager for KDE, similar to GetRight. more>>
KGet is a download manager for KDE, similar to GetRight.
It keeps all your downloads in one dialog and you can add and remove transfers. Transfers can be paused, resumed, queued or scheduled. Dialogs display info about status of transfers - progress, size, speed and remaining time.
kdenetwork is a package that contains networking applications for the K Desktop Environment.
The programs part of the "kdenetwork" package:
- kdict: graphical client for the DICT protocol.
- kget: graphical download manager
- kit: AOL instant messenger client, using the TOC protocol
- knewsticker: RDF newsticker applet
- kpf: public fileserver applet
- kppp: dialer and front end for pppd
- ksirc: IRC client
- ktalkd: talk daemon
- kxmlrpc: KDE XmlRpc Daemon
- lanbrowsing: lan browsing kio slave
- krfb: Desktop Sharing server, allow others to access your desktop via VNC
- krdc: a client for Desktop Sharing and other VNC servers
- wifi: Wireless LAN tools
<<lessIt keeps all your downloads in one dialog and you can add and remove transfers. Transfers can be paused, resumed, queued or scheduled. Dialogs display info about status of transfers - progress, size, speed and remaining time.
kdenetwork is a package that contains networking applications for the K Desktop Environment.
The programs part of the "kdenetwork" package:
- kdict: graphical client for the DICT protocol.
- kget: graphical download manager
- kit: AOL instant messenger client, using the TOC protocol
- knewsticker: RDF newsticker applet
- kpf: public fileserver applet
- kppp: dialer and front end for pppd
- ksirc: IRC client
- ktalkd: talk daemon
- kxmlrpc: KDE XmlRpc Daemon
- lanbrowsing: lan browsing kio slave
- krfb: Desktop Sharing server, allow others to access your desktop via VNC
- krdc: a client for Desktop Sharing and other VNC servers
- wifi: Wireless LAN tools
Download (7.2MB)
Added: 2006-10-13 License: GPL (GNU General Public License) Price:
1130 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 nerolinux 2.0.0.0 6 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