Skip to content

Instantly share code, notes, and snippets.

@jacopotarantino
jacopotarantino / calculate.js
Created April 29, 2020 03:54
Calculating _real_ income tax percentage
// 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
@jacopotarantino
jacopotarantino / trumpnames.md
Created April 13, 2021 04:19
trumpnames.md

Scone Fiddler

Wankmaggot General

Twatbiscuit

Westminster Flabby

DJ Tranny

@jacopotarantino
jacopotarantino / ci.yml
Last active June 15, 2024 20:46
Microsoft Principal CI Engineer Take Home
# .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: