├── .gitignore ├── LICENSE ├── README.md ├── aggregate-fundingcircle.sh ├── dashboard.png ├── hledger-to-influxdb.hs ├── market-prices ├── commodities.json └── market-prices.py ├── money-age.hs └── sync.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work/ 2 | *.cabal 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/hledger-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/hledger-scripts/HEAD/README.md -------------------------------------------------------------------------------- /aggregate-fundingcircle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/hledger-scripts/HEAD/aggregate-fundingcircle.sh -------------------------------------------------------------------------------- /dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/hledger-scripts/HEAD/dashboard.png -------------------------------------------------------------------------------- /hledger-to-influxdb.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/hledger-scripts/HEAD/hledger-to-influxdb.hs -------------------------------------------------------------------------------- /market-prices/commodities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/hledger-scripts/HEAD/market-prices/commodities.json -------------------------------------------------------------------------------- /market-prices/market-prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/hledger-scripts/HEAD/market-prices/market-prices.py -------------------------------------------------------------------------------- /money-age.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/hledger-scripts/HEAD/money-age.hs -------------------------------------------------------------------------------- /sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/hledger-scripts/HEAD/sync.sh --------------------------------------------------------------------------------