in production
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 374
USAGI Project 20060508
USAGI(UniverSAl playGround for Ipv6) Project works to deliver the production quality IPv6 and IPsec protocol. more>>
USAGI(UniverSAl playGround for Ipv6) Project works to deliver the production quality IPv6 and IPsec(for both IPv4 and IPv6) protocol stack for the Linux system, tightly collaborating with WIDE Project, KAME Project and TAHI Project.
USAGI Project is run by volunteers from various organizations. At this moment, the volunteers are from Japan, however, we are glad to work with volunteers in any country in the world.
We want to contribute to the Linux community and to the IPv6 community via the delivery of IPv6 protocol stack.
Enhancements:
- Unused code was removed.
- Minor bugfixes were made.
- Some of the additional utilities were reorganized.
<<lessUSAGI Project is run by volunteers from various organizations. At this moment, the volunteers are from Japan, however, we are glad to work with volunteers in any country in the world.
We want to contribute to the Linux community and to the IPv6 community via the delivery of IPv6 protocol stack.
Enhancements:
- Unused code was removed.
- Minor bugfixes were made.
- Some of the additional utilities were reorganized.
Download (3.7MB)
Added: 2006-05-10 License: Open Software License Price:
1273 downloads
Roster-in-a-Box 1.0
Roster-in-a-Box project is a course management system designed to facilitate the use of autograded homework assignments. more>>
Roster-in-a-Box project is a course management system designed to facilitate the use of autograded homework assignments, while also allowing for text-based questions to be submitted online and graded online by the instructor. I developed and currently use the system for my introductory statistics and microeconomics courses at Long Island University, and I have had it in production since 2005. While you will be able to break the program if you try hard enough, it is stable and very much ready for use.
I wrote the program because I wanted something simpler than Moodle (and also because my school was not supporting Moodle at the time that I started the project). I love Moodle, and Moodle may be right for you, but it wasnt right for me, because I didnt want the course management system to take over my course web site. Basically, Roster-in-a-Box handles the homework and grading functions with a couple of web pages and leaves you on your own to design the rest of your course web site. That may or may not be what you want.
It should be quite simple to take my statistics modules (and the forthcoming microeconomics modules that I just havent gotten around to packaging) and get your own introductory statistics course up in no time. It is also quite simple to set up a course that consists of only text-based, manually-graded questions. On the other hand, if you want to write auto-graded assignments for some other purpose, you will have to know how to code them yourself. The structure of the modules should be somewhat self-explanatory to experienced programmers, but is probably daunting to those who do not know how to code. The entire program is written in PHP, and uses MySQL as a back-end database.
Version restrictions:
- There are things you could do while editing the assignment list that would leave it in an inconsistent state. For example, if you leave a page open, then open up a different page and make edits in that page, and then go back to the first page and save your changes, you may screw things up. I will get around to fixing this problem at some point, but in the mean time try not to do things like that.
- The program uses the PHP session variable, which by default times out after 24 minutes (supposedly due to security concerns). You should bug the web site administrator to lengthen the PHP system setting session.gc_maxlifetime to be as long as possible.
- By default, the system resets to the Spring semester on January 1st, the Summmer semester on May 15th, and the Fall semester on September 1st. I should probably make these dates editable somewhere in site_settings.php, but instead youll have to dig through administer.php and homework.php if you want to change them.
Enhancements:
- This has been used in a production environment for two years now, but the code has never been released.
<<lessI wrote the program because I wanted something simpler than Moodle (and also because my school was not supporting Moodle at the time that I started the project). I love Moodle, and Moodle may be right for you, but it wasnt right for me, because I didnt want the course management system to take over my course web site. Basically, Roster-in-a-Box handles the homework and grading functions with a couple of web pages and leaves you on your own to design the rest of your course web site. That may or may not be what you want.
It should be quite simple to take my statistics modules (and the forthcoming microeconomics modules that I just havent gotten around to packaging) and get your own introductory statistics course up in no time. It is also quite simple to set up a course that consists of only text-based, manually-graded questions. On the other hand, if you want to write auto-graded assignments for some other purpose, you will have to know how to code them yourself. The structure of the modules should be somewhat self-explanatory to experienced programmers, but is probably daunting to those who do not know how to code. The entire program is written in PHP, and uses MySQL as a back-end database.
Version restrictions:
- There are things you could do while editing the assignment list that would leave it in an inconsistent state. For example, if you leave a page open, then open up a different page and make edits in that page, and then go back to the first page and save your changes, you may screw things up. I will get around to fixing this problem at some point, but in the mean time try not to do things like that.
- The program uses the PHP session variable, which by default times out after 24 minutes (supposedly due to security concerns). You should bug the web site administrator to lengthen the PHP system setting session.gc_maxlifetime to be as long as possible.
- By default, the system resets to the Spring semester on January 1st, the Summmer semester on May 15th, and the Fall semester on September 1st. I should probably make these dates editable somewhere in site_settings.php, but instead youll have to dig through administer.php and homework.php if you want to change them.
Enhancements:
- This has been used in a production environment for two years now, but the code has never been released.
Download (0.13MB)
Added: 2007-06-20 License: GPL (GNU General Public License) Price:
857 downloads
Unicode Error Detector 1.0
Unicode Error Detector is a product for Plone used to pinpoint errors in your application leading to UnicodeDecodeErrors. more>>
Unicode Error Detector is a product for Plone used to pinpoint errors in your application leading to UnicodeDecodeErrors.
Do not use this product unless you are actively debugging a Unicode Error. Never use this product in production sites.
UnicodeDecodeErrors typically occur when you try to add a Unicode string to a non-ascii string. This product patches StringIO used by page templates to check if the appended string is a Unicode string, and if it is, it replaces the string with an error marker.
As there is some overhead associated with inspecting the strings instead of just appending to the output, this product is meant for debugging purposes only.
Usage
Put the product in your Products directory and restart Zope. Load the template causing the UnicodeDecodeError, and this tool will indicate the location by printing THIS IS WHERE THE ERROR IS in the rendered template.
You can then inspect the template and/or code more closely to figure out where the decode error happens.
<<lessDo not use this product unless you are actively debugging a Unicode Error. Never use this product in production sites.
UnicodeDecodeErrors typically occur when you try to add a Unicode string to a non-ascii string. This product patches StringIO used by page templates to check if the appended string is a Unicode string, and if it is, it replaces the string with an error marker.
As there is some overhead associated with inspecting the strings instead of just appending to the output, this product is meant for debugging purposes only.
Usage
Put the product in your Products directory and restart Zope. Load the template causing the UnicodeDecodeError, and this tool will indicate the location by printing THIS IS WHERE THE ERROR IS in the rendered template.
You can then inspect the template and/or code more closely to figure out where the decode error happens.
Download (0.001MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
942 downloads
Firebird .NET Data Provider 2.1.0
Firebird .NET Data Provider is an ADO.NET data provider for Firebird. more>>
Firebird .NET Data Provider is an ADO.NET data provider for Firebird. Firebird .NET Data Provider is written in C# and provides a high-performance native implementation of the Firebird API. It also includes an implementation of the Firebird Services API and Firebird array datatype support.
Firebird is a relational database offering many ANSI SQL standard features that runs on Linux, Windows, and a variety of Unix platforms. Firebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers. It has been used in production systems, under a variety of names since 1981.
Firebird is a commercially independent project of C and C++ programmers, technical advisors and supporters developing and enhancing a multi-platform relational database management system based on the source code released by Inprise Corp (now known as Borland Software Corp) on 25 July, 2000 under the InterBase Public License v.1.0
<<lessFirebird is a relational database offering many ANSI SQL standard features that runs on Linux, Windows, and a variety of Unix platforms. Firebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers. It has been used in production systems, under a variety of names since 1981.
Firebird is a commercially independent project of C and C++ programmers, technical advisors and supporters developing and enhancing a multi-platform relational database management system based on the source code released by Inprise Corp (now known as Borland Software Corp) on 25 July, 2000 under the InterBase Public License v.1.0
Download (0.56MB)
Added: 2007-03-24 License: MPL (Mozilla Public License) Price:
968 downloads
YourKit Java Profiler 6.0.16
YourKit Java Profiler is a CPU and memory profiler. more>>
YourKit Java Profiler is a CPU and memory profiler that makes it easy to solve wide range of CPU- and memory-related performance problems.
YourKit Java Profiler features automatic leak detection, powerful tools for the analysis of memory distribution, an object heap browser, comprehensive memory tests as part of your JUnit testing process, extremely low profiling overhead, transparent deobfu
YourKit, LLC is a new technology leader, creator of the most innovative and intelligent tool for profiling Java applications. The YourKit Java Profiler has been already recognized by the IT professionals and analysts as the best profiling tool for Java.
With YourKit Java Profiler, both CPU and memory profiling have come to the highest professional level, where one can profile even huge applications with maximum productivity and zero overhead.
There are several, recent innovations to profiling that have gained well-deserved popularity among professional Java developers, both in big and small companies.
YourKit Java Profiler is a new leap in the evolution of profiling tools!
Main features:
General:
- On demand profiling
- Easiest installation and configuration
- Unlimited profiling for one fee
- Full, complete J2EE support
- Ability to profile in production environment
- Full Java 5.0 support
- Rich multiplatform support
- Robust profiler API
- IDE integration
- Filters in CPU and memory views
- Customizable user interface
- Easy way to connect to locally running applications
- Ability to export profiling results to HTML
- Remote profiling
CPU profiling:
- Two methods of CPU profiling: sampling and tracing
- CPU hot spots and method invocation trees
- Unique "Merged callees" view
- Method back traces view
- "Thread" and "wall" times
- Method "own time", that excludes time spent in called methods
- General snapshot info and deobfuscator configuration
Memory profiling:
- Unique comprehensive Objects view
- Easy way to browse instances of particular class
- "Find Paths" helps to find reasons of memory leaks
- Find strings that match given pattern
- Optional recording of object allocations
- "Quick Info" action
- Ability to compare memory snapshots
- Unique descriptive language for memory analysis
- General snapshot info and deobfuscator configuration
- Automated comprehensive memory test
Enhancements:
- Minor UI bug was fixed in "Merged Paths" view
- JRockit 5 R27.2 supported
<<lessYourKit Java Profiler features automatic leak detection, powerful tools for the analysis of memory distribution, an object heap browser, comprehensive memory tests as part of your JUnit testing process, extremely low profiling overhead, transparent deobfu
YourKit, LLC is a new technology leader, creator of the most innovative and intelligent tool for profiling Java applications. The YourKit Java Profiler has been already recognized by the IT professionals and analysts as the best profiling tool for Java.
With YourKit Java Profiler, both CPU and memory profiling have come to the highest professional level, where one can profile even huge applications with maximum productivity and zero overhead.
There are several, recent innovations to profiling that have gained well-deserved popularity among professional Java developers, both in big and small companies.
YourKit Java Profiler is a new leap in the evolution of profiling tools!
Main features:
General:
- On demand profiling
- Easiest installation and configuration
- Unlimited profiling for one fee
- Full, complete J2EE support
- Ability to profile in production environment
- Full Java 5.0 support
- Rich multiplatform support
- Robust profiler API
- IDE integration
- Filters in CPU and memory views
- Customizable user interface
- Easy way to connect to locally running applications
- Ability to export profiling results to HTML
- Remote profiling
CPU profiling:
- Two methods of CPU profiling: sampling and tracing
- CPU hot spots and method invocation trees
- Unique "Merged callees" view
- Method back traces view
- "Thread" and "wall" times
- Method "own time", that excludes time spent in called methods
- General snapshot info and deobfuscator configuration
Memory profiling:
- Unique comprehensive Objects view
- Easy way to browse instances of particular class
- "Find Paths" helps to find reasons of memory leaks
- Find strings that match given pattern
- Optional recording of object allocations
- "Quick Info" action
- Ability to compare memory snapshots
- Unique descriptive language for memory analysis
- General snapshot info and deobfuscator configuration
- Automated comprehensive memory test
Enhancements:
- Minor UI bug was fixed in "Merged Paths" view
- JRockit 5 R27.2 supported
Download (6.9MB)
Added: 2007-07-23 License: Free for non-commercial use Price: $499
823 downloads
RTSP Caching Proxy 3.0 Alpha2
RtspProxy is a proxy server for multimedia streaming services based on the RTSP protocol. more>>
RtspProxy is a proxy server for multimedia streaming services based on the RTSP protocol.
The current version is a complete rewrite from scratch in Java of previous versions based on C++. The goal is to build a robust and scalable system usable in production environment.
The proxy is based on an asynchronous network framework, Apache MINA , which is built on Java NIO. This framework does permit to RtspProxy to handle high loads and concurrent users.
RTSP Caching Proxy is a proxy server that works with the RTSP protocol in multimedia streaming reproduction. RTSP (Real Time Streaming Protocol) is an emerging protocol for "session initiation" scopes, its purpose is to establish the conditions of an audio-video streaming session. The streaming data is then sent over other channels using other protocol such as RTP (Real Time Protocol).
Using a RTSP proxy does permits to access multimedia content without the need of being directly connected to the internet, for example being behind a corporate firewall.
Enhancements:
- A preliminary implementation of the IP address and host name filter was added.
- The Windows startup script was fixed.
- Session data is properly cleared when a session is closed.
- Only a UDP port pair is used for all RTP/RTCP packet handling and sending for all the connected clients.
<<lessThe current version is a complete rewrite from scratch in Java of previous versions based on C++. The goal is to build a robust and scalable system usable in production environment.
The proxy is based on an asynchronous network framework, Apache MINA , which is built on Java NIO. This framework does permit to RtspProxy to handle high loads and concurrent users.
RTSP Caching Proxy is a proxy server that works with the RTSP protocol in multimedia streaming reproduction. RTSP (Real Time Streaming Protocol) is an emerging protocol for "session initiation" scopes, its purpose is to establish the conditions of an audio-video streaming session. The streaming data is then sent over other channels using other protocol such as RTP (Real Time Protocol).
Using a RTSP proxy does permits to access multimedia content without the need of being directly connected to the internet, for example being behind a corporate firewall.
Enhancements:
- A preliminary implementation of the IP address and host name filter was added.
- The Windows startup script was fixed.
- Session data is properly cleared when a session is closed.
- Only a UDP port pair is used for all RTP/RTCP packet handling and sending for all the connected clients.
Download (0.97MB)
Added: 2005-12-09 License: GPL (GNU General Public License) Price:
1432 downloads
Sectoo Linux Pre-Alpha
Sectoo Linux attempts to provide an up-to-date and easy-to-use set of security tools. more>>
Sectoo Linux attempts to provide an up-to-date and easy-to-use set of security tools.
Main features:
- Vulnerability Scanning : Sectoo Linux provides you base services such as port scanning using Nmap. You can then gather banner informations, looking for versions of services installed, and discover some exploits using Nessus. You can also use this to test what your IDS can pick up and what it cant.
- Network Analysis : Using a standard sniffer like TCPDump or Ethereal/Wireshark, you can see whats going through a network in terms of protocols and content. And by using tools like p0f, you can achieve passive OS fingerprinting like never !
- Security Research : Want to learn how to achieve this or that type of attack ? How to conduct other types of spoofing attacks ? Using Sectoo and reading the manpages for the tools (youll certainly have to search what tool & what manpage !), youll learn how. But be warned : Use of these tools in production environments is highly discouraged and could get you fired, or arrested in some countries.
- Secure Connectivity : Sectoo Linux is including OpenSSH, for securely administrating remote systems...
<<lessMain features:
- Vulnerability Scanning : Sectoo Linux provides you base services such as port scanning using Nmap. You can then gather banner informations, looking for versions of services installed, and discover some exploits using Nessus. You can also use this to test what your IDS can pick up and what it cant.
- Network Analysis : Using a standard sniffer like TCPDump or Ethereal/Wireshark, you can see whats going through a network in terms of protocols and content. And by using tools like p0f, you can achieve passive OS fingerprinting like never !
- Security Research : Want to learn how to achieve this or that type of attack ? How to conduct other types of spoofing attacks ? Using Sectoo and reading the manpages for the tools (youll certainly have to search what tool & what manpage !), youll learn how. But be warned : Use of these tools in production environments is highly discouraged and could get you fired, or arrested in some countries.
- Secure Connectivity : Sectoo Linux is including OpenSSH, for securely administrating remote systems...
Download (391.8MB)
Added: 2006-08-04 License: GPL (GNU General Public License) Price:
1176 downloads
J2ME ChartComponent 1.5
J2ME ChartComponent is an MIDP 2.0 charting component with basic functionality for showing charts on embedded devices. more>>
J2ME ChartComponent is an MIDP 2.0 charting component with basic functionality for showing charts on embedded devices.
It currently implements the following charts:
Line
Horizontal bars
Vertical bars
Though basic and far from being complete, its being already used for simple charts in production environments.
J2ME ChartComponent currently implements horizontal bar, vertical bar, and line charts. An incomplete and experimental pie chart component is implemented, as well as a very simple legenda.
Enhancements:
- With this release, it is possible to show values for pie charts.
- The drawing functions have been moved outside of the paint method, so that it is possible to draw directly on Image objects instead of having the chart items shown on the Screen (see the drawPie and drawChart methods).
- Some minor bugs have been fixed.
<<lessIt currently implements the following charts:
Line
Horizontal bars
Vertical bars
Though basic and far from being complete, its being already used for simple charts in production environments.
J2ME ChartComponent currently implements horizontal bar, vertical bar, and line charts. An incomplete and experimental pie chart component is implemented, as well as a very simple legenda.
Enhancements:
- With this release, it is possible to show values for pie charts.
- The drawing functions have been moved outside of the paint method, so that it is possible to draw directly on Image objects instead of having the chart items shown on the Screen (see the drawPie and drawChart methods).
- Some minor bugs have been fixed.
Download (0.093MB)
Added: 2007-06-30 License: Freely Distributable Price:
857 downloads
Qanava 0.1.0 pre1
Qanava is a graph drawing library for Qt. more>>
Qanava is a library built on top of the standard QT QCanvas to enable graphical display of graphs and other relational structures.
Build:
Just generate makefiles with the qmake command, and launch the build with make. The compilation has been tested successfully with GCC 3.3.6, GCC 4.0.0 and QT 3.3.4.
There is no dependencies outside of Trolltech QT.
Installation:
There is currently no automated installation system since this package is a preview version that is not stable enough to be used in production software.
Main features:
- Describe and layout simple graphs (with less than a few thousand nodes).
- Draw grids and graphical elements with various visual attributes on a QT canvas to model nodes.
- Provide ways to select nodes, display tooltips and manage zooming and navigation on the canvas.
<<lessBuild:
Just generate makefiles with the qmake command, and launch the build with make. The compilation has been tested successfully with GCC 3.3.6, GCC 4.0.0 and QT 3.3.4.
There is no dependencies outside of Trolltech QT.
Installation:
There is currently no automated installation system since this package is a preview version that is not stable enough to be used in production software.
Main features:
- Describe and layout simple graphs (with less than a few thousand nodes).
- Draw grids and graphical elements with various visual attributes on a QT canvas to model nodes.
- Provide ways to select nodes, display tooltips and manage zooming and navigation on the canvas.
Download (MB)
Added: 2007-01-26 License: LGPL (GNU Lesser General Public License) Price:
1002 downloads
Wizard Site Framework 3.2
The Wizard site framework is an integrated set of scripts in PHP for mounting and maintaining a dynamic standards-based site. more>>
Wizard Site Framework project has been used in production sites for three years, serving countless thousands of page views.
It is modular , coming out of the factory with a basic structure, allowing the webmaster to spend more time on design and less on the plumbing.
Included is a user authentication system, scripts for registering, changing passwords, contact forms, confirmation emails, listing users, editing their profiles, privacy statements (etc.etc.), fully integrated into the site skeleton and under the rule of common CSS stylesheets.
Very cool is the menu and sitemap systems which are generated from the database automatically when a page is added or altered during authoring. The menu systems use the famed Suckerfish CSS-driven Javascript code harnessed to a MySQL database with PHP scripting.
You can, for example, have either horizontal or vertical menus, and they can be set at whatever depth you think is reasonable. You can hide pages from the menu or sitemap or restrict their view to only site members with the appropriate credentials.
Other features include such utilities as visitors statistics tied to the user management system so that you can see what specific pages on your site your registered members are viewing.
This is the third generation of the Wizard framework. While the structure of the site continues to be managed through an admin panel, and stored in a MySQL database, what is rather unique about the latest iteration is that the page content, indeed the entire page, is stored on the server as an HTML - PHP file.
While previous versions stored HTML content in the database, the Version 3.0 makes the page completely accessible to such online programs as Macromedia Contribute or other authoring tools.
Unlike previous versions, or content management systems (CMS) that store the HTML content in a database table, you have the ability to include whatever server-side or client-side code in site pages, removing a major disadvantage of most content management systems.
This makes Wizard Site Framework totally customizable and flexible. And because it is lightweight and very efficient it is easily scalable to large sites.
Enhancements:
- Many major and minor bugs were fixed.
- The front and back ends are now W3C compliant.
- A Poll and Blog script was added.
- Preliminary support for the PostgreSQL database was added.
<<lessIt is modular , coming out of the factory with a basic structure, allowing the webmaster to spend more time on design and less on the plumbing.
Included is a user authentication system, scripts for registering, changing passwords, contact forms, confirmation emails, listing users, editing their profiles, privacy statements (etc.etc.), fully integrated into the site skeleton and under the rule of common CSS stylesheets.
Very cool is the menu and sitemap systems which are generated from the database automatically when a page is added or altered during authoring. The menu systems use the famed Suckerfish CSS-driven Javascript code harnessed to a MySQL database with PHP scripting.
You can, for example, have either horizontal or vertical menus, and they can be set at whatever depth you think is reasonable. You can hide pages from the menu or sitemap or restrict their view to only site members with the appropriate credentials.
Other features include such utilities as visitors statistics tied to the user management system so that you can see what specific pages on your site your registered members are viewing.
This is the third generation of the Wizard framework. While the structure of the site continues to be managed through an admin panel, and stored in a MySQL database, what is rather unique about the latest iteration is that the page content, indeed the entire page, is stored on the server as an HTML - PHP file.
While previous versions stored HTML content in the database, the Version 3.0 makes the page completely accessible to such online programs as Macromedia Contribute or other authoring tools.
Unlike previous versions, or content management systems (CMS) that store the HTML content in a database table, you have the ability to include whatever server-side or client-side code in site pages, removing a major disadvantage of most content management systems.
This makes Wizard Site Framework totally customizable and flexible. And because it is lightweight and very efficient it is easily scalable to large sites.
Enhancements:
- Many major and minor bugs were fixed.
- The front and back ends are now W3C compliant.
- A Poll and Blog script was added.
- Preliminary support for the PostgreSQL database was added.
Download (0.36MB)
Added: 2006-01-22 License: Free for non-commercial use Price:
1378 downloads
Firebird Relational Database 2.0 / 2.1 Beta 1
Firebird Relational Database is a cluster of databases through JDBC. more>>
Firebird is a relational database offering many ANSI SQL-99 features that runs on Linux, Windows, and a variety of Unix platforms.
Firebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers. Firebird Relational Database has been used in production systems and under a variety of names since 1981.
Firebird is a commercially independent project of C and C++ programmers, technical advisors and supporters developing and enhancing a multi-platform relational database management system based on the source code released by Inprise Corp (now known as Borland Software Corp) on 25 July, 2000 under the InterBase Public License v.1.0.
New code modules added to Firebird are licensed under the Initial Developers Public License. (IDPL). The original modules released by Inprise are licensed under the InterBase Public License v.1.0. Both licences are modified versions of the Mozilla Public License v.1.1.
Installing:
In order to install the firebird version of IB 6.0 you will need to perform the following steps:
1. Get the required packages:
Get the glibc update from RedHat, the one I used
was from ftp://updates.redhat.com/7.0/i386/glibc-2.2-5.i386.rpm
Get ncurses4 from
ftp://carrier.ision.net/pub/ftp.redhat.com/i386/en/RedHat/RPMS/ncurses4-5.0-2.i386.rpm
or another redhat mirror.
Get Firebird from
ftp://firebird.sourceforge.net/pub/firebird/release/FirebirdSS-0.9-1.i386.rpm
2. Prepare the installation:
Log in as root.
Use a plain text console to do this and be sure
that all Gnome desktops are closed.
(One user reported that the Gnome desktop
(apparently ICEwm)
blocked port 3050. I could not reproduce this
here, but it seems that it uses port numbers
that arent assigned in /etc/services for own
purposes)
3. Add localhost.localdomain to /etc/hosts.equiv:
echo localhost.localdomain >>/etc/hosts.equiv
4. Change to the directory where you have placed
the downloaded packages.
5. Install the glibc update:
rpm --install --force glibc-2.2-5.i386.rpm
6. Install libncurses.so.4:
rpm --install --force ncurses4-5.0-2.i386.rpm
7. Install Firebird:
rpm --install --force FirebirdSS-0.9-1.i386.rpm
8. Add /opt/interbase/bin to your path:
You can either change /etc/profile
or do
export PATH=$PATH: /opt/interbase/bin
or
change the profiles in your users home directories
9. Check that all went well:
Read /opt/interbase/SYSDBA.password
to get your SYSDBA password.
gsec -display
should display the list of known users
(SYSDBA only after a fresh install)
isql /opt/interbase/examples/employee.gdb
SQL> SHOW TABLES;
should display all tables from this database
SQL>quit;
<<lessFirebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers. Firebird Relational Database has been used in production systems and under a variety of names since 1981.
Firebird is a commercially independent project of C and C++ programmers, technical advisors and supporters developing and enhancing a multi-platform relational database management system based on the source code released by Inprise Corp (now known as Borland Software Corp) on 25 July, 2000 under the InterBase Public License v.1.0.
New code modules added to Firebird are licensed under the Initial Developers Public License. (IDPL). The original modules released by Inprise are licensed under the InterBase Public License v.1.0. Both licences are modified versions of the Mozilla Public License v.1.1.
Installing:
In order to install the firebird version of IB 6.0 you will need to perform the following steps:
1. Get the required packages:
Get the glibc update from RedHat, the one I used
was from ftp://updates.redhat.com/7.0/i386/glibc-2.2-5.i386.rpm
Get ncurses4 from
ftp://carrier.ision.net/pub/ftp.redhat.com/i386/en/RedHat/RPMS/ncurses4-5.0-2.i386.rpm
or another redhat mirror.
Get Firebird from
ftp://firebird.sourceforge.net/pub/firebird/release/FirebirdSS-0.9-1.i386.rpm
2. Prepare the installation:
Log in as root.
Use a plain text console to do this and be sure
that all Gnome desktops are closed.
(One user reported that the Gnome desktop
(apparently ICEwm)
blocked port 3050. I could not reproduce this
here, but it seems that it uses port numbers
that arent assigned in /etc/services for own
purposes)
3. Add localhost.localdomain to /etc/hosts.equiv:
echo localhost.localdomain >>/etc/hosts.equiv
4. Change to the directory where you have placed
the downloaded packages.
5. Install the glibc update:
rpm --install --force glibc-2.2-5.i386.rpm
6. Install libncurses.so.4:
rpm --install --force ncurses4-5.0-2.i386.rpm
7. Install Firebird:
rpm --install --force FirebirdSS-0.9-1.i386.rpm
8. Add /opt/interbase/bin to your path:
You can either change /etc/profile
or do
export PATH=$PATH: /opt/interbase/bin
or
change the profiles in your users home directories
9. Check that all went well:
Read /opt/interbase/SYSDBA.password
to get your SYSDBA password.
gsec -display
should display the list of known users
(SYSDBA only after a fresh install)
isql /opt/interbase/examples/employee.gdb
SQL> SHOW TABLES;
should display all tables from this database
SQL>quit;
Download (1.4MB)
Added: 2007-07-02 License: MPL (Mozilla Public License) Price:
847 downloads
Hpodder 1.0.0
Hpodder is a tool to scan and download podcasts. more>>
Hpodder is a tool to scan and download podcasts. Such tools are often called podcatchers.
Hpodder is a command-line tool for Linux. The project has quite a few features. A few highlights are that it is easy to learn and use, has automatic discovery of feed metadata, and can import iPodder settings.
Enhancements:
- This is the first production release.
- Feeds or episodes that repeatedly return errors are now automatically pruned.
- Cleaning of download areas was improved.
- Bugs were fixed.
<<lessHpodder is a command-line tool for Linux. The project has quite a few features. A few highlights are that it is easy to learn and use, has automatic discovery of feed metadata, and can import iPodder settings.
Enhancements:
- This is the first production release.
- Feeds or episodes that repeatedly return errors are now automatically pruned.
- Cleaning of download areas was improved.
- Bugs were fixed.
Download (0.19MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
501 downloads
YourKit Java Profiler 7.0 EAP Build 2080
YourKit Java Profiler is a CPU and memory profiler. more>>
YourKit Java Profiler is a CPU and memory profiler that makes it easy to solve wide range of CPU- and memory-related performance problems.
YourKit Java Profiler features automatic leak detection, powerful tools for the analysis of memory distribution, an object heap browser, comprehensive memory tests as part of your JUnit testing process, extremely low profiling overhead, transparent deobfu
YourKit, LLC is a new technology leader, creator of the most innovative and intelligent tool for profiling Java applications. The YourKit Java Profiler has been already recognized by the IT professionals and analysts as the best profiling tool for Java.
With YourKit Java Profiler, both CPU and memory profiling have come to the highest professional level, where one can profile even huge applications with maximum productivity and zero overhead.
There are several, recent innovations to profiling that have gained well-deserved popularity among professional Java developers, both in big and small companies.
YourKit Java Profiler is a new leap in the evolution of profiling tools!
Main features:
General:
- On demand profiling
- Easiest installation and configuration
- Unlimited profiling for one fee
- Full, complete J2EE support
- Ability to profile in production environment
- Full Java 5.0 support
- Rich multiplatform support
- Robust profiler API
- IDE integration
- Filters in CPU and memory views
- Customizable user interface
- Easy way to connect to locally running applications
- Ability to export profiling results to HTML
- Remote profiling
CPU profiling:
- Two methods of CPU profiling: sampling and tracing
- CPU hot spots and method invocation trees
- Unique "Merged callees" view
- Method back traces view
- "Thread" and "wall" times
- Method "own time", that excludes time spent in called methods
- General snapshot info and deobfuscator configuration
Memory profiling:
- Unique comprehensive Objects view
- Easy way to browse instances of particular class
- "Find Paths" helps to find reasons of memory leaks
- Find strings that match given pattern
- Optional recording of object allocations
- "Quick Info" action
- Ability to compare memory snapshots
- Unique descriptive language for memory analysis
- General snapshot info and deobfuscator configuration
- Automated comprehensive memory test
NOTE: THIS IS PREVIEW SOFTWARE AIMED AT PROVIDING YOU WITH AN OPPORTUNITY TO TEST THE NEWEST FEATURES SCHEDULED FOR THE NEXT MAJOR RELEASE. YourKit, LLC DOES NOT GUARANTEE THAT THIS SOFTWARE WILL RUN TROUBLE-FREE. USING THIS SOFTWARE IS AT YOUR OWN DISCRETION AND DOES NOT ENTITLE YOU TO ANY CUSTOMER SUPPORT.
Enhancements:
- Navigation to source code is now implemented in the NetBeans 6-milestone1 IDE.
- Several bugs were fixed in Eclipse integration and the profiler agent.
<<lessYourKit Java Profiler features automatic leak detection, powerful tools for the analysis of memory distribution, an object heap browser, comprehensive memory tests as part of your JUnit testing process, extremely low profiling overhead, transparent deobfu
YourKit, LLC is a new technology leader, creator of the most innovative and intelligent tool for profiling Java applications. The YourKit Java Profiler has been already recognized by the IT professionals and analysts as the best profiling tool for Java.
With YourKit Java Profiler, both CPU and memory profiling have come to the highest professional level, where one can profile even huge applications with maximum productivity and zero overhead.
There are several, recent innovations to profiling that have gained well-deserved popularity among professional Java developers, both in big and small companies.
YourKit Java Profiler is a new leap in the evolution of profiling tools!
Main features:
General:
- On demand profiling
- Easiest installation and configuration
- Unlimited profiling for one fee
- Full, complete J2EE support
- Ability to profile in production environment
- Full Java 5.0 support
- Rich multiplatform support
- Robust profiler API
- IDE integration
- Filters in CPU and memory views
- Customizable user interface
- Easy way to connect to locally running applications
- Ability to export profiling results to HTML
- Remote profiling
CPU profiling:
- Two methods of CPU profiling: sampling and tracing
- CPU hot spots and method invocation trees
- Unique "Merged callees" view
- Method back traces view
- "Thread" and "wall" times
- Method "own time", that excludes time spent in called methods
- General snapshot info and deobfuscator configuration
Memory profiling:
- Unique comprehensive Objects view
- Easy way to browse instances of particular class
- "Find Paths" helps to find reasons of memory leaks
- Find strings that match given pattern
- Optional recording of object allocations
- "Quick Info" action
- Ability to compare memory snapshots
- Unique descriptive language for memory analysis
- General snapshot info and deobfuscator configuration
- Automated comprehensive memory test
NOTE: THIS IS PREVIEW SOFTWARE AIMED AT PROVIDING YOU WITH AN OPPORTUNITY TO TEST THE NEWEST FEATURES SCHEDULED FOR THE NEXT MAJOR RELEASE. YourKit, LLC DOES NOT GUARANTEE THAT THIS SOFTWARE WILL RUN TROUBLE-FREE. USING THIS SOFTWARE IS AT YOUR OWN DISCRETION AND DOES NOT ENTITLE YOU TO ANY CUSTOMER SUPPORT.
Enhancements:
- Navigation to source code is now implemented in the NetBeans 6-milestone1 IDE.
- Several bugs were fixed in Eclipse integration and the profiler agent.
Download (7.7MB)
Added: 2007-08-15 License: Free for non-commercial use Price:
508 downloads
GNUstep 1.14.0
GNUstep is a cross-platform, object-oriented framework for desktop application development. more>>
GNUstep is a cross-platform, object-oriented framework for desktop application development.
Based on the OpenStep specification originally created by NeXT (now Apple), GNUstep enables developers to rapidly build sophisticated software by employing a large library of reusable software components.
GNUstep is used in production environments at several organizations...
...an object-oriented tool development kit
The first two packages (GNUstep-make and GNUstep-base) that make up the core libraries contain a complete system for writing non-graphic tools in Objective-C. The make package allows you to setup a simple and powerful system for building, installing and packaging your tools. The base package includes all the classes necessary for writing an incredible array of tools, from wrappers for system tools to tools for communicating with web and other types of servers.
...a graphical development kit
The core libraries contain classes for developing a complete graphical application for almost any purpose. Along with our object-oriented, graphical development applications, ProjectCenter and Gorm its simple to write very complex commercial applications in weeks or months, rather than years (or often, never) in the case of other development environments.
...a desktop
Many GNUstep applications have been written to provide a powerful user experience for working on your computer. These include our workspace manager, GWorkspace, and mail client, GNUMail. GNUstep does NOT have a window manager. You can use any window manager you want, although we recommend that you use WindowMaker for a better experience (The WindowMaker project is not associated with GNUstep). Many other applications that are useful for a desktop are not contained on this web site, nor are the controlled by the GNUstep project - there are too many ideas about what a descktop should look like that we have not made up our minds about which one to endose yet. Here are some current ones:
- Project Backbone
- Etoile
<<lessBased on the OpenStep specification originally created by NeXT (now Apple), GNUstep enables developers to rapidly build sophisticated software by employing a large library of reusable software components.
GNUstep is used in production environments at several organizations...
...an object-oriented tool development kit
The first two packages (GNUstep-make and GNUstep-base) that make up the core libraries contain a complete system for writing non-graphic tools in Objective-C. The make package allows you to setup a simple and powerful system for building, installing and packaging your tools. The base package includes all the classes necessary for writing an incredible array of tools, from wrappers for system tools to tools for communicating with web and other types of servers.
...a graphical development kit
The core libraries contain classes for developing a complete graphical application for almost any purpose. Along with our object-oriented, graphical development applications, ProjectCenter and Gorm its simple to write very complex commercial applications in weeks or months, rather than years (or often, never) in the case of other development environments.
...a desktop
Many GNUstep applications have been written to provide a powerful user experience for working on your computer. These include our workspace manager, GWorkspace, and mail client, GNUMail. GNUstep does NOT have a window manager. You can use any window manager you want, although we recommend that you use WindowMaker for a better experience (The WindowMaker project is not associated with GNUstep). Many other applications that are useful for a desktop are not contained on this web site, nor are the controlled by the GNUstep project - there are too many ideas about what a descktop should look like that we have not made up our minds about which one to endose yet. Here are some current ones:
- Project Backbone
- Etoile
Download (1.9MB)
Added: 2007-04-19 License: LGPL (GNU Lesser General Public License) Price:
924 downloads
GNU Libidn 1.0
GNU Libidn is a library for preparing internationalized strings. more>>
GNU Libidn is an implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group, used for internationalized domain names. The package is available under the GNU Lesser General Public License.
The library contains a generic Stringprep implementation that does Unicode 3.2 NFKC normalization, mapping and prohibitation of characters, and bidirectional character handling. Profiles for iSCSI, Kerberos 5, Nameprep, SASL and XMPP are included. Punycode and ASCII Compatible Encoding (ACE) via IDNA are supported.
The Stringprep API consists of two main functions, one for converting data from the systems native representation into UTF-8, and one function to perform the Stringprep processing. Adding a new Stringprep profile for your application within the API is straightforward.
The Punycode API consists of one encoding function and one decoding function. The IDNA API consists of the ToASCII and ToUnicode functions, as well as an high-level interface for converting entire domain names to and from the ACE encoded form.
The GNU Libidn library is used by, e.g., GNU SASL and Shishi to process user names and passwords. Libidn can be built into GNU Libc to enable a new system-wide getaddrinfo() flag for IDN processing.
Libidn is developed for the GNU/Linux system, but runs on over 20 platforms including most major Unix platforms and Windows, and many kind of devices including iPAQ handhelds and S/390 mainframes. Libidn is written in C and (parts of) the API is accessible from C, C++, Emacs Lisp, Python and Java. An experimental native Java API is also available.
Enhancements:
- Libidn is now considered stable, and is being used in production at many sites world-wide.
- The command-line tools, examples, etc are now licensed under GPL version 3.
- Documentation, translations, and gnulib files have been updated.
<<lessThe library contains a generic Stringprep implementation that does Unicode 3.2 NFKC normalization, mapping and prohibitation of characters, and bidirectional character handling. Profiles for iSCSI, Kerberos 5, Nameprep, SASL and XMPP are included. Punycode and ASCII Compatible Encoding (ACE) via IDNA are supported.
The Stringprep API consists of two main functions, one for converting data from the systems native representation into UTF-8, and one function to perform the Stringprep processing. Adding a new Stringprep profile for your application within the API is straightforward.
The Punycode API consists of one encoding function and one decoding function. The IDNA API consists of the ToASCII and ToUnicode functions, as well as an high-level interface for converting entire domain names to and from the ACE encoded form.
The GNU Libidn library is used by, e.g., GNU SASL and Shishi to process user names and passwords. Libidn can be built into GNU Libc to enable a new system-wide getaddrinfo() flag for IDN processing.
Libidn is developed for the GNU/Linux system, but runs on over 20 platforms including most major Unix platforms and Windows, and many kind of devices including iPAQ handhelds and S/390 mainframes. Libidn is written in C and (parts of) the API is accessible from C, C++, Emacs Lisp, Python and Java. An experimental native Java API is also available.
Enhancements:
- Libidn is now considered stable, and is being used in production at many sites world-wide.
- The command-line tools, examples, etc are now licensed under GPL version 3.
- Documentation, translations, and gnulib files have been updated.
Download (2.3MB)
Added: 2007-08-02 License: GPL v3 Price:
821 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 in production 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