Skip to content

Instantly share code, notes, and snippets.

View SeungUkLee's full-sized avatar
๐ŸŒฑ
dot dot dot

Seunguk Lee SeungUkLee

๐ŸŒฑ
dot dot dot
  • Republic Of Korea, Busan
View GitHub Profile
@ssrihari
ssrihari / clojure-learning-list.md
Last active April 14, 2025 03:49
An opinionated list of excellent Clojure learning materials

An opinionated list of excellent Clojure learning materials

These resources (articles, books, and videos) are useful when you're starting to learn the language, or when you're learning a specific part of the language. This an opinionated list, no doubt. I've compiled this list from writing and teaching Clojure over the last 10 years.

  • ๐Ÿ”ด Mandatory (for both beginners and intermediates)
  • ๐ŸŸฉ For beginners
  • ๐ŸŸจ For intermediates

Table of contents

  1. Getting into the language
@Pusnow
Pusnow / CS ๋ถ„์•ผ ์šฐ์ˆ˜ ํ•™์ˆ ๋Œ€ํšŒ ๋ชฉ๋ก.csv
Last active April 14, 2025 07:37
CS ๋ถ„์•ผ ์šฐ์ˆ˜ ํ•™์ˆ ๋Œ€ํšŒ ๋ชฉ๋ก
์•ฝ์ž ํ•œ๊ตญ์ •๋ณด๊ณผํ•™ํšŒ (2024) BK21ํ”Œ๋Ÿฌ์Šค IF (2018) KAIST CS (2022) SNU CSE (2024.4) POSTECH CSE (2024.9) ํ‰๊ท  (์ •๊ทœํ™”) ํ•™ํšŒ๋ช… DBLP Key
AAAI ์ตœ์šฐ์ˆ˜ 4 O O ์ตœ์šฐ์ˆ˜ 1.00 AAAI Conference on Artificial Intelligence (AAAI) conf/aaai
AAMAS ์šฐ์ˆ˜ 2 0.20 International Conference on Autonomous Agents and Multiagent Systems (AAMAS) conf/ifaamas
ACCV ์šฐ์ˆ˜ 1 ์šฐ์ˆ˜ 0.25 Asian Conference on Computer Vision (ACCV) conf/accv
ACL ์ตœ์šฐ์ˆ˜ 4 O O ์ตœ์šฐ์ˆ˜ 1.00 Annual Meeting of the Association for Computational Linguistics (ACL) conf/acl
ACL Findings ์šฐ์ˆ˜ ์šฐ์ˆ˜ 0.20 Findings of ACL series/findacl
ACNS ์šฐ์ˆ˜ 0.10 International Conference on Applied Cryptography and Network Security (ACNS) conf/acns
ACSAC ์šฐ์ˆ˜ 2 ์šฐ์ˆ˜ 0.30 Annual Computer Security Applications Conference (ACSAC) conf/acsac
AIED ์šฐ์ˆ˜ 0.10 International Conference on Artificial Intelligence in Education (AIED) conf/aied
AISTATS ์šฐ์ˆ˜ 1 ์šฐ์ˆ˜ 0.25 International Conference on Artificial Intelligence and Statistics (AISTATS) conf/aistats
@cometkim
cometkim / tsserver.js
Last active March 12, 2021 02:08
coc.nvim + tsserver + pnpify (lbrayner/vim-rzip plugin required)
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire, createRequireFromPath} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../../.pnp.js";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
@sindresorhus
sindresorhus / esm-package.md
Last active April 14, 2025 15:55
Pure ESM package

Pure ESM package

The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.

This means you have the following choices:

  1. Use ESM yourself. (preferred)
    Use import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.
  2. If the package is used in an async context, you could use await import(โ€ฆ) from CommonJS instead of require(โ€ฆ).
  3. Stay on the existing version of the package until you can move to ESM.
@seoh
seoh / fp-curriculum.md
Last active August 15, 2023 16:18
A functional programming curriculum

ํ•จ์ˆ˜ํ˜• ํ”„๋กœ๊ทธ๋ž˜๋ฐ ์ปค๋ฆฌํ˜๋Ÿผ

