Code Monkey home page Code Monkey logo

unthrottled / acari-landing Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 1.0 5.57 MB

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

Home Page: http://acari.io

License: MIT License

HTML 5.98% TypeScript 20.39% CSS 58.09% JavaScript 2.77% Java 12.30% Dockerfile 0.41% Shell 0.05%
angular4 browsersync docker-compose gradle gridfs gridfs-stream jwt-authentication mongodb reactive-streams reactor-core spring-boot ssl tls typescript webflux webpack2

acari-landing'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);
 }
}

acari-landing's People

Contributors

unthrottled avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Forkers

shimaomao

acari-landing's Issues

Unable to Save in Prod

 java.lang.NoSuchMethodError: org.springframework.core.io.buffer.DataBufferUtils.readInputStream(Ljava/util/concurrent/Callable;Lorg/springframework/core/io/buffer/DataBufferFactory;I)Lreactor/core/publisher/Flux;
web-service_1  | 	at org.springframework.http.codec.multipart.SynchronossPartHttpMessageReader$DefaultSynchronossPart.content(SynchronossPartHttpMessageReader.java:270) ~[spring-web-5.0.3.BUILD-SNAPSHOT.jar!/:5.0.3.BUILD-SNAPSHOT]
web-service_1  | 	at io.acari.landing.project.ImageHandler.lambda$saveImage$0(ImageHandler.java:31) ~[classes!/:na]
web-service_1  | 	at reactor.core.publisher.FluxFlatMap$FlatMapMain.onNext(FluxFlatMap.java:347) ~[reactor-core-3.1.2.RELEASE.jar!/:3.1.2.RELEASE]
web-service_1  | 	at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext(FluxOnErrorResume.java:73) ~[reactor-core-3.1.2.RELEASE.jar!/:3.1.2.RELEASE]
web-service_1  | 	at reactor.core.publisher.FluxCreate$BufferAsyncSink.drain(FluxCreate.java:724) ~[reactor-core-3.1.2.RELEASE.jar!/:3.1.2.RELEASE]
web-service_1  | 	at reactor.core.publisher.FluxCreate$BufferAsyncSink.next(FluxCreate.java:655) ~[reactor-core-3.1.2.RELEASE.jar!/:3.1.2.RELEASE]
web-service_1  | 	at reactor.core.publisher.FluxCreate$SerializedSink.next(FluxCreate.java:146) ~[reactor-core-3.1.2.RELEASE.jar!/:3.1.2.RELEASE]
web-service_1  | 	at org.springframework.http.codec.multipart.SynchronossPartHttpMessageReader$FluxSinkAdapterListener.onPartFinished(SynchronossPartHttpMessageReader.java:188) ~[spring-web-5.0.3.BUILD-SNAPSHOT.jar!/:5.0.3.BUILD-SNAPSHOT]
web-service_1  | 	at org.synchronoss.cloud.nio.multipart.NioMultipartParser.partComplete(NioMultipartParser.java:630) ~[nio-multipart-parser-1.1.0.jar!/:na]
web-service_1  | 	at org.synchronoss.cloud.nio.multipart.NioMultipartParser.write(NioMultipartParser.java:437) ~[nio-multipart-parser-1.1.0.jar!/:na]
web-service_1  | 	at org.synchronoss.cloud.nio.multipart.NioMultipartParser.write(NioMultipartParser.java:370) ~[nio-multipart-parser-1.1.0.jar!/:na]
web-service_1  | 	at org.springframework.http.codec.multipart.SynchronossPartHttpMessageReader$SynchronossPartGenerator.lambda$accept$0(SynchronossPartHttpMessageReader.java:136) ~[spring-web-5.0.3.BUILD-SNAPSHOT.jar!/:5.0.3.BUILD-SNAPSHOT]
web-service_1  | 	at reactor.core.publisher.LambdaSubscriber.onNext(LambdaSubscriber.java:130) ~[reactor-core-3.1.2.RELEASE.jar!/:3.1.2.RELEASE]
web-service_1  | 	at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:108) ~[reactor-core-3.1.2.RELEASE.jar!/:3.1.2.RELEASE]
web-service_1  | 	at reactor.core.publisher.FluxPeek$PeekSubscriber.onNext(FluxPeek.java:185) ~[reactor-core-3.1.2.RELEASE.jar!/:3.1.2.RELEASE]
web-service_1  | 	at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:108) ~[reactor-core-3.1.2.RELEASE.jar!/:3.1.2.RELEASE]
web-service_1  | 	at reactor.ipc.netty.channel.FluxReceive.drainReceiver(FluxReceive.java:211) ~[reactor-netty-0.7.2.RELEASE.jar!/:0.7.2.RELEASE]
web-service_1  | 	at reactor.ipc.netty.channel.FluxReceive.onInboundNext(FluxReceive.java:326) ~[reactor-netty-0.7.2.RELEASE.jar!/:0.7.2.RELEASE]
web-service_1  | 	at reactor.ipc.netty.channel.ChannelOperations.onInboundNext(ChannelOperations.java:319) ~[reactor-netty-0.7.2.RELEASE.jar!/:0.7.2.RELEASE]
web-service_1  | 	at reactor.ipc.netty.http.server.HttpServerOperations.onInboundNext(HttpServerOperations.java:366) ~[reactor-netty-0.7.2.RELEASE.jar!/:0.7.2.RELEASE]
web-service_1  | 	at reactor.ipc.netty.channel.ChannelOperationsHandler.channelRead(ChannelOperationsHandler.java:132) ~[reactor-netty-0.7.2.RELEASE.jar!/:0.7.2.RELEASE]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:340) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at reactor.ipc.netty.http.server.HttpServerHandler.channelRead(HttpServerHandler.java:139) [reactor-netty-0.7.2.RELEASE.jar!/:0.7.2.RELEASE]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:340) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:438) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:310) [netty-codec-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:284) [netty-codec-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:253) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:340) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1379) [netty-handler-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1158) [netty-handler-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1193) [netty-handler-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:489) [netty-codec-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:428) [netty-codec-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:265) [netty-codec-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:340) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1359) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:935) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:138) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:645) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:580) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:497) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:459) [netty-transport-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:858) [netty-common-4.1.17.Final.jar!/:4.1.17.Final]
web-service_1  | 	at java.lang.Thread.run(Thread.java:745) [na:1.8.0_111-internal]
web-service_1  | 

Pre Load Appearance.

Since I am not using a CDN to serve all of my static content, it takes a bit of time before all of the scripts come back.

The page does not look so great before it loads.

It would be cool if that could be fixed.

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.