Giter Site home page Giter Site logo


Facts
__________                    ___________                  
\____    /___________  ____   \__    ___/_  _  ______      
  /     // __ \_  __ \/  _ \    |    |  \ \/ \/ /  _ \     
 /     /\  ___/|  | \(  <_> )   |    |   \     (  <_> )    
/_______ \___  >__|   \____/    |____|    \/\_/ \____/     
        \/   \/                                            
__________                 __      ________.__       .__   
\______   \ ____   _______/  |_   /  _____/|__|______|  |  
 |    |  _// __ \ /  ___/\   __\ /   \  ___|  \_  __ \  |  
 |    |   \  ___/ \___ \  |  |   \    \_\  \  ||  | \/  |__
 |______  /\___  >____  > |__|    \______  /__||__|  |____/
        \/     \/     \/                 \/                
My 3x3 3x3

#TeamNino #TeamOnoderaNasaki #TeamHimawari

Bio.ts
class Alex extends Weeb implements Hacker, Athlete {
 startWorkingDay() {
   while (shouldContinue()) {
     学习中文(); // TODO: look into finding where memory leaks are....
     const currentProject = this.getCurrentProject();
     continueWorkingOn(currentProject);
     perform(this.getCurrentWorkout());
     perform(getDayJob());
     perform(getWalkingRoute());
     continueWorkingOn(currentProject);
     watch(this.pickAnime());
     question(getCurrentLifeChoices());
     sleep(this.getDesiredHoursOfSleep());
   }
 }

 startRestDay() {
   eat(findFood());
   const animeForTheDay = this.pickAnime();
   watch(animeForTheDay);
   perform(getWalkingRoute())
   watch(animeForTheDay);
   sleep(this.getDesiredHoursOfSleep());
   // TODO: Need to find more hobbies.
 }

 private favoriteLanguages = ['TypeScript', 'Kotlin'];
 private getCurrentProject(): Project {
   const buggyProjects = getMaintainedOSSProjects()
     .filter(project => 
         project.reportedBugs()
           .filter(bug => !isFeature(bug))
           .some(bug => doICareEnoughToFix(bug))
     );
   if(!!buggyProjects.length) {
     return new BugFixProject(buggyProjects);
   } else if(!this.hasEnoughAnimeGirlThemes()) {
     return new ExasterbateAnimeAddictionProject();
   }
   const chosenLanguage = pickRandom(this.favoriteLanguages);
   return new RandomProject(chosenLanguage, pickRandomTopic(chosenLanguage));
 }

 private hasEnoughAnimeGirlThemes() {
   return isStillWeeb() && getDurationFromLastBuiltTheme()
     .isGreaterThan(Duration.of(30, DAYS));
 }

 private getCurrentWorkout(): Workout {
   switch (getCurrentDay()) {
     case Days.MONDAY: return Workout.LEGS;
     case Days.TUESDAY: return Workout.PUSH;
     case Days.WEDNESDAY: return Workout.PULL;
     case Days.THURSDAY: return Workout.SHOULDERS;
     case Days.FRIDAY: return Workout.CARDIO;
     default: return Workout.RECOVERY;
   }
 }

 private favoriteAnimeGenres =
   new Set(['Romance', 'Slice of Life', 'Isekai', 'Comedy']);
 private pickAnime(): Anime {
   while (true) {
     const nextAnime = pickRandomAnime();
     const genre = nextAnime.genre;
     if (this.favoriteAnimeGenres.has(genre) ||
       (isTrash(nextAnime) && isEcchi(nextAnime))) {
       return nextAnime;
     }
   }
 }

 private getDesiredHoursOfSleep() {
   return isWeekday() ? 7.5 : pickRandomNumberBetween(7, 10);
 }
}

Alex Simons's Projects

acari-api icon acari-api

Server Specification for my Production Portfolio.

acari-landing icon acari-landing

Former landing page project to display all of the cool things I have done!

acari-ui icon acari-ui

Landing page project to display all of the cool things I have done!

ace icon ace

Android First Person Asteroid Shooter Simulator.

blog icon blog

Dis mah blog, nothing to see here.

cat icon cat

Competitive Algorithm Training. This is just a repo to help me solve technical questions online. Nothing to see here.

circuit-breaker icon circuit-breaker

Real time application that shows off the functionality of the Hystrix circuit breaker.

demo-js-app icon demo-js-app

Application that demonstrates simple JS functionalites

demo-spring icon demo-spring

Demo project to exercise https://github.com/zd-zero/waifu-motivator-plugin

demo-theme icon demo-theme

Demo theme used to exercise Intellij IDEA theming issue.

distributed-tracing icon distributed-tracing

A Spring Boot web server suite orchestrated by Docker-Compose to display the Distributed Tracing framework of Spring Sleuth and Zipkin Stream Server.

dream-of-streams icon dream-of-streams

Example repository that contains the code examples from the Java 8 API technical presentation

exyos icon exyos

Slack Slash command application that supports all of your ASCII expressiveness needs.

flutter_demo icon flutter_demo

Project for reproducing issues with Flutter in Intellij

frugal-aws icon frugal-aws

This project demonstrates how to get the most bang for your buck when paying for your production services.

frugal-aws-ui icon frugal-aws-ui

Ever wonder how to go to production and not spend a lot of money? Look no further

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.