12

Just had a fierce exchange of texts with the boss cause I couldn't make it today cause of some family issues.

To quit or not to quit is the question?

Comments
  • 7
    If(savings > hiringDelay * expenses)
    {
    safeToQuit = true;
    }
    Else
    {
    safeToQuit = false;
    }

    If(safeToQuit && aggravation > satisfaction)
    {
    quit();
    }
    Else
    {
    driveOn();
    }
  • 5
    family is more important than work, but make sure you have a backup (savings, next job) when deciding to quit
  • 2
    @RevThwack those curlies tho
  • 2
    Find a new job and then quit if you feel it's time to change the place
  • 4
    So he apologised and gave me a raise
  • 1
    @runbrun11 that escalated fast! To the good side, but still, escalated fast.
  • 1
    @RevThwack simplification:

    def shouldFlipTable = memoize(24 hours) { savings > hiringDelay * expenses && aggrevation > satisfaction }

    valid scala ;)
  • 0
    pull a Costanza - act like it never happened
  • 2
    @wasim later in the day I stopped by to hand in my resignation. He apologised and literally told me that he has no backup for me and gave me a raise.
  • 1
    @winterfruit yeah, but... he got a raise!
Add Comment