managed care
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1868
Managed Services 1.0
Managed Service screen saver for businesses that want to rent hardware software. EtomicMails services act as the ultimate managed service for your or... more>> <<less
Download (1132KB)
Added: 2009-04-13 License: Freeware Price: Free
193 downloads
KMusicManager 1.2
KMusicManager manages your entire music collection. more>>
KMusicManager manages your entire music collection.
Main features:
The music collection view
- The main collection view shows an overview of your entire music collection. At the top of the view theres a search bar. Entering text here will only show those songs which have the search text in one of their properties.
The tag editor
- With the tag editor you can modify the tags of your songs. Clicking on a song in the music listview, will put its properties into the tag editor. You can then modify those properties. To save the modifications press the save button.
The playlist editor
- The playlist editor allows you to create new playlists, by clicking on the new playlist icon. You can add songs to the playlist by dragging songs from the music listview and dropping them on the playlists icon. Double clicking on the playlists icon will play the list.
The playqueue
- Feel like listening to some songs, just drag them to the playqueue. Want to rearrange the songs in the playqueue, just drag them around.
- Whenever KMusicManagers player needs a song, it will first look into the playqueue. If it finds some songs in the queue, it will grab the first and play it. If the playqueue is empty, it will try to find a song in the current playlist.
The database tree
- The database tree gives you an overview of your entire music collection. It shows a directory tree of all the directores in your music database.
The file renamer
- You can easily rename files with the file rename feature, so that all your music files are named consistently. The file renamer also allows files to be put in separate directories, it will take care of directory creation for you.
<<lessMain features:
The music collection view
- The main collection view shows an overview of your entire music collection. At the top of the view theres a search bar. Entering text here will only show those songs which have the search text in one of their properties.
The tag editor
- With the tag editor you can modify the tags of your songs. Clicking on a song in the music listview, will put its properties into the tag editor. You can then modify those properties. To save the modifications press the save button.
The playlist editor
- The playlist editor allows you to create new playlists, by clicking on the new playlist icon. You can add songs to the playlist by dragging songs from the music listview and dropping them on the playlists icon. Double clicking on the playlists icon will play the list.
The playqueue
- Feel like listening to some songs, just drag them to the playqueue. Want to rearrange the songs in the playqueue, just drag them around.
- Whenever KMusicManagers player needs a song, it will first look into the playqueue. If it finds some songs in the queue, it will grab the first and play it. If the playqueue is empty, it will try to find a song in the current playlist.
The database tree
- The database tree gives you an overview of your entire music collection. It shows a directory tree of all the directores in your music database.
The file renamer
- You can easily rename files with the file rename feature, so that all your music files are named consistently. The file renamer also allows files to be put in separate directories, it will take care of directory creation for you.
Download (0.25MB)
Added: 2005-05-26 License: GPL (GNU General Public License) Price:
1613 downloads
Lyrics Manager 0.2.8
Lyrics Manager is an amaroK script that manages the song lyrcis. more>>
Lyrics Manager is an amaroK script that manages the song lyrcis.
Main features:
- Edit lyrics with your favorite editor
- Export lyrics to file
- Import lyrics from file
You can setup your editor (for editing) and directory with texts (for import and export) via script configuration. Script will take care of html break tags while importing and exporting lyrics text, so you can edit and store plain text with correct rendering it in amaroK.
<<lessMain features:
- Edit lyrics with your favorite editor
- Export lyrics to file
- Import lyrics from file
You can setup your editor (for editing) and directory with texts (for import and export) via script configuration. Script will take care of html break tags while importing and exporting lyrics text, so you can edit and store plain text with correct rendering it in amaroK.
Download (0.015MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
833 downloads
Mnemona GUI Client 3.1
Mnemona GUI Client provides a GUI interface for accessing sets in a trove managed by a Mnemona Trove Server. more>>
Mnemona GUI Client is a Java application that provides a GUI interface for accessing sets in a trove managed by a Mnemona Trove Server.
It communicates with the trove server via Java RMI and supports SSL.
It uses the same GUI design as Fingerstring. It contains a full range of commands for creating, searching, and modifying Mnemona sets.
It also has a command for creating users, so it can be used (by a root user) to manage a Mnemona trove server. Commands are invoked through a standard menu arrangement.
<<lessIt communicates with the trove server via Java RMI and supports SSL.
It uses the same GUI design as Fingerstring. It contains a full range of commands for creating, searching, and modifying Mnemona sets.
It also has a command for creating users, so it can be used (by a root user) to manage a Mnemona trove server. Commands are invoked through a standard menu arrangement.
Download (1.6MB)
Added: 2006-09-22 License: Free for non-commercial use Price:
1128 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
Cache::Memcached::Managed 0.16
Cache::Memcached::Managed is a Perl module that provides an API for managing cached information. more>>
Cache::Memcached::Managed is a Perl module that provides an API for managing cached information.
SYNOPSIS
use Cache::Memcached::Managed;
my $cache = Cache::Memcached::Managed->new( 127.0.0.1:12345 );
$cache->set( $value );
$cache->set( $value,$id );
$cache->set( value => $value,
id => $id,
key => $key,
version => 1.1,
namespace => foo,
expiration => 1D, );
my $value = $cache->get( $id );
my $value = $cache->get( id => $id,
key => $key );
<<lessSYNOPSIS
use Cache::Memcached::Managed;
my $cache = Cache::Memcached::Managed->new( 127.0.0.1:12345 );
$cache->set( $value );
$cache->set( $value,$id );
$cache->set( value => $value,
id => $id,
key => $key,
version => 1.1,
namespace => foo,
expiration => 1D, );
my $value = $cache->get( $id );
my $value = $cache->get( id => $id,
key => $key );
Download (0.038MB)
Added: 2007-03-08 License: Perl Artistic License Price:
960 downloads
Maven 1.1
Maven is a software project management and comprehension tool. more>>
Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a projects build, reporting and documentation from a central piece of information.
Main features:
Model based builds
- Maven is able to build any number of projects into predefined output types such as a JAR, WAR, or distribution based on metadata about the project, without any need to do any scripting in most cases.
Coherent site of project information
- Using the same metadata as for the build process, Maven is able to generate a web site or PDF including any documentation you care to add, and adds to that standard reports about the state of development of the project. Examples of this information can be seen at the bottom of the left-hand navigation of this site under the "Project Information" and "Project Reports" submenus.
Release management and distribution publication
- Without much additional configuration, Maven will integrate with your source control system such as CVS and manage the release of a project based on a certain tag. It can also publish this to a distribution location for use by other projects. Maven is able to publish individual outputs such as a JAR, an archive including other dependencies and documentation, or as a source distribution.
Dependency management
- Maven encourages the use of a central repository of JARs and other dependencies. Maven comes with a mechanism that your projects clients can use to download any JARs required for building your project from a central JAR repository much like Perls CPAN. This allows users of Maven to reuse JARs across projects and encourages communication between projects to ensure backward compatibility issues are dealt with. We are collaborating with the folks at Ibiblio who have graciously allowed the central repository to live on their servers.
Gump integration
- Integration with Gump. For those who are not familiar with Gump it is a tool used at Apache to help projects maintain backward compatibility with their clients. If you have a Maven project descriptor then you can easily participate in nightly Gump builds that will help your project stay abreast of the impact your changes actually have in Java developer community. We are working on our own massive build tool but integration with Gump comes at no cost to Maven users.
<<lessMain features:
Model based builds
- Maven is able to build any number of projects into predefined output types such as a JAR, WAR, or distribution based on metadata about the project, without any need to do any scripting in most cases.
Coherent site of project information
- Using the same metadata as for the build process, Maven is able to generate a web site or PDF including any documentation you care to add, and adds to that standard reports about the state of development of the project. Examples of this information can be seen at the bottom of the left-hand navigation of this site under the "Project Information" and "Project Reports" submenus.
Release management and distribution publication
- Without much additional configuration, Maven will integrate with your source control system such as CVS and manage the release of a project based on a certain tag. It can also publish this to a distribution location for use by other projects. Maven is able to publish individual outputs such as a JAR, an archive including other dependencies and documentation, or as a source distribution.
Dependency management
- Maven encourages the use of a central repository of JARs and other dependencies. Maven comes with a mechanism that your projects clients can use to download any JARs required for building your project from a central JAR repository much like Perls CPAN. This allows users of Maven to reuse JARs across projects and encourages communication between projects to ensure backward compatibility issues are dealt with. We are collaborating with the folks at Ibiblio who have graciously allowed the central repository to live on their servers.
Gump integration
- Integration with Gump. For those who are not familiar with Gump it is a tool used at Apache to help projects maintain backward compatibility with their clients. If you have a Maven project descriptor then you can easily participate in nightly Gump builds that will help your project stay abreast of the impact your changes actually have in Java developer community. We are working on our own massive build tool but integration with Gump comes at no cost to Maven users.
Download (4.9MB)
Added: 2005-10-05 License: The Apache License 2.0 Price:
1483 downloads
Database of Managed Objects 2.4 Beta
DMO stands for Database of Managed Objects. more>>
DMO stands for "Database of Managed Objects." This is a tool for documenting all objects within a data center.
Database of Managed Objects provides an object-based overlay on a MySQL database, with a Web-based interface, which allows new objects to be defined in a hierarchy.
Each object can have attributes defined, which are inherited by objects below in the hierarchy. Information can be imported in CSV or XML format, and reports can be produced in XML, CSV, PDF and HTML formats.
DMO uses PHP and MySQL to support documentation of all network and system objects within your computing environment. It offers a Web interface that enables easy navigation through objects, instances and attributes, with XML and access controls.
Enhancements:
- This is the first significant release of DMO for nearly two years.
- It works with Linux and Windows (XAMPP), but should work well with any LAMP stack including PHP4.
- New features include much more graphical viewing, as well as mapping objects onto maps with drill-down to additional layers of maps following dependency trails, a new Flash viewer for browsing through objects, and the ability to create chains of objects based on any attribute type (where any other object can be an attribute of any other object).
<<lessDatabase of Managed Objects provides an object-based overlay on a MySQL database, with a Web-based interface, which allows new objects to be defined in a hierarchy.
Each object can have attributes defined, which are inherited by objects below in the hierarchy. Information can be imported in CSV or XML format, and reports can be produced in XML, CSV, PDF and HTML formats.
DMO uses PHP and MySQL to support documentation of all network and system objects within your computing environment. It offers a Web interface that enables easy navigation through objects, instances and attributes, with XML and access controls.
Enhancements:
- This is the first significant release of DMO for nearly two years.
- It works with Linux and Windows (XAMPP), but should work well with any LAMP stack including PHP4.
- New features include much more graphical viewing, as well as mapping objects onto maps with drill-down to additional layers of maps following dependency trails, a new Flash viewer for browsing through objects, and the ability to create chains of objects based on any attribute type (where any other object can be an attribute of any other object).
Download (14.4MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
814 downloads
SMBGate 1.0
SMBGate provides a gateway and firewall with authentication managed by a Samba Primary Domain Controller . more>>
SMBGate provides a gateway and firewall with authentication managed by a Samba Primary Domain Controller. The firewall rules are set on a per-user basis.
<<less Download (0.015MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1212 downloads
Railroad Repository 0.2
Railroad Repository provides a standards-based repository for large binary files. more>>
Railroad Repository provides a standards-based repository for large binary files.
Railroad is a standards-based repository for large binary files such as digital media, along with their metadata. It is designed to be easy to integrate with content management systems and other client software.
Many CMS’s are more suitable for document-style content than they are for managing large files. Managing such binary content in a CMS can result in scalability issues and deteriorating performance. Railroad instead is dedicated to the task of managing large files and their metadata.
Railroad can be seamlessly integrated into CMS’s, leveraging the open WebDAV protocol and simple HTTP messaging. While uploads and downloads of files are fully managed by Railroad and thus routed ‘around’ the application server, authorization of who can upload or download is still under full control of the CMS using whatever authorization scheme it needs.
Railroad allows multiple clients (such as CMS’s and DAM systems) to access the resources in the repository at the same time, thus keeping large data files and their metadata centrally managed and shared.
Railroad also makes management of file data on the filesystem easier for the system administrator. Railroad takes care to categorize files of a different type into separate directories. If a system administrator determines one file type is taking up a lot of space, it is simple to move this information off onto another, larger, partition. It is also possible to run multiple repositories in one Apache instance, or on different machines but using the same database.
<<lessRailroad is a standards-based repository for large binary files such as digital media, along with their metadata. It is designed to be easy to integrate with content management systems and other client software.
Many CMS’s are more suitable for document-style content than they are for managing large files. Managing such binary content in a CMS can result in scalability issues and deteriorating performance. Railroad instead is dedicated to the task of managing large files and their metadata.
Railroad can be seamlessly integrated into CMS’s, leveraging the open WebDAV protocol and simple HTTP messaging. While uploads and downloads of files are fully managed by Railroad and thus routed ‘around’ the application server, authorization of who can upload or download is still under full control of the CMS using whatever authorization scheme it needs.
Railroad allows multiple clients (such as CMS’s and DAM systems) to access the resources in the repository at the same time, thus keeping large data files and their metadata centrally managed and shared.
Railroad also makes management of file data on the filesystem easier for the system administrator. Railroad takes care to categorize files of a different type into separate directories. If a system administrator determines one file type is taking up a lot of space, it is simple to move this information off onto another, larger, partition. It is also possible to run multiple repositories in one Apache instance, or on different machines but using the same database.
Download (0.37MB)
Added: 2007-02-13 License: BSD License Price:
983 downloads
CARE2X 2.1.7
CARE2X is a program that integrates different information systems of hospitals. more>>
Care2x (formerly Care 2002) is software for hospitals and health care organizations. It is designed to integrate the different information systems existing in these organizations into a single efficient system. It solves the problems inherent in a network of multiple programs that are incompatible with each other.
CARE2X project can integrate almost any type of services, systems, processes, clinics, departments, data, or communication that exist in a hospital. Its design can even handle non-medical services or functions like security or maintenance. All of its functions can be accessed with a Web browser, and all program modules are processed on the server side.
Main features:
- HIS - Hospital/Healthservice Information System
- PM - Practice (GP) management
- CDS - Central Data Server
- HXP - Health Xchange Protocol
Enhancements:
- Main menu visibility according to the users permissions.
<<lessCARE2X project can integrate almost any type of services, systems, processes, clinics, departments, data, or communication that exist in a hospital. Its design can even handle non-medical services or functions like security or maintenance. All of its functions can be accessed with a Web browser, and all program modules are processed on the server side.
Main features:
- HIS - Hospital/Healthservice Information System
- PM - Practice (GP) management
- CDS - Central Data Server
- HXP - Health Xchange Protocol
Enhancements:
- Main menu visibility according to the users permissions.
Download (16.4MB)
Added: 2006-07-08 License: GPL (GNU General Public License) Price:
1235 downloads
Regexp::MultiLanguage::BaseDialect 0.03
Regexp::MultiLanguage::BaseDialect takes care of most of the work of writing a dialect for Regexp::MultiLanguage. more>>
Regexp::MultiLanguage::BaseDialect takes care of most of the work of writing a dialect for Regexp::MultiLanguage.
SYNOPSIS
Handles interfacing with the Parse::RecDescent grammar to simplify the code that must be written for a dialect of Regexp::MultiLanguage.
Dialect writers only need write the following functions:
wrap
match_regex
comment_start
make_function
function_call
<<lessSYNOPSIS
Handles interfacing with the Parse::RecDescent grammar to simplify the code that must be written for a dialect of Regexp::MultiLanguage.
Dialect writers only need write the following functions:
wrap
match_regex
comment_start
make_function
function_call
Download (0.006MB)
Added: 2006-10-19 License: Perl Artistic License Price:
1101 downloads
PHP Active Code Library 0.10
PHP Active Code Library (ACL) is a PHP 5 class used to store and call PHP files that are stored in a database. more>>
PHP Active Code Library (ACL) is a PHP 5 class used to store and call PHP files that are stored in a database.
The files are stored in a plain text field and not a binary field. PHP ACL also takes care of include/require calls.
If a file includes another file stored in the database, PHP ACL takes care of getting, generating, and including that file.
<<lessThe files are stored in a plain text field and not a binary field. PHP ACL also takes care of include/require calls.
If a file includes another file stored in the database, PHP ACL takes care of getting, generating, and including that file.
Download (0.013MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1191 downloads
Math::GSL 0.001
Math::GSL is a Perl module for the GNU Scientific Library. more>>
The GNU Scientific Library (GSL) is a C library that has hundreds of functions that are useful to scientists and mathematicians, such as special functions, linear algebra, statistics, etc... Wouldnt it be nice if you could access them all with Perl? Now you can with Math::GSL!
Warning: You are on the bleeding edge, this is alpha code, so if you want to test it out on your platform and report bugs or send patches, then please do! Yes, there is just about no documentation right now. Anyone care to write some?
<<lessWarning: You are on the bleeding edge, this is alpha code, so if you want to test it out on your platform and report bugs or send patches, then please do! Yes, there is just about no documentation right now. Anyone care to write some?
Download (0.008MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
863 downloads
BundleMan 1.2.0
BundleMan try to manage releasing of application build on versioned products under subversion. more>>
BundleMan try to manage releasing of application build on versioned products under subversion.
An application is a products suite defined using subversion svn:externals property. An application is a bundle of products.
A product is just a versioned piece of software.
Releasing an application is about taking care of tagging the source repository, managing version of each products, managing CHANGELOG, creating a source package archive, giving ways to maitain a release without blocking the trunk development.
Main features:
- BundleMan is free software distributed under the GNU GPL.
- It uses a recommended trunk/branches/tags repository layouts for products and bundles.
- It uses standard versioning MAJOR.MINOR.BUGFIX-RELEASE for products.
- Versioning of products is done automaticly by analysing a CHANGES file.
- Enforce CHANGELOG quality by requiring a product CHANGES file.
- It Generates an application CHANGELOG.
- There is no locking of the trunk or versions conflict when patching a released application.
- Can manage public, private or remote products.
- BundleMan is written in python and can be easily customized.
Examples:
You can play with BundleMan in a sandbox using the unit test environment.
From the extracted archive:
$ python setup.py test
running test
...
INFO: Archive: /tmp/bm-jE9JMJ/co/APP.tgz
...
Ran 6 tests in 72.976s
OK
Look at the temporary folder /tmp/bm-{WhAtEvEr}/ you will find a svn folder which contains the svn sandbox repository and a co folder with working copies of an application. For example co/app is a trunk bundle with 2 empty products foo and bar. You can test some bm-bundle commands from here, try bm-bundle -v then try to release this apps following the use case below.
<<lessAn application is a products suite defined using subversion svn:externals property. An application is a bundle of products.
A product is just a versioned piece of software.
Releasing an application is about taking care of tagging the source repository, managing version of each products, managing CHANGELOG, creating a source package archive, giving ways to maitain a release without blocking the trunk development.
Main features:
- BundleMan is free software distributed under the GNU GPL.
- It uses a recommended trunk/branches/tags repository layouts for products and bundles.
- It uses standard versioning MAJOR.MINOR.BUGFIX-RELEASE for products.
- Versioning of products is done automaticly by analysing a CHANGES file.
- Enforce CHANGELOG quality by requiring a product CHANGES file.
- It Generates an application CHANGELOG.
- There is no locking of the trunk or versions conflict when patching a released application.
- Can manage public, private or remote products.
- BundleMan is written in python and can be easily customized.
Examples:
You can play with BundleMan in a sandbox using the unit test environment.
From the extracted archive:
$ python setup.py test
running test
...
INFO: Archive: /tmp/bm-jE9JMJ/co/APP.tgz
...
Ran 6 tests in 72.976s
OK
Look at the temporary folder /tmp/bm-{WhAtEvEr}/ you will find a svn folder which contains the svn sandbox repository and a co folder with working copies of an application. For example co/app is a trunk bundle with 2 empty products foo and bar. You can test some bm-bundle commands from here, try bm-bundle -v then try to release this apps following the use case below.
Download (0.037MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
927 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 managed care 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