how to run a business
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5168
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
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
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
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
The Open For Business Project 3.0.0
The Open For Business Project is a J2EE-based enterprise automation tools and applications. more>>
The Open For Business Project is an open source enterprise automation software project licensed under the MIT Open Source License.
By open source enterprise automation we mean: Open Source ERP, Open Source CRM, Open Source E-Business / E-Commerce, Open Source SCM, Open Source MRP, Open Source CMMS/EAM, and so on.
Main features:
- advanced e-commerce
- catalog management
- promotion & pricing management
- order management (sales & purchase)
- customer management (part of general party management)
- warehouse management
- fulfillment (auto stock moves, batched pick, pack & ship)
- accounting (invoice, payment & billing accounts)
- manufacturing management
- general work effort management (events, tasks, projects, requests, etc)
- content management (for product content, web sites, general content, blogging, forums, etc)
- and much more all in an open source package!
<<lessBy open source enterprise automation we mean: Open Source ERP, Open Source CRM, Open Source E-Business / E-Commerce, Open Source SCM, Open Source MRP, Open Source CMMS/EAM, and so on.
Main features:
- advanced e-commerce
- catalog management
- promotion & pricing management
- order management (sales & purchase)
- customer management (part of general party management)
- warehouse management
- fulfillment (auto stock moves, batched pick, pack & ship)
- accounting (invoice, payment & billing accounts)
- manufacturing management
- general work effort management (events, tasks, projects, requests, etc)
- content management (for product content, web sites, general content, blogging, forums, etc)
- and much more all in an open source package!
Download (28.51MB)
Added: 2005-04-28 License: MIT/X Consortium License Price:
1642 downloads
Run a web server inside LAN
Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. more>>
Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. Run a web server inside LAN script assume all iptables features are compiled statically in the kernel, or all modules are loaded.
Otherwise you may encounter some surprises trying to utilize the more featureful and creative commandlines that Ive come up with.
Sample:
#external and internal interfaces
EXT=eth0
INT=eth1
# clear everything, and create my cascading chains
iptables -F
iptables -N e0
iptables -N tcpin
iptables -N udpin
# e0 is the name of our chain for eth0
iptables -I INPUT -i $EXT -j e0
# OUTPUT Chain
iptables -A OUTPUT -o $EXT -j DROP -p icmp --icmp-type ! echo-request
# remote gnutella queries were really pissing me off one day
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --dport 6346
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --sport 6346
# $EXT Chain
# a single rule to accept SYN Packets for multiple ports (up to 15)
iptables -A tcpin -j ACCEPT -p tcp --syn -m multiport --destination-ports 873,993,995,143,80,113,21,22,23,25,53
# stateful connection tracking is wonderful stuff
# ESTABLISHED tcp connections are let through
# If we send a SYN out, the ACK is seen as RELATED
# then further communication is accepted by the ESTABLISHED rule
iptables -A e0 -j ACCEPT -m state --state ESTABLISHED
iptables -A e0 -j ACCEPT -m state --state RELATED
# certain ports I simply DROP
iptables -A tcpin -j DROP -p tcp --syn -m multiport --destination-ports 6346,139
# UDP rules...
iptables -A udpin -j DROP -p udp -m multiport --destination-ports 137,27960
# I run a DNS server, so we must accept UDP packets on port 53
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 53
# lets log NEW udp packets on ports 1024:65535, then let them through
iptables -A udpin -j LOG -p udp -m state --state NEW --destination-port 1024:65535 --log-level debug --log-prefix UDPNEW --log-ip-options
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 1024:65535
# lets log NEW tcp packets on ports 1024:65535, then let them through
iptables -A tcpin -j LOG -p tcp --syn --destination-port 1024:65535 --log-level debug --log-prefix TCPNEW --log-tcp-options --log-ip-options
iptables -A tcpin -j ACCEPT -p tcp --syn --destination-port 1024:65535
# lets log INVALID or NEW tcp packets on priveleged ports, then DROP
# (remember I have certain ACCEPT rules higher up the chain)
iptables -A tcpin -j LOG -p tcp -m state --state INVALID,NEW --destination-port 1:1023 --log-level warn --log-prefix TCPPRIV --log-tcp-options --log-ip-options
iptables -A tcpin -j DROP -p tcp -m state --state INVALID,NEW --destination-port 1:1023
iptables -A e0 -p tcp -j tcpin
iptables -A e0 -p udp -j udpin
iptables -A e0 -j LOG --log-level debug --log-prefix NETFILTER --log-ip-options -m state --state INVALID,NEW
iptables -A e0 -j DROP
# NAT Rules
# I run a web server inside...
iptables -t nat -A PREROUTING -p tcp -i eth0 --dport 80 -j DNAT --to-destination 192.168.1.4:80
<<lessOtherwise you may encounter some surprises trying to utilize the more featureful and creative commandlines that Ive come up with.
Sample:
#external and internal interfaces
EXT=eth0
INT=eth1
# clear everything, and create my cascading chains
iptables -F
iptables -N e0
iptables -N tcpin
iptables -N udpin
# e0 is the name of our chain for eth0
iptables -I INPUT -i $EXT -j e0
# OUTPUT Chain
iptables -A OUTPUT -o $EXT -j DROP -p icmp --icmp-type ! echo-request
# remote gnutella queries were really pissing me off one day
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --dport 6346
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --sport 6346
# $EXT Chain
# a single rule to accept SYN Packets for multiple ports (up to 15)
iptables -A tcpin -j ACCEPT -p tcp --syn -m multiport --destination-ports 873,993,995,143,80,113,21,22,23,25,53
# stateful connection tracking is wonderful stuff
# ESTABLISHED tcp connections are let through
# If we send a SYN out, the ACK is seen as RELATED
# then further communication is accepted by the ESTABLISHED rule
iptables -A e0 -j ACCEPT -m state --state ESTABLISHED
iptables -A e0 -j ACCEPT -m state --state RELATED
# certain ports I simply DROP
iptables -A tcpin -j DROP -p tcp --syn -m multiport --destination-ports 6346,139
# UDP rules...
iptables -A udpin -j DROP -p udp -m multiport --destination-ports 137,27960
# I run a DNS server, so we must accept UDP packets on port 53
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 53
# lets log NEW udp packets on ports 1024:65535, then let them through
iptables -A udpin -j LOG -p udp -m state --state NEW --destination-port 1024:65535 --log-level debug --log-prefix UDPNEW --log-ip-options
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 1024:65535
# lets log NEW tcp packets on ports 1024:65535, then let them through
iptables -A tcpin -j LOG -p tcp --syn --destination-port 1024:65535 --log-level debug --log-prefix TCPNEW --log-tcp-options --log-ip-options
iptables -A tcpin -j ACCEPT -p tcp --syn --destination-port 1024:65535
# lets log INVALID or NEW tcp packets on priveleged ports, then DROP
# (remember I have certain ACCEPT rules higher up the chain)
iptables -A tcpin -j LOG -p tcp -m state --state INVALID,NEW --destination-port 1:1023 --log-level warn --log-prefix TCPPRIV --log-tcp-options --log-ip-options
iptables -A tcpin -j DROP -p tcp -m state --state INVALID,NEW --destination-port 1:1023
iptables -A e0 -p tcp -j tcpin
iptables -A e0 -p udp -j udpin
iptables -A e0 -j LOG --log-level debug --log-prefix NETFILTER --log-ip-options -m state --state INVALID,NEW
iptables -A e0 -j DROP
# NAT Rules
# I run a web server inside...
iptables -t nat -A PREROUTING -p tcp -i eth0 --dport 80 -j DNAT --to-destination 192.168.1.4:80
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
985 downloads
Money-Making-Businesses 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-24 License: Freeware Price: Free
182 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
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
Money-Making-Internet-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-20 License: Freeware Price: Free
186 downloads
Internet Business Services 1.0
Do internet telephones sound too good to be true? Well that was exactly what I was thinking, so I decided to delve into the world of Internet telephon... more>> <<less
Download (421KB)
Added: 2009-04-18 License: Freeware Price: Free
190 downloads
Business Shell 1.0.3
Business Shell is a web template engine, scripting language, and shell. more>>
Business Shell (BUSH) can be used as interactive command shell, scripting language with a source code debugger, a database client and a web template engine. With third-party support for the ABEE standard for Java Virtual Machine and .Net, BUSH is an all-in-one replacment for BASH, PHP, J2EE, Ruby, Python, PERL and PSQL.
There are many shells, interpreters and languages available. Virtually without exception, they are incompatible with one another. Whats the point of learning a tool that, no matter how sophisticated it is, leaves your source code stuck with that particular tool. You want to do scripting, so you use Python or Scheme.
You want to do reporting, so you use Perl. You want to write a script, so you use Bash. You want to write an applet, so you use Java. To be a programmer these days, you need to be fluent in a dozen different languages. You would be making more money if you got a job at the United Nations.
The Business Shell is different. Its based on a language called AdaScriptTM, a subset of one of the most powerful languages available for Linux today. Ada 95 is a GCC supported language so any project you write in Bush is immediately portable to any machine that GCC runs on. In other words, virtually everything.
And it means that Bush scripts can be compiled using GCC and everyone knows that GCC is superior to most commercial compilers. If thats not enough, using the JGNAT open source compiler, you can even compile your Bush scripts into actual Java bytecode. There is another tool, A#, that will compile scripts into .NET byte code Things dont get much more platform-independent than that.
But Bush does more than just create scripts, executable programs and Java applets. Its a powerful computer language on its own able to do complex math, manipulate files, generate reports and able to do network programming. Bush will let strings grow as big as you need without worry of a running out of buffer space. And a number of built-in packages will let you do everything from compute trig functions to connecting to a web server.
But best of all, Bush is easy. Perl claims to be easy. Easily like riding a bicycle backwards in the middle of a thunderstorm. Bush is easy to read, easy to understand. You know exactly what a script does without having to have a reference book beside you at all times
Bush doesnt run your programs outright. First it examines them, compresses them, and converts them into intermediate code. (Thats "byte code", to you Java developers.) Bush optimizes the program for the best possible performance. It also takes the time to verify your program will run before attempting to execute the first line.
And if you make to typing mistake, Bush will let you know before running your program. Theres no need to worry that your typo will be a valid command like it would be in most other languages. Bush works for you, not against you.
One tool for all solutions.
Main features:
- Internal Byte Code
- 200+ Built-in Functions
- Template Engine
- PostgreSQL DBI
- TCP/IP Sockets
- CGI Library
- AU/WAV Sound
- Arrays
- Records (Structures)
- Enumerated Types
- True Booleans
- Types and Subtypes
Enhancements:
- A new built-in directory_operations package.
- A serious memory leak problem with pragma prompt_script has been repaired.
<<lessThere are many shells, interpreters and languages available. Virtually without exception, they are incompatible with one another. Whats the point of learning a tool that, no matter how sophisticated it is, leaves your source code stuck with that particular tool. You want to do scripting, so you use Python or Scheme.
You want to do reporting, so you use Perl. You want to write a script, so you use Bash. You want to write an applet, so you use Java. To be a programmer these days, you need to be fluent in a dozen different languages. You would be making more money if you got a job at the United Nations.
The Business Shell is different. Its based on a language called AdaScriptTM, a subset of one of the most powerful languages available for Linux today. Ada 95 is a GCC supported language so any project you write in Bush is immediately portable to any machine that GCC runs on. In other words, virtually everything.
And it means that Bush scripts can be compiled using GCC and everyone knows that GCC is superior to most commercial compilers. If thats not enough, using the JGNAT open source compiler, you can even compile your Bush scripts into actual Java bytecode. There is another tool, A#, that will compile scripts into .NET byte code Things dont get much more platform-independent than that.
But Bush does more than just create scripts, executable programs and Java applets. Its a powerful computer language on its own able to do complex math, manipulate files, generate reports and able to do network programming. Bush will let strings grow as big as you need without worry of a running out of buffer space. And a number of built-in packages will let you do everything from compute trig functions to connecting to a web server.
But best of all, Bush is easy. Perl claims to be easy. Easily like riding a bicycle backwards in the middle of a thunderstorm. Bush is easy to read, easy to understand. You know exactly what a script does without having to have a reference book beside you at all times
Bush doesnt run your programs outright. First it examines them, compresses them, and converts them into intermediate code. (Thats "byte code", to you Java developers.) Bush optimizes the program for the best possible performance. It also takes the time to verify your program will run before attempting to execute the first line.
And if you make to typing mistake, Bush will let you know before running your program. Theres no need to worry that your typo will be a valid command like it would be in most other languages. Bush works for you, not against you.
One tool for all solutions.
Main features:
- Internal Byte Code
- 200+ Built-in Functions
- Template Engine
- PostgreSQL DBI
- TCP/IP Sockets
- CGI Library
- AU/WAV Sound
- Arrays
- Records (Structures)
- Enumerated Types
- True Booleans
- Types and Subtypes
Enhancements:
- A new built-in directory_operations package.
- A serious memory leak problem with pragma prompt_script has been repaired.
Download (1.5MB)
Added: 2005-08-31 License: GMGPL (GNAT Modified GPL) Price:
1516 downloads
Money-Making-Business-Opportunity 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-25 License: Freeware Price: Free
182 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
Business::PayBox 1.0.1
Business::PayBox is a OO wrapper for Paybox Java Localhost Listener (LHL). more>>
Business::PayBox is a OO wrapper for Paybox Java Localhost Listener (LHL).
SYNOPSIS
To create object:
use Business::PayBox;
$PB = Business::PayBox->new(MRID => +490001234567);
or
$PB = Business::PayBox->new(MRID => +490001234567, server => 192.168.1.1, port => 61);
To do a payment:
$result = $PB->do_test_payment(AMNT => 100, CURR => DEM, ORNM=>TEST123, CPID => +491773729269);
or
$result = $PB->dopayment(AMNT => 100, CURR => DEM, ORNM=>TEST123, CPID => +491773729269);
This is an OO wrapper for the PAYBOX - Integrated Solution. You must install Localhostlistener LHL (which comes as Java-Jar) to use this module. After you succeed with this you can process payments as described above.
CONSTRUCTOR
new($key => $value, ...)
Call to initialize object. Valid Parameters are:
Mandatory:
MRID => Merchant ID
Others:
server => IP address or name of LHL server. (defaults to localhost)
port => Port of LHL server. (defaults to port 60)
CMID => Customer ID (defaults to 0)
AUTT => Transaction Type
LANG => Language (defaults to DE)
PYMD => Zahlungsziel (defaults to 1)
LCMT => Localtime stamp (defaults to localtime)
<<lessSYNOPSIS
To create object:
use Business::PayBox;
$PB = Business::PayBox->new(MRID => +490001234567);
or
$PB = Business::PayBox->new(MRID => +490001234567, server => 192.168.1.1, port => 61);
To do a payment:
$result = $PB->do_test_payment(AMNT => 100, CURR => DEM, ORNM=>TEST123, CPID => +491773729269);
or
$result = $PB->dopayment(AMNT => 100, CURR => DEM, ORNM=>TEST123, CPID => +491773729269);
This is an OO wrapper for the PAYBOX - Integrated Solution. You must install Localhostlistener LHL (which comes as Java-Jar) to use this module. After you succeed with this you can process payments as described above.
CONSTRUCTOR
new($key => $value, ...)
Call to initialize object. Valid Parameters are:
Mandatory:
MRID => Merchant ID
Others:
server => IP address or name of LHL server. (defaults to localhost)
port => Port of LHL server. (defaults to port 60)
CMID => Customer ID (defaults to 0)
AUTT => Transaction Type
LANG => Language (defaults to DE)
PYMD => Zahlungsziel (defaults to 1)
LCMT => Localtime stamp (defaults to localtime)
Download (0.003MB)
Added: 2007-06-05 License: Perl Artistic License Price:
872 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 how to run a business 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