Shujath

156
reputation
2

Curious being with an affinity for software engineering, design, and disruptive technologies. Binge on Anime, Youtube, and TV Series. Simply put, a Techie-Otaku.

import React from "react";
import { HumanBeing } from "world";

const Shujath = (life) => { if(isAwake){ life.work = "Software engineer @HelloFresh"; life.tech = ["react", "JS/TS", "python", ".Net", ...freelanceSkills]; life.freelanceSkills = ["computer vision","AR/VR","GLSL", "deep learning","robot app development"]; life.otherSkills = ["public speaker", "mentor"];

  life.chillTime = ["TV series", "Anime"];
  life.schedule = {
    day: {
      work: code(life.tech)
    },
    night: {
      study: code(life.freelanceSkills),
      chill: life.chillTime
    }
  };
}
else{
    sleep(true);
}   
return (
  <HumanBeing {...life} />
);

}