Main > Free Download Search >

Free 4.0 beta software for linux

4.0 beta

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1039
KDE 4.0 Beta 1

KDE 4.0 Beta 1


KDE is a powerful Free Software graphical desktop environment for Linux and Unix workstations. more>>
KDE is a powerful Free Software graphical desktop environment for Linux and Unix workstations.

It combines ease of use, contemporary functionality, and outstanding graphical design with the technological superiority of the Unix operating system.

KDE is a network transparent contemporary desktop environment for UNIX workstations. KDE seeks to fill the need for an easy to use desktop for Unix workstations, similar to the desktop environments found under the MacOS or Microsoft Windows.

We believe that the UNIX operating system is the best operating system available today. In fact UNIX has been the undisputed choice of the information technology professional for many years. When it comes to stability, scalability and openness there is no competition to UNIX. However, the lack of an easy to use contemporary desktop environment for UNIX has prevented UNIX from finding its way onto the desktops of the typical computer user in offices and homes.

UNIX dominates the server market and is the preferred computing platform for computing professional and scientists. Without UNIX the internet would not be. But UNIX did not address the needs of the average computer user.

This fact is particularly unfortunate since a number of implementations of UNIX (Debian GNU/Linux, FreeBSD, NetBSD etc.) are freely available on the internet. All of which are of exceptional quality and stability.

KDE The Desktop Environment

With KDE there is now an easy to use contemporary desktop environment available for UNIX. Together with a free implementation of UNIX such as GNU/Linux, UNIX/KDE constitutes a completely free and open computing platform available to anyone free of charge including its source code for anyone to modify. While there will always be room for improvement we believe to have delivered a viable alternative to some of the more commonly found and commercial operating systems/desktops combinations available today. It is our hope that the combination UNIX/KDE will finally bring the same open, reliable, stable and monopoly free computing to the average computer user that scientist and computing professionals world-wide have enjoyed for years.

KDE The Application Development Framework

Authoring applications under UNIX/X11 used to be an extremely difficult and tedious process. KDE recognizes the fact that a computing platform is only as good as the amount of first class applications available to the users of that particular platform. In view of these circumstances the KDE Project has developed a first rate compound document application framework, implementing the latest advances in framework technology and thus positioning itself in direct competition to such popular development frameworks as for example Microsofts MFC/COM/ActiveX technology. KDEs KParts compound document technology enables developers to quickly create first rate applications implementing cutting edge technology.

KDE The Office Application Suite

