Main > Free Download Search >

Free banks software for linux

banks

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 68
Steel Bank Common Lisp 1.0.8

Steel Bank Common Lisp 1.0.8


Steel Bank Common Lisp is a common Lisp native compiler. more>>
Steel Bank Common Lisp is a development environment for Common Lisp, with excellent support for the ANSI standard: garbage collection, lexical closures, powerful macros, strong dynamic typing, incremental compilation, and the famous Common Lisp Object System (multimethods and all).

Steel Bank Common Lisp also includes many extensions, such as native threads, socket support, a statistical profiler, programmable streams, and more. These are all available through an integrated, interactive native compiler which feels like an interpreter.

SBCL is unique in being a multiplatform native compiler which bootstraps itself completely from source, using a C compiler and any other ANSI Common Lisp implementation.

Whats New in This Release:

* enhancement: experimental macro SB-EXT:COMPARE-AND-SWAP provides
atomic compare-and-swap operations on threaded platforms.
* enhancement: experimental function SB-EXT:RESTRICT-COMPILER-POLICY
allows assining a global minimum value to optimization qualities
(overriding proclamations and declarations).
* enhancement: closed over variables can be stack-allocated on x86
and x86-64.
* performance bug fix: GETHASH and (SETF GETHASH) are once again
non-consing.
* optimization: slot definition lookup is now O(1). This speeds up
eg. SLOT-VALUE and (SETF SLOT-VALUE) with variable slot names.
* optimization: STRING-TO-OCTETS is now up to 60% faster for UTF-8.
* optimization: ASSOC and MEMBER can now be open-coded for all
combinations of keyword arguments when second argument is constant
and SPEED >= SPACE. In other cases a specialized version is
selected.
* bug fix: using obsoleted structure instances with TYPEP and
generic functions now signals a sensible error.
* bug fix: threads waiting on GET-FOREGROUND can be interrupted.
(reported by Kristoffer Kvello)
* bug fix: backtrace construction is now more careful when making
lisp-objects from pointers on the stack, to avoid creating bogus
objects that can be seen by the GC.
* bug fix: defaulting of values in contexts expecting more than 7
variables now works on x86-64. (reported by Christopher Laux)
* bug fix: modifications to packages (INTERN, EXPORT, etc) are now
thread safe.
* bug fix: (SETF SYMBOL-PLIST) no longer allows assigning a non-list
as the property-list of a symbol.
* bug fix: DEFMETHOD forms with CALL-NEXT-METHOD in the method body,
in EVAL-WHEN forms with both :COMPILE-TOPLEVEL and :LOAD-TOPLEVEL
situations requested, are once again file-compileable. (reported
by Sascha Wilde)

<<less
Download (2.7MB)
Added: 2007-07-25 License: BSD License Price:
822 downloads
AqBanking 2.9.2 Beta

AqBanking 2.9.2 Beta


AqBanking is a modular and generic interface to online banking tasks. more>>
AqBanking is a modular and generic interface to online banking tasks, financial file formats (import/export) and bank/country/currency information.
AqBanking provides frontends for Qt, KDE, GTK, and console. AqBanking uses backend plugins to actually perform the online tasks. HBCI, OFX Direct Connect, and DTAUS discs are currently supported. AqBanking is used by GnuCash, KMyMoney, and QBankManager.
Whats New in 2.2.6 Stable Release:
- On MacOS X, qt is now detected correctly.
- On Windows/mingw32, the configuration file is saved correctly.
- Adaptations on gwenhywfar changes are added.
- For the OFX DirectConnect backend, account types are now set correctly.
- The bank data files for Germany have been updated.
Whats New in 2.9.2 Beta Development Release:
- This release fixes some major bugs in the previous version.
- A new banking job for loading prepaid cards for cell phones has been added (so far implemented only for HBCI).
- Work has begun on FinTS3 support in AqHBCI.
<<less
Download (4.0MB)
Added: 2007-05-14 License: GPL (GNU General Public License) Price:
896 downloads
bankconvert 2007-06-01

bankconvert 2007-06-01


bankconvert project is a Web script that is able to convert various bank statement formats into the Czech GPC bank statement... more>>
bankconvert project is a Web script that is able to convert various bank statement formats into the Czech GPC bank statement format.

