available jobs
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3902
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
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
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).
<<lessSYNOPSIS
# 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).
Download (0.008MB)
Added: 2007-04-18 License: Perl Artistic License Price:
919 downloads
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
<<lessSaberNet 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
Download (MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
981 downloads
Databrid 1.3
Databrid is a powerful tool that provides easy access to data and manipulation of data within an Oracle or MySql database. more>>
Databrid is a browsing, retrieval and manipulation tool designed for the novice to the expert user. Databrid works on MySql and Oracle Database (versions 8 and above although not all functionality in the Browser is available for the lower versions). The core functionality of Databrid revolves around the tabbed areas within the Databrid application. The four main tabs in the main screen of Databrid are: SQL Editor, Browser, File and Jobs.
## SQL EDITOR ##
The SQL Editor tab allows you to write and run SQL and PLSQL. The tab provides the ability to use one of more sql autocompletion, word and syntax highlighting editors with automatic case adjustment for keywords. Provided with each editor is a table for displaying SQL query results and a text output area to display DBMS_Output output. Jobs can be run in the background allowing for the execution of multiple statements at any given time.
## BROWSER ##
The Browser tab allows the you to browse various parts of the database schema. The browsing is done via a particular schema user and displays information on tables, views, sequences etc. Features include the generation of database creation statements for tables, views etc, browsing table or view data, truncating tables, etc.
## FILE ##
The File tab allows you work with a CSV (comma delimited text file) and the database without having to load the CSV into the database. This tab has two areas that functionality: CSV Update and Database Update. CSV Update allows you to add additional columns to a CSV using a Select statement, including binding CSV column values to the Select statement. Database Update allows you to update the database using insert, updates, deletes or PLSql by binding the CSV column values into your statement.
## JOBS ##
This tab allows you to view which jobs are currently running or have finished. Jobs that are running can also be stopped.
<<less## SQL EDITOR ##
The SQL Editor tab allows you to write and run SQL and PLSQL. The tab provides the ability to use one of more sql autocompletion, word and syntax highlighting editors with automatic case adjustment for keywords. Provided with each editor is a table for displaying SQL query results and a text output area to display DBMS_Output output. Jobs can be run in the background allowing for the execution of multiple statements at any given time.
## BROWSER ##
The Browser tab allows the you to browse various parts of the database schema. The browsing is done via a particular schema user and displays information on tables, views, sequences etc. Features include the generation of database creation statements for tables, views etc, browsing table or view data, truncating tables, etc.
## FILE ##
The File tab allows you work with a CSV (comma delimited text file) and the database without having to load the CSV into the database. This tab has two areas that functionality: CSV Update and Database Update. CSV Update allows you to add additional columns to a CSV using a Select statement, including binding CSV column values to the Select statement. Database Update allows you to update the database using insert, updates, deletes or PLSql by binding the CSV column values into your statement.
## JOBS ##
This tab allows you to view which jobs are currently running or have finished. Jobs that are running can also be stopped.
Download (3.0MB)
Added: 2007-07-25 License: Freeware Price:
844 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
AlignAid 0.0.2
AlignAid is a Perl module that easily run sequence alignments locally or on a cluster. more>>
AlignAid is a Perl module that easily run sequence alignments locally or on a cluster.
SYNOPSIS
use AlignAid;
# create an AlignAid object
# a single, locally run blast job is the default
my $job = AlignAid->new( db => my_blast_db, dir => $dir,
fasta => my_query.fa,
prog_args => V=20 -nonnegok );
# run the job on the current host
my $return_value = $job->submit(outfile => my_results.out);
# create an AlignAid cross_match object
# specify the alignment program and the queue to override the defaults
my $job2 = AlignAid->new( program => cross_match,
db => my_db.fa, dir => $dir,
fasta => my_query_seqs.fa, queue => LSF);
# submit the cross_match jobs to an LSF queue (of compute nodes)
my $return_value2 = $job2->submit(outfile => my_output);
# kill the queued jobs
my $return_value3 = $job2->kill_all;
AlignAid is designed to make it easy to run the sequence alignment programs Blast and cross_match. AlignAid can accept a large number of query sequences. If a compute cluster queue such as LSF or PBS is available, AlignAid can automatically split the queries into multiple queue jobs.
Likewise, if you want to run the alignments locally on a single host, a single change is all that is necessary -- AlignAid will take care of how to invoke the alignment programs and manage the output.
AlignAid also has rudimentary support for LSF queue job control; it is possible to kill jobs through AlignAids interface.
Enhancements:
- Perl
<<lessSYNOPSIS
use AlignAid;
# create an AlignAid object
# a single, locally run blast job is the default
my $job = AlignAid->new( db => my_blast_db, dir => $dir,
fasta => my_query.fa,
prog_args => V=20 -nonnegok );
# run the job on the current host
my $return_value = $job->submit(outfile => my_results.out);
# create an AlignAid cross_match object
# specify the alignment program and the queue to override the defaults
my $job2 = AlignAid->new( program => cross_match,
db => my_db.fa, dir => $dir,
fasta => my_query_seqs.fa, queue => LSF);
# submit the cross_match jobs to an LSF queue (of compute nodes)
my $return_value2 = $job2->submit(outfile => my_output);
# kill the queued jobs
my $return_value3 = $job2->kill_all;
AlignAid is designed to make it easy to run the sequence alignment programs Blast and cross_match. AlignAid can accept a large number of query sequences. If a compute cluster queue such as LSF or PBS is available, AlignAid can automatically split the queries into multiple queue jobs.
Likewise, if you want to run the alignments locally on a single host, a single change is all that is necessary -- AlignAid will take care of how to invoke the alignment programs and manage the output.
AlignAid also has rudimentary support for LSF queue job control; it is possible to kill jobs through AlignAids interface.
Enhancements:
- Perl
Download (0.34MB)
Added: 2007-01-22 License: Perl Artistic License Price:
1005 downloads
Anarchist 0.2.0
Anarchist project is a tactics RPG. more>>
Anarchist project is a tactics RPG.
Anarchist is a tactics RPG written in Java. It draws heavy influence from Final Fantasy Tactics in the way combat works. It is designed to run on any platform and have minimal system requirements. Anarchist is copyrighted under the GNU General Public License.
Enhancements:
- It has been ported to Java
- It is now graphical instead of ASCII
- Classes are now referred to as Jobs, to avoid confusing Java.
- The Jobs file has been split into a barebones Jobs file and a Skills file.
- Everything that relates to in-game definitions (such as the Jobs and Skills file, as well as maps) has been moved into a modules directory, ./modules/anarchist. This is to allow 3rd parties to develop their own plot and use the Anarchist engine. The "Anarchist" project is now both the Anarchist engine and the Anarchist module that uses the Anarchist engine.
<<lessAnarchist is a tactics RPG written in Java. It draws heavy influence from Final Fantasy Tactics in the way combat works. It is designed to run on any platform and have minimal system requirements. Anarchist is copyrighted under the GNU General Public License.
Enhancements:
- It has been ported to Java
- It is now graphical instead of ASCII
- Classes are now referred to as Jobs, to avoid confusing Java.
- The Jobs file has been split into a barebones Jobs file and a Skills file.
- Everything that relates to in-game definitions (such as the Jobs and Skills file, as well as maps) has been moved into a modules directory, ./modules/anarchist. This is to allow 3rd parties to develop their own plot and use the Anarchist engine. The "Anarchist" project is now both the Anarchist engine and the Anarchist module that uses the Anarchist engine.
Download (0.13MB)
Added: 2006-11-08 License: GPL (GNU General Public License) Price:
1083 downloads
vrbroadcast 1.0
vrbroadcast project is a video on demand server. more>>
vrbroadcast project is a video on demand server.
It supports hierarchical networks of servers that will automaticaly update information on the available media.
It has a GUI that is only available in German, but the server was written with multi-language support in mind.
<<lessIt supports hierarchical networks of servers that will automaticaly update information on the available media.
It has a GUI that is only available in German, but the server was written with multi-language support in mind.
Download (0.24MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1090 downloads
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.
<<lessThe 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.
Download (0.14MB)
Added: 2007-04-24 License: LGPL (GNU Lesser General Public License) Price:
915 downloads
libwp 0.1
libwp provides a simplified facility for a common use of threads, processing tasks using a pool of threads. more>>
libwp provides a simplified facility for a common use of threads, processing tasks using a pool of threads.
libwp is implemented with POSIX threads (pthreads) for the Solaris and Linux platforms. The primary development platform is Solaris.
Usage:
Creating a Pool
Before you can do any processing with libwp you must create a pool using wp_new(). This will create and configure your pool and populate it with the required number of worker threads. If you dont specify a number of threads (i.e. size is 0), then libwp will automatically calculate a number of threads which are appropriate for the number of available processors. The function pointers you provide are the default functions used to execute and report on submitted tasks.
Using a Pool
Once youve created your pool, you can go ahead and run tasks in the pool. You queue a task for execution with wp_run() or wp_run_task(). If a worker thread is available then the task will be immediately allocated to the thread and processed. If there are no available worker threads then the task will be queued for processing when a thread becomes available.
wp_run() will use the default process and report arguments supplied when the pool was created (see wp_new()). wp_run_task() uses the supplied process and report arguments.
Destroying a Pool
Once you are finished with a pool, then you should destroy it with wp_free(). Destroying the pool will reclaim all resources associated with the pool. This is a blocking call and the invoking thread will wait until all currently active threads terminate before returning. The wait flag controls the behaviour of the function. If WP_WAIT is specified, then the pool will not be destroyed until there are no active threads. Whilst it is waiting for this to occur additional task requests may be queued. If WP_IMMEDIATE is specified, then the pool will not accept more task requests and will be destroyed as soon as all active task are finished.
Utility Functions
The two message logging functions (wp_log() and wp_die()) are synchronized so that all messages are displayed atomically.
wp_close() can be used to close a pool. This has the same effect as calling wp_free() but does not reclaim the pool resources.
wp_open() can be used to re-open a previously closed (wp_close()) pool.
wp_resize() can be used to resize a currently open and active pool.
wp_wait() can be used to cause a thread to wait for a worker pool to quiesce, i.e. no outstanding jobs in the pool. Be careful using this function as external co-ordination is required to prevent race conditions from developing.
wp_active() can be used to determine how many worker threads are currently busy and wp_state() is used to determine if the worker pool is still accepting new tasks. Once a pool is closed, state of WP_INACTIVE, it will no longer accept further task requests.
wp_enable_stats() can be used to cause the pool to start collecting performance statistics. These statistics can be retrieved and examined using wp_get_stats(). Statistics collection is disabled using wp_disable_stats().
<<lesslibwp is implemented with POSIX threads (pthreads) for the Solaris and Linux platforms. The primary development platform is Solaris.
Usage:
Creating a Pool
Before you can do any processing with libwp you must create a pool using wp_new(). This will create and configure your pool and populate it with the required number of worker threads. If you dont specify a number of threads (i.e. size is 0), then libwp will automatically calculate a number of threads which are appropriate for the number of available processors. The function pointers you provide are the default functions used to execute and report on submitted tasks.
Using a Pool
Once youve created your pool, you can go ahead and run tasks in the pool. You queue a task for execution with wp_run() or wp_run_task(). If a worker thread is available then the task will be immediately allocated to the thread and processed. If there are no available worker threads then the task will be queued for processing when a thread becomes available.
wp_run() will use the default process and report arguments supplied when the pool was created (see wp_new()). wp_run_task() uses the supplied process and report arguments.
Destroying a Pool
Once you are finished with a pool, then you should destroy it with wp_free(). Destroying the pool will reclaim all resources associated with the pool. This is a blocking call and the invoking thread will wait until all currently active threads terminate before returning. The wait flag controls the behaviour of the function. If WP_WAIT is specified, then the pool will not be destroyed until there are no active threads. Whilst it is waiting for this to occur additional task requests may be queued. If WP_IMMEDIATE is specified, then the pool will not accept more task requests and will be destroyed as soon as all active task are finished.
Utility Functions
The two message logging functions (wp_log() and wp_die()) are synchronized so that all messages are displayed atomically.
wp_close() can be used to close a pool. This has the same effect as calling wp_free() but does not reclaim the pool resources.
wp_open() can be used to re-open a previously closed (wp_close()) pool.
wp_resize() can be used to resize a currently open and active pool.
wp_wait() can be used to cause a thread to wait for a worker pool to quiesce, i.e. no outstanding jobs in the pool. Be careful using this function as external co-ordination is required to prevent race conditions from developing.
wp_active() can be used to determine how many worker threads are currently busy and wp_state() is used to determine if the worker pool is still accepting new tasks. Once a pool is closed, state of WP_INACTIVE, it will no longer accept further task requests.
wp_enable_stats() can be used to cause the pool to start collecting performance statistics. These statistics can be retrieved and examined using wp_get_stats(). Statistics collection is disabled using wp_disable_stats().
Download (0.31MB)
Added: 2006-03-30 License: CDDL (Common Development and Distribution License) Price:
1303 downloads
External Site Catalog 1.2
External Site Catalog allows you to index and search external sites in a Plone site. more>>
External Site Catalog allows you to index and search external sites in a Plone site.
ExternalSiteCatalog is a web crawler that can index external sites and make them searchable in Plone.
You can specify the sites to index in a Plone Configlet, and directly index them from Plone, or let a scheduler do the job.
Searching the external sites is done in a special portlet that is installed with ExternalSiteCatalog.
External sites are not searchable in the normal Plone catalog, but are only available in a separate catalog in the portal_externalcatalog tool.
<<lessExternalSiteCatalog is a web crawler that can index external sites and make them searchable in Plone.
You can specify the sites to index in a Plone Configlet, and directly index them from Plone, or let a scheduler do the job.
Searching the external sites is done in a special portlet that is installed with ExternalSiteCatalog.
External sites are not searchable in the normal Plone catalog, but are only available in a separate catalog in the portal_externalcatalog tool.
Download (0.20MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
988 downloads
Multiplication Puzzle 5.2
Multiplication Puzzle is a simple math puzzle game written for GTK+ 2, inspired by Emacs multiplication game. more>>
Multiplication Puzzle project is a simple GTK+ 2 game that emulates the multiplication game found in Emacs.
Basically, a multiplication problem is shown with all digits replaced by letters. Your job is to guess which letter represents which number.
Translations are available for Afrikaans, Basque, Brazilian Portuguese, Chinese (simplified), French, German, Italian, Japanese, Kinyarwanda, Rhaeto-Romance, Romanian, Serbian, Turkish, and Vietnamese. If you are interested in helping to translate Multiplication Puzzle, please see the Translation Project, under the textual domain gmult.
<<lessBasically, a multiplication problem is shown with all digits replaced by letters. Your job is to guess which letter represents which number.
Translations are available for Afrikaans, Basque, Brazilian Portuguese, Chinese (simplified), French, German, Italian, Japanese, Kinyarwanda, Rhaeto-Romance, Romanian, Serbian, Turkish, and Vietnamese. If you are interested in helping to translate Multiplication Puzzle, please see the Translation Project, under the textual domain gmult.
Download (0.15MB)
Added: 2006-01-31 License: GPL (GNU General Public License) Price:
1368 downloads
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.
<<lessSciTE 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.
Download (1.2MB)
Added: 2007-06-19 License: GPL (GNU General Public License) Price:
860 downloads
phpaga 0.3
phpaga is a fully templatable Web-based project, task, invoice, and quotation management system. more>>
phpaga is a fully templatable Web-based project, task, invoice, and quotation management system, providing a centralized way to keep on top of your day-to-day jobs and activities.
Its features include printing invoices, quotations, and task lists to PDF, productivity statistics on a per project or per person basis, financial overview, billing method plugins, and multiple interface languages.
<<lessIts features include printing invoices, quotations, and task lists to PDF, productivity statistics on a per project or per person basis, financial overview, billing method plugins, and multiple interface languages.
Download (1.8MB)
Added: 2006-12-11 License: BSD License Price:
1048 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 available jobs 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