Leveraging the KDE application development framework a great number of applications have been built for the K Desktop Environment. A selection of those applications is contained in the KDE base distribution. At this moment KDE is developing an office application suite based on KDEs KParts technology consisting of a spread-sheet, a presentation application, an organizer, a news client and more. KPresenter, KDEs presentation application was successfully used at many presentations.
<<less
Download (MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
826 downloads
AsteriskNOW 1.4.0 Beta

AsteriskNOW 1.4.0 Beta


AsteriskNOW helps you install Asterisk in 30 minutes or less. more>>
AsteriskNOW helps you install Asterisk in 30 minutes or less. The most popular open source PBX software, Asterisk, can now be easily configured with a graphical interface.

AsteriskNOW is an open source Software Appliance; a customized Linux distribution that includes Asterisk, the Asterisk GUI, and all other software needed for an Asterisk system.

Asterisk is a complete IP PBX in software. It runs on a wide variety of operating systems including Linux, Mac OS X, OpenBSD, FreeBSD and Sun Solaris and provides all of the features you would expect from a PBX including many advanced features that are often associated with high end (and high cost) proprietary PBXs.

Asterisk supports Voice over IP in many protocols, and can interoperate with almost all standards-based telephony equipment using relatively inexpensive hardware.
Asterisk and AsteriskNOW are released as open source under the GNU General Public License (GPL), meaning that they are available for download free of charge.

Asterisk was created by Mark Spencer of Digium, Inc in 1999. Code has been contributed from open source coders around the world, and testing and bug-patches from the community have provided invaluable aid to the development of this software.
<<less
Download (MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
641 downloads
ProGuard 3.9 / 4.0 Beta

ProGuard 3.9 / 4.0 Beta


ProGuard is a Java class file shrinker and obfuscator. more>>
ProGuard is a free Java class file shrinker, optimizer, and obfuscator. ProGuard project can detect and remove unused classes, fields, methods, and attributes. It can then optimize bytecode and remove unused instructions.
Finally, it can rename the remaining classes, fields, and methods using short meaningless names. The resulting jars are smaller and harder to reverse-engineer.
More compact jar files also means smaller storage requirements, faster transfer of applications across networks, faster loading, and smaller memory footprints.
ProGuards main advantage compared to other Java obfuscators is probably its compact template-based configuration. A few intuitive command line options or a simple configuration file are usually sufficient. For instance, the following configuration option preserves all applets in a jar:
-keep public class * extends java.applet.Applet
The user manual explains all available options and shows more examples of this powerful configuration style.
ProGuard is fast. It only takes seconds to process programs and libraries of several megabytes. The results section presents actual figures for a number of applications.
ProGuard is a command-line tool with an optional graphical user interface. It also comes with plugins for Ant and for the J2ME Wireless Toolkit.
ProGuard is a Java class file shrinker, optimizer, and obfuscator. The shrinking step detects and removes unused classes, fields, methods, and attributes. The optimization step analyzes and optimizes the bytecode of the methods. The obfuscation step renames the remaining classes, fields, and methods using short meaningless names. The resulting jars are smaller and harder to reverse-engineer.
ProGuard can also be used to list unused fields and methods in an application, and to print out the internal structure of class files.
ProGuard typically reads the input jars (or wars, ears, zips, or directories). It then shrinks, optimizes, and obfuscates them. It then writes the results to one or more output jars (or wars, ears, zips, or directories). The input jars can optionally contain resource files. ProGuard copies all non-class resource files from the input jars to the output jars. Their names and contents remain unchanged.
ProGuard requires the library jars (or wars, ears, zips, or directories) of the input jars to be specified. It can then reconstruct class hierarchies and other class dependencies, which are necessary for proper shrinking, optimization, and obfuscation. The library jars themselves always remain unchanged. You should still put them in the class path of your final application.
In order to determine which code has to be preserved and which code can be discarded or obfuscated, you have to specify one or more entry points to your code. These entry points are typically classes with main methods, applets, midlets, etc.
- In the shrinking step, ProGuard starts from these seeds and recursively determines which classes and class members are used. All other classes and class members are discarded.
- In the optimization step, ProGuard further optimizes the code. Among other optimizations, classes and methods that are not entry points can be made final, and some methods may be inlined.
- In the obfuscation step, ProGuard renames classes and class members that are not entry points. In this entire process, keeping the entry points ensures that they can still be accessed by their original names.
Any classes or class members of your code that are created or invoked dynamically (that is, by name) have to be specified as entry points too. It is generally impossible to determine these cases automatically, but ProGuard will offer some suggestions if keeping some classes or class members appears necessary. For proper results, you should at least be somewhat familiar with the code that you are processing.
ProGuard does handle Class.forName("SomeClass") and SomeClass.class constructs automatically. The referenced classes are preserved in the shrinking phase, and the string arguments are properly replaced in the obfuscation phase. With variable string arguments, it is generally impossible to determine their possible values (they might be read from a configuration file, for instance).
However, as mentioned, ProGuard will note constructs like "(SomeClass)Class.forName(variable).newInstance()". These might be an indication that the class or interface SomeClass and/or its implementations may need to be preserved. You can then adapt your configuration accordingly.
Whats New in 3.9 Stable Release:
- This release fixes a number of bugs.
- Notably, ".class" constructs compiled in Java 6 are now handled correctly.
- The optimization step now avoids a possible division by 0 and correctly processes local variables with indices larger than 255.
- The documentation and examples have been updated.
Whats New in 4.0 Beta Development Release:
- Added preverifier for Java 6 and Java Micro Edition, with new option -dontpreverify.
- Added new option -target to modify java version of processed class files.
- Made -keep options more orthogonal and flexible, with option modifiers allowshrinking, allowoptimization, and allowobfuscation.
- Added support for configuration by means of annotations.
- Improved shrinking of unused annotations.
- Added check on modification times of input and output, to avoid unnecessary processing, with new option -forceprocessing.
- Added new options -flattenpackagehierarchy and -repackageclasses (replacing -defaultpackage) to control obfuscation of packages names.
- Added new options -adaptresourcefilenames and -adaptresourcefilecontents, with file filters, to update resource files corresponding to obfuscated class names.
- Now respecting naming rule for nested class names (EnclosingClass$InnerClass) in obfuscation step, if InnerClasses attributes or EnclosingMethod attributes are being kept.
- Added new inter-procedural optimizations: method inlining and propagation of constant fields, constant arguments, and constant return values.
- Added optimized local variable allocation.
- Added over 250 new peephole optimizations.
- Improved making classes and class members public or protected.
- Now printing notes on suspiciously unkept classes in parameters of specified methods.
- Now printing notes for class names that dont seem to be fully qualified.
- Added support for uppercase filename extensions.
- Rewritten class file I/O code.
- Updated documentation and examples.
<<less
Download (MB)
Added: 2007-06-27 License: GPL (GNU General Public License) Price:
905 downloads
Eternal Lands 1.4.0 Beta

Eternal Lands 1.4.0 Beta


Eternal Lands is a 3D MMORPG. more>> <<less
Download (38.2MB)
Added: 2007-06-03 License: Free To Use But Restricted Price:
548 downloads
Solar Imperium 2.4.0 Beta

Solar Imperium 2.4.0 Beta


Solar Imperium is a Solar Realms Elite clone. more>>
Solar Imperium is a Solar Realms Elite clone. In it, you rule a solar empire. Solar Imperiums goal is to become and remain the most powerful empire. You can gain strength by buying forces, and you can gain size by colonizing planets.

You start with some planets, and a little bit of money. You are required to feed your people and army, and to pay to maintain your planets and army. If you fail to do these things, disastrous results may occur.

You are given several turns of protection, during which you cannot attack or be attacked, and cannot perform covert operations. This provides a way for smaller empires to build up their defenses and planets before they enter the real world.

<<less
Download (MB)
Added: 2007-04-27 License: Free for non-commercial use Price:
916 downloads
FireBug 1.3.3 / 1.4.0 Beta 5

FireBug 1.3.3 / 1.4.0 Beta 5


Explore the far corners of the DOM by keyboard or mouse. more>> FireBug 1.3.3 / 1.4.0 Beta 5 is professionally designed as a Firefox extension, allowing you to explore the far corners of the DOM by keyboard or mouse. All of the tools you need to poke, prod, and monitor your JavaScript, CSS, HTML and Ajax are brought together into one seamless experience, including a debugger, an error console, command line, and a variety of fun inspectors.

Major Features:

  1. JavaScript debugger for stepping through code one line at a time
  2. Status bar icon shows you when there is an error in a web page
  3. A console that shows errors from JavaScript and CSS
  4. Log messages from JavaScript in your web page to the console (bye bye "alert debugging")
  5. An JavaScript command line (no more "javascript:" in the URL bar)
  6. Spy on XMLHttpRequest traffic
  7. Inspect HTML source, computed style, events, layout and the DOM

Enhancements:

  • Issue 1763: JavaScript exceptions on some pages [nsIStreamListener.onDataAvailable] and [nsIStreamListener.onStartRequest]
  • Remove dubious script tooltip
  • Issue 1282: Editing boolean var in watch panel changes it to a string

Requirements: Mozilla Firefox

<<less
Added: 2009-07-07 License: MPL Price: FREE
1001 downloads
 
Other version of FireBug
FireBug 1.3.3 / 1.4.0 Beta 4Joe Hewitt - Explore the far corners of the DOM by keyboard or mouse. FireBug. Explore the far corners of the DOM by
Price: FREE
License:MPL
Download
987 downloads
Added: 2009-07-03
FireBug 1.3.3 / 1.4.0 Beta 7Joe Hewitt - Explore the far corners of the DOM by keyboard or mouse. FireBug. FireBug 1.3.3 / 1.4.0 Beta 7 is professionally
Price: FREE
License:MPL
Download
999 downloads
Added: 2009-07-09
Skype 1.4.0.99 Beta

Skype 1.4.0.99 Beta


Skype is a free internet telephony that just works. more>> <<less
Download (MB)
Added: 2007-08-11 License: Freeware Price:
2033 downloads
Garidio 1.0 Beta

Garidio 1.0 Beta


Garidio is an application that allows users on a network to share the contents of their desktop clipboards with each other. more>>
Garidio is an application that allows users on a network to share the contents of their desktop clipboards with each other.

It has been successfully tested on Mac OS X (Tiger), Windows XP (SP2), and Linux (Slackware, SuSE, and Ubuntu), but it should work fine on any system with a working JVM for Java 1.5.

<<less
Download (0.030MB)
Added: 2006-04-07 License: BSD License Price:
1296 downloads
mod_xslt2 1.0 Beta

mod_xslt2 1.0 Beta


mod_xslt2 is is an Apache 1.3.xx Module written in C. more>>
mod_xslt is is an Apache 1.3.xx Module written in C. It accomplishes Apache embedded XML with XSL tranformation using Sablotron.

<<less
Download (0.040MB)
Added: 2006-04-05 License: GPL (GNU General Public License) Price:
1297 downloads
SGCE 1.4 Beta

SGCE 1.4 Beta


SGCE is a skin care management system that manages customers, treatment follow-up, product supply, clinic history and more. more>>
SGCE is a skin care management system that manages customers, treatment follow-up, product supply, clinic history, and skin status.

The project is a Web-based management system with Brazilian-Portuguese language support.

Installation:

- Load mysql structure from database-mysql.sql file
- Set up conf.inc.php

<<less
Download (0.028MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
865 downloads
gzinc 0.07 Beta 4

gzinc 0.07 Beta 4


gzinc is a pygtk2 front-end for the zinc emulator. more>>
gzinc is a pygtk2 front-end for the zinc emulator.

Current version is intended to work with zinc 1.1.

The project features a list of the all or detected games, with a screenshot.

It can also check the archives of the games, or display the game name as OSD.

<<less
Download (0.11MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
926 downloads
gTwitter 1.0 Beta

gTwitter 1.0 Beta


gTwitter project is a Linux client for reading and posting to twitter.com web service. more>>
gTwitter project is a Linux client for reading and posting to twitter.com web service.

Its a simple GTK+ based application for Linux, designed to interact with twitter.com web service.

Its written using Mono/C# and some of GNOME dependant libraries. GUI is inspired by Mac client Twitterrific.

<<less
Download (0.040MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
871 downloads
Ah3 Beta 3

Ah3 Beta 3


Ah3 project is an invoicing and inventory system for repair shops. more>>
Ah3 project is an invoicing and inventory system for repair shops. Out of the box it is focused towards autmotive repair shops but can be readily changed for any sort of shop without any knowledge of coding or recompiling the application.
Main features:
- Customer and vehicle database
- Inventory management
- Customizable invoice generation
- Forms which can be redily customized without code changes
- Minimal data changes from Ah2
- Building on MS Windows is possible
<<less
Download (0.003MB)
Added: 2007-08-21 License: GPL (GNU General Public License) Price:
796 downloads
TorK 0.18 Beta

TorK 0.18 Beta


TorK project is a Tor Controller for KDE. more>>
TorK project is a Tor Controller for KDE.

TorK allows you to configure, run and update Tor. It also allows you to view the Tor network and choose how you would like to interact with the network.

TorK is very much in an alpha state.

<<less
Download (0.75MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
817 downloads
Gateway 3.0 Beta 2

Gateway 3.0 Beta 2


Gateway is a JavaEE application developed by the Vermont Department of Taxes. more>>
Gateway is a JavaEE application developed by the Vermont Department of Taxes. It provides a web services framework for accepting Streamlined Sales Tax registrations and returns.

The project also includes a web interface for manually submitting transmissions. The goal is to build an extensible framework upon which future tax services can be built.

<<less
Download (7.8MB)
Added: 2007-07-17 License: MPL (Mozilla Public License) Price:
830 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5