Skip to content

Instantly share code, notes, and snippets.

View ljlm0402's full-sized avatar

아구몬 ljlm0402

View GitHub Profile
@ENvironmentSet
ENvironmentSet / constraints.ts
Last active August 21, 2020 20:50
Generating eliminator for given constraint in typescript
/** If you want to know how to encoding HKTs in typescript, check this:
https://gist.github.com/ENvironmentSet/1662a140f99381bc85fd6be51ecdcbb5
Sorry for messy names, this was only PoC. **/
export interface HKT {
param: unknown;
result: unknown;
}
@ljlm0402
ljlm0402 / build.md
Last active June 26, 2023 23:40
Github Actions Workflow / 2020. 02. 28

Workflow 실행

 name: my workflow                           # Workflow 이름
 on: [push]                                  # Event 감지

 jobs:                                       # Job 설정
   build:                                    # Job ID
     name: hello github action               # Job 이름
     runs-on: ubuntu-latest                  # Job 인스턴스 환경
@kerryboyko
kerryboyko / README.md
Last active April 26, 2023 16:08
VueJS Best Practices Guide

Deverus Vue.js Style Guide

Guide for developing Vue.js applications.

v. 0.0.1

Vue.js is an amazing framework, which can be as powerful as Angular or React, the two big heavy hitters in the world of front-end frameworks.

However, most of Vue's ease-of-use is due to the use of Observables - a pattern that triggers re-renders and other function calls with the reassignment of a variable.

@tpryan
tpryan / Makefile
Created April 19, 2017 21:54
Kubernetes Makefile
BASEDIR = $(shell pwd)
RULELIST = $(shell gcloud compute forwarding-rules list --format='value[terminator=" "](name)')
include Makefile.properties
all: cluster app
app: db api frontend
# Requests a GKE cluster
cluster: