Scone Fiddler
Wankmaggot General
Twatbiscuit
Westminster Flabby
DJ Tranny
| // income tax | |
| const base_income = // annual income before any tax | |
| const federal_tax_rate = // 0.xx format | |
| const state_tax_rate = // 0.xx format | |
| // property tax | |
| const monthly_rent = // dollar amount per month | |
| const property_tax_rate = 0.18 // in new jersey at least | |
| // medical tax | |
| const monthly_health_insurance = // dollar amount per month | |
| // consumption tax |
Scone Fiddler
Wankmaggot General
Twatbiscuit
Westminster Flabby
DJ Tranny
| # .github/workflows/ci.yml | |
| name: CI | |
| on: [push] | |
| jobs: | |
| setup: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| test-chunks: ${{ steps['set-test-chunks'].outputs['test-chunks'] }} | |
| test-chunk-ids: ${{ steps['set-test-chunk-ids'].outputs['test-chunk-ids'] }} | |
| steps: |