Loading...
Bytes is my collection of short-form posts, tips, and things I learn as I build software.
I started a new job at Ramp this week, and I quickly found out that they value the number of days since the inception of the company. What started as bit of copy/paste in a slide deck, became a core part of the company culture. Wanting to join the fun, I wrote a simple shell script to keep track of how long I’ve been at Ramp.
#!/usr/bin/env bash
company="Ramp"
start="2024-07-22"
company_start="2019-03-18"
diff() {
today=$(date +%Y-%m-%d)
With this in place, I just run days in my terminal and viola!
Today is day 2 at Ramp (day 1954)