Skip to content
View CornerSyrup's full-sized avatar
:electron:
Monadic
:electron:
Monadic

Organizations

@hal-tokyo-cello
Block or Report

Block or report CornerSyrup

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
CornerSyrup/README.md

KleinChiu

Hello world!

Overview

CornerSyrup GitHub Streak CornerSyrup

Contact

Skills

JavaScript

Language

Platform

Infrastructure

Framework

Tool

Pattern

Service

Pinned

  1. legendary-fiesta legendary-fiesta Public

    Toy project for PWA functionality demonstration

    TypeScript

  2. TypeScript decorator demonstration w... TypeScript decorator demonstration with log and memorization feature. https://medium.com/@kleinc./typescript-decorator-and-functional-programming-f3d278e8721d
    1
    type Key = string | number | symbol;
    2
    type Tree<T> = Record<Key, T | undefined>;
    3
    
                  
    4
    const store = <T>(root: Tree<T>, [y, ...ys]: Key[]): Tree<T> =>
    5
        ys.length != 0 ? store((root[y] ??= {} as Tree<any>), ys) : root;
  3. verbose-happiness verbose-happiness Public

    Reminder Android project, with MVVM, Data Binding, Recycler View and Room

    Kotlin

  4. miniature-octo-vienna miniature-octo-vienna Public

    Demonstration of microservice with Terraform, Docker and OpenAPI

    HCL