ํ•จ์ˆ˜ํ˜• ํ”„๋กœ๊ทธ๋ž˜๋ฐ์— ์ค‘์ ์„ ๋‘” ์Šค์นผ๋ผ ์ฑ…๋“ค์€ ํ›Œ๋ฅญํ•œ๊ฒŒ ๋งŽ์ง€๋งŒ ์ดˆ์‹ฌ์ž๋ถ€ํ„ฐ ์ „๋ฌธ๊ฐ€๊นŒ์ง€ ๋‹จ๊ณ„๋ณ„๋กœ ๊ฐ€์ด๋“œํ•  ์ˆ˜ ์žˆ๋Š” ์ปค๋ฆฌํ˜๋Ÿผ์„ ์ถ”์ฒœํ•˜๋ ค๊ณ ํ•œ๋‹ค.

  1. ์ดˆ๋ณด์ž๊ฑฐ๋‚˜ ์Šค์นผ๋ผ ์ž…๋ฌธ์ด๋ผ๋ฉด:
  • ๋ฐ์ด๋ธŒ ๊ฑฐ๋„ฌ๊ณผ ๋…ธ์—˜ ์›ฐ์‹œ์˜ ํฌ๋ฆฌ์—์ดํ‹ฐ๋ธŒ ์Šค์นผ๋ผ(๋ฌด๋ฃŒ). ์Šค์นผ๋ผ๋ฅผ ๋ฐฐ์šฐ๋ ค๋Š” ์ž…๋ฌธ์ž๋“ค์„ ์œ„ํ•œ ์ฑ…์ด๊ณ  ์žฌ๋ฏธ์žˆ๋‹ค.
  • ๋…ธ์—˜ ์›ฐ์‹œ์™€ ๋ฐ์ด๋ธŒ ๊ฑฐ๋„์˜ ์—์„ผ์…œ ์Šค์นผ๋ผ(๋ฌด๋ฃŒ). ๊ฒฌ๊ณ ํ•˜๊ณ  ์„ฑ๋Šฅ์ข‹๊ณ  ์Šค์นผ๋ผ๋‹ค์šด ์ฝ”๋“œ๋ฅผ ์งœ๋„๋ก ๋„์™€์ค€๋‹ค. ๋‹ค๋ฅธ ์–ธ์–ด์˜ ๊ฒฝํ—˜์ด ์žˆ๋Š” ๊ฐœ๋ฐœ์ž๋“ค์„ ๋Œ€์ƒ
  1. ๋” ์‹ฌ๋„์žˆ๋Š” ๊ฐœ๋…์„ ์›ํ•˜๋ฉด:
  • ํด ํ‚ค์šฐ์‚ฌ๋…ธ์™€ ๋ฃจ๋‚˜๋ฅด ๋น„์•„๋ฅด๋“œ๋‚˜์†์˜ ์Šค์นผ๋ผ๋กœ ๋ฐฐ์šฐ๋Š” ํ•จ์ˆ˜ํ˜• ํ”„๋กœ๊ทธ๋ž˜๋ฐ($36, 2.8๋งŒ). ๊ฐ์ฒด์ง€ํ–ฅ์˜ ๋””์ž์ธํŒจํ„ด์ฒ˜๋Ÿผ ํ•จ์ˆ˜ํ˜• ํ”„๋กœ๊ทธ๋ž˜๋ฐ์—์„œ ์ž์ฃผ ์“ฐ์ด๋Š” ํŒจํ„ด์ธ ๋ฐ์ดํ„ฐ์™€ ํƒ€์ž…ํด๋ž˜์Šค๋“ค์ด ์–ด๋–ค ๊ฐœ๋…์ธ์ง€ ์ง์ ‘ ๊ตฌํ˜„ํ•ด๋ณด๋Š” ์ฑ…. ์Šค์นผ๋ผ ๋ฌธ๋ฒ• ์ •๋„๋Š” ์ตํžŒ ๊ฐœ๋ฐœ์ž ๋Œ€์ƒ.
@leoh0
leoh0 / README.md
Last active July 18, 2024 06:44
containerd๋ฅผ ์ด์šฉํ•ด์„œ standalone kubelet ์‚ฌ์šฉํ•˜๊ธฐ

