Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
If(savings > hiringDelay * expenses)
{
safeToQuit = true;
}
Else
{
safeToQuit = false;
}
If(safeToQuit && aggravation > satisfaction)
{
quit();
}
Else
{
driveOn();
} -
family is more important than work, but make sure you have a backup (savings, next job) when deciding to quit
-
@RevThwack simplification:
def shouldFlipTable = memoize(24 hours) { savings > hiringDelay * expenses && aggrevation > satisfaction }
valid scala ;) -
@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.
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?
undefined