Main > Free Download Search >

Free jobs available software for linux

jobs available

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3902
Job Scheduler 1.3.0

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.
<<less
Download (MB)
Added: 2007-06-22 License: GPL (GNU General Public License) Price:
891 downloads
Job Costing Software 1.11

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.
<<less
Download (0.092MB)
Added: 2006-02-16 License: Other/Proprietary License with Source Price:
1350 downloads
Easy Job Application 1.3.2

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.

<<less
Download (0.012MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
943 downloads
PMbyAS 3.1a

PMbyAS 3.1a


PMbyAS is an Italian Web-based management system for time and money spent on resources on a day by day basis. more>>
PMbyAS is an Italian Web-based management system for time and money spent on resources on a day by day basis.

PMbyAS project can reports on jobs that are currently in progress as well as jobs that fall between given dates.

A single job can refer to a customer order, an inner or external project, or any other activity of the company.
<<less
Download (MB)
Added: 2007-02-15 License: GPL (GNU General Public License) Price:
983 downloads
Computation Job Management 0.6

Computation Job Management 0.6


Computation Job Management (jobman in short) is a program that calls executables according to a given program flow. more>>
Computation Job Management (jobman in short) is a program that calls executables according to a given program flow. Each executable is run in a separate process. It is useful when a project needs to carry out a series of calculations that are performed by software written in different languages or supplied by third parties, but invoking individual programs manually is error prone and hard to manage.
The various individual programs dont communicate with each other except via persistent storage. This is especially the case for some scientific computing, quantitative finance, and prototyped programming.
Enhancements:
- A job can output a status string indicating to skip other sibling jobs.
- Fixed a number of bugs.
- Mark the program in beta status as it has been used to manage jobs completed in days.
<<less
Download (0.14MB)
Added: 2007-04-24 License: LGPL (GNU Lesser General Public License) Price:
915 downloads
Joblist 0.3.1

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.
<<less
Download (0.026MB)
Added: 2006-02-25 License: GPL (GNU General Public License) Price:
1337 downloads
AuctionGallery 0.9.4

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.
<<less
Download (0.015MB)
Added: 2005-09-11 License: GPL (GNU General Public License) Price:
1503 downloads
Parallel::Queue 1.00

Parallel::Queue 1.00


Parallel::Queue is a Perl module to fork or thread a list of closures N-way parallel. more>>
Parallel::Queue is a Perl module to fork or thread a list of closures N-way parallel.

SYNOPSIS

# example queue:
# only squish files larger than 8KB in size. figure
# that the system can handle four copies of squish
# running at the same time without them interfering
# with one another.

my @queue = map { -s > 8192 ? sub{ squish $_ } : () } @filz;

# functional: pass in the count and list of coderefs.
#
# adding runqueue exports the subroutine into
# the current package. useful for non-OO situations.
#
# run the queue 4 way parallel.

use Parallel::Queue qw( runqueue verbose fork );

my @remaining = runqueue 4, @queue;

die "Incomplete jobs" if @remaining;

# OO: generate queue manager and use without the
# runqueue arguments, construct a queue manager,
# and use it to run the jobs

use Parallel::Queue;

my $quemgr = Parallel::Queue->construct( thread );

$quemgr->runqueue( 4, @queue );

die "Incomplete jobs" if @queue;

# call Parallel::Queue with the default configuration
# (fork quietly).

require Parallel::Queue;

Parallel::Queue->runqueue( 4, @queue );

# pre-define defaults for the objects: leave
# out runqueue, set the rest, and construct
# an object. the one here gets verbose, thread,
# and debug all set to true.

use Parallel::Queue qw( verbose thread );

my $quemgr = Parallel::Queue->construct( debug );

my @remaining = $quemgr->runqueue( 4, @queue );

Given a count and an array of coderefs (most likely closures), runqueue will run the jobs in parallel. The jobs can be run via fork or detached threads [see known issues for threading]. Jobs on the queue are executed until one of them exits non-zero, the fork/thread operation fails, or all of them are dispatched (i.e., the queue is empty).

<<less
Download (0.008MB)
Added: 2007-04-18 License: Perl Artistic License Price:
919 downloads
DrawPile 0.4.0

DrawPile 0.4.0


DrawPile is a collaborative drawing program, similar to OpenCanvas. more>>
DrawPile is a collaborative drawing program, similar to OpenCanvas. It is currently under planning stages. DrawPile project will use Qt4 and will be available for Windows, Linux and MacOS.

<<less
Download (0.16MB)
Added: 2007-04-10 License: MIT/X Consortium License Price:
931 downloads
OpenWebStats 1.1

OpenWebStats 1.1


OpenWebStats is a PHP stats application that reads Apache log files. more>>
OpenWebStats is a PHP stats application that reads Apache log files and imports the data to a MySQL database.
It then provides an awstats-style reporting tool so that you can review stats on demand from the database. Stats updates are available through cron jobs or the Web interface.
Enhancements:
- Changed Year from hardcoded 2005 to a dynamic current and last year.
- Added full page views to hosts, referers, keywords, and pages
- Drastically improved the class_apache_logs_import.php to not readin the full log to an array. Thus no more memory errors.
- Updated the update now message with flush to show that it is running.
<<less
Download (0.080MB)
Added: 2005-07-06 License: GPL (GNU General Public License) Price:
1570 downloads
Job Hunter 2005363215841

Job Hunter 2005363215841


Job Hunter is a software that can track job opportunities in your hunt for contracts or employment. more>>
Job Hunter is a software that can track job opportunities in your hunt for contracts or employment. Documentation is included in OpenOffice/NeoOffice and PDF formats.
As I went around looking for a job (I am a software contractor so I am always looking for a job) I found myself writing leads down on peices of paper... which soon graduated to worksheets when I got sick of disorganization... which then graduated to this application when I noticed my notes were scribbled all over the page.
I realized this is kind of a leads manager for the job searcher like those for the sales professional. After all, you are trying to sell your skills to some buyer right?
You will need PostgreSQL and PHP 4.3.11+ or PHP 5 to properly install the program. (PHP 5 will be the new standard.) You will need a PDF reader or OpenOffice.org/NeoOffice 1.0 + to read the documentation. I have successfully run the software on a Linux machine and Apple OS X (I actually run it on my powerbook so it goes with me.)
If you dont want to go through the motions of getting this running on your own machines, you can register an instance for yourself on this site and use it freely.
Enhancements:
- maintnote.php was fixed and tested for use with PHP 5.
<<less
Download (3.8MB)
Added: 2005-12-30 License: GPL (GNU General Public License) Price:
1393 downloads
Navicat MySQL administrator Manager for Linux (Freeware available) 8.0.28

Navicat MySQL administrator Manager for Linux (Freeware available) 8.0.28


Navicat MySQL Manager is a set of graphical database management and monitoring tools for MySQL. Navicat is easy-to-use and powerful. It supports backup/ restore, import/ export data and synchronize da more>>

Navicat Manager is an ideal solution for MySQL administration and development. This is an all-inclusive mysql front end provides a powerful graphical interface for databases management and maintenance. Easy installation
and intuitive interface make it an irreplaceable tool for mysql on the web or your local desktop. Navicat supports all verions of MySQL and it lets you convert data to/ from MySQL, synchronizes and backups database in a snap through helpful wizards. Major features of Navicat full version include Visual Query Builder, Import/ Export, Report Builder, Backup/ Restore, SSH and HTTP Tunneling and Data Transfer. Navicat also supports to import data from ODBC, batch job scheduling (create schedule for Import/Export, Data Transfer and saved queries),
printing of table structure. It also includes a full featured graphical manager for setting the users and access privileges. Navicat version 8 supports Code Completion, Form View and email Notification Services, etc. Navicat is the number 1 MySQL database administration shareware in Download.com with over 350,000 downloads and 1,100,000 installations worldwide. Some of the users including Sony Music, Intel, Kodak, FedEx, KPMG Consulting, Ericsson,
Siemens AG, Yahoo!, NTT DoCoMo (Japan), Hitachi (Japan), Imation, Lexmark, Cisco Systems, RSA Security, Avis (Europe), U.S. Department of Energy, UPS, Disney, Oxford University, Harvard University, NASA Space Flight Center, MIT, Michigan State University, University of Michigan, ...
Navicat delivers a personal experience, simplifying the way you work. The program is also available for Windows and Mac OS X.

<<less
Download (0.00KB)
Added: 2009-04-14 License: Freeware Price: $0
195 downloads
 
Other version of Navicat MySQL administrator Manager for Linux
Navicat MySQL administrator Manager for Linux (Freeware available) 8.0.27Linux (Freeware available) 8.0.27 - PremiumSoft CyberTech Ltd.. Navicat MySQL administrator ... data from ODBC, batch job scheduling (create schedule for Import/Export, Data Transfer and
Price: $0
License:Freeware
Download (0.00KB)
195 downloads
Added: 2009-04-27
Navicat MySQL administrator Manager for Linux (Freeware available) 8.0.26Linux (Freeware available) 8.0.26 - PremiumSoft CyberTech Ltd.. Navicat MySQL administrator ... data from ODBC, batch job scheduling (create schedule for Import/Export, Data Transfer and
Price: $0.00
License:Freeware
Download (20480K)
196 downloads
Added: 2009-04-16
SciTE 1.74

SciTE 1.74


SciTE is a SCIntilla based Text Editor. more>>
SciTE is a SCIntilla based Text Editor. Originally built to demonstrate Scintilla, it has grown to be a generally useful editor with facilities for building and running programs.

SciTE project is best used for jobs with simple configurations - I use it for building test and demonstration programs as well as SciTE and Scintilla, themselves.

SciTE is currently available for Intel Win32 and Linux compatible operating systems with GTK+. It has been run on Windows 95, NT 4.0, Windows 2000, and on Red Hat Linux 8 and 9 with GTK+ 1.2 and 2.0.
<<less
Download (1.2MB)
Added: 2007-06-19 License: GPL (GNU General Public License) Price:
860 downloads
JTOpen 5.3

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
<<less
Download (5.1MB)
Added: 2006-12-22 License: IBM Public License Price:
1048 downloads
SaberNet DCS 2.0.3

SaberNet DCS 2.0.3


SaberNet DCS provides an enterprise labor data collection software. more>>
SaberNet DCS provides an enterprise labor data collection software.
SaberNet DCS is enterprise labor data collection software designed with efficiency in mind. Optimized for bar code input, it can automate and improve the accuracy of your time tracking. It works in stand-alone mode or with your ERP.
SaberNet DCS is a labor data collection system, designed to allow organizations to rapidly capture their labor data in real-time. Reporting and analyzing this data provides you with real visibility into the profitability of individual jobs, projects, employees and departments. Establishing reliable labor efficiencies enables you to more accurately estimate jobs and uncover opportunities.
Main features:
- Single swipe clock-in allows employees to rapidly clock in at a door terminal.
- Single swipe lunch / break allows you to suspend and resume an activity using a single barcode.
- Instant activity switching allows an employee to immediately end one task and begin another.
- One employee on multiple jobs (job ganging)
- Multiple employees on one job
- Indirect activities and set-up time tracking
- Web enabled administration allows managers and supervisors to reference the live active employee list, manage jobs, and edit time records from any browser
- Runs as either a stand-alone application (autonomous) or it can be integrated with an ERP/CRM/MIS or payroll system
- 2 modes of operation: shop floor automated (bar-codes and scanners) and desktop standalone (mouse and keyboard)
- Powerful reporting can be generated with Crystal Reports
<<less
Download (MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
981 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5