12.0
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 29
Sflack 12.0
Sflack Linux is based on Slackware(R) Linux disrtibuition. more>>
Sflack Linux is based on Slackware Linux disrtibuition. Sflack Linux is a UNOFFICIAL port of Slackware to the x86_64 architecture. This means is:
- It runs nicer on an amd64;
- It is *not* called Slackware, or any direct derivative;
Do not bug Patrick Volkerding with bug reports. Sflack is not his responsibility.
Sflack isnt a multi-lib distribution, which means that you cannot run 32-bit applications easily.
The Official Release of Sflack Linux by Vincenzo Ingrosso would want to be an advanced Linux operating system, designed with the twin goals of ease of use and stability as top priorities. Including the latest popular software while retaining a sense of tradition, providing simplicity and ease of use alongside flexibility and power, Sflack brings the best of all worlds to the table.
Originally developed by Linus Torvalds in 1991, the UNIX-like Linux operating system now benefits from the contributions of millions of users and developers around the world. Sflack Linux provides new and experienced users alike with a fully-featured system, equipped to serve in any capacity from desktop workstation to machine-room server. Web, ftp, and email servers are ready to go out of the box, as are a wide selection of popular desktop environments. A full range of development tools, editors, and current libraries is included for users who wish to develop or compile additional software.
Sflack Overview
Sflack Linux is a complete and pure 64-bit multitasking "UNIX-like" system.i Its currently based around the 2.6 Linux kernel series and the GNU C Library version 2.4 (libc6). It contains an easy to use installation program, extensive online documentation, and a menu-driven package system. A full installation gives you the X Window System, C/C++ development environments, Perl, networking utilities, a mail server, a news server, a web server, an ftp server, the GNU Image Manipulation Program, Firefox Web Browser, plus many more programs. Sflack Linux can run on amd64 systems all the way up to the latest x86_64 machines (uses -m64 optimization for best performance on amd64-class machines).
Enhancements:
- This release uses the latest kernel, KDE 3.5.7, XFce 4.4.1, HAL automounting for desktop users, an updated toolchain, and many other enhancements.
<<less- It runs nicer on an amd64;
- It is *not* called Slackware, or any direct derivative;
Do not bug Patrick Volkerding with bug reports. Sflack is not his responsibility.
Sflack isnt a multi-lib distribution, which means that you cannot run 32-bit applications easily.
The Official Release of Sflack Linux by Vincenzo Ingrosso would want to be an advanced Linux operating system, designed with the twin goals of ease of use and stability as top priorities. Including the latest popular software while retaining a sense of tradition, providing simplicity and ease of use alongside flexibility and power, Sflack brings the best of all worlds to the table.
Originally developed by Linus Torvalds in 1991, the UNIX-like Linux operating system now benefits from the contributions of millions of users and developers around the world. Sflack Linux provides new and experienced users alike with a fully-featured system, equipped to serve in any capacity from desktop workstation to machine-room server. Web, ftp, and email servers are ready to go out of the box, as are a wide selection of popular desktop environments. A full range of development tools, editors, and current libraries is included for users who wish to develop or compile additional software.
Sflack Overview
Sflack Linux is a complete and pure 64-bit multitasking "UNIX-like" system.i Its currently based around the 2.6 Linux kernel series and the GNU C Library version 2.4 (libc6). It contains an easy to use installation program, extensive online documentation, and a menu-driven package system. A full installation gives you the X Window System, C/C++ development environments, Perl, networking utilities, a mail server, a news server, a web server, an ftp server, the GNU Image Manipulation Program, Firefox Web Browser, plus many more programs. Sflack Linux can run on amd64 systems all the way up to the latest x86_64 machines (uses -m64 optimization for best performance on amd64-class machines).
Enhancements:
- This release uses the latest kernel, KDE 3.5.7, XFce 4.4.1, HAL automounting for desktop users, an updated toolchain, and many other enhancements.
Download (MB)
Added: 2007-07-05 License: GPL (GNU General Public License) Price:
842 downloads
ipsvd 0.12.0
ipsvd is a set of Internet protocol service daemons for TCP/IP and UDP/IP. more>>
ipsvd project is a set of Internet protocol service daemons for TCP/IP and UDP/IP. A daemon waits for incoming connections on a socket; for new connections, it conditionally runs an arbitrary program to handle the connection.
The daemons can be told to read and follow pre-defined instructions on how to handle incoming connections; based on the clients IP address or hostname, they can run different programs, set a different environment, deny a connection, or set a per host concurrency limit.
On Linux the network connection optionally can be encrypted using SSL3. ipsvd can be used to run services usually run by inetd or tcpserver. Normally the daemons are run by a supervisor process, such as runsv from the runit package, or daemontools supervise.
Enhancements:
- This version introduces a new sslsvd SSLv3 TCP/IP service daemon.
- sslsvd integrates the sslio program into tcpsvd, so that initializing the SSL session and reading the SSL key and certificate no longer need to be done for each incoming connection, but only once on startup of the service daemon.
<<lessThe daemons can be told to read and follow pre-defined instructions on how to handle incoming connections; based on the clients IP address or hostname, they can run different programs, set a different environment, deny a connection, or set a per host concurrency limit.
On Linux the network connection optionally can be encrypted using SSL3. ipsvd can be used to run services usually run by inetd or tcpserver. Normally the daemons are run by a supervisor process, such as runsv from the runit package, or daemontools supervise.
Enhancements:
- This version introduces a new sslsvd SSLv3 TCP/IP service daemon.
- sslsvd integrates the sslio program into tcpsvd, so that initializing the SSL session and reading the SSL key and certificate no longer need to be done for each incoming connection, but only once on startup of the service daemon.
Download (0.072MB)
Added: 2006-02-04 License: BSD License Price:
1357 downloads
Rats! 1.12.0
Rats! is an easily extensible parser generator for C-like languages. more>>
Rats! is an easily extensible parser generator for C-like languages; though currently it only generates parsers in Java. Rats! project has been explicitly designed so that grammars are concise and easily modifiable. To this end, Rats!
- organizes grammars into modules,
- builds on parsing expression grammars instead of context-free grammars and vintegrates lexing with parsing, i.e., is scannerless,
- supports the automatic generation of abstract syntax trees,
- and provides a well-defined interface for extending parsers to recognize context-sensitive languages and formats.
Parsers generated by Rats! memoize intermediate results, which ensures linear time performance in the presence of unlimited lookahead and backtracking. As a result, they are essentially functional (even though they are implemented in an imperative language) and also called "packrat parsers."
Main features:
- Rats! relies on a module system to structure grammars and their extensions. In particular, it relies on modules to group related productions into separate units. Next, module modifications concisely express extensions to other modules and can add, change, or remove individual alternatives in productions. Finally, module parameters are used to compose modules and their extensions with each other.
- Rats! grammars build on parsing expression grammars (PEGs). While PEGs share many constructs with the familiar EBNF notation, a key difference is that they utilize ordered choices instead of the unordered choices used by context-free grammars (CFGs) and other parser generators, such as Yacc or ANTLR. As a result, Rats! grammars avoid ambiguities and support localized changes. Additional flexibility is offered through syntactic predicates, which match expressions but do not consume the input, thus providing unlimited lookahead, and through the integration of lexing with parsing, which greatly simplifies the addition of new tokens to a grammar. PEGs have the additional benefit that they are not only closed under composition (unlike the LR or LL grammars used by Yacc and ANTLR), but also intersection and complement (unlike CFGs in general).
- To eliminate the need for explicit semantic actions, Rats! can automatically generate abstract syntax trees. In particular, it supports productions that return no semantic values (such as those recognizing spaces or comments), string values (such as those recognizing literals or identifiers), and generic tree nodes (potentially all other productions).
- Since some computer-readable formats are inherently context-sensitive and cannot be expressed as PEGs (or CFGs), Rats! supports two techniques for managing parser context or state, thus providing a well-defined interface for extending parsers. First, Rats! provides parser actions to recognize expressions that depend on local context, i.e., expressions that depend on immediately preceding expressions within the same production. An example for such local context is an explicit length preceding as many instances of some expression. Second, Rats! supports a global state object to recognize expressions that depend on possibly global context. State modifications are performed within lightweight transactions, which preserve the basically functional nature of Rats!-generated parsers. An example for a global context is the symbol table used for disambiguating variable and typedef names when parsing C.
Enhancements:
- Release highlights are support for formatting-preserving source refactorings through parse trees, support for parsing and pretty printing Java 5, (an improved abstract syntax tree for Java, and improved support for type checking C and Java ASTs.
<<less- organizes grammars into modules,
- builds on parsing expression grammars instead of context-free grammars and vintegrates lexing with parsing, i.e., is scannerless,
- supports the automatic generation of abstract syntax trees,
- and provides a well-defined interface for extending parsers to recognize context-sensitive languages and formats.
Parsers generated by Rats! memoize intermediate results, which ensures linear time performance in the presence of unlimited lookahead and backtracking. As a result, they are essentially functional (even though they are implemented in an imperative language) and also called "packrat parsers."
Main features:
- Rats! relies on a module system to structure grammars and their extensions. In particular, it relies on modules to group related productions into separate units. Next, module modifications concisely express extensions to other modules and can add, change, or remove individual alternatives in productions. Finally, module parameters are used to compose modules and their extensions with each other.
- Rats! grammars build on parsing expression grammars (PEGs). While PEGs share many constructs with the familiar EBNF notation, a key difference is that they utilize ordered choices instead of the unordered choices used by context-free grammars (CFGs) and other parser generators, such as Yacc or ANTLR. As a result, Rats! grammars avoid ambiguities and support localized changes. Additional flexibility is offered through syntactic predicates, which match expressions but do not consume the input, thus providing unlimited lookahead, and through the integration of lexing with parsing, which greatly simplifies the addition of new tokens to a grammar. PEGs have the additional benefit that they are not only closed under composition (unlike the LR or LL grammars used by Yacc and ANTLR), but also intersection and complement (unlike CFGs in general).
- To eliminate the need for explicit semantic actions, Rats! can automatically generate abstract syntax trees. In particular, it supports productions that return no semantic values (such as those recognizing spaces or comments), string values (such as those recognizing literals or identifiers), and generic tree nodes (potentially all other productions).
- Since some computer-readable formats are inherently context-sensitive and cannot be expressed as PEGs (or CFGs), Rats! supports two techniques for managing parser context or state, thus providing a well-defined interface for extending parsers. First, Rats! provides parser actions to recognize expressions that depend on local context, i.e., expressions that depend on immediately preceding expressions within the same production. An example for such local context is an explicit length preceding as many instances of some expression. Second, Rats! supports a global state object to recognize expressions that depend on possibly global context. State modifications are performed within lightweight transactions, which preserve the basically functional nature of Rats!-generated parsers. An example for a global context is the symbol table used for disambiguating variable and typedef names when parsing C.
Enhancements:
- Release highlights are support for formatting-preserving source refactorings through parse trees, support for parsing and pretty printing Java 5, (an improved abstract syntax tree for Java, and improved support for type checking C and Java ASTs.
Download (0.83MB)
Added: 2007-07-19 License: LGPL (GNU Lesser General Public License) Price:
830 downloads
Download (MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
531 downloads
Informium 0.12.0
Informium provides a lightweight, fully-featured news script. more>>
Informium provides a lightweight, fully-featured news script.
Informium is an advanced news script intended for use within a Web site.
It was programmed in PHP 4 and uses a MySQL backend for its database.
Among its many features is its ability to add, edit, or delete articles, comments, and users.
<<lessInformium is an advanced news script intended for use within a Web site.
It was programmed in PHP 4 and uses a MySQL backend for its database.
Among its many features is its ability to add, edit, or delete articles, comments, and users.
Download (MB)
Added: 2007-03-07 License: BSD License Price:
963 downloads

FlashQard 0.12.0
flashqard is an educational software. It uses Leitner System to help you memorize information. more>>
FlashQard helps you to learn any subject that can be learned via a question and answer format.
You write a question on a card and the answer overleaf in formatted text. You can also insert as many pictures as you wish.
The reviewing method is known as the Leitner system, proposed by Sebastian Leitner in 1970s.
This method is a well known and widely used mothod to efficiently use flash cards and to reduce the amount of study time needed.
FlashQard can read your card's text (text-to-speech) as you go through your cards.
Download (5MB)
Added: -0001-11-30 License: Freeware Price: 0USD
15 downloads
Slackintosh 12.0
Slackintosh is a port of Slackware GNU/Linux to PPC (Macintosh). more>>
Slackintosh is a port of Slackware GNU/Linux to PPC (Macintosh).
Russell Kroll was the first person who ported Slackware to PPC (http://slackintosh.exploits.org), but the project stalled with an unfinished 9.1 ..
I (Adrian) started again from scratch porting 10.1 to PPC, and ive stolen the name Slackintosh...
Please note that this port was not done by Russell, dont send him Bugreports.
I used the the Sources + SlackBuild files from Slackware 10.1. ..but i had to make a few changes:
The new Binutils from 10.x didnt like GCC, i used the 9.1 Version to build everything. The Installer uses BusyBox 1.0 and Linux 2.4 is not included, only 2.6.11.5 (Runs better on PPC .. imho)
Its not finished: Not all packages are ported. Youll get gcc, X, Mozilla, XFCE, Gimp.. but no
monsters like KDE & Co.
The installer maybe somewhat funky.. Missing packages are still listed and the yaboot installation isnt tested very well...
..but you should be able to get it running. It won the WFM (WorksForMe) price. (Tested on a MiniMac & iBook2)
<<lessRussell Kroll was the first person who ported Slackware to PPC (http://slackintosh.exploits.org), but the project stalled with an unfinished 9.1 ..
I (Adrian) started again from scratch porting 10.1 to PPC, and ive stolen the name Slackintosh...
Please note that this port was not done by Russell, dont send him Bugreports.
I used the the Sources + SlackBuild files from Slackware 10.1. ..but i had to make a few changes:
The new Binutils from 10.x didnt like GCC, i used the 9.1 Version to build everything. The Installer uses BusyBox 1.0 and Linux 2.4 is not included, only 2.6.11.5 (Runs better on PPC .. imho)
Its not finished: Not all packages are ported. Youll get gcc, X, Mozilla, XFCE, Gimp.. but no
monsters like KDE & Co.
The installer maybe somewhat funky.. Missing packages are still listed and the yaboot installation isnt tested very well...
..but you should be able to get it running. It won the WFM (WorksForMe) price. (Tested on a MiniMac & iBook2)
Download (3936MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
831 downloads
Quad-Pres 0.12.0
Quad-Pres is a Perl and Web Meta Language based tool for generating HTML presentations. more>>
Quad-Pres stands for Quick and Dirty Presentation and is a Perl and Web Meta Language based tool for generating HTML presentations.
Quad-Pres is standards compliant (XHTML 1.0), and generates a real URL tree.
Main features:
- Uses Web Meta Language.
- Organizes the lecture into a hierarchy of sections and subections.
- Generates tables of contents, and navigation links.
- Links to a common CSS StyleSheet.
- A common HTML header and footer.
- Can be generated into a web-server directory or dynamically served using a CGI script in the presentation directory.
- Written in pure Perl and so is very portable.
- The generated code is compliant to XHTML 1.0.
- Support multiple themes that customize the look and feel of the slides.
- Supports setting several parameters to the pages: doctype strictness, language, character set, body direction.
Enhancements:
- Added the Template-Toolkit configurable configuration directives.
- Added the $translate_control_text subroutine.
- Fixed some unicode problems.
- Some other bug-fixes.
- Added an automated test suite.
<<lessQuad-Pres is standards compliant (XHTML 1.0), and generates a real URL tree.
Main features:
- Uses Web Meta Language.
- Organizes the lecture into a hierarchy of sections and subections.
- Generates tables of contents, and navigation links.
- Links to a common CSS StyleSheet.
- A common HTML header and footer.
- Can be generated into a web-server directory or dynamically served using a CGI script in the presentation directory.
- Written in pure Perl and so is very portable.
- The generated code is compliant to XHTML 1.0.
- Support multiple themes that customize the look and feel of the slides.
- Supports setting several parameters to the pages: doctype strictness, language, character set, body direction.
Enhancements:
- Added the Template-Toolkit configurable configuration directives.
- Added the $translate_control_text subroutine.
- Fixed some unicode problems.
- Some other bug-fixes.
- Added an automated test suite.
Download (0.17MB)
Added: 2006-08-29 License: GPL (GNU General Public License) Price:
1151 downloads
GnomeLiveCd 2.12.0
The goal of this project is to create a LiveCD to demonstrate GNOME. more>>
The goal of this project is to create a LiveCD to demonstrate GNOME. The initial motivation was to be able to send a GNOME LiveCD to journalists and news agencies so that they can test and talk about GNOME without installing it, but others have expressed interest as well.
The infrastructure for this will be flexible, so that it can be easily customized and re-targetted- for example, to distribute a version with a custom splashscreen for a specific conference, to change the language for distribution by non-en_US gnome groups, or to change the software set to market to different groups (artists, developers, etc.)
<<lessThe infrastructure for this will be flexible, so that it can be easily customized and re-targetted- for example, to distribute a version with a custom splashscreen for a specific conference, to change the language for distribution by non-en_US gnome groups, or to change the software set to market to different groups (artists, developers, etc.)
Download (630MB)
Added: 2005-09-08 License: GPL (GNU General Public License) Price:
1508 downloads
GMediaServer 0.12.0
GMediaServer is a UPnP music media server. more>>
GMediaServer is a UPnP music media server. GMediaServer project implements the server component that provides UPnP media devices with information on available audio files. GMediaServer uses the built-in http server of libupnp to stream the audio files to clients.
A number of media devices have been tested and are confirmed to work with GMediaServer. Among then are NETGEAR MP101, Linksys WMLS11B and WML11B, Philips Streamium SL300i and RC9800i, and Omnify DMS1. See below for a full list.
Other UPnP media devices (including software based) may work as well - see below for a more detailed list of supported devices. For a quick start, see the Usage and Known Bugs sections below.
GMediaServer is written in C by Oskar Liljeblad. It should compile and run on any modern POSIX compatible system such as Linux. GMediaServer is a console based application which is usually run in the background.
GMediaServer is free software - it is licensed under the terms of the GNU General Public License (GPL).
<<lessA number of media devices have been tested and are confirmed to work with GMediaServer. Among then are NETGEAR MP101, Linksys WMLS11B and WML11B, Philips Streamium SL300i and RC9800i, and Omnify DMS1. See below for a full list.
Other UPnP media devices (including software based) may work as well - see below for a more detailed list of supported devices. For a quick start, see the Usage and Known Bugs sections below.
GMediaServer is written in C by Oskar Liljeblad. It should compile and run on any modern POSIX compatible system such as Linux. GMediaServer is a console based application which is usually run in the background.
GMediaServer is free software - it is licensed under the terms of the GNU General Public License (GPL).
Download (0.35MB)
Added: 2006-09-01 License: GPL (GNU General Public License) Price:
1154 downloads
ReZound 0.12.0 beta
ReZound aims to be a stable, open source, and graphical audio file editor primarily for but not limited to the Linux OS. more>>
ReZound aims to be a stable, open source, and graphical audio file editor primarily for but not limited to the Linux operating system.
Enhancements:
- Implemented Macros. Now, if you often repeat a sequence of edits, you can record this sequence, and play them back unattendedly on different files.
- Implemented user-definable key-bindings. Now a user can customize what he wants keys on the keyboard to do in ReZound.
- Added a new Remaster action which can "shorten quiet areas". That is, it finds quiet areas and automatically shortens these by some given amount. Its great for
- Enhanced the Burn To CD action. More feedback to the user.
- Included a new Finnish thanks to Uffek
- There is new M column in the loaded sound list to indicate which files are in a "modified" state.
- Updated other translation files
- Compiles with latest FOX releases
- Several other bug fixes and cosmetic tweaks
<<lessEnhancements:
- Implemented Macros. Now, if you often repeat a sequence of edits, you can record this sequence, and play them back unattendedly on different files.
- Implemented user-definable key-bindings. Now a user can customize what he wants keys on the keyboard to do in ReZound.
- Added a new Remaster action which can "shorten quiet areas". That is, it finds quiet areas and automatically shortens these by some given amount. Its great for
- Enhanced the Burn To CD action. More feedback to the user.
- Included a new Finnish thanks to Uffek
- There is new M column in the loaded sound list to indicate which files are in a "modified" state.
- Updated other translation files
- Compiles with latest FOX releases
- Several other bug fixes and cosmetic tweaks
Download (1.7MB)
Added: 2005-08-17 License: GPL (GNU General Public License) Price:
1529 downloads
Absolute Linux 12.0.3
Absolute Linux is a lightweight modification of Slackware. more>>
Absolute Linux 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.
See at http://www.pcbypaul.com/absolute/index.html for details.
Enhancements:
- Updates and fixes, additional applications, additional scripts, and MIME handling adjustments.
- CD2 has also been updated.
<<lessUses 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.
See at http://www.pcbypaul.com/absolute/index.html for details.
Enhancements:
- Updates and fixes, additional applications, additional scripts, and MIME handling adjustments.
- CD2 has also been updated.
Download (665.8MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
807 downloads
Bluewhite64 Linux 12.0
Bluewhite64 Linux is an unofficial port of Slackware Linux to the AMD64 architecture. more>>
Bluewhite64 Linux is an unofficial port of Slackware Linux to the AMD64 architecture. This means that it runs on AMD64 based servers and computers.
Bluewhite64 Linuxs goal of this port is to mimic the user experience of the Intel x86 distribution at its best. I will try to include the same software, configuration scripts and so on. If you notice any differences between Bluewhite64 and the original Slackware, dont hesitate to email me.
Enhancements:
- This version includes the Linux 2.6.21.5 kernel with the IA32-emulation enabled, the testing Linux 2.6.22 kernel in the testing/ directory with support for IDE, SATA, SCSI, and RAID controllers, Ext2, Ext3, ReiserFS, XFS, and IBMs SGI filesystems, SCSI and ATA RAID volume, software RAID, LVM2, KVM (Kernel-based Virtual Machine), and encrypted file systems. It also includes the GCC 4.1.2 compiler and Glibc 2.5 with NPTL, the latest KDE 3.5.7 and XFce 4.4.1, the Mozilla Firefox browser and Mozilla Thunderbird 2.0.0.4, SeaMonkey 1.1.2, Apache 2.2.4, PHP 5.2.3, and MySQL 5.0.37.
<<lessBluewhite64 Linuxs goal of this port is to mimic the user experience of the Intel x86 distribution at its best. I will try to include the same software, configuration scripts and so on. If you notice any differences between Bluewhite64 and the original Slackware, dont hesitate to email me.
Enhancements:
- This version includes the Linux 2.6.21.5 kernel with the IA32-emulation enabled, the testing Linux 2.6.22 kernel in the testing/ directory with support for IDE, SATA, SCSI, and RAID controllers, Ext2, Ext3, ReiserFS, XFS, and IBMs SGI filesystems, SCSI and ATA RAID volume, software RAID, LVM2, KVM (Kernel-based Virtual Machine), and encrypted file systems. It also includes the GCC 4.1.2 compiler and Glibc 2.5 with NPTL, the latest KDE 3.5.7 and XFce 4.4.1, the Mozilla Firefox browser and Mozilla Thunderbird 2.0.0.4, SeaMonkey 1.1.2, Apache 2.2.4, PHP 5.2.3, and MySQL 5.0.37.
Download (3800MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
835 downloads
Bluewhite64 Linux 12.0 Live DVD
Bluewhite64 Linux is an unofficial port of Slackware Linux to the AMD64 architecture. more>>
Bluewhite64 Linux is an unofficial port of Slackware Linux to the AMD64 architecture. This means that it runs on AMD64 based servers and computers.
Bluewhite64 Linuxs goal of this port is to mimic the user experience of the Intel x86 distribution at its best. I will try to include the same software, configuration scripts and so on. If you notice any differences between Bluewhite64 and the original Slackware, dont hesitate to email me.
Enhancements:
- Bluewhite64 Linux 12.0 Live DVD runs entirely from DVD and includes all packages from Bluewhite64 Linux 12.0 (except the Y and KDEi software series) and the updated packages from the patches directory. Also, in addition to this version, I have included extra packages created by the Bluewhite64 Linux community. The DVD includes the latest stable SMP Linux kernel 2.6.22.1 with advanced features. It is designed to bring a modern Linux desktop to 64-bit architectures, including the modularized X.Org 7.2 with Compiz and Beryl, the award-winning KDE 3.5.7, OpenOffice.org 2.2, Mozilla Firefox and Thunderbird 2.0.0.6, Swaret 1.6.3 and Qtswaret 0.1.5-3 package managers....
<<lessBluewhite64 Linuxs goal of this port is to mimic the user experience of the Intel x86 distribution at its best. I will try to include the same software, configuration scripts and so on. If you notice any differences between Bluewhite64 and the original Slackware, dont hesitate to email me.
Enhancements:
- Bluewhite64 Linux 12.0 Live DVD runs entirely from DVD and includes all packages from Bluewhite64 Linux 12.0 (except the Y and KDEi software series) and the updated packages from the patches directory. Also, in addition to this version, I have included extra packages created by the Bluewhite64 Linux community. The DVD includes the latest stable SMP Linux kernel 2.6.22.1 with advanced features. It is designed to bring a modern Linux desktop to 64-bit architectures, including the modularized X.Org 7.2 with Compiz and Beryl, the award-winning KDE 3.5.7, OpenOffice.org 2.2, Mozilla Firefox and Thunderbird 2.0.0.6, Swaret 1.6.3 and Qtswaret 0.1.5-3 package managers....
Download (1247MB)
Added: 2007-08-07 License: GPL (GNU General Public License) Price:
821 downloads
CppUnit - C++ port of JUnit 1.12.0
CppUnit is the C++ port of the famous JUnit framework for unit testing. more>>
CppUnit is a C++ unit testing framework. CppUnit project started its life as a port of JUnit to C++ by Michael Feathers.
Main features:
- XML output with hooks for additional data
- Compiler-like text output to integrate with an IDE
- Helper macros for easier test suite declaration
- Hierarchical test fixture support
- Test registry to reduce recompilation need
- Test plug-in for faster compile/test cycle (self testable dynamic library)
- Protector to encapsulate test execution (allow capture of exception not derived from std::exception)
- MfcTestRunner
- QT based graphic test runner
<<lessMain features:
- XML output with hooks for additional data
- Compiler-like text output to integrate with an IDE
- Helper macros for easier test suite declaration
- Hierarchical test fixture support
- Test registry to reduce recompilation need
- Test plug-in for faster compile/test cycle (self testable dynamic library)
- Protector to encapsulate test execution (allow capture of exception not derived from std::exception)
- MfcTestRunner
- QT based graphic test runner
Download (0.70MB)
Added: 2006-06-30 License: LGPL (GNU Lesser General Public License) Price:
1214 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 2
- 1
- 2
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above 12.0 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