6

As a developer with adhd, some days are just wasted and ends with the brain getting stack overflow from to much unorganized code and infinite callbacks 😂

$brain = new adhdBrain;

        while($brain.energy > 0) {

            $brain->checkSocialMedia();

            $brain->work();

            $brain->readNews();

            $brain->getAngryWithSoundsInTheOffice();

            $brain.energy--;

        }   

        public function work() {

            $brain->getAngryWithSoundsInTheOffice();

            $brain->readNews();

            $brain->code();

            $brain->readEmail();

            $brain.energy--;

        }

        public function getAngryWithSoundsInTheOffice() {

            $brain->readEmail();

            $brain->angry++;

            $brain.energy--;

        }

        public function readEmail() {

            $brain->work();

            $brain->readNews();

            $brain.energy--;

        }

        public function readNews() {

            $brain->work();

            $brain->getAngryWithSoundsInTheOffice();

            $brain.energy--;

        }

Comments
Add Comment