small business association
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2915
Business::Associates 1.00
Business::Associates is a library to handle the new XML interface for the Amazon.com Associates program. more>>
Business::Associates is a library to handle the new XML interface for the Amazon.com Associates program.
This package replaces the Amazon Recommends (tm) links to provide a powerful and simple to use interface that allows you to embed complex, highly targeted ads on your web site (or other documents).
This modules supports many new features that are not available with the standard interfaces. For example, multi-mode searches, i.e. the ability to search across multiple product categories (dvd+video+music+...) is fully supported.
See also http://cybaea.com/Associates.html for more information and example screen shots.
Currently, only the Amazon.com Associates program is supported.
<<lessThis package replaces the Amazon Recommends (tm) links to provide a powerful and simple to use interface that allows you to embed complex, highly targeted ads on your web site (or other documents).
This modules supports many new features that are not available with the standard interfaces. For example, multi-mode searches, i.e. the ability to search across multiple product categories (dvd+video+music+...) is fully supported.
See also http://cybaea.com/Associates.html for more information and example screen shots.
Currently, only the Amazon.com Associates program is supported.
Download (0.045MB)
Added: 2006-09-11 License: Perl Artistic License Price:
1138 downloads
Kumula Business Suite 1.0
Kumula is designed to become a complete software suite for business needs. more>>
Kumula is designed to become a complete software suite for business needs. Started as software for consultants, it is flexible enough to be used by almost any class of business. Kumula Business Suite provides a small CRM (Clients) and a Mini-DMS (Documents), enhanced by some other applications. Everybody is invited to use it or enhance it.
Kumula is written in Qt (http://www.trolltech.com/products/qt/), PyQt and Python using the fabulous Eric3 development environment.
Enhancements:
- This is the last stable release before Ill port it to Qt4 (as "Kumula2"), so I feel free to call it "1.0".
- The whole suite is becoming bigger and bigger, so now its time to split it. This is the base package with the central Kumula library and the most important applications. The package contains the following programs:
BizCalc:
- The modular designed calculator tool, coming with a spartanic RPN calculator and an unit conversion module
Clients:
- The client/customer management application, with many improvements (like individual client attributes) and the modules "Info" (logo+description), "Contacts" (for managing contact persones, addresses and communication data) and "Tickets" (for letting the users talk about a client like on a web forum)
Configurator:
- The central configuration utility, to setup the database access and the user interface (menus, icons, ...) of all Kumula applications.
Users:
- A small tool for managing the people using Kumula.
- Further application will be provided in separate packages for easier maintenance and faster bugfixes and updates.
<<lessKumula is written in Qt (http://www.trolltech.com/products/qt/), PyQt and Python using the fabulous Eric3 development environment.
Enhancements:
- This is the last stable release before Ill port it to Qt4 (as "Kumula2"), so I feel free to call it "1.0".
- The whole suite is becoming bigger and bigger, so now its time to split it. This is the base package with the central Kumula library and the most important applications. The package contains the following programs:
BizCalc:
- The modular designed calculator tool, coming with a spartanic RPN calculator and an unit conversion module
Clients:
- The client/customer management application, with many improvements (like individual client attributes) and the modules "Info" (logo+description), "Contacts" (for managing contact persones, addresses and communication data) and "Tickets" (for letting the users talk about a client like on a web forum)
Configurator:
- The central configuration utility, to setup the database access and the user interface (menus, icons, ...) of all Kumula applications.
Users:
- A small tool for managing the people using Kumula.
- Further application will be provided in separate packages for easier maintenance and faster bugfixes and updates.
Download (0.43MB)
Added: 2006-05-08 License: LGPL (GNU Lesser General Public License) Price:
1270 downloads
Single Marker Association 2.0
Single Marker Association is a simple tool that calculates the single marker association between individual SNP markers. more>>
Single Marker Association is a simple tool that calculates the single marker association between individual SNP markers and a case/control dichotomy.
Usage:
The tool reads two files as input, the first is a set of case and the second a case of control haplotypes. The format of the files is one line per haplotype, where the SNP data is represented as 0 or 1, separated by white-space.
- The tool outputs a list of statistics for each marker
- The marker number (from left to right in the input data)
- The frequency of the 0 allele for the cases file
- The chi-square contingency table statistics for the marker
- The CDF of the chi-square statistics
- The p-value of the statistics (1-CDF)
Installation:
The SMA tool is written in C++. It should compile on any Unix like system. To install, download the source code and unpack it (tar xzf sma-v.tar.gz, where v is the version number of sma), then run make in the subdirectory sma-v created during unpacking.
Enhancements:
- Support for (unphased) genotype data.
<<lessUsage:
The tool reads two files as input, the first is a set of case and the second a case of control haplotypes. The format of the files is one line per haplotype, where the SNP data is represented as 0 or 1, separated by white-space.
- The tool outputs a list of statistics for each marker
- The marker number (from left to right in the input data)
- The frequency of the 0 allele for the cases file
- The chi-square contingency table statistics for the marker
- The CDF of the chi-square statistics
- The p-value of the statistics (1-CDF)
Installation:
The SMA tool is written in C++. It should compile on any Unix like system. To install, download the source code and unpack it (tar xzf sma-v.tar.gz, where v is the version number of sma), then run make in the subdirectory sma-v created during unpacking.
Enhancements:
- Support for (unphased) genotype data.
Download (0.008MB)
Added: 2006-01-19 License: GPL (GNU General Public License) Price:
1373 downloads
Business::Associates::XML 1.00
Business::Associates::XML is a Perl module for encapsulating XML, XSL, and XSLT operations for the Associates package. more>>
Business::Associates::XML is a Perl module for encapsulating XML, XSL, and XSLT operations for the Associates package.
SYNOPSIS
use Business::Associates::Data();
use Business::Associates::XML();
$data = Business::Associates::Data->$type ($what, $mode);
$xml = new Business::Associates::XML ($data) if defined $data;
$s = $xml->transform($ss_name, %args) if defined $xml;
print "nn$sn";
METHODS
new($data [, %options ])
This constructor takes an Business::Associates::Data object as the required argument. The optional options hash can be used to set additional values.
xml
This is the parsed xml string. If you want to pass special arguments to the XML::LibXML library then you can do it with this argument:
$data = Business::Associates::Data->$type ($what, $mode);
my $xml_string = $data->xml();
my $parser = XML::LibXML->new();
$parser->load_ext_dtd(0); # Global setting, unfortunately :-(
my $xml = new Business::Associates::XML(
xml => $parser->parse_string($xml_string));
...
It is possibly more efficient to access this element directly after the construction to set the options on the newly constructed XML::LibXML object.
transform($stylesheet_name [, %args ] )
This method transforms the XML using the named stylesheet, parsing any additional arguments to the stylesheet transform method. Typically, these additional arguments are used to set global XSLT parameters.
$data = Business::Associates::Data->$type ($what, $mode);
$xml = new Business::Associates::XML ($data);
$s = $xml->transform($ss_name, width => "3");
Note that these are named stylesheets. By default, they are found in the Base_Directory (see "Base_Directory") with the same name and the extension .xslt. To change this, either change the Base_Directory variable, or derive another class from this, overriding the get_stylesheet method.
<<lessSYNOPSIS
use Business::Associates::Data();
use Business::Associates::XML();
$data = Business::Associates::Data->$type ($what, $mode);
$xml = new Business::Associates::XML ($data) if defined $data;
$s = $xml->transform($ss_name, %args) if defined $xml;
print "nn$sn";
METHODS
new($data [, %options ])
This constructor takes an Business::Associates::Data object as the required argument. The optional options hash can be used to set additional values.
xml
This is the parsed xml string. If you want to pass special arguments to the XML::LibXML library then you can do it with this argument:
$data = Business::Associates::Data->$type ($what, $mode);
my $xml_string = $data->xml();
my $parser = XML::LibXML->new();
$parser->load_ext_dtd(0); # Global setting, unfortunately :-(
my $xml = new Business::Associates::XML(
xml => $parser->parse_string($xml_string));
...
It is possibly more efficient to access this element directly after the construction to set the options on the newly constructed XML::LibXML object.
transform($stylesheet_name [, %args ] )
This method transforms the XML using the named stylesheet, parsing any additional arguments to the stylesheet transform method. Typically, these additional arguments are used to set global XSLT parameters.
$data = Business::Associates::Data->$type ($what, $mode);
$xml = new Business::Associates::XML ($data);
$s = $xml->transform($ss_name, width => "3");
Note that these are named stylesheets. By default, they are found in the Base_Directory (see "Base_Directory") with the same name and the extension .xslt. To change this, either change the Base_Directory variable, or derive another class from this, overriding the get_stylesheet method.
Download (0.045MB)
Added: 2006-09-14 License: Perl Artistic License Price:
1135 downloads
Web Business Pro 4a
Web Business Pro is a Web application designed for everyday business activities. more>>
Web Business Pro is a Web application designed for everyday business activities. The project includes support for customer lists, inventory, receipt printing, and accounting. Fully featured search functions and filters make it easy to find what you need quickly.
<<less Download (1.3MB)
Added: 2007-07-22 License: LGPL (GNU Lesser General Public License) Price:
828 downloads
Small Telnet Chat 0.16
Small Telnet Chat provides a chat server to which you can connect via a telnet client. more>>
Small Telnet Chat provides a chat server to which you can connect via a telnet client.
Small Telnet Chat (STC) is a chat server to which you can connect via a telnet client. It provides logging, automatic kicking, and IP blocking.
Requirements
Server: All you need are the files of the chatserver and a functional JRE.
Client: To connect to the server you need at VT100 capable telnet client.
Simple telnet to a server on which the STC is running. (You need to know the port on which the server is listening since STC can run on any port).
STC is known to work with:
-> PuTTY works fine
-> Win2000 telnet works
-> WinXP telnet works (some versions of WinXP telnet seem to have problems but up to date ones (with service packs, etc.) work)
-> Linux telnet (netkit) works
Installation
No special installation procedure is required. Simply unpack the archive into a directory and run it.
The configuration file (config.xml) has to be in the same directory as the server.
For those who want to put the server to place where executables usually reside (/usr/local/bin, etc.), a .jar file is provided.
Running
To run the chatserver, cd into the directory into which you have copied the files.
Run the server by typing:
java stc
<<lessSmall Telnet Chat (STC) is a chat server to which you can connect via a telnet client. It provides logging, automatic kicking, and IP blocking.
Requirements
Server: All you need are the files of the chatserver and a functional JRE.
Client: To connect to the server you need at VT100 capable telnet client.
Simple telnet to a server on which the STC is running. (You need to know the port on which the server is listening since STC can run on any port).
STC is known to work with:
-> PuTTY works fine
-> Win2000 telnet works
-> WinXP telnet works (some versions of WinXP telnet seem to have problems but up to date ones (with service packs, etc.) work)
-> Linux telnet (netkit) works
Installation
No special installation procedure is required. Simply unpack the archive into a directory and run it.
The configuration file (config.xml) has to be in the same directory as the server.
For those who want to put the server to place where executables usually reside (/usr/local/bin, etc.), a .jar file is provided.
Running
To run the chatserver, cd into the directory into which you have copied the files.
Run the server by typing:
java stc
Download (0.054MB)
Added: 2007-04-24 License: GPL (GNU General Public License) Price:
932 downloads
Compiere ERP + CRM Business Solution 2.6.0a
Smart ERP+CRM solution for Small-Medium Enterprises in the global market covering all areas from order and customer management. more>> <<less
Download (35MB)
Added: 2006-11-05 License: MPL (Mozilla Public License) Price:
662 downloads
Auction Business Manager 1.0
Auction Business Manager is a tool that helps you keep track of income and expenses for your online auctions, e.g. with eBay. more>>
Auction Business Manager is a tool that helps you keep track of income and expenses for your online auctions, e.g. with eBay.
Auction Business Manager also color codes your listings so that you can easily see who you need to ship packages to and who still needs to pay.
There is a statistics page that tells you, by month, what your expenses were, what your income was, and how much profit you made, so its easy to see how well your business is growing.
Main features:
- Easy installation - just unzip, upload, install a single table into your MySQL database and youre ready to rock!
- Simple, intuitive interface - Auction Business Manager is structured so that its very easy to make changes to and update your listings.
- Ongoing Balance Sheet - Worried that you might be spending more than youre making? No problem, just keep track with Auction Business Manager, and compare how youre doing from month to month.
- Its Online - Once you install Auction Business Manager on your hosting account, you can access it from any computer.
- Password Protected - Auction Business Manager uses a simple login system to keep unwanted visitors and meddlers out.
<<lessAuction Business Manager also color codes your listings so that you can easily see who you need to ship packages to and who still needs to pay.
There is a statistics page that tells you, by month, what your expenses were, what your income was, and how much profit you made, so its easy to see how well your business is growing.
Main features:
- Easy installation - just unzip, upload, install a single table into your MySQL database and youre ready to rock!
- Simple, intuitive interface - Auction Business Manager is structured so that its very easy to make changes to and update your listings.
- Ongoing Balance Sheet - Worried that you might be spending more than youre making? No problem, just keep track with Auction Business Manager, and compare how youre doing from month to month.
- Its Online - Once you install Auction Business Manager on your hosting account, you can access it from any computer.
- Password Protected - Auction Business Manager uses a simple login system to keep unwanted visitors and meddlers out.
Download (0.012MB)
Added: 2006-02-09 License: Freeware Price:
1352 downloads
Pizza Business 1.0-beta9
Pizza Business project is a game in which you can create your own pizza business. more>>
Pizza Business project is a game in which you can create your own pizza business.
Pizza Business is a platform-independent restaurant simulation game written in object-oriented C++. It utilizes the WxWindows library.
Enhancements:
- Corrected date errors in this Changelog file (it said "2002" instead of "2003" on recent releases) -tsarkon
- Save/Load feature has been buggy. This have been fixed in this version. -ares32585
- The binary file has been moved to the bin directory (Makefile controlled) -tsarkon
- Partial implementation of Linux UI installation script -tsarkon
<<lessPizza Business is a platform-independent restaurant simulation game written in object-oriented C++. It utilizes the WxWindows library.
Enhancements:
- Corrected date errors in this Changelog file (it said "2002" instead of "2003" on recent releases) -tsarkon
- Save/Load feature has been buggy. This have been fixed in this version. -ares32585
- The binary file has been moved to the bin directory (Makefile controlled) -tsarkon
- Partial implementation of Linux UI installation script -tsarkon
Download (1.6MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
1093 downloads
Business-Affiliate-Program 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-27 License: Freeware Price: Free
179 downloads
Small Arms Ballistics 1.3.2
Small Arms Ballistics is a ballistics calculator for small arms fire. more>>
Small Arms Ballistics is, as the name says, a ballistics calculator for small arms fire. It is a terminal application written using curses.
Small Arms Ballistics is derived from smallball, which was written by Ole-Hj. Kristensen. I have pretty much rewritten the entire program, but smallball got me started. All major
trajectory calculations have been implemented, and a variety of bullet drag models are available.
The program needs a color capable terminal, otherwise it wont run.
Enhancements:
- distribution didnt include saballistics.lsm.in
<<lessSmall Arms Ballistics is derived from smallball, which was written by Ole-Hj. Kristensen. I have pretty much rewritten the entire program, but smallball got me started. All major
trajectory calculations have been implemented, and a variety of bullet drag models are available.
The program needs a color capable terminal, otherwise it wont run.
Enhancements:
- distribution didnt include saballistics.lsm.in
Download (0.22MB)
Added: 2005-07-01 License: GPL (GNU General Public License) Price:
1590 downloads
Rediff Business 1.0
Rediff Business widget allows you to view and read the latest bussiness news from this Indian news source. more>>
Get up to date news about India Business from Rediff Business Edition RSS Feed.
Rediff Business widget brings, right on your desktop, the latest news from the bussiness world taken from this Indian news source.
Stay up-to-date with the latest bussiness news.
<<lessRediff Business widget brings, right on your desktop, the latest news from the bussiness world taken from this Indian news source.
Stay up-to-date with the latest bussiness news.
Download (92.4KB)
Added: 2009-04-25 License: Freeware Price:
191 downloads
PCLinuxOS Business Edition Final (Server Basic)
PCLinuxOS Business Edition is a Small Business oriented Linux distribution based on the popular PCLinuxOS. more>>
PCLinuxOS Business Edition is a Small Business oriented Linux distribution based on the popular PCLinuxOS. While we are based on PCLinuxOS, we are not an "official" part of the PCLinuxOS distro. Our goal to offer the very best in solutions for small business/SOHO needs targeted toward the small/mid-sized business "layperson".
We offer a Desktop solution that is primarily geared to the SOHO, one man shop/business where everything can be done right on your one machine. There are all the business oriented applications you could want, from word processing to graphics production, making bar code labels to spreadsheets and databases. Its right there at your command.
Also available for small business is the Business Edition Server solution. It offers a laymans basic approach to setting up most of the small servers and networking functions you might need for your small business or home office. This server is recommended for businesses with a smaller number of machines on their network.
Both Desktop and Server are made with working together in mind. Desktop is a great "client" for connecting to the many server and networking functions available on the BE Server.
<<lessWe offer a Desktop solution that is primarily geared to the SOHO, one man shop/business where everything can be done right on your one machine. There are all the business oriented applications you could want, from word processing to graphics production, making bar code labels to spreadsheets and databases. Its right there at your command.
Also available for small business is the Business Edition Server solution. It offers a laymans basic approach to setting up most of the small servers and networking functions you might need for your small business or home office. This server is recommended for businesses with a smaller number of machines on their network.
Both Desktop and Server are made with working together in mind. Desktop is a great "client" for connecting to the many server and networking functions available on the BE Server.
Download (703MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
510 downloads
Business Process Visual ARCHITECT 2.1
Business Process Visual ARCHITECT is a full-featured business process modeler. more>>
Business Process Visual ARCHITECT is a full-featured business process modeler that supports the latest OMG Business Process Modeling Notation (BPMN).
Business Process Visual ARCHITECT provides an easy-to-use diagramming environment for you to model your business process, and is a proven solution for bridging the gap between business analysts and IT professionals.
Main features:
- Frictionless business modeling environment
- On-the-fly syntax check and correction according to BPMN specification
- Advanced printing facility for outputting large business process diagram
- Share business process diagram among your company with Teamwork Server
- Incorporate user-defined images to the business process diagram to increase the readability.
Enhancements:
- Branch and tag capabilities were added to the VP Teamwork Server, including Subversion and CVS repository integration.
- This allows different modeling projects to be run in parallel while keeping the release quality project stable in the trunk.
- There were also a number of enhancements for various other features.
<<lessBusiness Process Visual ARCHITECT provides an easy-to-use diagramming environment for you to model your business process, and is a proven solution for bridging the gap between business analysts and IT professionals.
Main features:
- Frictionless business modeling environment
- On-the-fly syntax check and correction according to BPMN specification
- Advanced printing facility for outputting large business process diagram
- Share business process diagram among your company with Teamwork Server
- Incorporate user-defined images to the business process diagram to increase the readability.
Enhancements:
- Branch and tag capabilities were added to the VP Teamwork Server, including Subversion and CVS repository integration.
- This allows different modeling projects to be run in parallel while keeping the release quality project stable in the trunk.
- There were also a number of enhancements for various other features.
Download (94.9MB)
Added: 2007-08-05 License: GPL (GNU General Public License) Price:
522 downloads
Best-Online-Business 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-01 License: Freeware Price: Free
206 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 small business association 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