Supported input formats include Paypal QIF, RaiffeisenBank XML, and eBanka (a Czech statement in HTML).

<<less
Download (0.006MB)
Added: 2007-06-09 License: GPL (GNU General Public License) Price:
867 downloads
Finance::Bank::HDFC 0.12

Finance::Bank::HDFC 0.12


Finance::Bank::HDFC provides an interface to the HDFC netbanking service. more>>
Finance::Bank::HDFC project provides an interface to the HDFC netbanking service.

<<less
Download (0.004MB)
Added: 2006-03-01 License: GPL (GNU General Public License) Price:
1348 downloads
Finance::Bank::NL::CLIEOP03 0.01

Finance::Bank::NL::CLIEOP03 0.01


Finance::Bank::NL::CLIEOP03 is a Perl module that can generate CLIEOP03 files for Dutch banks. more>>
Finance::Bank::NL::CLIEOP03 is a Perl module that can generate CLIEOP03 files for Dutch banks.

SYNOPSIS

use Finance::Bank::NL::CLIEOP03;

$c = Finance::Bank::NL::CLIEOP03->new;

$batch = $c->batch (
account => 1234567,
sender_name => My Company,
type => Finance::Bank::NL::CLIEOP03::T_INCASSI
);

$batch->add (
amount => 25,
account_number => 1234567,
account_name => Ms. Example,
description => Taking your money
);

$c->write ( CLIEOP03 );

This module allows for easy creation of CLIEOP03 batch transaction files which can be processed by Dutch banks. CLIEOP03 files can be used for automatic debiting ("automatische incasso") or batch transfers ("verzamelgiro"). You must have a business bank account and (usually) an additional agreement with your bank for using this.

<<less
Download (0.006MB)
Added: 2007-05-24 License: Perl Artistic License Price:
894 downloads
Finance::Bank::NetBranch 0.07

Finance::Bank::NetBranch 0.07


Finance::Bank::NetBranch is a Perl module that can manage your NetBranch accounts with Perl. more>>
Finance::Bank::NetBranch is a Perl module that can manage your NetBranch accounts with Perl.

SYNOPSIS

use Finance::Bank::NetBranch;
my $nb = Finance::Bank::NetBranch->new(
url => https://nbp1.cunetbranch.com/valley/,
account => 12345,
password => abcdef,
);

my @accounts = $nb->accounts;

foreach (@accounts) {
printf "%20s : %8s : USD %9.2f of %9.2fn",
$_->name, $_->account_no, $_->available, $_->balance;
my $days = 20;
for ($_->transactions(from => time - (86400 * $days), to => time)) {
printf "%10s | %20s | %80s : %9.2f, %9.2fn",
$_->date->ymd, $_->type, $_->description, $_->amount, $_->balance;
}
}

This module provides a rudimentary interface to NetBranch online banking. This module was originally implemented to interface with Valley Communities Credit Unions page at https://nbp1.cunetbranch.com/valley/, but the behavior of the module is theoretically generalized to "NetBranch" type online access.

However, I do not have access to another NetBranch account with another bank, and so any feedback on the actual behavior of this module would be greatly appreciated.

You will need either Crypt::SSLeay or IO::Socket::SSL installed for HTTPS support to work.

<<less
Download (0.006MB)
Added: 2007-05-24 License: Perl Artistic License Price:
884 downloads
Anvil 0.0.5

Anvil 0.0.5


Anvil is a C++ library to enable developers to read, write and otherwise work with Quicken QIF4 data files. more>>
Anvil is a C++ library to enable developers to read, write and otherwise work with Quicken QIF4 data files. QIF4 files are exported text files from Quicken and account files downloaded from your bank or credit union.

We have a C++ library that uses the STL to read, write and query data. A SLang engine has been created in order to be able to test the methods. This may also prove useful for abstracting the GUI layer away from the library, but so far its just for testing.

Here are the steps for building the library:

1. Building the Library
a. cd src
b. make

2. Test
a. cd ..
b. ./test_c
c. You should see some text on the screen.
The last error message IS intentional.

3. Gui
a. cd gui/Slang
b. make

<<less
Download (0.049MB)
Added: 2006-07-17 License: GPL (GNU General Public License) Price:
1194 downloads
GnuCash 2.2.1

GnuCash 2.2.1


