1.33 aspect ratio
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 405
AspectES 0.1
AspectES is an implementation of Aspect-Oriented Programming in JavaScript 1.5, as standardized by EcmaScript Specification 262. more>>
AspectES is an implementation of Aspect-Oriented Programming in JavaScript 1.5, as standardized by EcmaScript Specification 262.
AspectES project contains core classes that enable software engineers to gracefully develop JavaScript applications that have clear, well-documented designs that incorporate Aspect Oriented Programming.
This project only uses standardized Web technologies: JavaScript 1.5, with no proprietary extensions. The framework is documented with JavaScriptdoc.
Mission:
Produce a superior implementation of Aspect-Oriented Programming in JavaScript v1.5, as standardized by EcmaScript Specification 262.
Scope: A package framework that contains core classes that enable software engineers to gracefully develop JavaScript applications that have clear, well-documented designs incorporating Aspect Oriented Programming.
Agenda:
Current:
- This framework powers the drag-and-drop capability in the (open-source) Gigapan Explorer Application, delivered to the United States NASA in late 2005.
- This project only uses standardized web technologies: JavaScript 1.5, with no proprietary extensions.
- Enjoy complete JavaScriptdoc as you develop this codebase.
- See the Coding Standard.
- See the tips on Debugging JavaScript.
Immediate Future:
- Develop a test suite that completely exercises the existing functionality.
- Log and fix bugs on said functionality.
- Identify additional desired functionality.
- Build a pluggable module for generating JavaScriptdoc from AspectES aspects and their associated yarn.
Enhancements:
- This version is now contained in its own tigris.org project, separate from the Gigapan Explorer application for which it was originally developed.
<<lessAspectES project contains core classes that enable software engineers to gracefully develop JavaScript applications that have clear, well-documented designs that incorporate Aspect Oriented Programming.
This project only uses standardized Web technologies: JavaScript 1.5, with no proprietary extensions. The framework is documented with JavaScriptdoc.
Mission:
Produce a superior implementation of Aspect-Oriented Programming in JavaScript v1.5, as standardized by EcmaScript Specification 262.
Scope: A package framework that contains core classes that enable software engineers to gracefully develop JavaScript applications that have clear, well-documented designs incorporating Aspect Oriented Programming.
Agenda:
Current:
- This framework powers the drag-and-drop capability in the (open-source) Gigapan Explorer Application, delivered to the United States NASA in late 2005.
- This project only uses standardized web technologies: JavaScript 1.5, with no proprietary extensions.
- Enjoy complete JavaScriptdoc as you develop this codebase.
- See the Coding Standard.
- See the tips on Debugging JavaScript.
Immediate Future:
- Develop a test suite that completely exercises the existing functionality.
- Log and fix bugs on said functionality.
- Identify additional desired functionality.
- Build a pluggable module for generating JavaScriptdoc from AspectES aspects and their associated yarn.
Enhancements:
- This version is now contained in its own tigris.org project, separate from the Gigapan Explorer application for which it was originally developed.
Download (1.1MB)
Added: 2006-03-06 License: MIT/X Consortium License Price:
1328 downloads
AspectJS 1.0.0
AspectJS is a Javascript AOP framework. more>>
AspectJS is a Javascript AOP framework.
Using:
Import
You MUST include the following aspect.js Javascript file :
< script src="aspectjs.js" >< /script >
Weaving
In order to weave the aspects, you SHOULD use this method :
Weaver.addAdvice ( aspect_name, aspect_method, joinpoint_type, pointcut_name, pointcut_method);
Todo
improve compatibility with more browser
complete documentation
<<lessUsing:
Import
You MUST include the following aspect.js Javascript file :
< script src="aspectjs.js" >< /script >
Weaving
In order to weave the aspects, you SHOULD use this method :
Weaver.addAdvice ( aspect_name, aspect_method, joinpoint_type, pointcut_name, pointcut_method);
Todo
improve compatibility with more browser
complete documentation
Download (0.004MB)
Added: 2006-02-22 License: LGPL (GNU Lesser General Public License) Price:
1339 downloads
Aspect# 2.1.1.0
Aspect# is an AOP (Aspect Oriented Programming) framework for the CLI (.Net and Mono). more>>
Aspect# is an AOP (Aspect Oriented Programming) framework for the CLI (.Net and Mono). It relies on DynamicProxy and offers a built-in language to declare and configure aspects, and is compliant with AopAlliance.
Aspect# became part of the Castle Project in June 2005.
Main features:
- Easy to use: If you dont believe us, check the tutorial
- Easy configuration: Aspect# offers a mini language (Ruby like syntax) to declare and configure aspects.
- Mixins: Mix classes to achieve different behaviors
- Interceptors: Associate interceptors with pointcuts
Enhancements:
- Castle.DynamicProxy updated to 1.1.0.0 version.
<<lessAspect# became part of the Castle Project in June 2005.
Main features:
- Easy to use: If you dont believe us, check the tutorial
- Easy configuration: Aspect# offers a mini language (Ruby like syntax) to declare and configure aspects.
- Mixins: Mix classes to achieve different behaviors
- Interceptors: Associate interceptors with pointcuts
Enhancements:
- Castle.DynamicProxy updated to 1.1.0.0 version.
Download (0.11MB)
Added: 2006-02-17 License: The Apache License 2.0 Price:
1346 downloads
Aspect::Library::Wormhole 0.12
Aspect::Library::Wormhole is a wormhole between call frames. more>>
Aspect::Library::Wormhole is a wormhole between call frames.
SYNOPSIS
package A;
sub new { bless {}, shift }
sub a { B->new->b }
package B;
sub new { bless {}, shift }
sub b { C->new->c }
package C;
sub new { bless {}, shift }
sub c { ref pop }
package main;
print ref A->new->a; # without aspect, prints C
use Aspect::Library::Wormhole;
aspect Wormhole => A::a, C::c;
print ref A->new->a; # with aspect, prints A
<<lessSYNOPSIS
package A;
sub new { bless {}, shift }
sub a { B->new->b }
package B;
sub new { bless {}, shift }
sub b { C->new->c }
package C;
sub new { bless {}, shift }
sub c { ref pop }
package main;
print ref A->new->a; # without aspect, prints C
use Aspect::Library::Wormhole;
aspect Wormhole => A::a, C::c;
print ref A->new->a; # with aspect, prints A
Download (0.10MB)
Added: 2007-08-11 License: Perl Artistic License Price:
804 downloads
AspeCt-oriented C 0.7
AspeCt-oriented C implements an aspect-oriented extension to C. more>>
AspeCt-oriented C project implements an aspect-oriented extension to C and offers one possible language design for an aspect-oriented C language.
Main features:
- an aspect-oriented extension to C, aspect-oriented software development for C, and an ACC language design option
- full ANSI-C compliance and gcc source-compatibility;
- compiler and generated code portability;
- seamless Linux, Solaris and Windows support;
- simple integration in existing builds and code transparency through source-to-source transformations;
- an open source license and compiler.
AspeCt-oriented C enables:
- modularization of crosscutting concerns for C-based software;
- research on concern separation tailored to C and imperative programming;
- research on aspect-orientation on C-based systems;
- development of highly customizable and easily configurable software in C;
- development of feature-rich software product lines in C.
Enhancements:
- set()/get() join point and pointcut support was added for global variables, and compiler options were added for manipulating join points.
<<lessMain features:
- an aspect-oriented extension to C, aspect-oriented software development for C, and an ACC language design option
- full ANSI-C compliance and gcc source-compatibility;
- compiler and generated code portability;
- seamless Linux, Solaris and Windows support;
- simple integration in existing builds and code transparency through source-to-source transformations;
- an open source license and compiler.
AspeCt-oriented C enables:
- modularization of crosscutting concerns for C-based software;
- research on concern separation tailored to C and imperative programming;
- research on aspect-orientation on C-based systems;
- development of highly customizable and easily configurable software in C;
- development of feature-rich software product lines in C.
Enhancements:
- set()/get() join point and pointcut support was added for global variables, and compiler options were added for manipulating join points.
Download (19.7MB)
Added: 2007-08-07 License: GPL (GNU General Public License) Price:
810 downloads
J7Zip 4.43 Alpha 2
J7Zip handles 7-zip archives. more>>
J7Zip handles 7-zip archives. It can lists the contents of the archive, test the archive files, and extract files from the archive to their full paths in the current directory.
This version supports only unencrypted archives, and archives with the Copy or LZMA codec.
J7Zip can list, test and extract files from an 7z archives.
J7Zip is written in JAVA 5.
This version can :
- Lists contents of archive
- Tests archive files
- Extracts files from archive to their full paths in the current directory
This version supports only :
- non-encrypted archives
- archives with Copy or LZMA codec.
J7zip provides also the JAVA LZMA SDK.
LZMA is default and general compression method of 7z format in 7-Zip compression program (www.7-zip.org). LZMA provides high compression ratio and very fast decompression.
LZMA is an improved version of famous LZ77 compression algorithm. It was improved in way of maximum increasing of compression ratio, keeping high decompression speed and low memory requirements for decompressing.
<<lessThis version supports only unencrypted archives, and archives with the Copy or LZMA codec.
J7Zip can list, test and extract files from an 7z archives.
J7Zip is written in JAVA 5.
This version can :
- Lists contents of archive
- Tests archive files
- Extracts files from archive to their full paths in the current directory
This version supports only :
- non-encrypted archives
- archives with Copy or LZMA codec.
J7zip provides also the JAVA LZMA SDK.
LZMA is default and general compression method of 7z format in 7-Zip compression program (www.7-zip.org). LZMA provides high compression ratio and very fast decompression.
LZMA is an improved version of famous LZ77 compression algorithm. It was improved in way of maximum increasing of compression ratio, keeping high decompression speed and low memory requirements for decompressing.
Download (0.16MB)
Added: 2007-02-05 License: LGPL (GNU Lesser General Public License) Price:
996 downloads
libsamplerate 0.1.2
libsamplerate is a Sample Rate Converter for audio. more>>
Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio. One example of where such a thing would be useful is converting audio from the CD sample rate of 44.1kHz to the 48kHz sample rate used by DAT players.
SRC is capable of arbitrary and time varying conversions ; from downsampling by a factor of 256 to upsampling by the same factor. Arbitrary in this case means that the ratio of input and output sample rates can be an irrational number. The conversion ratio can also vary with time for speeding up and slowing down effects.
SRC provides a small set of converters to allow quality to be traded off against computation cost. The current best converter provides a signal-to-noise ratio of 97dB with -3dB passband extending from DC to 96% of the theoretical best bandwidth for a given pair of input and output sample rates.
Since the library has few dependencies beyond that provided by the standard C library, it should compile and work on just about any operating system. It is know to work on Linux, MacOSX, Win32 and Solaris. With some relatively minor hacking it should also be relatively easy to port it to embedded systems and digital signal processors.
In addition, the library comes with a comprehensive test suite which can validate the performance of the library on new platforms.
Enhancements:
- configure.ac Win32/Makefile.mingw.in
- Add preliminary support for compiling on Win32 using MinGW.
- configure.ac
- Bump version to 0.1.2.
- Add --enable-gcc-werror configure option.
- examples/sndfile-resample.c tests/src-evaluate.c
- Use ISO C standard function remove instead of unlink.
- Win32/Makefile.msvc
- Add the top level directory to the include path (for sndfile.h).
<<lessSRC is capable of arbitrary and time varying conversions ; from downsampling by a factor of 256 to upsampling by the same factor. Arbitrary in this case means that the ratio of input and output sample rates can be an irrational number. The conversion ratio can also vary with time for speeding up and slowing down effects.
SRC provides a small set of converters to allow quality to be traded off against computation cost. The current best converter provides a signal-to-noise ratio of 97dB with -3dB passband extending from DC to 96% of the theoretical best bandwidth for a given pair of input and output sample rates.
Since the library has few dependencies beyond that provided by the standard C library, it should compile and work on just about any operating system. It is know to work on Linux, MacOSX, Win32 and Solaris. With some relatively minor hacking it should also be relatively easy to port it to embedded systems and digital signal processors.
In addition, the library comes with a comprehensive test suite which can validate the performance of the library on new platforms.
Enhancements:
- configure.ac Win32/Makefile.mingw.in
- Add preliminary support for compiling on Win32 using MinGW.
- configure.ac
- Bump version to 0.1.2.
- Add --enable-gcc-werror configure option.
- examples/sndfile-resample.c tests/src-evaluate.c
- Use ISO C standard function remove instead of unlink.
- Win32/Makefile.msvc
- Add the top level directory to the include path (for sndfile.h).
Download (0.69MB)
Added: 2005-07-07 License: GPL (GNU General Public License) Price:
1577 downloads
scrot 0.8
scrot is a command line screen capture utility. more>>
scrot is a command line screen capture utility.
scrot (SCReen shOT) is a simple commandline screen capture utility that uses imlib2 to grab and save images.
Multiple image formats are supported through imlib2s dynamic saver modules.
Enhancements:
- Patch from Claes Nasten
- Enhances thumbnail related options:
- First, specifying -t would break the $f param to -exec.
- Second, the thumbnail and the screenshot got different timestamps.
- Third, one werent able to specify geometry with -t.
- I fixed those and added, $m ( mini, instead of $t as it was taken ) so that one can do.
- About the geometry, having either the width or height set to 0 makes it fill in the other pertaining the aspect ratio.
<<lessscrot (SCReen shOT) is a simple commandline screen capture utility that uses imlib2 to grab and save images.
Multiple image formats are supported through imlib2s dynamic saver modules.
Enhancements:
- Patch from Claes Nasten
- Enhances thumbnail related options:
- First, specifying -t would break the $f param to -exec.
- Second, the thumbnail and the screenshot got different timestamps.
- Third, one werent able to specify geometry with -t.
- I fixed those and added, $m ( mini, instead of $t as it was taken ) so that one can do.
- About the geometry, having either the width or height set to 0 makes it fill in the other pertaining the aspect ratio.
Download (0.072MB)
Added: 2006-09-25 License: BSD License Price:
1130 downloads
Falt4 RC3
Falt4 project is a web content management system designed for small to midrange websites. more>>
Falt4 project is a web content management system designed for small to midrange websites. The whole system has been released under the LGPL (lesser GPL License) and is, so called, "free software".
The system comes with a lot of modules and even more core features, which come in very handy for daily use. Falt4 is easy to use and has been tested during the developmentphase on a lot of customers, where some of them had no website experience at all.
Also included is a lesser seen feature in OpenSource systems: Falt4 is Multilingual in every aspect - and this is just the beginning. Including a system wide media database to manage all your files, a template editor and an integrated publishing system with versioning support are just a few of the strong core features of falt4.
<<lessThe system comes with a lot of modules and even more core features, which come in very handy for daily use. Falt4 is easy to use and has been tested during the developmentphase on a lot of customers, where some of them had no website experience at all.
Also included is a lesser seen feature in OpenSource systems: Falt4 is Multilingual in every aspect - and this is just the beginning. Including a system wide media database to manage all your files, a template editor and an integrated publishing system with versioning support are just a few of the strong core features of falt4.
Download (4.8MB)
Added: 2007-06-19 License: LGPL (GNU Lesser General Public License) Price:
857 downloads
Album Shaper 2.1
Album Shaper is a graphical application used to create, maintain, and share photo albums. more>>
Album Shaper is a graphical application used to create, maintain, and share photo albums using open formats like HTML, XSLT, and JPG.
Two-layer albums can be created in a drag-n-drop interface which allows quick and easy arrangement and catagorization of photos. Batch rotations make getting your photos ready a quick and easy task.
You can also crop, enhance, and manipulate your photos using a powerful but intuitive editing interface. Photos, collections, and albums themselves can be labeled as needed and modified at a later time by saving and loading from a simple XML format.
Albums are exported as HTML which can then be posted directly on the web or viewed straight from your hard drive.
While mainly a bugfix release, Album Shaper 2.1 adds complete French and German translations, a new Radiant theme, and a new Mosaic image manipulation.
The compilation and installation process for Linux/FreeBSD users has also seen significant
improvements.
Enhancements:
New Features / Feature Enhancements:
- New mosaic manipulation!
- Aspect ratio selection usability improvements (smarter placement with regard to rotating selections, positioning, and support for tall photos)
- Improved B/W and Sepia effects (weights now based on modern display phosphor characteristics)
- Added French translation
- German translation brought up to date
Minor Improvements:
- Rewrote AlbumShaper.pro project file to support changing install location on Unix systems
- Changed "Disable checking for..." checkbox to "Check for photo modifications..." under settings
- Cut down window and dialog title text by removing "Album Shaper: " prefix
- Fixed alert dialogs to handle long message translations
- Various spelling mistakes and other minor visible text improvements
- Fixed fonts in status area and various dialogs
- Cosmetic fixes regarding buttons and layout in Save as dialog
- Added missing red color to some button references in help system
Bug Fixes:
- Fixed a bug where dropping objects from the desktop / file browsers on album / collection image caused Album Shaper to crash
- Fixed a bug where Album Shaper would crash when trying to edit 8 bit grayscale and color images
- Fixed a bug where after removing photos in a collection the edit tab and various buttons below were still enabled
- Fixed a threading bug in the file preview feature that could cause the program to hang
- Fixed the rare 0kb bug! (reverting a photo sometimes caused the photo to be corrupted)
- Disabled user input while loading albums
- Fixed a bug where loading recent albums using the keyboard shortcuts could cause Album Shaper to crash
- Fixed a bugs where using save-as to copy an album from one location to another did not copy over the original form of an image
- Fixed minor bug in Slick theme where carriage returns in photo descriptions caused problems in slide show mode
- Fixed a bug in the Metallic theme where collections that had no cover images could not be reached using the navigation bar
- Fixed various compiler warnings under Linux / FreeBSD
<<lessTwo-layer albums can be created in a drag-n-drop interface which allows quick and easy arrangement and catagorization of photos. Batch rotations make getting your photos ready a quick and easy task.
You can also crop, enhance, and manipulate your photos using a powerful but intuitive editing interface. Photos, collections, and albums themselves can be labeled as needed and modified at a later time by saving and loading from a simple XML format.
Albums are exported as HTML which can then be posted directly on the web or viewed straight from your hard drive.
While mainly a bugfix release, Album Shaper 2.1 adds complete French and German translations, a new Radiant theme, and a new Mosaic image manipulation.
The compilation and installation process for Linux/FreeBSD users has also seen significant
improvements.
Enhancements:
New Features / Feature Enhancements:
- New mosaic manipulation!
- Aspect ratio selection usability improvements (smarter placement with regard to rotating selections, positioning, and support for tall photos)
- Improved B/W and Sepia effects (weights now based on modern display phosphor characteristics)
- Added French translation
- German translation brought up to date
Minor Improvements:
- Rewrote AlbumShaper.pro project file to support changing install location on Unix systems
- Changed "Disable checking for..." checkbox to "Check for photo modifications..." under settings
- Cut down window and dialog title text by removing "Album Shaper: " prefix
- Fixed alert dialogs to handle long message translations
- Various spelling mistakes and other minor visible text improvements
- Fixed fonts in status area and various dialogs
- Cosmetic fixes regarding buttons and layout in Save as dialog
- Added missing red color to some button references in help system
Bug Fixes:
- Fixed a bug where dropping objects from the desktop / file browsers on album / collection image caused Album Shaper to crash
- Fixed a bug where Album Shaper would crash when trying to edit 8 bit grayscale and color images
- Fixed a bug where after removing photos in a collection the edit tab and various buttons below were still enabled
- Fixed a threading bug in the file preview feature that could cause the program to hang
- Fixed the rare 0kb bug! (reverting a photo sometimes caused the photo to be corrupted)
- Disabled user input while loading albums
- Fixed a bug where loading recent albums using the keyboard shortcuts could cause Album Shaper to crash
- Fixed a bugs where using save-as to copy an album from one location to another did not copy over the original form of an image
- Fixed minor bug in Slick theme where carriage returns in photo descriptions caused problems in slide show mode
- Fixed a bug in the Metallic theme where collections that had no cover images could not be reached using the navigation bar
- Fixed various compiler warnings under Linux / FreeBSD
Download (4.3MB)
Added: 2005-05-30 License: GPL (GNU General Public License) Price:
1701 downloads
JSch 0.1.33
JSch is a pure Java implementation of SSH2. more>>
JSch is a pure Java implementation of SSH2.
JSch project allows the user to connect to an sshd server and use port forwarding, X11 forwarding, file transfer, etc., and you can integrate its functionality into your own Java programs. JSch is licensed under BSD style license.
Our intension in developing this stuff is to enable users of our pure java X servers, WiredX and WeirdX, to enjoy secure X sessions. Our efforts have mostly targeted the SSH2 protocol in relation to X window system and X11 forwarding. Of course, we are also interested in adding other functionality - port forward, file transfer, terminal emulation, etc.
Needless to say, SSH provides support for secure remote login, secure file transfer, and secure TCP/IP and X11 forwarding. It can automatically encrypt, authenticate, and compress transmitted data.
The SSH protocol is available in two incompatible varieties: SSH1 and SSH2. SSH2 was invented to avoid the patent issues regarding RSA (RSA patent has expired), and to fix some data integrity problem that SSH1 has, and for a number of other technical reasons.
SSH2 protocol has been standardized on IETF Secure Shell working group and drafts related to SSH2 protocol are available on the web. In developing JSch, we are now referring to following documents:
SSH Protocol Architecture
SSH Transport Layer Protocol
Diffie-Hellman Group Exchange for the SSH Transport Layer Protocol
SSH Connection Protocol
SSH Authentication Protocol
Main features:
- JSch is in pure Java, but it depends on JavaTM Cryptography Extension (JCE). JSch is know to work with:
- J2SE 1.4.0 or later (no additional libraries required).
- J2SE 1.3 and Suns JCE reference implementation that can be obtained at http://java.sun.com/products/jce/.
- J2SE 1.2.2 and later and Bouncycastles JCE implementation that can be obtained at http://www.bouncycastle.org/.
- SSH2 protocol support.
- Key exchange: diffie-hellman-group-exchange-sha1, diffie-hellman-group1-sha1
- Cipher: blowfish-cbc, 3des-cbc, aes128-cbc,aes192-cbc,aes256-cbcnew!
- MAC: hmac-md5, hmac-sha1, hmac-md5-96, hmac-sha1-96
- Host key type: ssh-dss,ssh-rsa
- Userauth: password
- Userauth: publickey(DSA,RSA)
- Userauth: keyboard-interactive
- X11 forwarding
- xauth spoofing
- connection through HTTP proxy.
- connection through SOCKS5 proxy.
- port forwarding.
- stream forwarding.
- signal sending. The unofficial patch for sshd of openssh will be found in this thread.
- remote exec.
- generating DSA and RSA key pairs.
- changing the passphrase for a private key.
- partial authentication
- SSH File Transfer Protocol(version 0, 1, 2, 3)
- packet compression. JZlib has been used.
- JSch is licensed under BSD style license.
Enhancements:
- bugfix: freeze in diffie-hellman-group-exchange-sha1. FIXED. By the default, diffie-hellman-group1-sha1 will be used and if you have not chosen diffie-hellman-group-exchange-sha1 explicitly, you dont have to worry about it.
- bugfix: there should be timeout mechanism in opening a socket for remote port forwarding. FIXED. At the failure or timeout, SSH_MSG_CHANNEL_OPEN_FAILURE will be sent to sshd.
- bugfix: there should be timeout mechanism in opening a socket for X11 forwarding. FIXED. At the failure or timeout, SSH_MSG_CHANNEL_OPEN_FAILURE will be sent to sshd.
<<lessJSch project allows the user to connect to an sshd server and use port forwarding, X11 forwarding, file transfer, etc., and you can integrate its functionality into your own Java programs. JSch is licensed under BSD style license.
Our intension in developing this stuff is to enable users of our pure java X servers, WiredX and WeirdX, to enjoy secure X sessions. Our efforts have mostly targeted the SSH2 protocol in relation to X window system and X11 forwarding. Of course, we are also interested in adding other functionality - port forward, file transfer, terminal emulation, etc.
Needless to say, SSH provides support for secure remote login, secure file transfer, and secure TCP/IP and X11 forwarding. It can automatically encrypt, authenticate, and compress transmitted data.
The SSH protocol is available in two incompatible varieties: SSH1 and SSH2. SSH2 was invented to avoid the patent issues regarding RSA (RSA patent has expired), and to fix some data integrity problem that SSH1 has, and for a number of other technical reasons.
SSH2 protocol has been standardized on IETF Secure Shell working group and drafts related to SSH2 protocol are available on the web. In developing JSch, we are now referring to following documents:
SSH Protocol Architecture
SSH Transport Layer Protocol
Diffie-Hellman Group Exchange for the SSH Transport Layer Protocol
SSH Connection Protocol
SSH Authentication Protocol
Main features:
- JSch is in pure Java, but it depends on JavaTM Cryptography Extension (JCE). JSch is know to work with:
- J2SE 1.4.0 or later (no additional libraries required).
- J2SE 1.3 and Suns JCE reference implementation that can be obtained at http://java.sun.com/products/jce/.
- J2SE 1.2.2 and later and Bouncycastles JCE implementation that can be obtained at http://www.bouncycastle.org/.
- SSH2 protocol support.
- Key exchange: diffie-hellman-group-exchange-sha1, diffie-hellman-group1-sha1
- Cipher: blowfish-cbc, 3des-cbc, aes128-cbc,aes192-cbc,aes256-cbcnew!
- MAC: hmac-md5, hmac-sha1, hmac-md5-96, hmac-sha1-96
- Host key type: ssh-dss,ssh-rsa
- Userauth: password
- Userauth: publickey(DSA,RSA)
- Userauth: keyboard-interactive
- X11 forwarding
- xauth spoofing
- connection through HTTP proxy.
- connection through SOCKS5 proxy.
- port forwarding.
- stream forwarding.
- signal sending. The unofficial patch for sshd of openssh will be found in this thread.
- remote exec.
- generating DSA and RSA key pairs.
- changing the passphrase for a private key.
- partial authentication
- SSH File Transfer Protocol(version 0, 1, 2, 3)
- packet compression. JZlib has been used.
- JSch is licensed under BSD style license.
Enhancements:
- bugfix: freeze in diffie-hellman-group-exchange-sha1. FIXED. By the default, diffie-hellman-group1-sha1 will be used and if you have not chosen diffie-hellman-group-exchange-sha1 explicitly, you dont have to worry about it.
- bugfix: there should be timeout mechanism in opening a socket for remote port forwarding. FIXED. At the failure or timeout, SSH_MSG_CHANNEL_OPEN_FAILURE will be sent to sshd.
- bugfix: there should be timeout mechanism in opening a socket for X11 forwarding. FIXED. At the failure or timeout, SSH_MSG_CHANNEL_OPEN_FAILURE will be sent to sshd.
Download (0.20MB)
Added: 2007-05-11 License: BSD License Price:
899 downloads
Debt Payoff Calculator 0.0
Debt Payoff Calculator is a simple set of PHP (5) scripts that will allow users of a web site to enter their monthly income. more>>
Debt Payoff Calculator is a simple set of PHP (5) scripts that will allow users of a web site to enter their monthly income, monthly budget, and outstanding debts.
The system can then generate a debt payoff report predicting how long it will take to pay off the debts.
The algorithm is:
1. Get total monthly income.
2. Get total monthly expenses.
3. Amount available for debt service is income - expenses;
4. Compute the "kicker" as %20 of Available, reduce available by this amount.
5. Compute the ratio of each debt to total debts.
6. Multiply Available by each ratio to get the potential payment.
7. For the smallest debt, add the kicker.
8. Test if any debts would be paid off
8a. If a debt could be paid off, make the payment, adjust the last debt pointer.
8b. Add any excess funds to the other potentials, using ratio2 which excludes the debt to be paid off.
8b. Repeat 8.
9. Make the remaining payments for debts not paid off.
Repeat 5-9 until all debts paid off.
Print the table of payments.
Enhancements:
- This release has been tested with Internet Explorer and Mozilla as clients.
<<lessThe system can then generate a debt payoff report predicting how long it will take to pay off the debts.
The algorithm is:
1. Get total monthly income.
2. Get total monthly expenses.
3. Amount available for debt service is income - expenses;
4. Compute the "kicker" as %20 of Available, reduce available by this amount.
5. Compute the ratio of each debt to total debts.
6. Multiply Available by each ratio to get the potential payment.
7. For the smallest debt, add the kicker.
8. Test if any debts would be paid off
8a. If a debt could be paid off, make the payment, adjust the last debt pointer.
8b. Add any excess funds to the other potentials, using ratio2 which excludes the debt to be paid off.
8b. Repeat 8.
9. Make the remaining payments for debts not paid off.
Repeat 5-9 until all debts paid off.
Print the table of payments.
Enhancements:
- This release has been tested with Internet Explorer and Mozilla as clients.
Download (0.007MB)
Added: 2006-03-28 License: GPL (GNU General Public License) Price:
1309 downloads
Conary 1.1.33
Conary is a distributed software management system. more>>
Conary is a distributed software management system for Linux distributions. It replaces traditional package management solutions (such as RPM and dpkg) with one designed to enable loose collaboration across the Internet.
Conary enables sets of distributed and loosely connected repositories to define the components which are installed on a Linux system.
Rather then having a full distribution come from a single vendor, it allows administrators and developers to branch a distribution, keeping the pieces which fit their environment while grabbing components from other repositories across the Internet.
Enhancements:
- A new "conary rdiff" command has been added that displays the differences between two troves in a Conary repository.
- Significant improvements have been made to HTTP proxy support.
- A new "searchPath" configuration option has been added, which allows the user to specify a group to use when searching for new packages or performing dependency resolution.
- Numerous additional enhancements and bugfixes are included.
<<lessConary enables sets of distributed and loosely connected repositories to define the components which are installed on a Linux system.
Rather then having a full distribution come from a single vendor, it allows administrators and developers to branch a distribution, keeping the pieces which fit their environment while grabbing components from other repositories across the Internet.
Enhancements:
- A new "conary rdiff" command has been added that displays the differences between two troves in a Conary repository.
- Significant improvements have been made to HTTP proxy support.
- A new "searchPath" configuration option has been added, which allows the user to specify a group to use when searching for new packages or performing dependency resolution.
- Numerous additional enhancements and bugfixes are included.
Download (0.73MB)
Added: 2007-07-31 License: Common Public License Price:
820 downloads
GUIDOLib 1.33
GUIDOLib is designed as a project aiming at the development of a generic, portable library and API for the graphical rendering of musical scores. more>>
GUIDOLib 1.33 is designed as a project aiming at the development of a generic, portable library and API for the graphical rendering of musical scores. The library is based on the GUIDO Music Notation Format as the underlying data format. The library takes account of the conventional music notation system and should be flexible enough to include any graphical sign and musical information if necessary.
Major Features:
- The GUIDOLib project includes the development of several applications for tasks like displaying/rendering musical scores (GUIDO Noteviewer), playback GUIDO files via MIDI, or the conversion between GUIDO and and other scorefile formats. Another main topic of the project is the development of the portable library and API for graphical score.
- The GUIDOLib project has started in December 2002 by improving the source code of the GUIDO NoteViewer (created by Kai Renz) through an collaboration between the MidiShare group at GRAME (Lyon/France) and the SALIERI group at the Darmstadt University of Technology.
Added: 2008-02-05 License: GPL Price: FREE
1 downloads
GTDInbox 1.33
GTDInbox is a thunderbird which discreetly integrates into Gmail making it even more suitable as a GTD tool. more>>
GTDInbox is a thunderbird which discreetly integrates into Gmail making it even more suitable as a GTD tool.
GTDInbox (formerly GTDGmail) discreetly integrates into Gmail making it even more suitable as a GTD tool.
GTD - Getting Things Done - is a simple and effective productivity concept: designed so that even the laziest and most scattered of people can be organised and stress free.
Main features:
- Easily Organise GTD Labels
- Quickly Review Outstanding Tasks
- Save Specialised Searches
- Send Myself Tasks and References
- Print Tasks to Cards
- Keyboard Shortcuts
Built by the authors of Bumble Search - a well-reviewed high quality extension that has featured in the national IT press - GTDInbox shares the same high production values.
<<lessGTDInbox (formerly GTDGmail) discreetly integrates into Gmail making it even more suitable as a GTD tool.
GTD - Getting Things Done - is a simple and effective productivity concept: designed so that even the laziest and most scattered of people can be organised and stress free.
Main features:
- Easily Organise GTD Labels
- Quickly Review Outstanding Tasks
- Save Specialised Searches
- Send Myself Tasks and References
- Print Tasks to Cards
- Keyboard Shortcuts
Built by the authors of Bumble Search - a well-reviewed high quality extension that has featured in the national IT press - GTDInbox shares the same high production values.
Download (0.18MB)
Added: 2007-05-01 License: MPL (Mozilla Public License) Price:
907 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 1.33 aspect ratio 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