Skip to content

dreeves/yootles-ledger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1b68ae3 · Mar 19, 2025

History

30 Commits
Oct 10, 2017
Oct 10, 2017
Mar 19, 2025
Mar 19, 2025
Oct 10, 2017
Mar 19, 2025
Mar 19, 2025
Mar 19, 2025
Mar 19, 2025
Mar 19, 2025
Oct 10, 2017
Apr 5, 2024
Apr 5, 2024
Jul 30, 2018
Sep 20, 2023
Mar 19, 2025
Jul 25, 2018
Mar 19, 2025
Jan 10, 2017
Jul 30, 2018

Repository files navigation

Yootles

Yootles is a financial ledger system for tracking IOUs and loans between friends and family. Originally written in Scheme around 2005, it now uses PHP, JavaScript, and Mathematica to provide a collaborative ledger system with automatic interest calculations.

Historical README

Features

  • Collaborative ledger editing via Etherpad
  • Real-time balance updates
  • Automatic interest calculations
  • Per-user transaction histories
  • CSV export of transactions
  • Multiple interest rate support
  • Full transaction history view

System Requirements

  • PHP web server
  • Mathematica (for ledger processing)
  • Access to padm.us (for Etherpad integration)

File Structure

  • ledger.m - Main Mathematica script for processing ledgers
  • nightly.m - Updates transaction histories nightly
  • ledger.php - Main ledger view handler
  • yootles.php - Ledger processing endpoint
  • longpolling.php - Real-time update handler
  • yootles.js - Client-side JavaScript
  • ledger.css - Styles
  • template-snapshot.txt - Template for new ledgers

Ledger Format

; Example ledger format
account[ali, "Alice", "alice@example.com"]
account[bob, "Bob", "bob@example.com"]

iou[2023.12.25, 1000, ali, bob, "Christmas loan"]

irate[2023.01.01] = .05  ; 5% interest rate

URL Structure

  • /{ledger} - View a ledger
  • /{ledger}/transactions - View transaction history
  • /{ledger}.csv - Download CSV of transactions
  • /{ledger}/{user} - View user's transaction history

Deployment

Use the deploy script to update the live site:

./deploy.sh

Cron Setup

Required cron entries for nightly updates:

00 6 * * * $HOME/prj/yootles/fetchlist.m
05 6 * * * $HOME/prj/yootles/nightly.m

Documentation

Additional documentation available in knowledge files:

  • knowledge.md - Overview and core concepts
  • knowledge.data.md - Data storage and file formats
  • knowledge.mathematica.md - Mathematica processing details
  • knowledge.api.md - API endpoints and routing
  • knowledge.ui.md - UI components and behavior

Authors

  • Bethany Soule - Original co-author (Scheme version)
  • Daniel Reeves - Original co-author and maintainer