Skip to content

Instantly share code, notes, and snippets.

View indongyoo's full-sized avatar
๐ŸŽฏ
Focusing

์œ ์ธ๋™ indongyoo

๐ŸŽฏ
Focusing
View GitHub Profile
@jooyunghan
jooyunghan / chapter10-reactive.md
Last active December 17, 2018 12:28
๊ฐœ๋ฏธ์ˆ˜์—ด 10์žฅ ๋ฆฌ์•กํ‹ฐ๋ธŒ ์ŠคํŠธ๋ฆผ

10์žฅ ๋ฆฌ์•กํ‹ฐ๋ธŒ ์ŠคํŠธ๋ฆผ

์ด ์žฅ์—์„œ๋Š” ๊ฐœ๋ฏธ ์ˆ˜์—ด์„ ์›น์œผ๋กœ ์ถœ๋ ฅํ•ด ๋ณด์ž. ๊ฐœ๋ฏธ ์ˆ˜์—ด์˜ 100 ๋ฒˆ์งธ ์ค„์„ ์•Œ๊ณ  ์‹ถ์œผ๋ฉด http://ant-seq.com/100 ์—์„œ ๋ณผ ์ˆ˜ ์žˆ๊ฒŒ. ๊ทธ๋Ÿฌ๋Š” ์ค‘์— ๋ญ”๊ฐ€ ์ƒˆ๋กœ์šด ๊ฐœ๋…์„ ํ•˜๋‚˜ ์‚ดํŽด๋ณผ ๊ฒƒ์ด๋‹ค. ์ด ์žฅ์—์„œ ์‚ดํŽด๋ณผ ๊ฐœ๋…์€ ๋ฐ”๋กœ ๋ฆฌ์•กํ‹ฐ๋ธŒ ์ŠคํŠธ๋ฆผ์ด๋‹ค.

๋…ธ๋“œ๋กœ ์‹œ์ž‘

๋…ธ๋“œ(Node)๋ฅผ ์ด์šฉํ•˜์—ฌ ๊ฐœ๋ฏธ ์ˆ˜์—ด์„ ์ถœ๋ ฅํ•˜๋Š” ์„œ๋ฒ„๋ฅผ ๋งŒ๋“ค์–ด๋ณด์ž. "Hello World" ์˜ˆ์ œ๋ฅผ ์กฐ๊ธˆ ๋ฐ”๊ฟ”์„œ ๋น ๋ฅด๊ฒŒ ๊ตฌํ˜„ํ•ด ๋ณด์ž.

@rmtsrc
rmtsrc / postgres-json-cheatsheet.md
Last active June 7, 2024 05:21
Using JSON in Postgres by example

PostgreSQL JSON Cheatsheet

Using JSON in Postgres by example.

Quick setup via Docker

  1. Download and install: Docker Toolbox
  2. Open Docker Quickstart Terminal
  3. Start a new postgres container:
    docker run --name my-postgres -e POSTGRES_PASSWORD=mysecretpassword -d postgres
@Avaq
Avaq / combinators.js
Last active March 18, 2025 22:17
Common combinators in JavaScript
const I = x => x
const K = x => y => x
const A = f => x => f (x)
const T = x => f => f (x)
const W = f => x => f (x) (x)
const C = f => y => x => f (x) (y)
const B = f => g => x => f (g (x))
const S = f => g => x => f (x) (g (x))
const S_ = f => g => x => f (g (x)) (x)
const S2 = f => g => h => x => f (g (x)) (h (x))