jobs available in my area
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4395
Job Costing Software 1.11
Job Costing Software is a Web-based job costing product makes it easy to view or update job costs quickly. more>>
Job Costing Software project is the first step to improving profitablity on your projects. A web-based job costing product makes it easy to view or update your job costs quickly.
View your project cost status in real time to make more accurate decisions. Export your costs to an excel spreadsheet for reporting or printing.
Two user levels allow your suppliers to enter costs directly without the ability to edit other costs. Improve your project decision making with free job costing software.
Everybody knows how important it is to create an accurate estimate of a jobs total costs. Unfortunately, most project managers are so busy they dont have time to gather the information needed to accurately calculate costs as the job progresses.
Job costing software makes the cost projections for you, freeing up your time to better manage the project.
Enhancements:
- This release fixed a few bugs in the database library files.
<<lessView your project cost status in real time to make more accurate decisions. Export your costs to an excel spreadsheet for reporting or printing.
Two user levels allow your suppliers to enter costs directly without the ability to edit other costs. Improve your project decision making with free job costing software.
Everybody knows how important it is to create an accurate estimate of a jobs total costs. Unfortunately, most project managers are so busy they dont have time to gather the information needed to accurately calculate costs as the job progresses.
Job costing software makes the cost projections for you, freeing up your time to better manage the project.
Enhancements:
- This release fixed a few bugs in the database library files.
Download (0.092MB)
Added: 2006-02-16 License: Other/Proprietary License with Source Price:
1350 downloads
Java Binary Enhancement Tool 3 R1
Java Binary Enhancement Tool is a Java assembler, dissassembler, and binary editor. more>>
The Java Binary Enhancement Tool (JBET) is a general Java program analysis and manipulation tool. Existing class files can be disassembled, reassembled, or edited programmatically through the JBET API. JBET can also be used to create new Java class files from scratch. JBET uses a convenient internal representation of all the contents of Java binary (.class) files, allowing the user to edit the classes easily, in a structured manner.
JBET was developed as part of the DARPA Self-Protecting Mobile Agents project under the OASIS and Active Networks programs (contract number N66001-00-C-8602) in order to study automated software obfuscation.
The Java language was chosen for this project because of the (relative) ease of constructing binary editing tools provided by the large amount of type information present in the class files. Our two reports, the Obfuscation Techniques Evaluation Report, and the Obfuscation Report, are available from the download area. The obfuscation tool developed is not part of this release.
JBET was also used in the DARPA/AFRL Survivable Server project (contract number F30602-00-C-0183) to add additional security checks to the Java Standard Library. (The Java SecurityManager API does not support many desirable security checks, such as continued authorization of file accesses after opening.)
JBET was used to replace the native method references in the Java standard library with stubs that call a pluggable security policy. This tool, called Jpolicy, is also available for download at this website. Jpolicy is very incomplete at this time, but may be interesting to those working in Java security or changing the standard library themselves.
The internal representation of Java class files used by JBET is intented to make it easy for programmers to write Java binary code transforms. Each element of Java class files has a corresponding internal data structure: ClassInfo for entire classes, MethodInfo for methods, FieldInfo for fields, Snippit for code blocks, and Instruction for individual instructions. Snippit and Instruction understand Java opcode syntax and semantics, allowing automated creation of valid Java programs. A Java-compatible class verifier is also included.
Some code transforms are difficult to program directly by manipulating Java instructions. For those transforms, a directed acyclic graph (DAG) representation of code is available. In the DAG representation, each basic block has a corresponding DAG, with a set of input and output nodes. Edges in the graph connect "producer" nodes (such as constants, or the result of calculations) to "user" nodes (such as method calls or other calculations). Methods are divided into basic blocks and control flow is stored at the basic block level (possible because Java has only fixed jump targets)
JBET requires a Java 1.4 virtual machine to run, although it can operate on class files from earlier Java versions. The packaging and build environment supplied supports Linux and Windows with Cygwin; however, the build process is simple and could be performed manually on other platforms. Perl is required for regression testing.
Jpolicy requires a Java 1.4 virtual machine to build, either Linux or Windows NT/XP with Cygwin. gcc is required for building on Windows (supplied with Cygwin). The runtime system can be either Java 1.3 or 1.4 (with Suns JVM only), running on Linux or Windows NT/XP. Windows 9x and Windows 2000 may work as well, but have not been tested.
Installation
1. Install jdk 1.4.1.
2. Set CLASSPATH to jdk1.4.1/jre/lib/rt.jar
3. cd src; make
4. If that didnt work, examine the makefile. java or javac may not be in the path.
5. To build a jar file that can be used with "java -jar jbet.jar", run "make jar".
6. If you have perl installed, run the tests with "make test".
Optionally, run "make regen; make test".
Make a symbolic link from jbet3/bin/jbet to somewhere in your path.
Usage
JBET uses the JNI format for class names, and JNI type and method descriptors. For a summary of this syntax, use jbet help syntax. Suns JVM specification may also be helpful.
To look at a class disassembly, use jbet print. Try disassembling a class you have source for, and was built with debug info (-g): jbet -P < classpath > print < classname >. Suns JVM specification has an instruction reference.
<<lessJBET was developed as part of the DARPA Self-Protecting Mobile Agents project under the OASIS and Active Networks programs (contract number N66001-00-C-8602) in order to study automated software obfuscation.
The Java language was chosen for this project because of the (relative) ease of constructing binary editing tools provided by the large amount of type information present in the class files. Our two reports, the Obfuscation Techniques Evaluation Report, and the Obfuscation Report, are available from the download area. The obfuscation tool developed is not part of this release.
JBET was also used in the DARPA/AFRL Survivable Server project (contract number F30602-00-C-0183) to add additional security checks to the Java Standard Library. (The Java SecurityManager API does not support many desirable security checks, such as continued authorization of file accesses after opening.)
JBET was used to replace the native method references in the Java standard library with stubs that call a pluggable security policy. This tool, called Jpolicy, is also available for download at this website. Jpolicy is very incomplete at this time, but may be interesting to those working in Java security or changing the standard library themselves.
The internal representation of Java class files used by JBET is intented to make it easy for programmers to write Java binary code transforms. Each element of Java class files has a corresponding internal data structure: ClassInfo for entire classes, MethodInfo for methods, FieldInfo for fields, Snippit for code blocks, and Instruction for individual instructions. Snippit and Instruction understand Java opcode syntax and semantics, allowing automated creation of valid Java programs. A Java-compatible class verifier is also included.
Some code transforms are difficult to program directly by manipulating Java instructions. For those transforms, a directed acyclic graph (DAG) representation of code is available. In the DAG representation, each basic block has a corresponding DAG, with a set of input and output nodes. Edges in the graph connect "producer" nodes (such as constants, or the result of calculations) to "user" nodes (such as method calls or other calculations). Methods are divided into basic blocks and control flow is stored at the basic block level (possible because Java has only fixed jump targets)
JBET requires a Java 1.4 virtual machine to run, although it can operate on class files from earlier Java versions. The packaging and build environment supplied supports Linux and Windows with Cygwin; however, the build process is simple and could be performed manually on other platforms. Perl is required for regression testing.
Jpolicy requires a Java 1.4 virtual machine to build, either Linux or Windows NT/XP with Cygwin. gcc is required for building on Windows (supplied with Cygwin). The runtime system can be either Java 1.3 or 1.4 (with Suns JVM only), running on Linux or Windows NT/XP. Windows 9x and Windows 2000 may work as well, but have not been tested.
Installation
1. Install jdk 1.4.1.
2. Set CLASSPATH to jdk1.4.1/jre/lib/rt.jar
3. cd src; make
4. If that didnt work, examine the makefile. java or javac may not be in the path.
5. To build a jar file that can be used with "java -jar jbet.jar", run "make jar".
6. If you have perl installed, run the tests with "make test".
Optionally, run "make regen; make test".
Make a symbolic link from jbet3/bin/jbet to somewhere in your path.
Usage
JBET uses the JNI format for class names, and JNI type and method descriptors. For a summary of this syntax, use jbet help syntax. Suns JVM specification may also be helpful.
To look at a class disassembly, use jbet print. Try disassembling a class you have source for, and was built with debug info (-g): jbet -P < classpath > print < classname >. Suns JVM specification has an instruction reference.
Download (0.19MB)
Added: 2005-03-07 License: BSD License Price:
1697 downloads
Globulation 2 0.8.23
Globulation 2 is a Real-Time Strategy (RTS) game which reduces micro-management by automatically assigning tasks to units. more>>
Globulation 2 is a Real-Time Strategy (RTS) game which reduces micro-management by automatically assigning tasks to units.
The player chooses the number of units to assign to various tasks, and the units do their best to satisfy the requests. This allows the user to manage more units and focus on strategy rather than individual units jobs.
It can be played by a single player, through your Local Area Network [LAN], or over the Internet thanks to Ysagoon Online Gaming (pronounced yog as in yoghurt) - a meta-server allowing transparent interaction between players and the IRC chatters on #glob2 (irc.freenode.net).
Globulation 2 features AI allowing single-player games or any possible combination of human-computer teams. Also included is a scripting language for versatile gameplay or tutorials and an integrated map editor.
Enhancements:
- This release fixes some bugs that crashed the game, and made it hard to play.
- It will hopefully be the last release before a major rewrite takes place.
<<lessThe player chooses the number of units to assign to various tasks, and the units do their best to satisfy the requests. This allows the user to manage more units and focus on strategy rather than individual units jobs.
It can be played by a single player, through your Local Area Network [LAN], or over the Internet thanks to Ysagoon Online Gaming (pronounced yog as in yoghurt) - a meta-server allowing transparent interaction between players and the IRC chatters on #glob2 (irc.freenode.net).
Globulation 2 features AI allowing single-player games or any possible combination of human-computer teams. Also included is a scripting language for versatile gameplay or tutorials and an integrated map editor.
Enhancements:
- This release fixes some bugs that crashed the game, and made it hard to play.
- It will hopefully be the last release before a major rewrite takes place.
Download (9.4MB)
Added: 2007-04-19 License: GPL (GNU General Public License) Price:
921 downloads
Easy Job Application 1.3.2
Easy Job Application allows you to send job applications using Gmail in websites like Craigslist. more>>
Easy Job Application allows you to send job applications using Gmail in websites like Craigslist.
This extension checks the Gmail authentication and try to connect using https. If youre using just http to log on into Gmail it may not work. Try to use Gmail with https. Ill try to make a fix to accept both types of authentication.
<<lessThis extension checks the Gmail authentication and try to connect using https. If youre using just http to log on into Gmail it may not work. Try to use Gmail with https. Ill try to make a fix to accept both types of authentication.
Download (0.012MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
943 downloads
Local Area Security 0.5
L.A.S. is a research group focused on information security related subjects. more>>
Local Area Security is a research group focused on information security related subjects. We are most known for L.A.S. Linux. Our live-CD security toolkit.
Local Area Security is a project that was started in 2002 to research information security related topics. During that time there was no real live-CD toolkit focused on information security.
So Jascha, the project founder built one from a stripped down version of Knoppix called Model-K. Both of which were built from Debian Linux.
Up until version 0.4 L.A.S. Linux was command line only. Which made it limited to some of the tools it could contain since many require a GUI. Or at least for many it is preferable to have one. So FluxBox was added as the desktop since it is light weight and very feature filled.
It was during this time that Jascha came up with the idea of keeping the size of L.A.S. as small as possible, which lead to a target maximum size of 180MBs. The size of the original mini-CDs that were available at the time. This forced the selection of tools and features to be weighed heavily since unlike other live-CDs that throw in everything including the kitchen sink. L.A.S. was designed from the ground up to be a tool not a all-inclusive grab bag of applications.
As well as many advances for live-CDs came about, such as to-ram that allows booting a live-CD into the physical RAM of a computer. Which by chance L.A.S. was perfectly cut out for. With as little as 256MB of RAM people could boot L.A.S. and then free up their CD-ROMs for burring etc.
For forensics this was a big plus, along with many other uses. Plus L.A.S. ran very fast in RAM which helped with running Nessus, Nmap, or other tools. When compared to full size (700MB) CDs which would require 1GB of RAM to use the to-ram option, it was really no contest.
<<lessLocal Area Security is a project that was started in 2002 to research information security related topics. During that time there was no real live-CD toolkit focused on information security.
So Jascha, the project founder built one from a stripped down version of Knoppix called Model-K. Both of which were built from Debian Linux.
Up until version 0.4 L.A.S. Linux was command line only. Which made it limited to some of the tools it could contain since many require a GUI. Or at least for many it is preferable to have one. So FluxBox was added as the desktop since it is light weight and very feature filled.
It was during this time that Jascha came up with the idea of keeping the size of L.A.S. as small as possible, which lead to a target maximum size of 180MBs. The size of the original mini-CDs that were available at the time. This forced the selection of tools and features to be weighed heavily since unlike other live-CDs that throw in everything including the kitchen sink. L.A.S. was designed from the ground up to be a tool not a all-inclusive grab bag of applications.
As well as many advances for live-CDs came about, such as to-ram that allows booting a live-CD into the physical RAM of a computer. Which by chance L.A.S. was perfectly cut out for. With as little as 256MB of RAM people could boot L.A.S. and then free up their CD-ROMs for burring etc.
For forensics this was a big plus, along with many other uses. Plus L.A.S. ran very fast in RAM which helped with running Nessus, Nmap, or other tools. When compared to full size (700MB) CDs which would require 1GB of RAM to use the to-ram option, it was really no contest.
Download (210MB)
Added: 2005-11-09 License: GPL (GNU General Public License) Price:
840 downloads
guile spread 1.0.2
guile spread is a guile module that conveniently wraps the Spread C libraries provided with the Spread 3.15.2 distribution. more>>
guile spread is a guile module that conveniently wraps the Spread C libraries provided with the Spread 3.15.2 distribution. Spread is available at http://www.spread.org/.
Spread is a local/wide area group communication toolkit that runs on most modern operating systems.
guile spread allows convenient mechanisms for reliable multicasting information between applications as well as providing many more complicate assurances.
<<lessSpread is a local/wide area group communication toolkit that runs on most modern operating systems.
guile spread allows convenient mechanisms for reliable multicasting information between applications as well as providing many more complicate assurances.
Download (0.32MB)
Added: 2006-10-11 License: LGPL (GNU Lesser General Public License) Price:
1108 downloads
Job Scheduler 1.3.0
The Job Scheduler runs executable files, shell scripts and database procedures automatically. more>>
The Job Scheduler runs executable files, shell scripts and database procedures automatically (MySQL, PostgreSQL, Firebird and SQL Server, Oracle, DB2).
Job Scheduler processes sequential and parallel tasks and job chains, provides an API for job implementation with Java, Javascript, VBScript, Perl and exposes jobs as Web Services.
<<lessJob Scheduler processes sequential and parallel tasks and job chains, provides an API for job implementation with Java, Javascript, VBScript, Perl and exposes jobs as Web Services.
Download (MB)
Added: 2007-06-22 License: GPL (GNU General Public License) Price:
891 downloads
Joblist 0.3.1
Joblist is a script for managing jobs. more>>
Joblist is a MySQL based PHP Webapplication for managing jobs. Jobs are categorized by different priorities.
Everybody with access is able to insert and update team members and jobs. Every job has a deadline and can be marked as done.
Feel free to download and use it.
Enhancements:
- A "Show User" field description was added.
- The font size was reduced.
<<lessEverybody with access is able to insert and update team members and jobs. Every job has a deadline and can be marked as done.
Feel free to download and use it.
Enhancements:
- A "Show User" field description was added.
- The font size was reduced.
Download (0.026MB)
Added: 2006-02-25 License: GPL (GNU General Public License) Price:
1337 downloads
Wallpaper Tray 0.5.4
Wallpaper Tray is a wallpaper utility that sits on the GNOME panel. more>>
Wallpaper Tray is a wallpaper utility that sits on the GNOME panel.
The project gives you a random wallpaper from a chosen directory at logon, on a timer, and allows you to select a new wallpaper at random from its menu.
UPDATE: I have had reports from users on Ubuntu that Wallpaper Tray is broken, something about the config dialog not appearing. It works fine on FC5. It also works on FC6. I suspect that the Ubuntu package needs rebuilding, hopefully this will happen for 0.5.3.
From here on in, I wont be touch packages, I will support the Autopackage project, which is designed to support the distribution of non core programs like mine.
he Applet lets you add directories, wallpapers are then randomly selected at login or at a given interval. You can also search your wallpaper collection, and delete wallpapers you dont like anymore.
Wallpaper Tray, as the name suggests, used to be live in the Notification Area. The Notification Area was never really meant for programs such as this, so the latest release uses the Gnome Panel. The last of 0.4.x series is still available however, for those that would rather stick with this way of working.
<<lessThe project gives you a random wallpaper from a chosen directory at logon, on a timer, and allows you to select a new wallpaper at random from its menu.
UPDATE: I have had reports from users on Ubuntu that Wallpaper Tray is broken, something about the config dialog not appearing. It works fine on FC5. It also works on FC6. I suspect that the Ubuntu package needs rebuilding, hopefully this will happen for 0.5.3.
From here on in, I wont be touch packages, I will support the Autopackage project, which is designed to support the distribution of non core programs like mine.
he Applet lets you add directories, wallpapers are then randomly selected at login or at a given interval. You can also search your wallpaper collection, and delete wallpapers you dont like anymore.
Wallpaper Tray, as the name suggests, used to be live in the Notification Area. The Notification Area was never really meant for programs such as this, so the latest release uses the Gnome Panel. The last of 0.4.x series is still available however, for those that would rather stick with this way of working.
Download (0.40MB)
Added: 2007-07-10 License: GPL (GNU General Public License) Price:
850 downloads
AuctionGallery 0.9.4
AuctionGallery is a terminal script that creates picture galleries. more>>
AuctionGallery is a terminal script that creates picture galleries for the purpose of putting them into auctions like eBay, Yahoo Auctions, etc. It can also be used automatically generate HTML templates for auction description.
It is aimed at powersellers who have hundreds of products listed every day and need an efficient way of generating galleries and organizing pictures in a coherent directory structure.
I created AuctionGallery because I needed simple software to quickly create picture galleries for the purpose of putting them into auctions. There are many other similar programs available but none did the job.
Main features:
- Automatically organize picture galleries into an easy-to navigate directory structure.
- Upload pictures to an FTP site
- Resize images and create thumbnails
- Support for flexible templates
Installation:
Just extract the tar file into your home directory. Add the path to gallery executable to PATH.
export PATH=foobar:$PATH
Edit gallery.conf and create templates. 3 sample templates are included.
Usage:
Navigate to the directory where pictures are located. Type "gallery" in terminal. You can also specify a template to speed things up, like so: "gallery foobar". Hopefully gallery executable will be in your path. It will list available templates and their descriptions.
Type the name of template to use. Type the name of the folder that will contain the pictures. Give meaningfull names so that later the pictures will be easy to find. For example if the item being sold is a Rolex Date Just Watch, give this name: RolexDateJustWatch. Try not to put numbers at the end as it will look confusing.
If everything is OK, pictures will be copied to the images_root directory, renamed, resized, thumbnailed, uploaded to an FTP site and gallery.html will be created in the current directory. All pictures in current directory will be moved to a directory "backup".
Please keep in mind that this program is written in Bash script so it is error prone. I did extensive error checking but its impossible to check everything and if something goes wrong the program may spit out something bogus.
Enhancements:
- A new command-line option -n item name was added.
- A links directory containing useful symlinks was added.
- The delete_originals option was added.
- A bug in which files get overwritten and duplicated during rename was fixed.
- Error checking of configuration options was improved.
- All convert and rename work is done in a temporary directory to avoid possible conflicts.
- Permission problems in the install script were fixed.
- The user config file permissions were made chmod 600 to hide passwords.
- Config file searching when using the -c option was improved.
- The sample configuration file was revised.
<<lessIt is aimed at powersellers who have hundreds of products listed every day and need an efficient way of generating galleries and organizing pictures in a coherent directory structure.
I created AuctionGallery because I needed simple software to quickly create picture galleries for the purpose of putting them into auctions. There are many other similar programs available but none did the job.
Main features:
- Automatically organize picture galleries into an easy-to navigate directory structure.
- Upload pictures to an FTP site
- Resize images and create thumbnails
- Support for flexible templates
Installation:
Just extract the tar file into your home directory. Add the path to gallery executable to PATH.
export PATH=foobar:$PATH
Edit gallery.conf and create templates. 3 sample templates are included.
Usage:
Navigate to the directory where pictures are located. Type "gallery" in terminal. You can also specify a template to speed things up, like so: "gallery foobar". Hopefully gallery executable will be in your path. It will list available templates and their descriptions.
Type the name of template to use. Type the name of the folder that will contain the pictures. Give meaningfull names so that later the pictures will be easy to find. For example if the item being sold is a Rolex Date Just Watch, give this name: RolexDateJustWatch. Try not to put numbers at the end as it will look confusing.
If everything is OK, pictures will be copied to the images_root directory, renamed, resized, thumbnailed, uploaded to an FTP site and gallery.html will be created in the current directory. All pictures in current directory will be moved to a directory "backup".
Please keep in mind that this program is written in Bash script so it is error prone. I did extensive error checking but its impossible to check everything and if something goes wrong the program may spit out something bogus.
Enhancements:
- A new command-line option -n item name was added.
- A links directory containing useful symlinks was added.
- The delete_originals option was added.
- A bug in which files get overwritten and duplicated during rename was fixed.
- Error checking of configuration options was improved.
- All convert and rename work is done in a temporary directory to avoid possible conflicts.
- Permission problems in the install script were fixed.
- The user config file permissions were made chmod 600 to hide passwords.
- Config file searching when using the -c option was improved.
- The sample configuration file was revised.
Download (0.015MB)
Added: 2005-09-11 License: GPL (GNU General Public License) Price:
1503 downloads
Content Area Focus 0.1
Content Area Focus is an extension used to solve the content area focus loss. more>>
Content Area Focus is an extension used to solve the content area focus loss.
Target audience: those who are mostly using the keyboard to navigate around and switch between tabs; frequently they encounter situations in which the content area doesnt have focus.
Method: just giving focus to the content area for any "regular" keystrokes made when the main-window is in focus.
<<lessTarget audience: those who are mostly using the keyboard to navigate around and switch between tabs; frequently they encounter situations in which the content area doesnt have focus.
Method: just giving focus to the content area for any "regular" keystrokes made when the main-window is in focus.
Download (0.001MB)
Added: 2007-04-03 License: MPL (Mozilla Public License) Price:
937 downloads
Locked Area 4.2 (Lite)
Locked Area is a highly sophisticated password protection and membership management system written in Perl. more>> <<less
Download (MB)
Added: 2007-05-11 License: Other/Proprietary License Price:
898 downloads
JTOpen 5.3
JTOpen is the open source version of the IBM Toolbox for Java Licensed Program Product (LPP). more>>
JTOpen is the open source version of the IBM Toolbox for Java Licensed Program Product (LPP). Aside from simply being "open source", it is our fast-path mechanism to get fixes and enhancements to customers without waiting for possible PTFs or release boundaries.
Thus, the JTOpen offering is always at the most current level of fixes and function, and generally leads by six months the fixes available via the Toolbox for Java LPP. Support for the current, unmodified version of the IBM-supplied JTOpen is identical to the IBM Toolbox for Java LPP.
If a software defect is found, the fix will be provided in the next available public build. The level of support (voice/email/fax) is dependent on the type of service contract. Although the terms and conditions require the statement of "as is" support for JTOpen, the JTOpen code is maintained by the same development team and with the same level of quality as the Toolbox LPP.
Code fixes for JTOpen will continue to be supplied via the web site. The JTOpen support is also possible via the web forum and web site. JTOpen project code is available in both compiled and source code versions for customer downloads. This agreement is applicable worldwide and has been agreed upon by the iSeries Service Support team.
Here are just a few of the many i5/OS and OS/400 resources you can access using JTOpen:
- Database -- JDBC (SQL) and record-level access (DDM)
- Integrated File System
- Program calls
- Commands
- Data queues
- Data areas
- Print/spool resources
- Product and PTF information
- Jobs and job logs
- Messages, message queues, message files
- Users and groups
- User spaces
- System values
- System status
<<lessThus, the JTOpen offering is always at the most current level of fixes and function, and generally leads by six months the fixes available via the Toolbox for Java LPP. Support for the current, unmodified version of the IBM-supplied JTOpen is identical to the IBM Toolbox for Java LPP.
If a software defect is found, the fix will be provided in the next available public build. The level of support (voice/email/fax) is dependent on the type of service contract. Although the terms and conditions require the statement of "as is" support for JTOpen, the JTOpen code is maintained by the same development team and with the same level of quality as the Toolbox LPP.
Code fixes for JTOpen will continue to be supplied via the web site. The JTOpen support is also possible via the web forum and web site. JTOpen project code is available in both compiled and source code versions for customer downloads. This agreement is applicable worldwide and has been agreed upon by the iSeries Service Support team.
Here are just a few of the many i5/OS and OS/400 resources you can access using JTOpen:
- Database -- JDBC (SQL) and record-level access (DDM)
- Integrated File System
- Program calls
- Commands
- Data queues
- Data areas
- Print/spool resources
- Product and PTF information
- Jobs and job logs
- Messages, message queues, message files
- Users and groups
- User spaces
- System values
- System status
Download (5.1MB)
Added: 2006-12-22 License: IBM Public License Price:
1048 downloads
stalonetray 0.6.5
stalonetray project is a STAnd-aLONE system tray (notification area). more>>
stalonetray project is a STAnd-aLONE system tray (notification area). It only depends on Xlib at build-time and run-time. Stalonetray runs under virtually any window manager.
<<less Download (0.13MB)
Added: 2007-05-31 License: GPL (GNU General Public License) Price:
877 downloads
Wide Area Link Emulator 0.1
Wide Area Link Emulator enables you to set and test various parameters of a WAN access link more>>
Wide Area Link Emulator enables you to set and test various parameters of a WAN access link (also known as a bottleneck link) before testing on a fully-functional network.
Any ISP has a high bandwidth LAN (of the order of tens of Mbps, e.g. Ethernet) and a WAN access link with relatively low speeds (of the order of a few Kbps to a few Mbps). To be able to evaluate the ISPs performance, actual tests will have to be conducted on a live, fully functional network. This would imply enabling certain features in communication equipment which could be detrimental to the proper functioning of a commissioned network. To address such a problem of being able to characterize/quantify the network operation in terms of its performance with respect to various parameters, a test-bed emulating the ISPs connectivity to the Internet would be an ideal solution.
An important factor in setting up such a test-bed, is emulating the WAN Access Link. Using complex hardware is costly. Such a link can however be easily implemented by emulating the scenario on popular physical technology such as Ethernet. By changing the TCP/IP stack on a Personal Computer, the rate at which packets are injected into the network can be controlled and other necessary features can easily be added.
WALE was implemented in 2 phases and the first version can emulated bandwidths up to 8Mbps and uses FIFO queues with drop-tail.
WALE v2 can emulate bandwidths of up to 80Mbps(a 10-fold improvement over version 1) due to the stripped down version of Micro-second resolution timer being used in the Linux kernel. WALE also implements differentiated services are recommended by IETF. A hash-based packet classifier is used to classify packets into one of 3 queues (Expedited Forwarding, Assured Forwarding and Best Effort). A simple priority scheduling has been implemented between the queues.
Version 2 has been implemented in the Generic Device Layer of the Linux Kernel. The kernel version is 2.2.19. WALE2 kernel patch can be downloaded here. An ncurses based front end has been implemented for setting and viewing various parameters of the bottleneck link.
<<lessAny ISP has a high bandwidth LAN (of the order of tens of Mbps, e.g. Ethernet) and a WAN access link with relatively low speeds (of the order of a few Kbps to a few Mbps). To be able to evaluate the ISPs performance, actual tests will have to be conducted on a live, fully functional network. This would imply enabling certain features in communication equipment which could be detrimental to the proper functioning of a commissioned network. To address such a problem of being able to characterize/quantify the network operation in terms of its performance with respect to various parameters, a test-bed emulating the ISPs connectivity to the Internet would be an ideal solution.
An important factor in setting up such a test-bed, is emulating the WAN Access Link. Using complex hardware is costly. Such a link can however be easily implemented by emulating the scenario on popular physical technology such as Ethernet. By changing the TCP/IP stack on a Personal Computer, the rate at which packets are injected into the network can be controlled and other necessary features can easily be added.
WALE was implemented in 2 phases and the first version can emulated bandwidths up to 8Mbps and uses FIFO queues with drop-tail.
WALE v2 can emulate bandwidths of up to 80Mbps(a 10-fold improvement over version 1) due to the stripped down version of Micro-second resolution timer being used in the Linux kernel. WALE also implements differentiated services are recommended by IETF. A hash-based packet classifier is used to classify packets into one of 3 queues (Expedited Forwarding, Assured Forwarding and Best Effort). A simple priority scheduling has been implemented between the queues.
Version 2 has been implemented in the Generic Device Layer of the Linux Kernel. The kernel version is 2.2.19. WALE2 kernel patch can be downloaded here. An ncurses based front end has been implemented for setting and viewing various parameters of the bottleneck link.
Download (0.027MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1224 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 jobs available in my area 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