Coder Social home page Coder Social logo

unthrottled / vertx-wiki Goto Github PK

View Code? Open in Web Editor NEW
0.0 3.0 0.0 2.37 MB

Reactive application built on top of the Java Vertx and Javascript Angular 4 framework

Home Page: http://wiki.acari.io

License: MIT License

Java 24.53% HTML 6.55% TypeScript 21.66% CSS 44.67% JavaScript 2.38% Dockerfile 0.21%
mongo vertx angular4 reactive-programming webpack2 browsersync tls-support https-proxy docker docker-compose

vertx-wiki's Introduction


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);
 }
}

vertx-wiki's People

Contributors

unthrottled avatar

Watchers

 avatar  avatar  avatar

vertx-wiki's Issues

Version Number Indication.

As a User of this wiki, when the application loads, then I expect to be able to see the current version of the application that I am using.

Fixed Background

When I scroll, then I expect the background of the app to remain fixed!.

Last Updated By

As a user of this wiki, I need the ability to see who has made the last modification of the page I am view, so I can yell at anybody who overwrites my changes.

As a user of this wiki, I need the ability to see when the last modification happened.

Version Control

As a writer/editor/admin of this wiki, I need the ability to view past versions of this page I am looking at, so that I never loose work I have done previously.

YOU SHALL NOT PASS 403

Given an unauthorized request through any of the wiki's API, then I expect to see Gandalf telling me that I shall not pass.

Give an unauthorized request through any of the wiki's API, then I expect a http response code of 403.

Warning the user when the page is modified

As a user, when I am editing a page. I would like to know if any other users happen to have made any changes before I have saved. So that I may avoid any overwritten work.

Template Renderer API Sux

Trying to remember what the template renderer api accepts as parameters is difficult. Please refracture later.

User Role

As a new user, I want to be able to choose a role, so that I only need to choose one thing when creating an account.

Update Readme

Readme is wayyyyyyyyyyy out of date. Please bring it back up to speed.

New User Creation Removal

When registering as a new user, entering text into the username box, then clearing out all of the previously entered text prevents any further registration attempts.

Break Out Styles.

Would like to break out the styles from being embedded in the js bundles, to being a singular style sheet. This way the styles can be loaded before the chunky js packages. Leading to more color sooner.

User Permission Adjustment

As a user, I need the ability to change my permissions, so that I may do more or less things on the site.

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.