graphically extreme
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 131
General Graphical User Interface 0.5.1
General Graphical User Interface is a wizard-like environment to execute console commands graphically. more>>
General Graphics User Interface is an effort to produce a common graphical user interface for any command-line program.
It uses a wizard-like input front end to collect the information needed. It then calls the desired program automatically with all the necessary options.
The user is able to point&click on various options and select them in a convenient way. In order to create a new user-interface, a user doesnt need to know a programming language, since there is a graphical editor for new GGUI "scripts".
<<lessIt uses a wizard-like input front end to collect the information needed. It then calls the desired program automatically with all the necessary options.
The user is able to point&click on various options and select them in a convenient way. In order to create a new user-interface, a user doesnt need to know a programming language, since there is a graphical editor for new GGUI "scripts".
Download (0.21MB)
Added: 2005-04-28 License: GPL (GNU General Public License) Price:
1642 downloads
WhileInterpreter 4.2
WhileInterpreter is an interpreter for the WHILE programming language used for learning purpose. more>>
WhileInterpreter is an interpreter for the WHILE programming language used for learning purpose.
WhileInterpreter has few constructs and easy semantics.
Command line interpreters allow users to issue various commands in a very efficient (and often terse) way. This requires the user to know the names of the commands and their parameters, and the syntax of the language that is interpreted. From the 1960s onwards, user interaction with computers was primarily by means of command line interfaces.
In the 1970s, researchers began to develop graphical user interfaces (GUIs)to provide an alternative user interface for computers, whereby commands were represented by pictorial operations, rather than as textual descriptions. Since they are easier to learn than command line interfaces, they have become the most common way of interacting with a computer.
However, command line interpreters remain widely used in conjunction with GUIs. For some complex tasks, the latter are less effective because of the large number of menus and dialog boxes presented and because of the innate difficulty of representing the underlying task graphically.
<<lessWhileInterpreter has few constructs and easy semantics.
Command line interpreters allow users to issue various commands in a very efficient (and often terse) way. This requires the user to know the names of the commands and their parameters, and the syntax of the language that is interpreted. From the 1960s onwards, user interaction with computers was primarily by means of command line interfaces.
In the 1970s, researchers began to develop graphical user interfaces (GUIs)to provide an alternative user interface for computers, whereby commands were represented by pictorial operations, rather than as textual descriptions. Since they are easier to learn than command line interfaces, they have become the most common way of interacting with a computer.
However, command line interpreters remain widely used in conjunction with GUIs. For some complex tasks, the latter are less effective because of the large number of menus and dialog boxes presented and because of the innate difficulty of representing the underlying task graphically.
Download (0.021MB)
Added: 2006-03-16 License: Free For Educational Use Price:
1317 downloads
Extreme FTPd 0.3.4
Extreme FTP is an FTP daemon created with security as a priority. more>>
Extreme FTP is an FTP daemon created with security as a priority.
Extreme FTPd features SSL/TLS and other ways to both secure the end hosts during connections and transfers.
Enhancements:
- This release adds add_features() for module developers, auth ->lock = config ->lock in auth.c, and a compilation date in eftpd -D.
- It fixes NLST (used by the Windows client), a mistake in feat.h, and a typo in ls.c.
<<lessExtreme FTPd features SSL/TLS and other ways to both secure the end hosts during connections and transfers.
Enhancements:
- This release adds add_features() for module developers, auth ->lock = config ->lock in auth.c, and a compilation date in eftpd -D.
- It fixes NLST (used by the Windows client), a mistake in feat.h, and a typo in ls.c.
Download (0.23MB)
Added: 2005-11-25 License: GPL (GNU General Public License) Price:
1433 downloads
Test::Extreme 0.12
Test::Extreme is a perlish unit testing framework. more>>
Test::Extreme is a perlish unit testing framework.
SYNOPSIS
# In ModuleOne.pm combine unit tests with code
package ModuleOne;
use Test::Extreme;
sub foo { return 23 };
sub test_foo { assert_equals foo, 23 }
# at the end of the module
run_tests ModuleOne if $0 =~ /ModuleOne.pm$/;
# To run the tests in this module on the command line type
perl ModuleOne.pm
# If you have tests in several modules (say in ModuleOne.pm,
# ModuleTwo.pm and ModuleThree.pm, create test.pl containing
# precisely the following:
use ModuleOne;
use ModuleTwo;
use ModuleThree;
run_tests ModuleOne, ModuleTwo, ModuleThree,
# Then run these tests on the command line with
perl test.pl
# If you prefer to get Perls classic "ok/not ok" output use
# replace run_tests with run_tests_as_script in all of the
# above
# Also take a look at Test/Extreme.pm which includes its own
# unit tests for how to instrument a module with unit tests
Test::Extreme is a perlish port of the xUnit testing
framework. It is in the spirit of JUnit, the unit testing
framework for Java, by Kent Beck and Erich Gamma. Instead of
porting the implementation of JUnit we have ported its spirit
to Perl.
The target market for this module is perlish people
everywhere who value laziness above all else.
Test::Extreme is especially written so that it can be easily
and concisely used from Perl programs without turning them
into Java and without inducing object-oriented nightmares in
innocent Perl programmers. It has a shallow learning curve.
The goal is to adopt the unit testing idea minus the OO
cruft, and to make the world a better place by promoting the
virtues of laziness, impatience and hubris.
You test a given unit (a script, a module, whatever) by using
Test::Extreme, which exports the following routines into your
namespace:
assert $x - $x is true
assert_true $x - $x is true
assert_false $x - $x is not true
assert_passed - the last eval did not die ($@ eq "")
assert_failed - the last eval caused a die ($@ ne "")
assert_some $x - $x is true
assert_none - $x is false
assert_equals $x, $y - recursively tests arrayrefs, hashrefs
and strings to ensure they have the same
contents
assert_contains $string, $list
- $list contains $string assert_subset
$element_list, $list - $element_list is
a subset of $list (both are arrayrefs)
assert_is_array $x - $x is an arrayref
assert_is_hash $x - $x is a hashref
assert_is_string $x - $x is a scalar
assert_size N, $list - the arrayref contains N elements
assert_keys [k1, k2], $hash
- $hash contains k1, k2 as keys
run_tests_as_script - run all tests in package main and emit
Perls classic "ok/not ok" style output
run_tests_as_script NS1, NS2, ...
- run all tests in package main, NS1,
NS2, and so on and emit Perls classic
"ok/not ok" style output
run_tests - run all tests in package main
run_tests NS1, NS2, ...
- run all tests in package main, NS1,
NS2, and so on
For an example on how to use these assert take a look at
Test/Extreme.pm which includes it own unit tests and
illustrates different ways of using these asserts.
The function run_tests finds all functions that start with
the word test (preceded by zero or more underscores) and runs
them one at a time. It looks in the main namespace by
default and also looks in any namespaces passed to it as
arguments.
Running the tests generates a status line (a "." for every
successful test run, or an "F" for any failed test run), a
summary result line ("OK" or "FAILURES!!!") and zero or more
lines containing detailed error messages for any failed
tests.
To get Perls classic "ok/not ok" style output (which is
useful for writing test scripts) use run_tests_as_script
instead of run_tests.
<<lessSYNOPSIS
# In ModuleOne.pm combine unit tests with code
package ModuleOne;
use Test::Extreme;
sub foo { return 23 };
sub test_foo { assert_equals foo, 23 }
# at the end of the module
run_tests ModuleOne if $0 =~ /ModuleOne.pm$/;
# To run the tests in this module on the command line type
perl ModuleOne.pm
# If you have tests in several modules (say in ModuleOne.pm,
# ModuleTwo.pm and ModuleThree.pm, create test.pl containing
# precisely the following:
use ModuleOne;
use ModuleTwo;
use ModuleThree;
run_tests ModuleOne, ModuleTwo, ModuleThree,
# Then run these tests on the command line with
perl test.pl
# If you prefer to get Perls classic "ok/not ok" output use
# replace run_tests with run_tests_as_script in all of the
# above
# Also take a look at Test/Extreme.pm which includes its own
# unit tests for how to instrument a module with unit tests
Test::Extreme is a perlish port of the xUnit testing
framework. It is in the spirit of JUnit, the unit testing
framework for Java, by Kent Beck and Erich Gamma. Instead of
porting the implementation of JUnit we have ported its spirit
to Perl.
The target market for this module is perlish people
everywhere who value laziness above all else.
Test::Extreme is especially written so that it can be easily
and concisely used from Perl programs without turning them
into Java and without inducing object-oriented nightmares in
innocent Perl programmers. It has a shallow learning curve.
The goal is to adopt the unit testing idea minus the OO
cruft, and to make the world a better place by promoting the
virtues of laziness, impatience and hubris.
You test a given unit (a script, a module, whatever) by using
Test::Extreme, which exports the following routines into your
namespace:
assert $x - $x is true
assert_true $x - $x is true
assert_false $x - $x is not true
assert_passed - the last eval did not die ($@ eq "")
assert_failed - the last eval caused a die ($@ ne "")
assert_some $x - $x is true
assert_none - $x is false
assert_equals $x, $y - recursively tests arrayrefs, hashrefs
and strings to ensure they have the same
contents
assert_contains $string, $list
- $list contains $string assert_subset
$element_list, $list - $element_list is
a subset of $list (both are arrayrefs)
assert_is_array $x - $x is an arrayref
assert_is_hash $x - $x is a hashref
assert_is_string $x - $x is a scalar
assert_size N, $list - the arrayref contains N elements
assert_keys [k1, k2], $hash
- $hash contains k1, k2 as keys
run_tests_as_script - run all tests in package main and emit
Perls classic "ok/not ok" style output
run_tests_as_script NS1, NS2, ...
- run all tests in package main, NS1,
NS2, and so on and emit Perls classic
"ok/not ok" style output
run_tests - run all tests in package main
run_tests NS1, NS2, ...
- run all tests in package main, NS1,
NS2, and so on
For an example on how to use these assert take a look at
Test/Extreme.pm which includes it own unit tests and
illustrates different ways of using these asserts.
The function run_tests finds all functions that start with
the word test (preceded by zero or more underscores) and runs
them one at a time. It looks in the main namespace by
default and also looks in any namespaces passed to it as
arguments.
Running the tests generates a status line (a "." for every
successful test run, or an "F" for any failed test run), a
summary result line ("OK" or "FAILURES!!!") and zero or more
lines containing detailed error messages for any failed
tests.
To get Perls classic "ok/not ok" style output (which is
useful for writing test scripts) use run_tests_as_script
instead of run_tests.
Download (0.005MB)
Added: 2007-06-08 License: Perl Artistic License Price:
869 downloads
Text::Graph 0.23
Text::Graph is a Perl extension for generating text-based graphs. more>>
Text::Graph is a Perl extension for generating text-based graphs.
SYNOPSIS
use Text::Graph;
blah blah blah
Some data is easier to analyze graphically than in its raw form. In many cases, however, a full-blown multicolor graphic representation is overkill. In these cases, a simple graph can provide an appropriate graphical representation.
The Text::Graph module provides a simple text-based graph of a dataset. Although this approach is not appropriate for all data analysis, it can be useful in some cases.
<<lessSYNOPSIS
use Text::Graph;
blah blah blah
Some data is easier to analyze graphically than in its raw form. In many cases, however, a full-blown multicolor graphic representation is overkill. In these cases, a simple graph can provide an appropriate graphical representation.
The Text::Graph module provides a simple text-based graph of a dataset. Although this approach is not appropriate for all data analysis, it can be useful in some cases.
Download (0.009MB)
Added: 2006-08-28 License: Perl Artistic License Price:
1153 downloads
Echo2 Extras 0.3
Echo2 Extras provides a collection of additional user interface components for the Echo2 framework. more>>
Echo2 Extras provides a collection of additional user interface components for the Echo2 framework. Echo2 Extras project is currently under development and should be considered beta-quality software.
Current components provided by the Extras library include:
- AccordionPane: A tabbed container that displays its contents between vertical separators with only one child component displayed at a time. The separators slide up and down with an animated effect when the user changes selection by clicking on a separator.
- BorderPane: A simple single-child container that displays its content surrounded by a graphically drawn FillImageBorder.
- CalendarSelect: A date selection component which provides a view of an entire calendar month to aid in selection.
- ColorSelect: An Hue-Saturation-Value based color selection component.
- PulldownMenu: A pull-down menu component with the capability to display submenus and toggle/radio items.
- TabPane: A traditional tabbed pane implementation. This component can lazy-render its children to reduce initial load times.
Enhancements:
- Opacity-based fades were added to TransitionPane.
- The Calendar component has been localized for English, German, French, Greek, Italian, Spanish, and 1337.
- IE6 BorderPane rendering issues were fixed, including enabling transparent borders with this browser.
<<lessCurrent components provided by the Extras library include:
- AccordionPane: A tabbed container that displays its contents between vertical separators with only one child component displayed at a time. The separators slide up and down with an animated effect when the user changes selection by clicking on a separator.
- BorderPane: A simple single-child container that displays its content surrounded by a graphically drawn FillImageBorder.
- CalendarSelect: A date selection component which provides a view of an entire calendar month to aid in selection.
- ColorSelect: An Hue-Saturation-Value based color selection component.
- PulldownMenu: A pull-down menu component with the capability to display submenus and toggle/radio items.
- TabPane: A traditional tabbed pane implementation. This component can lazy-render its children to reduce initial load times.
Enhancements:
- Opacity-based fades were added to TransitionPane.
- The Calendar component has been localized for English, German, French, Greek, Italian, Spanish, and 1337.
- IE6 BorderPane rendering issues were fixed, including enabling transparent borders with this browser.
Download (1.1MB)
Added: 2006-08-10 License: MPL (Mozilla Public License) Price:
1171 downloads
PaulStretch 1.024
PaulStretch is a program for stretching the audio. more>>
PaulStretch is a program for stretching the audio. It is suitable only for extreme sound stretching of the audio (like 50x) and for applying special effects by "spectral smoothing" the sounds.
It can transform any sound/music to a texture. The program is Open-Source and its released under the version 2 of the General Public License. You can download the source code for Linux or the Windows binaries.
Please note that this is suitable only for extreme time stretching (e.g. if have a melody of 3 minutes and you want to listen it in 3 hours). If you want "less extreme" time stretching, you can use a program which contains the SoundTouch library.
Main features:
- It produces high quality extreme sound stretching. While most sound stretching software sounds bad when trying to stretch the sounds a lot, this one is optimized for extreme sound stretching. So, the stretch amount is unlimited.
- You can play the stretched sound in real-time (including the possibility to "freeze" the sound) or you can render the whole sound or a part of it to audio files
- Support for WAV and OGG VORBIS files
- It is a Free Software
Enhancements:
- Input MP3 support, added effects, and other improvements.
<<lessIt can transform any sound/music to a texture. The program is Open-Source and its released under the version 2 of the General Public License. You can download the source code for Linux or the Windows binaries.
Please note that this is suitable only for extreme time stretching (e.g. if have a melody of 3 minutes and you want to listen it in 3 hours). If you want "less extreme" time stretching, you can use a program which contains the SoundTouch library.
Main features:
- It produces high quality extreme sound stretching. While most sound stretching software sounds bad when trying to stretch the sounds a lot, this one is optimized for extreme sound stretching. So, the stretch amount is unlimited.
- You can play the stretched sound in real-time (including the possibility to "freeze" the sound) or you can render the whole sound or a part of it to audio files
- Support for WAV and OGG VORBIS files
- It is a Free Software
Enhancements:
- Input MP3 support, added effects, and other improvements.
Download (0.029MB)
Added: 2006-09-06 License: GPL (GNU General Public License) Price:
1144 downloads
Gabedit 2.0.9 Pre
Gabedit is a GUI for Gaussian and Molpro. more>>
Gabedit is a Graphical User Interface to Gaussian, Molcas, Molpro and MPQC computational chemistry packages.
Gabedit includes graphical facilities for generating keywords and options, molecule specifications and ther input sections for even the most advanced calculation types Gabedit includes an advanced Molecule Builder.
You can use it to rapidly sketch in molecules and examine them in three dimensions. You can build molecules by atom, ring, group, amino acid and nucleoside. You can also read geometry from a file. Most major molecular file formats are supported.
Gabedit includes a Gaussian, Molcas, Molpro and MPQC Calculation Setup window which allows you to set up Gaussian, Molcas, Molpro and MPQC jobs in a simple and straightforward manner.
Gabedit includes a text editor for editing Molcas, Molpro, Gaussian and MPQC input files.
Gabedit can graphically display a variety of Gaussian, Molcas, Molpro, MPQC and (partially) ADF calculation results, including the following:
- Molecular orbitals.
- Surfaces from the electron density, electrostatic potential, NMR shielding density, and other properties.
- Surfaces may be displayed in solid, translucent and wire mesh modes.
- Surfaces can be colored by a separate property.
- Contours (colorcoded).
- Planes (colorcoded).
- Dipole
- XYZ axes and the principal axes of the molecule.
- Animation of the normal modes corresponding to vibrational frequencies.
- Animation of the rotation of geometry, surface, dipole, xyz and the principal axes of the molecule.
- Animation of contours.
- Animation of colorcoded planes.
Gabedit can display IR and Raman computed spectra. Gabedit can generate a povray file for geometry (atoms + bonds, including hydrogens bond), surfaces (including colorcoded surfaces), contours, colorcoded planes.
Gabedit can save picture in PPM, BMP , (JPEG) and PS format. Gabedit can generate automatically a series of pictures for animation (vibration, geometry convergence, rotation, contours, colorcoded planes).
<<lessGabedit includes graphical facilities for generating keywords and options, molecule specifications and ther input sections for even the most advanced calculation types Gabedit includes an advanced Molecule Builder.
You can use it to rapidly sketch in molecules and examine them in three dimensions. You can build molecules by atom, ring, group, amino acid and nucleoside. You can also read geometry from a file. Most major molecular file formats are supported.
Gabedit includes a Gaussian, Molcas, Molpro and MPQC Calculation Setup window which allows you to set up Gaussian, Molcas, Molpro and MPQC jobs in a simple and straightforward manner.
Gabedit includes a text editor for editing Molcas, Molpro, Gaussian and MPQC input files.
Gabedit can graphically display a variety of Gaussian, Molcas, Molpro, MPQC and (partially) ADF calculation results, including the following:
- Molecular orbitals.
- Surfaces from the electron density, electrostatic potential, NMR shielding density, and other properties.
- Surfaces may be displayed in solid, translucent and wire mesh modes.
- Surfaces can be colored by a separate property.
- Contours (colorcoded).
- Planes (colorcoded).
- Dipole
- XYZ axes and the principal axes of the molecule.
- Animation of the normal modes corresponding to vibrational frequencies.
- Animation of the rotation of geometry, surface, dipole, xyz and the principal axes of the molecule.
- Animation of contours.
- Animation of colorcoded planes.
Gabedit can display IR and Raman computed spectra. Gabedit can generate a povray file for geometry (atoms + bonds, including hydrogens bond), surfaces (including colorcoded surfaces), contours, colorcoded planes.
Gabedit can save picture in PPM, BMP , (JPEG) and PS format. Gabedit can generate automatically a series of pictures for animation (vibration, geometry convergence, rotation, contours, colorcoded planes).
Download (1.2MB)
Added: 2007-05-25 License: BSD License Price:
886 downloads
GNU polyxmass 0.9.6
GNU polyxmass is mass spectrometric software suite for (bio)-polymers. more>>
GNU polyxmass is mass spectrometric software suite for (bio)-polymers.
GNU polyxmass features an integrated mass spectrometry framework where users are able to define brand new polymer chemistries (within the polyxdef module), and use these definitions in order to make simple mass calculations (within the polyxcalc module) or perform complex simulations of polymer chemistry with related mass data computations (within the polyxedit module).
The framework allows full customization of every aspect of the polymer chemistry being defined, and of the way the polymer sequences are graphically displayed. This program was formerly called "polyXmass".
<<lessGNU polyxmass features an integrated mass spectrometry framework where users are able to define brand new polymer chemistries (within the polyxdef module), and use these definitions in order to make simple mass calculations (within the polyxcalc module) or perform complex simulations of polymer chemistry with related mass data computations (within the polyxedit module).
The framework allows full customization of every aspect of the polymer chemistry being defined, and of the way the polymer sequences are graphically displayed. This program was formerly called "polyXmass".
Download (0.90MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1205 downloads
Tiny Report 0.9
Tiny Report is a database reporting tool and report generator like Crystal Reports. more>>
Tiny Report is a free software that helps you to Design, Manage, and Deliver Reports for Extreme Business Insight.
It simply automates to production of dynamic PDFs. It allows you to design your templates in OpenOffice.
Main features:
The process
- Design your .SXW fie in OpenOffice,
- Use tiny_sxw2rml.py to convert the file in a .RML template,
- Use tiny_report.py to produce PDF file using any database.
Report Designer
- The report designer used is OpenOffice. All styles, tags and features of OpenOffice documents (.SXW) are implemented instead frames.
- No specific language to learn,
- Support style, colors, table, section, items, images, ...
- OpenOffice is not needed to render the PDF
Data Acquisition
- Support python expressions for effective computation,
- Browse through table with the object relationnal mapping,
- You do not have to code the database structure (introspection on the DB),
- You can create your own object and functions
- Lots of databases supported: MySQL, Postgres, SQLite, Firebird, SybaseConnection, MAX DB
- Support all links between tables (one2many, many2one, ...),
- Lots of special features using simple Python: group, sort.
Report Renderer
- Fast, simple and easy,
- Standalone to be included in other applications.
<<lessIt simply automates to production of dynamic PDFs. It allows you to design your templates in OpenOffice.
Main features:
The process
- Design your .SXW fie in OpenOffice,
- Use tiny_sxw2rml.py to convert the file in a .RML template,
- Use tiny_report.py to produce PDF file using any database.
Report Designer
- The report designer used is OpenOffice. All styles, tags and features of OpenOffice documents (.SXW) are implemented instead frames.
- No specific language to learn,
- Support style, colors, table, section, items, images, ...
- OpenOffice is not needed to render the PDF
Data Acquisition
- Support python expressions for effective computation,
- Browse through table with the object relationnal mapping,
- You do not have to code the database structure (introspection on the DB),
- You can create your own object and functions
- Lots of databases supported: MySQL, Postgres, SQLite, Firebird, SybaseConnection, MAX DB
- Support all links between tables (one2many, many2one, ...),
- Lots of special features using simple Python: group, sort.
Report Renderer
- Fast, simple and easy,
- Standalone to be included in other applications.
Download (0.36MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
888 downloads
DbVisualizer 6.0
DbVisualizer is a powerful tool for navigating JDBC-enabled databases. more>>
DbVisualizer project is a cross-platform database tool for all major relational databases. DbVisualizer enables simultaneous connections to many different databases through JDBC drivers.
Just point and click to browse the database structure, view detailed characteristics of database objects, edit table data graphically, execute arbitrary SQL statements or SQL scripts, reverse engineer primary/foreign key mappings graphically or why not let DbVisualizer chart your database with its advanced charting options.
The user friendly graphical interface in combination with the unique collection of features makes DbVisualizer the ideal choice for database administrators and developers.
Main features:
General
- The Database Objects Tree is now always visible in the main window
- The Monitor main tab has been moved to a separate window (launch it via Tools->Monitor)
- Now with support for Java 1.5
- Support for Oracle XMLType data type
- Now displays User Defined Types (UDT)
- Support for MySQL 5+
Connection
- Variables can now be used in the Connection details
- New tool properties, Require Userid and Require Password
SQL Commander
- Auto Completion support used to ease the editing of SQL statements by automatically displaying list of table and column names
- The new Execute Current operation is used to execute the statement at the cursor position
Grid Enhancements
- Quick Filter is used to easily limit the number of rows in a grid by showing only those matching a search word
- Calulate Selection is used to perform simple calculations on the selected cells. Useful primarly for integer data
- Column visibility feature enabling persistent save of column changes such as horizontal location and visible state
<<lessJust point and click to browse the database structure, view detailed characteristics of database objects, edit table data graphically, execute arbitrary SQL statements or SQL scripts, reverse engineer primary/foreign key mappings graphically or why not let DbVisualizer chart your database with its advanced charting options.
The user friendly graphical interface in combination with the unique collection of features makes DbVisualizer the ideal choice for database administrators and developers.
Main features:
General
- The Database Objects Tree is now always visible in the main window
- The Monitor main tab has been moved to a separate window (launch it via Tools->Monitor)
- Now with support for Java 1.5
- Support for Oracle XMLType data type
- Now displays User Defined Types (UDT)
- Support for MySQL 5+
Connection
- Variables can now be used in the Connection details
- New tool properties, Require Userid and Require Password
SQL Commander
- Auto Completion support used to ease the editing of SQL statements by automatically displaying list of table and column names
- The new Execute Current operation is used to execute the statement at the cursor position
Grid Enhancements
- Quick Filter is used to easily limit the number of rows in a grid by showing only those matching a search word
- Calulate Selection is used to perform simple calculations on the selected cells. Useful primarly for integer data
- Column visibility feature enabling persistent save of column changes such as horizontal location and visible state
Download (9.8MB)
Added: 2007-07-10 License: Free To Use But Restricted Price: $79
853 downloads
Matrex 1.1
Matrex is a graphical tool to show, organize and calculate big amounts of data. more>>
Matrex is a graphical tool to show, organize and calculate big amounts of data.
Matrex is the perfect tool for mathematical models and for other statistical, engineering, physical, and generally scientific calculations.
Matrex is based on matrices, which are meant as square grids of numbers, texts, dates or booleans.
Matrex matrices can be real matrices, vectors or simple values.
Matrex uses also:
- functions to transform matrices to other matrices.
- presentations to show multiple matrices together in a spreadheet-like way.
- charts to show matrices graphically.
Advantages: simplicity, performance, multithreading, readability, easy projects sharing; and the feeling you have everything under control.
Matrex uses the following products:
- SWT for the graphical user interface
- JFreeChart for the 2D charts
- FreeHep for the 3D charts
- Jython as embedded scripting language
- Apache Commons Math to calculate pure matrices functions and statistical functions
- IzPack to install Matrex.
<<lessMatrex is the perfect tool for mathematical models and for other statistical, engineering, physical, and generally scientific calculations.
Matrex is based on matrices, which are meant as square grids of numbers, texts, dates or booleans.
Matrex matrices can be real matrices, vectors or simple values.
Matrex uses also:
- functions to transform matrices to other matrices.
- presentations to show multiple matrices together in a spreadheet-like way.
- charts to show matrices graphically.
Advantages: simplicity, performance, multithreading, readability, easy projects sharing; and the feeling you have everything under control.
Matrex uses the following products:
- SWT for the graphical user interface
- JFreeChart for the 2D charts
- FreeHep for the 3D charts
- Jython as embedded scripting language
- Apache Commons Math to calculate pure matrices functions and statistical functions
- IzPack to install Matrex.
Download (9.4MB)
Added: 2007-04-15 License: GPL (GNU General Public License) Price:
925 downloads
fastbreeder 1.0.0b2
fastbreeder is an experimental genetic programming synthesiser. more>>
fastbreeder is an experimental genetic programming synthesiser. This program is free software, developed for linux, using jack for audio.
Fastbreeder is essentially a 4 button synth. The idea is to grow code by choosing from a range of automatically generated variations of functions, you dont have to know how they work, but each function creates a sound which can be selected by you.
The following generation is then created containing mutants of your chosen sound. You can refine and develop the sound just by auditioning and choosing the best one each time.
The interface shows you the code graphically, as a tree. These trees are attempts to clearly represent code structure, giving you some feedback on what is being evolved. Conventional listings are not that informative with GP (genetic programming), as deeply functional code such as this is hard to read linearly (see below).
<<lessFastbreeder is essentially a 4 button synth. The idea is to grow code by choosing from a range of automatically generated variations of functions, you dont have to know how they work, but each function creates a sound which can be selected by you.
The following generation is then created containing mutants of your chosen sound. You can refine and develop the sound just by auditioning and choosing the best one each time.
The interface shows you the code graphically, as a tree. These trees are attempts to clearly represent code structure, giving you some feedback on what is being evolved. Conventional listings are not that informative with GP (genetic programming), as deeply functional code such as this is hard to read linearly (see below).
Download (0.017MB)
Added: 2006-03-23 License: GPL (GNU General Public License) Price:
1311 downloads
eXtreme Project Management Tool 0.8
eXtreme Project Management Tool offers a project management tool using eXtreme Programming principles. more>>
eXtreme Project Management Tool offers a project management tool using eXtreme Programming principles.
Main features:
- Time planning
- Release planning
- Iteration planning
- Resource planning
- Acquisition planning
- Work planning
- Story planning
- Task planning
- Change Request management
- Iteration tracking
- Release tracking
- Reporting
- Time booking
- User administration
- Integration of WikkaWikki
Enhancements:
- created generic support for created_date, changed_date and change_user
- 1281954: Add onClick support on foreign key selection icon
- Features:
- 1283346: Add feature to manage companies
- Work view: added actions to manage crs and todos in work view (BUG 1290425)
- 1292045: Work view: Show iteration end date
- 1285021: Work view: colorize tasks per user
- 1283260: Work view: Add edit task action
- 1280318: Work view: Add action to reassign task to other user
- 1280330: Work view: Add show all tasks action
- 1293664: Release planning: mark stories already planned in previous iterations
- BUGS:
- 1280313: Work view doesnt show correct task
- 1280331: Calculation of Task estimate total doesnt work
- 1279557: Move risk and priority to popup
- 1279092: Menupopup doesnt move if scrolling
- 1279547: Escape JavaScript popup
- 1280312: Move PlanningGroups link
- 1280320: Support time booking for pair
- 1279553: Close actionmenu on popup
- 1279095: Projects without release arent shown in release planning
- 1283271: Javascript error for category selection in project creation
- 1283337: Order by surname
- 1283334: Cant add contact due to error in company selection
- 1285019: Remove actions from not owned tasks
- 1285636: Enhanced progress calculation
- 1290355: Wrong resource calculation
- Catched failure on double click in navigation
- 1293667: iteration end date is reset on starting
- 1293672: Add default iteration end date
- 1292277: The session timeout is not handled
- 1293771: Remove actions from stories already planned
<<lessMain features:
- Time planning
- Release planning
- Iteration planning
- Resource planning
- Acquisition planning
- Work planning
- Story planning
- Task planning
- Change Request management
- Iteration tracking
- Release tracking
- Reporting
- Time booking
- User administration
- Integration of WikkaWikki
Enhancements:
- created generic support for created_date, changed_date and change_user
- 1281954: Add onClick support on foreign key selection icon
- Features:
- 1283346: Add feature to manage companies
- Work view: added actions to manage crs and todos in work view (BUG 1290425)
- 1292045: Work view: Show iteration end date
- 1285021: Work view: colorize tasks per user
- 1283260: Work view: Add edit task action
- 1280318: Work view: Add action to reassign task to other user
- 1280330: Work view: Add show all tasks action
- 1293664: Release planning: mark stories already planned in previous iterations
- BUGS:
- 1280313: Work view doesnt show correct task
- 1280331: Calculation of Task estimate total doesnt work
- 1279557: Move risk and priority to popup
- 1279092: Menupopup doesnt move if scrolling
- 1279547: Escape JavaScript popup
- 1280312: Move PlanningGroups link
- 1280320: Support time booking for pair
- 1279553: Close actionmenu on popup
- 1279095: Projects without release arent shown in release planning
- 1283271: Javascript error for category selection in project creation
- 1283337: Order by surname
- 1283334: Cant add contact due to error in company selection
- 1285019: Remove actions from not owned tasks
- 1285636: Enhanced progress calculation
- 1290355: Wrong resource calculation
- Catched failure on double click in navigation
- 1293667: iteration end date is reset on starting
- 1293672: Add default iteration end date
- 1292277: The session timeout is not handled
- 1293771: Remove actions from stories already planned
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
994 downloads
Gatotray 1.3
Gatotray project is a colorful tray icon to watch over CPU status including usage, frequency and temperature. more>>
Gatotray project is a colorful tray icon to watch over CPU status including usage, frequency and temperature.
Main features:
- Time scale is non-linear: right-most columns reflect last seconds while lefter columns accumulate older measures, providing an idea of cpu usage evolution for up to 30 minutes in a glimpse. It makes a beautiful smoothing effect too.
- Colors of the usage bars vary with frequency, from green to red.
- Tooltip shows current usage percentage, frequency and temperature numerically.
- Instant temperature is shown graphically, in the form of a nice thermometer :-). Thermometer blinks on high temperature (>=85 C).
- Pops-up a top window with detailed system usage (on click).
<<lessMain features:
- Time scale is non-linear: right-most columns reflect last seconds while lefter columns accumulate older measures, providing an idea of cpu usage evolution for up to 30 minutes in a glimpse. It makes a beautiful smoothing effect too.
- Colors of the usage bars vary with frequency, from green to red.
- Tooltip shows current usage percentage, frequency and temperature numerically.
- Instant temperature is shown graphically, in the form of a nice thermometer :-). Thermometer blinks on high temperature (>=85 C).
- Pops-up a top window with detailed system usage (on click).
Download (0.015MB)
Added: 2007-06-08 License: Public Domain Price:
869 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 graphically extreme 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