standalone-kubelet-with-containerd.md

๊ฐ€๋” kubernetes ๊ฐ™์€๊ฑด ๋„ˆ๋ฌด ๋ฌด๊ฑฐ์›Œ์„œ ๋‹จ์ผ ํ˜ธ์ŠคํŠธ์— docker๋งŒ ๋„์›Œ์„œ ์šด์˜ํ•˜๋Š” ๊ฒฝ์šฐ๊ฐ™์€๊ฑธ ๊ณ ๋ฏผ ํ•˜๊ฒŒ ๋ฉ๋‹ˆ๋‹ค. ํ•˜์ง€๋งŒ ๊ทธ๋ƒฅ docker๋งŒ ๊ฐ€์ง€๊ณ  ์‚ฌ์šฉํ•˜๋ฉด ์ปจํ…Œ์ด๋„ˆ๊ฐ€ ์ฃฝ์—ˆ์„๋•Œ ๊ด€๋ฆฌํ•ด ์ค˜์•ผ ํ•˜๋Š” ๋ถˆํŽธํ•จ๊ณผ ๊ฐ™์ด ๊ธฐ๋Šฅ์„ ๋ณด๋‹ค ๋” ํ•„์š”๋กœ ํ•˜๊ฒŒ ๋ฉ๋‹ˆ๋‹ค. ๊ทธ๋ž˜์„œ ์ด ๋ฐฉ๋ฒ•์„ ์†Œ๊ฐœํ•ด ๋“œ๋ฆฝ๋‹ˆ๋‹ค.

์ด๊ฑด standalone kubelet ์ด๋ผ๊ณ  ๋ถˆ๋ฆฌ๋Š” master ์—†์ด node๋งŒ ๊ด€๋ฆฌํ•ด์ฃผ๋Š” kubelet์„ ์ด์šฉํ•ด์„œ container๋ฅผ ๊ด€๋ฆฌํ•˜๋Š” ๋ฐฉ๋ฒ•์ž…๋‹ˆ๋‹ค. ์ด๊ฑด k8s ์ดˆ๊ธฐ ๋ถ€ํ„ฐ ์›๋ž˜ ์กด์žฌํ–ˆ๋˜ ์ปจ์…‰์ด๋‚˜ ๋งŽ์ด ์•Œ๋ ค์ ธ ์žˆ์ง€ ์•Š์•„์„œ ๋ชจ๋ฅด์‹œ๋Š” ๋ถ„๋“ค์ด ๋งŽ์•„์„œ ์ด๊ธ€์„ ์ž‘์„ฑํ•ด ๋ดค์Šต๋‹ˆ๋‹ค.

์ด ๋ฐฉ๋ฒ•์„ ์ด์šฉํ•˜๋ฉด ์‹ค์ œ master ์—†์ด kubelet ๋งŒ์œผ๋กœ ์„œ๋น„์Šค๋ฅผ ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. ์ปจํ…Œ์ด๋„ˆ ์ž๋™ ์žฌ์‹œ์ž‘, port forwarding, resource limit ๋“ฑ ๊ธฐ๋ณธ์ ์ธ kubelet์—์„œ ์ œ๊ณตํ•˜๋Š” ๋‹ค์–‘ํ•œ ๋ฐฉ๋ฒ•์œผ๋กœ ์ปจํ…Œ์ด๋„ˆ๋“ค์„ ๊ด€๋ฆฌ ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.

@nattybear
nattybear / foldM.md
Last active November 16, 2020 10:13
Learn You a Haskell for Great Good 14์žฅ foldM

์ด ๊ธ€์€ ์ฑ… Learn You a Haskell for Great Good์„ ์ฝ๊ณ  ์ •๋ฆฌํ•œ ๊ฒƒ์ž…๋‹ˆ๋‹ค.

foldM

ํ•จ์ˆ˜ foldl์˜ ๋ชจ๋‚˜๋“œ ๋ฒ„์ „์€ foldM์ด๋‹ค. foldl์˜ ํƒ€์ž…์€ ์•„๋ž˜์™€ ๊ฐ™๋‹ค.

foldl :: (a -> b -> a) -> a -> [b] -> a