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

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:
- JavaScript debugger for stepping through code one line at a time
- Status bar icon shows you when there is an error in a web page
- A console that shows errors from JavaScript and CSS
- Log messages from JavaScript in your web page to the console (bye bye "alert debugging")
- An JavaScript command line (no more "javascript:" in the URL bar)
- Spy on XMLHttpRequest traffic
- 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
Added: 2009-07-07 License: MPL Price: FREE
1001 downloads
Other version of FireBug
Price: FREE
License:MPL
License:MPL
Price: FREE
License:MPL
License:MPL
StumbleUpon 3.36 Beta
This is another excellent Firefox extension for everyone. more>>
StumbleUpon 3.36 Beta will make the Firefox browser even more powerful as it is an addon that allows you to connect with friends and share your discoveries, meet people that have similar interests, and check out what other people are discovering.
Enhancements:
- Fixes the issue where multiple tabs open upon clicking the stumble button. This was caused by an add-on incompatibility introduced by NoScript 1.9.6.9.
- Fixes a bug that could cause spurious stumble counts for users with old versions of Firefox.
Requirements:
- Mozilla Firefox
Added: 2009-07-23 License: Other/Proprietary Li... Price: FREE
6646 downloads
Download (MB)
Added: 2007-08-11 License: Freeware Price:
2033 downloads
ScoreBoard 0.2 Beta
ScoreBoard is a tiny program to keep scores in a quiz. more>>
ScoreBoard is a tiny program to keep scores in a quiz. It allows users to customize the appearance of each group.
ScoreBoard project may comes handy if you are organizing a quiz.
This is my first QT project. I am still trying to get to the subtle details of QT. There maybe bugs in this program. Please contact me if you found any.
Icons used in this application are taken from Crystal Clear icon set and Emotion Icons.
<<lessScoreBoard project may comes handy if you are organizing a quiz.
This is my first QT project. I am still trying to get to the subtle details of QT. There maybe bugs in this program. Please contact me if you found any.
Icons used in this application are taken from Crystal Clear icon set and Emotion Icons.
Download (0.64MB)
Added: 2006-07-29 License: GPL (GNU General Public License) Price:
2153 downloads
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.
<<lessFinally, 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.
Download (MB)
Added: 2007-06-27 License: GPL (GNU General Public License) Price:
905 downloads

SQLite Manager 0.5.0 Beta 3
SQLite Manager is an all-in-one and very useful application which can manage all your sqlite databases using this lightweight extension for firefox, thunderbird, sunbird, seamonkey, songbird, komodo, flock etc. more>> <<less
Added: 2009-07-23 License: MPL Price: FREE
62 downloads
Other version of SQLite Manager
Mrinal Kant - SQLite Manager is an excellent and extremely useful program whichPrice: FREE
License:MPL
License:MPL
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.
<<lessAsteriskNOW 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.
Download (MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
641 downloads
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.
<<lessYou 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.
Download (MB)
Added: 2007-04-27 License: Free for non-commercial use Price:
916 downloads
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.
<<lessIt 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.
Download (MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
826 downloads
Download (38.2MB)
Added: 2007-06-03 License: Free To Use But Restricted Price:
548 downloads
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
KDEVisualBoyAdvance 0.3 Beta
KDEVisualBoyAdvance software is based on other front-ends such as kvba, qtvba, and vbaexpress. more>>
KDEVisualBoyAdvance is a front-end for VisualBoy Advance.
KDEVisualBoyAdvance software is based on other front-ends such as kvba, qtvba, and vbaexpress.
<<lessKDEVisualBoyAdvance software is based on other front-ends such as kvba, qtvba, and vbaexpress.
Download (0.98MB)
Added: 2006-02-07 License: GPL (GNU General Public License) Price:
1356 downloads
sharkTorrent 0.1.8.3 Beta
sharkTorrent project is a bittorrent client written in c++ and it uses wxwidgets , libtorrent and boost. more>>
sharkTorrent project is a bittorrent client written in c++ and it uses wxwidgets , libtorrent and boost.
<<less Download (0.70MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
822 downloads
FreeBSD 7.2 / 8.0 Beta 1
offers an innovative operating system for x86 compatible (including Pentium® and AthlonTM), amd64 compatible (including OpteronTM, AthlonTM64, and EM64T), ARM, IA-64, PowerPC, PC-98 and UltraSPARC® architectures. more>> <<less
Added: 2009-07-06 License: BSD License Price: FREE
downloads
gTVListings 0.8 beta
gTVListings is a TV listings management program. more>>
TV listings management program
gTVListings is a TV listings management program constructed in Mono for Gnome using XMLTV to download the listings.
Key features include Searching, Favorites, Show Category, Reminders and Now & Next.
<<lessgTVListings is a TV listings management program constructed in Mono for Gnome using XMLTV to download the listings.
Key features include Searching, Favorites, Show Category, Reminders and Now & Next.
Download (0.12MB)
Added: 2005-07-19 License: GPL (GNU General Public License) Price:
1559 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 4.0 beta 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