GnuCash is a program to manage your personal finances. more>>
Main features:
Scheduled Transactions
- You can now create recurring transactions, including automatic reminders when a transaction is due, the ability to postpone a scheduled transaction without canceling it, and the ability to specify only a limited number of transactions.
Mortgage & Loan Repayment Druid
- A guided dialogue for setting up loan payments as scheduled transactions.
Small Business Accounting Features
- Simplify managing a small business with Customer and Vendor tracking, Invoicing and Bill Payment, and Tax and Billing Terms.
OFX Import
- GnuCash is the first free software application to support the Open Financial Exchange protocol that many banks and financial services are starting to use.
HBCI Support
- GnuCash is the first free software application to support the German Home Banking Computer Information protocol, allowing German users to perform statement download and initiate bank transfers and direct debits.
Improved Import Transaction Matching
- The development of OFX and HBCI support has also resulted in an improved transaction matching system that more accurately recognizes duplicate transactions during file import.
New User Manual and Help
- A new help subsystem that focuses on how to do tasks is now available, in addition to a Tutorial and Concepts guide that gives the user background information on accounting principles and how they are reflected in GnuCash.
New Multi-Currency Transaction Handling
- GnuCash no longer requires separate currency exchange accounts to handle multiple currency transfers. Transactions can be made directly between accounts denominated in different currencies.
Redesigned Menus
- The GnuCash menus have been redesigned to conform more with the new GNOME Human Interface Guidelines.
<<less
Download (10MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
1876 downloads
Hackz 2 2.0.1

Hackz 2 2.0.1


Hackz 2 is a CLI like hacking game. more>>
Hackz 2 is a CLI like hacking game. The user types in commands. Hackz 2 is a puzzle game for Linux.
The user hacks computers and earns money this way, and then he can buy better hardware or software.
Main features:
- Borrow money from the bank.
- Buy weapons and guns to defend yourself from attacks.
- Start at level 1 and gain XP to gain higher levels.
- And a lot more to come.
Installation and Usage:
Compile with: ./compile
Start with: mono Hackz2.exe
<<less
Download (0.024MB)
Added: 2005-11-22 License: GPL (GNU General Public License) Price:
1438 downloads
ivata masks 1.0 alpha1

ivata masks 1.0 alpha1


ivata masks is a library of routines developed in Java/JSP/Struts that automatically. more>>
ivata masks is a library of routines developed in Java/JSP/Struts. They automatically create masks and lists, based on java reflection and settings specified in XML. This saves a huge amount of time.
Rather than developing input screens and lists for each value object class, you need to define just 2 screens - one for lists, the other for input masks. An XML file defines which fields should be displayed or filtered out in each, and the library automatically interrogates the value object classes to discover which fields are available for display. We use the Struts messages to automate the field labels, based on the field name as a key.
We used this approach to replace a system in development by a large UK retail bank. Before we applied this approach, the client had coded each input screen and list by hand. The unified approach dramatically reduced workload by a factor of several weeks.
Enhancements:
- This release adds new features and makes the libraries generally easier to extend.
- Debug logging was improvied throughout the libraries by using log4j.
- Maven compatibility was upgraded to version 1.1 (older versions no longer work).
- New field handing for password and long timestamp fields was implemented.
- Support for a client session scope was added.
- Filter and listener interfaces on the query persistence interface make it easier to implement flexible user rights systems.
<<less
Download (1.5MB)
Added: 2005-10-19 License: GPL (GNU General Public License) Price:
1465 downloads
FreeADSP 0.0.2

FreeADSP 0.0.2


FreeADSP is a free audio-oriented real-time DSP software. more>>
FreeADSP stands for Free Audio Digital Signals Processor and is a free audio-oriented real-time DSP software. What it does is taking a signal as input, transform it through arbitrary-disposed modules, and then putting the result back to some output (that is, for example, the same thing that regular guitar stomp boxes do).

What are these modules?

Unlike similar applications which are designed to use only one or two kinds of audio computational plugins, FreeADSP is capable of putting to work everything that could be used to do a computation (for example a circuital representation, a mathematical formula or a neural net). This is possible because FreeADSP uses external module loader plugins which know how to make things work properly.

So, what can this program do?

The main purpose of this software is processing sounds at real-time. While there are already a lot of packages around that can do it, often with some sensible limitation, FreeADSP aims at being THE program of real-time sound processing. To achive this goal its design is extremely modular, and this is what makes it capable of doing unbelivable things, at least theorically.

As said before, the possibility of using external plugins to load other stuff to process data means the possibility of using potentially everything that can do a computation, from well-known LADSPA, DSSI or VST/VSTi plugins to neural nets, also simultaneously, and in an extremely clean fashion.

The whole I/O and user interface parts are handled by external plugins too. This means again a lot more flexibility and also easier portability and integration on different OSes and/or hardware architectures (also thanks to FreeADSPs high configurability)! Furthermore an user could easily switch user interface without having to put the program and his work into the trash can.

The I/O is handled in such a generic way that one can use every kind of input or signal to interact either with modules (for example, one could use a breath control to manipulate the output volume of a fretless bass, obtaining a wind instrument-like feel) or with FreeADSP itself (start/stop processing, etc.)

Last but no least, FreeADSP also lets you manage collections of presets, eventually organised into banks and record what you play at each stage of processing.

<<less
Download (0.71MB)
Added: 2006-10-04 License: GPL (GNU General Public License) Price:
1116 downloads
QuantLib 0.8.1

QuantLib 0.8.1


QuantLib is a free/open-source library for quantitative finance. more>>
QuantLib project is aimed at providing a comprehensive software framework for quantitative finance. QuantLib is a free/open-source library for modeling, trading, and risk management in real-life.

QuantLib is written in C++ with a clean object model, and is then exported to different languages such as C#, Objective Caml, Java, Perl, Python, GNU R, Ruby, and Scheme. The QuantLibAddin/QuantLibXL project uses ObjectHandler to export an object-oriented QuantLib interface to a variety of end-user platforms including Microsoft Excel and OpenOffice.org Calc. Bindings to other languages and porting to Gnumeric, Matlab/Octave, S-PLUS/R, Mathematica, COM/CORBA/SOAP architectures, FpML, are under consideration. See the extensions page for details.

Appreciated by quantitative analysts and developers, it is intended for academics and practitioners alike, eventually promoting a stronger interaction between them. QuantLib offers tools that are useful both for practical implementation and for advanced modeling, with features such as market conventions, yield curve models, solvers, PDEs, Monte Carlo (low-discrepancy included), exotic options, VAR, and so on.

Finance is an area where well-written open-source projects could make a tremendous difference:

any financial institution needs a solid, time-effective, operative implementation of cutting edge pricing models and hedging tools. However, to get there, one is currently forced to re-invent the wheel every time. Even standard decade-old models, such as Black-Scholes, still lack a public robust implementation. As a consequences many good quants are wasting their time writing C++ classes which have been already written thousands of times.
By designing and building these tools in the open, QuantLib will both encourage peer review of the tools themselves, and demonstrate how this ought to be done for scientific and commercial software. Dan Gezelters talk at the first Open Source/Open Science conference discussed how the scientific tradition of peer review fits well with the philosophy of the Open Source movement. Open standards are the only fair way for science and technology to evolve.

The library could be exploited across different research and regulatory institutions, banks, software companies, and so on. Being a free/open-source project, quants contributing to the library would not need to start from scratch every time.

Students could master a library that is actually used in the real world and contribute to it in a meaningful way. This would potentially place them in a privileged position on the job market.
Researchers would have a framework at hand, which vastly reduces the amount of low-level work necessary to build models, so to be able to focus on more complex and interesting problems.
Financial firms could exploit QuantLib as base code and/or benchmark, while being able to engage in creating more innovative solutions that would make them more competitive on the market.
Regulatory institutions may have a tool for standard pricing and risk management practices.

The QuantLib license is a modified BSD license suitable for use in both free software and proprietary applications, imposing no constraints at all on the use of the library.

A few companies have committed significant resources to the development of this library, notably StatPro, a leading international risk-management provider, where the QuantLib project was born.
<<less
Download (2.1MB)
Added: 2007-06-07 License: BSD License Price:
871 downloads
Solid PBX SVN-trunk-r152

Solid PBX SVN-trunk-r152


Solid PBX is a multi-platform Soft Switch Class 5 software targeted for home, corporate, and operator level markets. more>>
Solid PBX is a multi-platform Soft Switch Class 5 software targeted for home, corporate, and operator level markets.
GETTING STARTED
First, be sure youve got supported hardware (but note that you dont need ANY special hardware, not even a soundcard) to install and run Solid PBX.
Supported telephony hardware includes:
- All Wildcard (tm) products from Digium (www.digium.com)
- QuickNet Internet PhoneJack and LineJack (http://www.quicknet.net)
- any full duplex sound card supported by ALSA or OSS
- any ISDN card supported by mISDN on Linux (BRI)
- The Xorcom AstriBank channel bank
- VoiceTronix OpenLine products
The are several drivers for ISDN BRI cards available from third party sources. Check the voip-info.org wiki for more information on chan_capi and zaphfc.
Enhancements:
- This is a major bugfix release with a simplified chan_h323 build process and many improvements.
<<less
Download (9.9MB)
Added: 2006-05-17 License: GPL (GNU General Public License) Price:
1255 downloads
stygmorgan 0.27

stygmorgan 0.27


stygmorgan is a musical instrument, is an Interactive Musical Workstation software emulator. more>>
stygmorgan is a musical instrument, is an Interactive Musical Workstation software emulator, fully configurable, but in fact does not produce any kind of sound, using the ALSA 1 sequencer sends MIDI messages to external sound fonts.
stygmorgan is a Linux project developed in C++ using the Fast Light Toolkit FLTK 2 and hope is very intuitive and easy to use.
stygmorgan is oriented to musical students and amateur musicians. With their chord sequencer is the fast way to create style based songs to practice.
stygmorgan means:
- sty From Style, because is capable to import many files in different Musical Style formats.
- gm General MIDI, because is released to use with a General Midi compatible sound font.
- organ Because all the Interactive Musical Keyboard Workstation, when i was young was called organs.
Main features:
- Real time tracks.
- Imports .sty, .prs, and .mid musical style file formats.
- 32 chords recognized in all the possible inversions.
- Fingered Bass, use the low note of the chord to play the bass.
- Three melody simultaneous sounds, Two chord simultaneous sounds.
- Program Change change patterns and/or sounds.
- Synchronized start when recognizes a chord.
- Solo, Mutes, Reverberation, Chorus, Volume, Pan, Program, Bank, Octave and Transpose controls for each mixer channel.
- Fully configurable for use any kind of external sound font.
- Fully editable styles, patterns, sounds, recordings.
- Chord sequencer.
- 16 tracks patterns, seven simultaneous, chords are mandatory for play tracks.
<<less
Download (2.6MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1165 downloads
GBindAdmin 0.1.5

GBindAdmin 0.1.5


GBindAdmin is an easy to use GTK+ frontend for ISC BIND. more>>
GBindAdmin is an easy to use GTK+ frontend for ISC BIND. It handles multiple domains and can switch from master to slave domain in three clicks.
It can change the domain name for entire domains and subdomains, including domain resources such as MX, A, AAAA, CNAME, and NS.
GBindAdmin project can also set up and generate secret keys for rndc and construct a chroot environment.
GBindAdmin cant be installed without giving the correct configure options.
Named will be running in a chroot environment and the default location is /var/named GBindAdmin will set up this environment for you if it is missing.
See the Autoinstall file for the various configure options.
This software also requires the following binaries:
BIND [named, rndc, rndc-confgen] mv, cp, mknod, chmod, chown and sed.
GBINDADMIN currently supports the following systems to a varying degree:
- Linux
- FreeBSD
- OpenBSD
- NetBSD
- Darwin Mac OSX
- AIX
- HP-UX
- Solaris
- SunOS
Enhancements:
- Added RNDC_CONF path configure option.
- Fixed a problem where the defined group NOBODY wouldnt be added in some cases (thanks to Jason Banks). User and group delimiters for chown are now colons. Pressing enter in the verification entry now runs the specified command.
- Fixed cases where rndc.conf could be missing (thanks to Jason Banks). All translatable strings are now utf8 aware and the entire application can be translated. Simoriah/simmy/other ops on dalnet/#linux are trolltech, useless trolls. Added Swedish translation (Magnus-swe)
<<less
Download (0.20MB)
Added: 2006-07-16 License: GPL (GNU General Public License) Price:
1198 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5