14
kb88
8y

//run every weekday afternoon
public void workIsOver(int hoursOvertime){

int beerCount = 1;
if (hoursOvertime > 1){
beerCount++;
}

startCar();

int timeHomeMinutes = 20 + Traffic.getTimeLostStuckInTrafficToday();
if (timeHomeMinutes > 40) {
beerCount++;
}

Boolean finallyAtHome = true;

if (goToFridge.checkStock("beer") < beerCount){
Log.e("Dude","WTF?");
}
drink("beer");

while (!girlfriendAtHome){

if (stash != 0){
Joint joint = new Joint(stash);
joint.blaze();
} else {
Log.e("Dude","Seriously?");
}

startAndroidStudio();
workOnSideProject(getCurrentSideProject());

}

girlfriend.communicate();
new AsyncTask<>(thinkAboutCodingInBackground()).execute();

if (bedTime){
try {
doSomeBedroomPartying();
} catch (NullPointerException e) {
Log.w("Sorry","not today");
}

activity.finish();

}
}

Comments
  • 2
    hey I properly indented this :) received a ++ from @dfox, I'm honoured ;)
Add Comment