This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* @description VTB24 csv to QIF converter | |
* @usage cat vtb.csv | node vtb_csv2qif.js > vtb.qif | |
* @url http://en.wikipedia.org/wiki/Quicken_Interchange_Format | |
*/ | |
var fs = require('fs'); | |
var vtb_csv = fs.readFileSync('/dev/stdin').toString(), | |
exchange_rate = 31.2575; | |
var vtb_qif = vtb_csv.replace( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update | |
sudo apt-get install -y git-core build-essential libssl-dev libboost-all-dev libdb5.1-dev libdb5.1++-dev libgtk2.0-dev | |
git clone https://github.com/bitcoin/bitcoin.git | |
cd bitcoin/src | |
make -f makefile.unix clean; make -f makefile.unix USE_UPNP= bitcoind | |