Skip to content

Instantly share code, notes, and snippets.

View jiwnchoi's full-sized avatar
๐ŸŒด
On vacation

Jiwon Choi jiwnchoi

๐ŸŒด
On vacation
View GitHub Profile
@manzt
manzt / my-ts-monorepo.md
Last active May 28, 2025 05:24
A minimal setup for TypeScript monorepo libraries

My Minimal TypeScript Monorepo Setup for ESM Libraries

After a deep dive looking up best practices for TypeScript monorepos recently, I couldn't find anything that suited my needs:

  1. Publish individual (typed) packages to NPM with minimal config.
  2. Supports fast unit testing that spans the entire project (e.g., via Vitest)
  3. Ability to have an interactive playground to experiment with the API in a real-time (e.g., via Vite)

Most solutions point to TypeScript project references,

@Pusnow
Pusnow / CS ๋ถ„์•ผ ์šฐ์ˆ˜ ํ•™์ˆ ๋Œ€ํšŒ ๋ชฉ๋ก.csv
Last active August 1, 2025 09:00
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
@samselikoff
samselikoff / chart-with-d3.jsx
Last active July 7, 2025 06:54
Diff from "Building an Animated Line Chart with d3, React and Framer Motion" https://www.youtube.com/watch?v=kPbRDn5Fg0Y
import * as d3 from "d3";
import {
eachMonthOfInterval,
endOfMonth,
format,
isSameMonth,
parseISO,
startOfMonth,
} from "date-fns";
import useMeasure from "react-use-measure";
@qpwo
qpwo / monte_carlo_tree_search.py
Last active July 13, 2025 13:10
Monte Carlo tree search (MCTS) minimal implementation in Python 3, with a tic-tac-toe example gameplay
"""
A minimal implementation of Monte Carlo tree search (MCTS) in Python 3
Luke Harold Miles, July 2019, Public Domain Dedication
See also https://en.wikipedia.org/wiki/Monte_Carlo_tree_search
https://gist.github.com/qpwo/c538c6f73727e254fdc7fab81024f6e1
"""
from abc import ABC, abstractmethod
from collections import defaultdict
import math
@dlimpid
dlimpid / hangul_without_kotex.tex
Last active September 6, 2024 04:58
ko.TeX ์—†์ด ํ•œ๊ธ€ LaTeX ๋ฌธ์„œ ๋งŒ๋“ค๊ธฐ
\documentclass[a4paper]{article}
% XeTeX ๊ด€๋ จ =================================================================
% xltxtra Package๊ฐ€ fontspec์„ ๋ถ€๋ฅผ ๋•Œ no-math ์˜ต์…˜์„ ์ฃผ์–ด ์ˆ˜์‹์—” ์˜ํ–ฅ์„ ์ฃผ์ง€ ์•Š๊ฒŒ ํ•จ.
\PassOptionsToPackage{no-math}{fontspec}
\usepackage{xltxtra}
% Western๊ณผ CJK์— ๋‹ค๋ฅธ ๊ธ€๊ผด์„ ์‚ฌ์šฉํ•˜๊ธฐ ์œ„ํ•œ ํŒจํ‚ค์ง€
\usepackage{xeCJK}