transparent
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 316
Network Transparent Widgets 0.3.2
Network Transparent Widgets is a protocol and application framework. more>>
Network Transparent Widgets short from NTW, is a protocol and application framework that allows a single server to serve thousands of remote GUI applications.
The client applications are nearly indistinguishable from local, native applications. The protocol is language and architecture neutral. Server language bindings for C and Java are in heavy development.
Main features:
Speed: Remote apps can run at a speed which is nearly indistinguishable from a locally running application. Since the client draws the widgets natively, its not necessary to transfer graphical data, only widget state data. This can be done asynchronously, so the responsiveness of the UI never suffers.
Persistence: Its just as easy to write the ntw protocol data to disk as it is to the network, so the state of the entire gui application can be easily saved. This also happens transparently, so the developer doesnt have to spend any time loading and saving data. Also, if a network connection dies or the client computer loses power, the application can be restarted from the point of failure at the next connection.
Portability: using the protocol, an ntw server application running on a Unix machine could talk to an ntw client for Windows, and vice versa. So a developer could write a program on Linux that could be run from any OS without any porting necessary. Any language or platform that can read and write data to a network can use the protocol to create gui apps.
Scalability: Since the ntw server does not store or draw widget graphics, the memory and computational overhead of running an ntw application is much less than a comparable X Window application. A low end machine could easily serve hundreds of remote clients.
Productivity: Users can run ntw apps without installing anything but the client. Developers can release new versions of their apps without the users having to do anything, much like a web page.
Reference Implementation:
The current reference implementation of the client implements most of the widgets in the Gtk toolkit, and is written in C using the GTK+ 2.0 toolkit for drawing the widgets and handling events. It compiles and runs on FreeBSD, Linux, and Windows, and likely other Unix variants also. Youll need the GTK+ toolkit installed to run the client, and the GTK+ development headers to compile it.
The source code also include a server reference implementation and a sample server application. The "server" is really a set of C language bindings to functions that create and send ntw widget data. The bindings can be used in much the same way as any other GUI toolkit. See the file "ntwtest.c" for the example application. Its been tested on FreeBSD, Linux, and Windows XP. The server library should compile and run on most systems with a C compiler and support for sockets, without the need for any additional libraries.
The protocol is defined by the two header files, ntw.h and ntw_signals.h. These are C header files that describe exactly the byte layout for each of the widgets and all of the opcodes and events that can be sent.
There are still some widgets missing, and some of the signals raised by GTK are not yet handled in the protocol. This will be fixed in the near future.
Note: Although the reference implementation is coded in GTK, the NTW protocol is designed to be independent of any particular widget toolkit. GTK was picked due to favorable design features and a favorable license.
Enhancements:
- 02JUL06 - Fixed bug in update.c where spin_button was switched with slider
- 02JUL06 - Removed status field from image_buffer widget protocol
<<lessThe client applications are nearly indistinguishable from local, native applications. The protocol is language and architecture neutral. Server language bindings for C and Java are in heavy development.
Main features:
Speed: Remote apps can run at a speed which is nearly indistinguishable from a locally running application. Since the client draws the widgets natively, its not necessary to transfer graphical data, only widget state data. This can be done asynchronously, so the responsiveness of the UI never suffers.
Persistence: Its just as easy to write the ntw protocol data to disk as it is to the network, so the state of the entire gui application can be easily saved. This also happens transparently, so the developer doesnt have to spend any time loading and saving data. Also, if a network connection dies or the client computer loses power, the application can be restarted from the point of failure at the next connection.
Portability: using the protocol, an ntw server application running on a Unix machine could talk to an ntw client for Windows, and vice versa. So a developer could write a program on Linux that could be run from any OS without any porting necessary. Any language or platform that can read and write data to a network can use the protocol to create gui apps.
Scalability: Since the ntw server does not store or draw widget graphics, the memory and computational overhead of running an ntw application is much less than a comparable X Window application. A low end machine could easily serve hundreds of remote clients.
Productivity: Users can run ntw apps without installing anything but the client. Developers can release new versions of their apps without the users having to do anything, much like a web page.
Reference Implementation:
The current reference implementation of the client implements most of the widgets in the Gtk toolkit, and is written in C using the GTK+ 2.0 toolkit for drawing the widgets and handling events. It compiles and runs on FreeBSD, Linux, and Windows, and likely other Unix variants also. Youll need the GTK+ toolkit installed to run the client, and the GTK+ development headers to compile it.
The source code also include a server reference implementation and a sample server application. The "server" is really a set of C language bindings to functions that create and send ntw widget data. The bindings can be used in much the same way as any other GUI toolkit. See the file "ntwtest.c" for the example application. Its been tested on FreeBSD, Linux, and Windows XP. The server library should compile and run on most systems with a C compiler and support for sockets, without the need for any additional libraries.
The protocol is defined by the two header files, ntw.h and ntw_signals.h. These are C header files that describe exactly the byte layout for each of the widgets and all of the opcodes and events that can be sent.
There are still some widgets missing, and some of the signals raised by GTK are not yet handled in the protocol. This will be fixed in the near future.
Note: Although the reference implementation is coded in GTK, the NTW protocol is designed to be independent of any particular widget toolkit. GTK was picked due to favorable design features and a favorable license.
Enhancements:
- 02JUL06 - Fixed bug in update.c where spin_button was switched with slider
- 02JUL06 - Removed status field from image_buffer widget protocol
Download (0.65MB)
Added: 2006-07-04 License: MIT/X Consortium License Price:
1209 downloads
Transparent Parallel I/O Environment 20050912
TPIE is designed to minimise the I/O performed when solving problems on very large data sets. more>>
Transparent Parallel I/O Environment is a software environment (written in C++) that facilitates the implementation of external memory algorithms.
The goal of theoretical work in the area of external memory algorithms (also called I/O algorithms or out-of-core algorithms) has been to develop algorithms that minimize the Input/Output communication (or just I/O) performed when solving problems on very large data sets.
The area was effectively started in the late eighties by Aggarwal and Vitter and subsequently I/O algorithms have been developed for several problem domains. See below for recent surveys of theoretical results in the area of I/O-efficient algorithms.
Main features:
- Abstract away the I/O details through a simple high-level interface.
- Implement I/O-efficient paradigms to show their practical viability.
- Be flexible, allowing a wide variety of algorithms to be implemented within the system.
- Be portable across a variety of hardware platforms.
- Be extensible, so that new features can be easily added later.
The TPIE library consists of a kernel and a set of I/O-efficient algorithms and data structures implemented on top of the kernel. Most of the functionality is provided as templated classes and functions in C++. In addition, small programs are provided for testing and illustrating the usage of the application interface.
<<lessThe goal of theoretical work in the area of external memory algorithms (also called I/O algorithms or out-of-core algorithms) has been to develop algorithms that minimize the Input/Output communication (or just I/O) performed when solving problems on very large data sets.
The area was effectively started in the late eighties by Aggarwal and Vitter and subsequently I/O algorithms have been developed for several problem domains. See below for recent surveys of theoretical results in the area of I/O-efficient algorithms.
Main features:
- Abstract away the I/O details through a simple high-level interface.
- Implement I/O-efficient paradigms to show their practical viability.
- Be flexible, allowing a wide variety of algorithms to be implemented within the system.
- Be portable across a variety of hardware platforms.
- Be extensible, so that new features can be easily added later.
The TPIE library consists of a kernel and a set of I/O-efficient algorithms and data structures implemented on top of the kernel. Most of the functionality is provided as templated classes and functions in C++. In addition, small programs are provided for testing and illustrating the usage of the application interface.
Download (1.1MB)
Added: 2006-02-24 License: BSD License Price:
1339 downloads
Transparency 0.1.151
Transparency is a small, specialized tool for transparent PNG processing on the command line. more>>
Transparency is a tool for special, typical tasks performed on transparent PNGs, especially in the context of the WWW.
Transparency currently supports some typical, specialised operations you can easily do with The Gimp or similar applications, but which are likely to be needed in scripts, so this is a command line tool.
Ive implemented typical things I often need that ImageMagicks do not provide.
Currently, two major algorithms are available, along with a few minor ones:
Convert White to Transparency
I needed this for scripted generation of transparent images showing rendered text. The rendered text usually comes out black-on-white, which this tool converts to black-on-transparent.
Perfectly Convert PNG to GIF
PNG features a full-fledged alpha channel, making half-transparent images easy to handle. However, only few Web browsers support it completely, so I wanted GIF images on my web site, but PNG images as my working copy.
This application prepares PNGs for conversion to GIF by making all pixels either opaque or fully transparent. When you provide a background colour, the resulting GIF looks just as smoothly embedded as the original PNG. This works particularly well for antialiased pictures or text.
Combination
You will often want to combine the two steps above and might want to additionally scale the image. You can do this in one step with Transparency.
Enhancements:
- gcc 4.0 compilation was still broken for some people; this version should fix that.
<<lessTransparency currently supports some typical, specialised operations you can easily do with The Gimp or similar applications, but which are likely to be needed in scripts, so this is a command line tool.
Ive implemented typical things I often need that ImageMagicks do not provide.
Currently, two major algorithms are available, along with a few minor ones:
Convert White to Transparency
I needed this for scripted generation of transparent images showing rendered text. The rendered text usually comes out black-on-white, which this tool converts to black-on-transparent.
Perfectly Convert PNG to GIF
PNG features a full-fledged alpha channel, making half-transparent images easy to handle. However, only few Web browsers support it completely, so I wanted GIF images on my web site, but PNG images as my working copy.
This application prepares PNGs for conversion to GIF by making all pixels either opaque or fully transparent. When you provide a background colour, the resulting GIF looks just as smoothly embedded as the original PNG. This works particularly well for antialiased pictures or text.
Combination
You will often want to combine the two steps above and might want to additionally scale the image. You can do this in one step with Transparency.
Enhancements:
- gcc 4.0 compilation was still broken for some people; this version should fix that.
Download (0.39MB)
Added: 2006-02-28 License: Freely Distributable Price:
1336 downloads
KDesktop transparency support 0.1
KDesktop transparency support is a KDE patch that adds support for real transparency to kdesktop. more>>
KDesktop transparency support is a KDE patch that adds support for real transparency to kdesktop. It adds two new composite manager related features. To activate the features kdesktop has to be started with the "--bg-transparency" option.
The first one allows you to change the opacity of the background image. This works currently with the beryl transparent cube and will also work with compiz once the transparent cube gets applied. To activate the feature add the following to your kdesktoprc:
[Background Common]
BackgroundOpacity=90 (0 = fully transparent / 100 = opaque)
The second feature allows compiz (and later maybe other composite managers) to tell kdesktop not to paint the background image ("_COMPIZ_WALLPAPER_SUPPORTED" x atom). In this case compiz is able to paint a viewport dependent background or to make it even animated. This feature looks for changes to the x atom, so that kdesktop will automatically switch back to normal background if kwin gets started or compiz stops to render the wallpaper.
This patch is against the current kde3 svn.
<<lessThe first one allows you to change the opacity of the background image. This works currently with the beryl transparent cube and will also work with compiz once the transparent cube gets applied. To activate the feature add the following to your kdesktoprc:
[Background Common]
BackgroundOpacity=90 (0 = fully transparent / 100 = opaque)
The second feature allows compiz (and later maybe other composite managers) to tell kdesktop not to paint the background image ("_COMPIZ_WALLPAPER_SUPPORTED" x atom). In this case compiz is able to paint a viewport dependent background or to make it even animated. This feature looks for changes to the x atom, so that kdesktop will automatically switch back to normal background if kwin gets started or compiz stops to render the wallpaper.
This patch is against the current kde3 svn.
Download (MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
529 downloads
translate plus 1.0
translate plus is a facelift, update, and re-code of the Translate theme from Suslik. more>>
translate plus is a facelift, update, and re-code of the Translate theme from Suslik. This version utilises a new technique for coding input boxes for Superkaramba, which was written (again) by Suslik.
This new technique allows for a transparent input box, which allows for a much nicer looking theme
<<lessThis new technique allows for a transparent input box, which allows for a much nicer looking theme
Download (0.058MB)
Added: 2007-04-17 License: GPL (GNU General Public License) Price:
924 downloads
burncenter 3.2
burncenter is a very easy-to-use text based interface to the standard CD burning tools for UNIX. more>>
Burncenter is a very easy-to-use text-based interface to cd-burning tools under UNIX (cdrecord, cdda2wav, mkisofs).
Main features:
- easy to use text interface
- non-interactive frontend (useful for scripts)
- transparent multi-session support
- creation of audio cd from WAVE, OGG or MP3 files, or from playlists
- data and audio cd copy support
- cdrw support (fast and complete blanking)
- small perl module, designed to simplify access to cdburners
<<lessMain features:
- easy to use text interface
- non-interactive frontend (useful for scripts)
- transparent multi-session support
- creation of audio cd from WAVE, OGG or MP3 files, or from playlists
- data and audio cd copy support
- cdrw support (fast and complete blanking)
- small perl module, designed to simplify access to cdburners
Download (0.014MB)
Added: 2005-06-28 License: GPL (GNU General Public License) Price:
1578 downloads
mod_tproxt
mod_tproxt is a transparent proxy support for Apache 1.3. more>>
mod_tproxt is a transparent proxy support for Apache 1.3.
mod_tproxt has been running on a (now old) K6-200 machine, with a max uptime of about 500 days or so.
mod_tproxt requires linux transparent proxy support. The BSDs may likely have a similar mechanism. If you port it to work with another OS, send me a patch, and Ill include it here.
This module is contributed to community under the Apache License, BSD licence or GPL, whichever you like.
<<lessmod_tproxt has been running on a (now old) K6-200 machine, with a max uptime of about 500 days or so.
mod_tproxt requires linux transparent proxy support. The BSDs may likely have a similar mechanism. If you port it to work with another OS, send me a patch, and Ill include it here.
This module is contributed to community under the Apache License, BSD licence or GPL, whichever you like.
Download (0.008MB)
Added: 2006-04-20 License: The Apache License Price:
1282 downloads
CatGrab Small for Linux 1.3
CatGrab imports files from your digital camera under Linux platform. more>> Support Linux platforms from Version 1.3
Import photos with a single click
-One click is all it takes with CatGrab to import files from your digital camera, automatically rotate them, sort them and open them in a viewer.
Transparent file storage
-Files are stored in a transparent directory structure. No database is needed to retrieve your images at a later date.
Continuity
-Catgrab is compatible with a wide range of software. The transparent basic file structure means that the user is not reliant on special photo management software, thereby optimizing continuity across different software solutions.
Platform-independence
-The software can be run on Mac, Windows and Linux. Continuity is guaranteed even if the operating system changes or you find yourself working on different systems simultaneously.
Automatic renaming and archiving
-Files are re-named by date and time and stored in appropriate directories on a biannual, quarterly or monthly basis.
No duplicated files on your PC
-Files are not duplicated on your PC, even when the file names have been changed. So images can stay on the camera and will not be subsequently downloaded twice.
Clarity
-The one-click-system means that the software has only two command buttons. One for a quick settings menu with access to the users manual, and the second for importing photos and films with a single click.<<less
Download (2.9MB)
Added: 2009-04-23 License: Freeware Price: Free
186 downloads
SafeTP 1.50
SafeTP provides a transparent secure FTP Software. more>>
SafeTP provides a transparent secure FTP Software.
SafeTP is a security application for Windows and UNIX users who use FTP to connect to their accounts on UNIX or NT FTP servers. The traditional FTP protocol is highly insecure: it sends passwords in the clear. SafeTP is designed to overcome this flaw.
SafeTP consists of the client, sftpc, and the server, sftpd. A key advantage of SafeTP is transparency for clients. When the Windows version SafeTP is installed, any ordinary Windows FTP client automatically becomes a Secure FTP client, without any further user intervention.
<<lessSafeTP is a security application for Windows and UNIX users who use FTP to connect to their accounts on UNIX or NT FTP servers. The traditional FTP protocol is highly insecure: it sends passwords in the clear. SafeTP is designed to overcome this flaw.
SafeTP consists of the client, sftpc, and the server, sftpd. A key advantage of SafeTP is transparency for clients. When the Windows version SafeTP is installed, any ordinary Windows FTP client automatically becomes a Secure FTP client, without any further user intervention.
Download (0.47MB)
Added: 2007-04-27 License: Free To Use But Restricted Price:
911 downloads
irc-proxy 0.4 Beta
Ircproxy is a transparent IRC content filtering application. more>>
Ircproxy is a transparent IRC content filtering application. It may be used whenever there is a need for monitoring IRC connections.
irc-proxy may be used to deny specific connections or to examine suspicious IRC traffic.
<<lessirc-proxy may be used to deny specific connections or to examine suspicious IRC traffic.
Download (0.059MB)
Added: 2006-06-30 License: GPL (GNU General Public License) Price:
1219 downloads
KolourPaint 1.2.2
KolourPaint is an easy-to-use paint program for KDE. more>>
KolourPaint is an easy-to-use paint program for KDE. Features include undo/redo, more than a dozen tools, selections, transparent image editing and zoom support (with an optional grid and thumbnail).
KolourPaint is a free, easy-to-use paint program for KDE.
It aims to be conceptually simple to understand; providing a level of functionality targeted towards the average user. KolourPaint is designed for daily tasks like:
- Painting - drawing diagrams and "finger painting"
- Image Manipulation - editing screenshots and photos; applying effects
- Icon Editing - drawing clipart and logos with transparency
Its not an unusable and monolithic program where simple tasks like drawing lines become near impossible. Nor is it so simple that it lacks essential features like Undo/Redo.
The main difference between KolourPaint and most other "simple" UNIX paint programs is that KolourPaint actually works. See the Product Comparison page for details.
KolourPaint is opensource software written in C++ using the Qt and KDE libraries.
Main features:
- Undo/Redo Support (10-500 levels of history depending on memory usage)
Tools (single key shortcuts available for all tools)
- Brush, Color Eraser, Color Picker, Connected Lines a.k.a. Polyline
- Curve, Ellipse, Eraser, Flood Fill, Line, Pen, Polygon, Rectangle
- Rounded Rectangle, Spraycan, Text
Selections (fully undo- and redo-able)
- Rectangular, Elliptical, Free-Form shapes
- Choice between Opaque and Transparent selections
- Full Clipboard/Edit Menu support
- Freehand resizeable
- Colour Similarity means that you can fill regions in dithered images and photos
Transparency
- Draw transparent icons and logos on a checkerboard background
- All tools can draw in the "Transparent Colour"
Image Effects
- Autocrop / Remove Internal Border
- Balance (Brightness, Contrast, Gamma)
- Clear, Emboss, Flatten, Flip, Invert (with choice of channels)
- Reduce Colours, Reduce to Greyscale, Resize, Rotate
- Scale, Set as Image (Crop), Skew, Smooth Scale, Soften & Sharpen
Close-up Editing
- Zoom (from 0.01x to 16x)
- Grid
- Thumbnail
File Operations
- Open/Save in all file formats provided by KImageIO (PNG, JPEG, BMP, ICO, PCX, TIFF,...) with preview
- Print, Print Preview
- Mail
- Set as Wallpaper
<<lessKolourPaint is a free, easy-to-use paint program for KDE.
It aims to be conceptually simple to understand; providing a level of functionality targeted towards the average user. KolourPaint is designed for daily tasks like:
- Painting - drawing diagrams and "finger painting"
- Image Manipulation - editing screenshots and photos; applying effects
- Icon Editing - drawing clipart and logos with transparency
Its not an unusable and monolithic program where simple tasks like drawing lines become near impossible. Nor is it so simple that it lacks essential features like Undo/Redo.
The main difference between KolourPaint and most other "simple" UNIX paint programs is that KolourPaint actually works. See the Product Comparison page for details.
KolourPaint is opensource software written in C++ using the Qt and KDE libraries.
Main features:
- Undo/Redo Support (10-500 levels of history depending on memory usage)
Tools (single key shortcuts available for all tools)
- Brush, Color Eraser, Color Picker, Connected Lines a.k.a. Polyline
- Curve, Ellipse, Eraser, Flood Fill, Line, Pen, Polygon, Rectangle
- Rounded Rectangle, Spraycan, Text
Selections (fully undo- and redo-able)
- Rectangular, Elliptical, Free-Form shapes
- Choice between Opaque and Transparent selections
- Full Clipboard/Edit Menu support
- Freehand resizeable
- Colour Similarity means that you can fill regions in dithered images and photos
Transparency
- Draw transparent icons and logos on a checkerboard background
- All tools can draw in the "Transparent Colour"
Image Effects
- Autocrop / Remove Internal Border
- Balance (Brightness, Contrast, Gamma)
- Clear, Emboss, Flatten, Flip, Invert (with choice of channels)
- Reduce Colours, Reduce to Greyscale, Resize, Rotate
- Scale, Set as Image (Crop), Skew, Smooth Scale, Soften & Sharpen
Close-up Editing
- Zoom (from 0.01x to 16x)
- Grid
- Thumbnail
File Operations
- Open/Save in all file formats provided by KImageIO (PNG, JPEG, BMP, ICO, PCX, TIFF,...) with preview
- Print, Print Preview
- Set as Wallpaper
Download (1.0MB)
Added: 2005-05-30 License: GPL (GNU General Public License) Price:
1621 downloads
HTTP Proxy Client 0.8.5
HTTP Proxy Client is a set of libraries and scripts that provide transparent access to Internet. more>>
HTTP Proxy Client is the small set of libraries and scripts, which provides transparent access to Internet via HTTP proxy for programs, which uses TCP/IP for communication.
The list of programs includes: telnet, ftp, licq, cvs, smth else? Project implements dynamic library, that can be preloaded before program run.
The library substitutes some system calls (connect(), gethostbyaddr(), gethostbyname()), with calls, which makes TCP/IP connection through HTTP proxy. This allows client programs behind HTTP proxy work with Internet without limitations.
At the moment tested on i386 Linux, i386/sparc Solaris.
Enhancements:
- While using dotted address, applications will attempt to connect regardless DNS lookup result.
<<lessThe list of programs includes: telnet, ftp, licq, cvs, smth else? Project implements dynamic library, that can be preloaded before program run.
The library substitutes some system calls (connect(), gethostbyaddr(), gethostbyname()), with calls, which makes TCP/IP connection through HTTP proxy. This allows client programs behind HTTP proxy work with Internet without limitations.
At the moment tested on i386 Linux, i386/sparc Solaris.
Enhancements:
- While using dotted address, applications will attempt to connect regardless DNS lookup result.
Download (0.21MB)
Added: 2005-09-13 License: GPL (GNU General Public License) Price:
1510 downloads
nanoser 1.0.0
Nanoserv is a sockets daemon toolkit for PHP 5.1+ more>>
Nanoserv is a sockets daemon toolkit for PHP 5.1+
It is distributed under the terms of the GNU Lesser General Public License.
Its a complete rewrite of the shadok sockets PHP4 library (the one behind phpos and sh4re).
Main features:
- 100% object oriented
- native support for TCP with SSL/TLS and UDP connections
- multiplexing and forking listeners
- handlers for raw connections, line input, HTTP, SMTP, XML-RPC, Syslog, ...
- transparent inter process communications with forked handlers
- and probably more ...
Most of the features work with PHP 5.0 but you will need PHP 5.1+ to take advantage of the shared objects and crypto support.
<<lessIt is distributed under the terms of the GNU Lesser General Public License.
Its a complete rewrite of the shadok sockets PHP4 library (the one behind phpos and sh4re).
Main features:
- 100% object oriented
- native support for TCP with SSL/TLS and UDP connections
- multiplexing and forking listeners
- handlers for raw connections, line input, HTTP, SMTP, XML-RPC, Syslog, ...
- transparent inter process communications with forked handlers
- and probably more ...
Most of the features work with PHP 5.0 but you will need PHP 5.1+ to take advantage of the shared objects and crypto support.
Download (0.017MB)
Added: 2005-08-26 License: LGPL (GNU Lesser General Public License) Price:
1520 downloads
Nanoserv 1.0.2
Nanoserv is a sockets daemon toolkit for PHP 5.1+. more>>
Nanoserv is a sockets daemon toolkit for PHP 5.1+. Nanoserv is object oriented and features native support for TCP with SSL/TLS and UDP connections, multiplexing and forking listeners, handlers for raw connections, line input, HTTP, SMTP, XML-RPC, Syslog, transparent inter-process communications with forked handlers, and more.
Main features:
- 100% object oriented
- native support for TCP with SSL/TLS and UDP connections
- multiplexing and forking listeners
- handlers for raw connections, line input, HTTP, SMTP, XML-RPC, Syslog, ...
- transparent inter process communications with forked handlers
- and probably more ...
<<lessMain features:
- 100% object oriented
- native support for TCP with SSL/TLS and UDP connections
- multiplexing and forking listeners
- handlers for raw connections, line input, HTTP, SMTP, XML-RPC, Syslog, ...
- transparent inter process communications with forked handlers
- and probably more ...
Download (0.020MB)
Added: 2006-08-23 License: LGPL (GNU Lesser General Public License) Price:
1161 downloads
Spin 1.5
Spin is a transparent threading solution for non-freezing Swing applications. more>>
Spin is a transparent threading solution for non-freezing Swing applications.
Every non trivial GUI sooner or later encounters the problem of "freeze".
This annoying behaviour is experienced by users every time the application performs extensive calculations or blocks for network or disk I/O.
Spin offers a new approach for solving this problem.
It offers transparent thread handling with minimal impact on your application code.
Enhancements:
- Now built with Maven.
<<lessEvery non trivial GUI sooner or later encounters the problem of "freeze".
This annoying behaviour is experienced by users every time the application performs extensive calculations or blocks for network or disk I/O.
Spin offers a new approach for solving this problem.
It offers transparent thread handling with minimal impact on your application code.
Enhancements:
- Now built with Maven.
Download (0.49MB)
Added: 2007-03-31 License: GPL (GNU General Public License) Price:
939 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 transparent 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