Skip to content

Instantly share code, notes, and snippets.

View ryuheechul's full-sized avatar
💻
hacking on projects!

Heechul Ryu ryuheechul

💻
hacking on projects!
View GitHub Profile
@ryuheechul
ryuheechul / README.md
Created May 14, 2019 04:41
Prototyping software with yaml

Why?

  • Sometimes I want to develop just the logic or the flow of apps not the implementations.
  • I wanted to prototype with "simpler" code.
  • It would be nice to see working without actually writing real code yet.
@ryuheechul
ryuheechul / cncf.md
Last active May 24, 2021 11:47
docker, k8s, containers, cloud native, etc.
@ryuheechul
ryuheechul / patter-match-ish.ts
Last active October 25, 2019 08:15
My approach to deal with pattern matching types in Typescript
// Type enum (meta type)
enum Type {
Animal,
Digit
}
// types
enum Animal {
Cat,
Dog
@ryuheechul
ryuheechul / use-stream.js
Last active November 3, 2019 12:58
useStream React Hook
import { useEffect, useState } from "react";
export function useStream($) {
const [value, setValue] = useState([]);
useEffect(() => {
const subs = $.subscribe({
next: v => setValue(v),
complete: () => console.log("stream completed in useStream"),
error: e => { console.error(e)}
});
@ryuheechul
ryuheechul / 0-README.md
Last active January 17, 2020 10:31
My SpaceVim minimal personalisation

My SpaceVim minimal personalisation

  • SPC p / project fuzzy search
  • q to quit fuzzy search window after done using it
@ryuheechul
ryuheechul / terminal-buddies.md
Last active January 19, 2024 18:33
My terminal buddies
@ryuheechul
ryuheechul / devops-buddies.md
Last active March 10, 2021 11:30
my DevOps buddies
@ryuheechul
ryuheechul / macOS.md
Last active January 27, 2023 04:45
A note to enhance macOS experience