Main > Free Download Search >

Free financial statements software for linux

financial statements

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 416
Regular Statement String 2.5.7

Regular Statement String 2.5.7


Regular Statement String (RSS) provides several libraries in C, Java, and COM. more>>
Regular Statement String (RSS) provides several libraries in C, Java, and COM to implement and demonstrate the key-value development method using well-designed "strings" (RSS) as the media. Regular Statement String also shows a way to write "Process Oriented" applications.
Enhancements:
- This release adds an implementation for SUN Solaris (SPARC).
<<less
Download (0.33MB)
Added: 2007-04-12 License: Freeware Price:
926 downloads
Yet Another Financial Manager 0.1

Yet Another Financial Manager 0.1


Yet Another Financial Manager (YAFM in short) is application to track Your expenses and incomes. more>>
Yet Another Financial Manager (YAFM in short) is application to track Your expenses and incomes. That way You know how much and for what You are spending, and if You are in line with retirement savings. All made in EASY and COMFORTABLE way.

The Difference

There are many programs to help manage Your finances.

So, why You should use YAFM?

First it is designed to be easy to use. It is not aimed to track every penny You spend, this would be annoying.

Second: it should be used as a tool to track spendings as exactly as You need. Don’t be stressed if some expences are not tracked or You have entered their approx value. YAFM is about helping You to know roughly how much and for what You are spending not making You feel bad, that expenses and incomes are not balanced up to penny. If You have enough patience to keep data 100% accurate - You will have very accurate results, good for You, but YAFM will not make troubles about coffee and doughnut this morning, You have forgot to enter.

YAFM BETA is free software, but version 1.0 will be commercial software. If You decide to donate me some money I promise You to get free 1.0 license. You can donate any amount, but if You would ask me how much I would say - 10 USD (1.0 pricing is not fixed but price will be somewhere between 10 and 20 USD).

This application is powered with Ruby on Rails and operated with browser locally. You need to have Ruby interpreter and sqlite installed. This means it can be run in Windows, Unix/Linux or Mac OS X environments.

For Windows (which I expect be to main platform for most users) there are sqlite .dlls provided with program.

Well… I’m using this program for myself from April 2006. I think for many people program like YAFM will be useful, so I decided give a try to release. Of course I’m releasing much more polished version than I use everyday, and also with much features missing. But I will successfully release next versions.
<<less
Download (MB)
Added: 2007-05-01 License: Freely Distributable Price:
906 downloads
Poor mans Financial Calculator 1.1

Poor mans Financial Calculator 1.1


Poor mans Financial Calculator is a small financial and basic mathematical operations calculator applet. more>>
Poor mans Financial Calculator project is a small financial and basic mathematical operations calculator applet.
The calculator registers work like the mythical HP-12C financial calculator, even the "n" rounding behaviour. The yellow fields also serve as operands for the arithmetic operations; for such ops, the blue field will show the result.
BEGIN button: If enabled, means that the first payment is made at the beginning of the period (important only for financial operations that involve PMT register)
FPC button: if enabled, Fractionary part of the Period ("n") will also be calculated using Compound interest; if disabled, fractionary part will use simple (linear) interest, which gives slightly higher interest values.
Enhancements:
- This release translates the code and messages to English and changes the license to the LGPL.
<<less
Download (0.009MB)
Added: 2005-12-09 License: LGPL (GNU Lesser General Public License) Price:
1414 downloads
Open Blue Lab 2.1.6 (Financial/Accounting)

Open Blue Lab 2.1.6 (Financial/Accounting)


Open Blue Lab is an enterprise resource planning system. more>>
Open Blue Lab is an enterprise resource planning system.
Whatever your goal is, the objective of this tool is to provide you the ready-to use stuff to create, update, search and view data you need for your application.
Moreover, this stuff is provided with the latest UI goodies like AJAX support that will ensure you the best feeling you never had in browsing.
Like OpenBlueLab.org project is portal aware, that means you have aggregation and personalization too.
That way, you can focus on your added value : the business logic and requirements your customer needs.
Enhancements:
- Attributes are now private instead of public.
- All entities (classes, attributes, and methods) are documented, allowing HTML documentation generation.
- iReport reporting has been integrated for journal, ledger, balance, and statistics.
<<less
Download (0.057MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
821 downloads
 
Other version of Open Blue Lab
Open Blue Lab 1.1.9 (Financial / Costs)Open Blue Lab Project - Open Blue Lab 1.1.9 (Financial / Costs) Open Blue Lab is an enterprise resource planning ... Open Blue Lab. Open Blue Lab is an
License:GPL (GNU General Public License)
Download (0.022MB)
807 downloads
Added: 2007-08-10
Open Blue Lab 1.1.7 (Financial / Budget)Open Blue Lab Project - Open Blue Lab 1.1.7 (Financial / Budget) Open Blue Lab is an enterprise resource planning ... Open Blue Lab. Open Blue Lab is an
License:GPL (GNU General Public License)
Download (0.008MB)
811 downloads
Added: 2007-08-04
Open Blue Lab 1.1.4 (Financial)Open Blue Lab 1.1.4 (Financial) Open Blue Lab is an enterprise resource planning system. Open ... .4 (Financial) - Open Blue Lab Project. Open Blue Lab. Open Blue Lab is an enterprise resource
License:GPL (GNU General Public License)
Download (MB)
818 downloads
Added: 2007-07-28
SQL::Statement::Embed 1.15

SQL::Statement::Embed 1.15


SQL::Statement::Embed can embed a SQL engine in a DBD or module. more>>
SQL::Statement::Embed can embed a SQL engine in a DBD or module.

SQL::Statement is designed to be easy to embed in other modules and to be especially easy to embed in DBI drivers. It provides a SQL Engine and the other module needs to then provide a data source and a storage mechanism. For example, the DBD::CSV module uses SQL::Statement as an embedded SQL engine by implementing a file-based data source and by using DBI as the user interface. Similarly DBD::Amazon uses SQL::Statement as its SQL engine, provides its own extensions to the supported SQL syntax, and uses on-the-fly searches of Amazon.com as its data source.

SQL::Statement is the basis for eight existing DBDs (DBI database drivers). If you have a new data source, you too can create a DBD without having to reinvent the SQL wheel. Its fun, its easy, become a DBD author today!

SQL::Statement can be also be embedded without DBI. Well explore that first since developing a DBD uses most of the same methods and techniques.

The role of SQL::Statement subclasses

SQL::Statement provides a SQL parsing and execution engine. It does not provide a data source or storage mechanism other than in-memory tables. The DBD::File module is a subclass of SQL::Statement that provides access to file-based storage mechanisms. Its quite possible to use things other than files as data souces, in which case we wouldnt use DBD::File, instead wed replace DBD::Files methods with our own. In the examples below, well use DBD::File, replacing only a few methods.

SQL::Statement provides SQL parsing and evaluation and DBD::File provides file-based storage. The only thing missing is a data source - what we actually want to store and query. As an example suppose we are going to create a subclass called Foo that will provide as a data source a simple file similar to a passwd file - one record per line, fields separated by colons, with only three fields "username, uid, gid".

Consider what needs to happen to perform a SELECT query on our Foo data:

* recieve a SQL string
* parse the SQL string into a request structure
* open the table(s) specified in the request
* define column names and postions for the table
* read rows from the table
* convert the rows from colon-separated format into perl arrays
* match the columns and rows against the requested selection criteria
* return requested rows and columns to the user

To perform operations like INSERT and DELETE, we also need to:

* convert rows from perl arrays into colon-separated format
* write rows
* delete rows

SQL::Statement takes care of all of the SQL parsing and evaluation. DBD::File takes care of file opening, reading, writing, and deleting. So the only things Foo is really responsible for are:

* define column names and postions for the table
* convert rows from colon-separated format into perl arrays
* convert rows from perl arrays into colon-separated format

In SQL::Statement subclasses these responsibilities are assigned to two objects, a ::Statement object is responsible for opening the table, defining the column names and positions, and for creating new ::Table objects. A ::Table object is responsible for reading, converting, writing, and deleting data.

<<less
Download (0.085MB)
Added: 2006-06-13 License: Perl Artistic License Price:
1230 downloads
makepp_statements 1.50-cvs-070506

makepp_statements 1.50-cvs-070506


makepp_statements Perl package contains various statements in a makefile. more>>
makepp_statements Perl package contains various statements in a makefile.

and, build_cache, "build_check", define, else, enddef, endef, endif, "export", global, ifdef, "ifeq", "ifmakeperl", ifndef, ifneq, ifnsys, "ifperl", "ifsys", "include", "_include", load_makefile, make, perl, "makesub", no_implicit_load, or, perl, "perl_begin", perl_end, "prebuild", register_scanner, "register_command_parser", "register_input_suffix", repository, "runtime", signature, "sub"

A statement is any line beginning with a word which does not have a : in it. (A colon implies that the line is a rule.) For example, these are statements:

include extra_rules.mk
load_makefile subdir

Makepp has a number of builtin statements which you may occasionally need to use.

Note that wherever you see an underscore, you may also use a dash, because makepp converts dashes to underscores in statement names.

Conditionals

Conditionals are special statements, which control what lines of the Makeppfile are actually seen. The simplest form (where ifxxx stands for any of the conditional statements documented below) is:

ifxxx ...
lines seen if the statement evaluates as true
endif

or:

ifxxx ...
lines seen if the statement evaluates as true
else
lines seen if the statement evaluates as false
endif

There is also the possibility to do complex combinations like this:

ifxxx ...
and ifxxx ...
and ifxxx ...
or ifxxx ...
and ifxxx ...
lines seen if the combined statements evaluate as true
else ifxxx ...
or ifxxx ...
and ifxxx ...
lines seen if the first combination evaluates as false
and these combined statements evaluate as true
else
lines seen if the statements above evaluate as false
endif

As is suggested by the indentation, and has higher precedence than or. In other words an or elects between two groups of and`s. There may be any number of and ifxxx`s, or ifxxx`s and else ifxxx`s.

<<less
Download (0.58MB)
Added: 2007-05-30 License: Perl Artistic License Price:
877 downloads
PHPFinance 0.6

PHPFinance 0.6


PHPFinance is a Web-based financial management program that can be used for finance managing, administration. more>>
PHPFinance is a Web-based financial management program that can be used for finance managing, administration, and control using a database.
PHPFinance allows for statisitics, predictions, and management, and also shows procentage and progress graphs of income and expenses data.
Enhancements:
- fixed database enable bug
- improved and fixed progress graphic
- improved and fixed comparative graphic
- added graphics size config option
- added date completion config option
- enforced password check
- made the program globals independent
- added number format config option
<<less
Download (0.053MB)
Added: 2006-05-01 License: GPL (GNU General Public License) Price:
1276 downloads
BADGER finance 1.0 Beta 3

BADGER finance 1.0 Beta 3


BADGER finance is an open source financial management application for end users. more>>
BADGER finance is an open source financial management application for end users. BADGER finance is written in php, ajax and sql. The goal is to regain control over your personal financial situation. BADGER is free software in the sense of the GNU GPL license.
The vision for BADGER finance was born at the Mannheim University of Cooperative Education (BA). In the course of a software development class we had the opportunity to develop software. We jumped at the project with the hopes to be able to complete a useful piece of software instead of the 10,000th tic-tac-toe application.
Since there was no financial management software on the market available to us that had what we needed, we started developing our own which we now released to the open source community.Preferences
Main features:
- Account management
- Currencies
- Transactions
- Transaction categories
- Forecasts
- CSV-Import
- Preferences
Enhancements:
- This is a major release with loads of new features and bugfixes.
- The statistics module was improved with category, trend, and timespan analysis, complete with reach-through capabilities.
- The transaction backend was newly recoded.
- The CSV import module was rewritten with improved matching of imported transactions with planned transactions.
- Powerful filters were added for the transaction grid.
- Transferral transactions were implemented for transfers between different accounts.
- New possibilities were added when editing a chain of recurring transactions.
- A new theme was added.
<<less
Download (1.6MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
956 downloads
FinerEdge Calculator 2.8

FinerEdge Calculator 2.8


FinerEdge Calculator project handles all types of loans, bonds, annuities and other investments. more>>
The FinerEdge Calculation Solution is a modern Java, ISO and XML standards-based, customizable financial amortization calculation system designed for financial institutions, financial software vendors, and application service providers. The FinerEdge Calculator is a single source financial calculation solution from the Web to the Desktop to the Mainframe.

FinerEdge Calculator project handles all types of loans, bonds, annuities and other investments using all of the proper calculation methods and terms for each of the different types of cash flows. In addition, new calculation methods and terms can visually be added to FinerEdge Calculator and immediately leveraged across your entire enterprise and web offerings, all without any programming! In turn, this enables the easy creation and servicing of custom, hybrid financial products that keep you ahead of the competition.

<<less
Download (2.3MB)
Added: 2007-04-02 License: Free To Use But Restricted Price:
939 downloads
Brinance 4.03

Brinance 4.03


Brinance is a commandline financial planning and tracking program. more>>
Brinance is a commandline financial planning and tracking program, hoping to be a functional replacement for something like GnuCash for those who prefer the command line.
Brinance does not have all the features of GnuCash, but it does have a few beyond being a checkbook register: scheduling transactions in the future, multiple accounts, recurring transactions, and a Perl module to allow just about any interface to the program to be easily written.
Enhancements:
- Recurring transactions were added, using a cron-like format.
- The file format was changed.
- Transfers were added.
<<less
Download (0.022MB)
Added: 2006-09-27 License: GPL (GNU General Public License) Price:
1122 downloads
trytond_analytic_account 1.2.1

trytond_analytic_account 1.2.1


Financial and Accounting Module more>>

trytond_analytic_account 1.2.1 is a useful software created as financial and accounting Module with analytic accounting with any number of analytic charts and analytic account balance.

Tryton is a three-tiers high-level general purpose application platform under the license GPL-3 written in Python and using PostgreSQL as database engine.

It is the core base of a complete business solution providing modularity, scalability and security.

Requirements:

  • Python
<<less
Added: 2009-07-08 License: GPL Price: FREE
10 downloads
Advanced Stock Tracking System 0.2.8

Advanced Stock Tracking System 0.2.8


Advanced Stock Tracking System provides the individual investor with a powerful set of tools for making financial decisions. more>>
Advanced Stock Tracking System provides the individual investor with a powerful set of tools for making financial decisions and tracking securities.

This project features a portfolio with dividend tracking, worksheet to keep track of prospects, a stock comparison utility, a search engine for the stock market and an alert engine to email you about key events in your securities.
<<less
Download (9.8MB)
Added: 2007-05-09 License: GPL (GNU General Public License) Price:
909 downloads
logindpostgres 1

logindpostgres 1


logindpostgres is a script that reads SQL select statements from PostgreSQL logs. more>>
logindpostgres is a script that reads SQL select statements from PostgreSQL logs and generates all the indices to optimize the database for each request.

logindpostgres has been tested on 1.2 GB of logs.

<<less
Download (0.008MB)
Added: 2006-09-05 License: GPL (GNU General Public License) Price:
1144 downloads
Saccs personal accounting 0.6

Saccs personal accounting 0.6


Saccs personal accounting provides a simple Web-based personal accounting package. more>>
Saccs personal accounting provides a simple Web-based personal accounting package.
A person can have multiple accounts. Multiple installations on one system can accommodate multiple users.
Details:
Perl and MySQL. Certain perl libraries such as HTML::Template and DBI are required. Apache or something like it is recommended.
Will run on almost anything that can handle apache and perl.
I wrote a simple set of scripts to do web-based tracking of my bank accounts, credit card and cash balances, and "who owes me how much". This worked well enough for 3 years, so I want to release it for others to use. But the original is very dirty code and hard to install, so Im writing a new one, with the lessons learned in 3 years, that will also be properly modularised and packaged.
Main features:
- Create/open an account: bank or credit card or "community". You can have as many of these as will fit in the menu, more if you dont mind crowding.
- Bank account detail display will show date, description, "cleared" (think check) per month. It will show a balance and a "cleared" balance. The "cleared" balance should be the same as what your ATM shows you. It will also show the months net inflow and outflow.
- For bank accounts, previous months can be viewed. The month display will show beginning and ending balances and light up discrepancies.
- For credit cards, a running balance total will be shown along with date, item description, etc. When you receive your monthly statement, delete the items that are correct and enter the balance as a new starting point for the calculation. This helps to keep track of what youre spending on the card.
- "Community" shows a grid, each column corresponds to a friend and each row corresponds to money owed to or by one of the friends. The last row, the total, shows the total owed to or by the friend. Very useful for roommates and easier to use than describe.
- Transfers between accounts.
- No direct communication with any financial institution.
Enhancements:
- Fixed bug in adding names in community account
- Added the totals.
<<less
Download (0.014MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
983 downloads
SPindent 1.1

SPindent 1.1


SPindent is a JSP/PHP template structural validator and indenter. more>>
SPindent (Server Page Indenter) is a JSP/PHP structural validator and indenter. It performs structural compatibility check of inner HTML generated from "parallel" branches of process flow statements such as if/else.

It allows for those HTML branches to have different entry and exit HTML stack points, as far as the branches are compatible.

This allows for verification and proper indentation of handy workarounds, as well as rusty pyramids. It is based on MixedCC (Mixed Compiler Compiler).
<<less
Download (0.085MB)
Added: 2005-05-05 License: The Apache License 2.0 Price:
1633 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5