Skip to content

Instantly share code, notes, and snippets.

View mu-hun's full-sized avatar
๐Ÿ’ก
No sliver bullet

Kim Mu-hun mu-hun

๐Ÿ’ก
No sliver bullet
View GitHub Profile
@mu-hun
mu-hun / Adguard Filters Knowledge Bases Review.md
Created March 4, 2026 09:25
I have reviewed the following documentation in the AdGuard public Knowledge Base
@mu-hun
mu-hun / # Personal Projects & Contribution Details.md
Last active February 15, 2026 14:44
Personal projects and contributions

Web Extensions & Web Applications

I started building small web tools as a hobby to improve usability issues I personally experienced while using university web services. Many of these projects began as minimal solutions and evolved through real usage and long-term maintenance.

Reflation โ€“ UX-Enhancing Browser Extension for dreamy.jejunu.ac.kr

Screenshot reflation
@mu-hun
mu-hun / sketch_dec7a.ino
Created December 7, 2025 07:14
ํผ์ง€ ๋กœ์ง ์•„๋‘์ด๋…ธ ์‹œ๋ฎฌ๋ ˆ์ด์…˜
#include <Fuzzy.h> // Please install eFLL (Embedded Fuzzy Logic Library) from https://github.com/alvesoaj/eFLL
// Fuzzy
Fuzzy *fuzzy = new Fuzzy();
// FuzzyInput Temperature
FuzzySet *VeryCold = new FuzzySet(0, 0, 10, 20);
FuzzySet *Cold = new FuzzySet(10, 20, 20, 30);
FuzzySet *Good = new FuzzySet(20, 30, 30, 40);
FuzzySet *Hot = new FuzzySet(30, 40, 50, 50);

Web Frontend Programmer, Mu-Hun Kim

Senior Computer Engineering student graduating in Feb 2026, with three years of hands-on frontend engineering experience across multiple startups.

Work Experience

Web Frontend Engineer, Penxle Company (Oct 2023~Apr 2024)

I joined as a contract frontend engineer three months before the launch of

[InternetShortcut]
URL=data:text/html,<input type="color" onchange="document.bgColor=this.value">
@mu-hun
mu-hun / README.md
Last active March 9, 2025 11:53
`nvshare`: ๋ฉ”๋ชจ๋ฆฌ ํฌ๊ธฐ ์ œ์•ฝ ์—†๋Š” ์‹ค์šฉ์ ์ธ GPU ๊ณต์œ 

nvshare: ๋ฉ”๋ชจ๋ฆฌ ํฌ๊ธฐ ์ œ์•ฝ ์—†๋Š” ์‹ค์šฉ์ ์ธ GPU ๊ณต์œ 

  • ์ €๋„ ๋งํฌ: nvshare | 2024 IEEE/ACM 46th
  • ํ•ด๋‹น ์—ฐ๊ตฌ๋ฅผ GitHub grgalex/nvshare README์— ๋‚˜์˜จ ์ •๋ณด๋ฅผ ๋ฐ”ํƒ•์œผ๋กœ ๋ฆฌ๋ทฐํ–ˆ์Šต๋‹ˆ๋‹ค.

์ฝ๊ธฐ ์ „์—...

์•„๋ž˜ ์ธ์šฉ ์•„ํ‹ฐํด์˜ ์˜์ƒ ๋ฒ„์ „ ๋ฐ nvshare ๋ฐ๋ชจ: https://youtu.be/9n-5sc5AICY

I've written a Medium article on the challenges of GPU sharing on Kubernetes, it's worth a read.[^medium]

@mu-hun
mu-hun / jejuair.net.user.js
Created November 15, 2024 02:19
JejuAir login button active for Firefox
// ==UserScript==
// @name JejuAir login button active for Firefox
// @version 1
// @grant none
// @match https://www.jejuair.net/ko/member/auth/login.do*
// @run-at document-end
// ==/UserScript==
const button = document.querySelector(".button-wrap.button-wrap--login button");
button.className = "button button--primary login button--active"
@mu-hun
mu-hun / pathReslove.ts
Created June 4, 2023 06:09
Node JS API `path.resolve` implement
export default function pathResolve(...paths: string[]) {
const parsedPaths = paths.flatMap((path) => path.split('/')).filter(Boolean);
const resolvedPaths = parsedPaths.reduce((previousValue, path) => {
if (path === '..') {
previousValue.pop();
} else {
previousValue.push(path);
}
@mu-hun
mu-hun / index.ts
Created January 24, 2023 06:21
First item is constant
type A = ['-', ...number[]]
let a = ['-', 1, 2, 3, 4] satisfies A
// You can type check in playground:
// https://www.typescriptlang.org/play?#code/C4TwDgpgBAglC8UDaByAtCgNFAdHgdgK4C2ARhAE5IC61AUHQDYTBQCGCy6WUAjNgCZsAZmwAWalADObYAEspAMzkQpsOkA
@mu-hun
mu-hun / recommend-references.md
Last active February 15, 2026 14:35
Books I recommend for work ๐Ÿ“š

Software Engineering

  • The Pragmatic Programmer
  • The Mythical Man-Month
  • The Psychology of Computer Programming, Gerald M. Weinberg
  • ๋‚ด ์ฝ”๋“œ๊ฐ€ ๊ทธ๋ ‡๊ฒŒ ์ด์ƒํ•œ๊ฐ€์š” - ์ข‹์€ ์ฝ”๋“œ/๋‚˜์œ ์ฝ”๋“œ๋กœ ๋ฐฐ์šฐ๋Š” ์„ค๊ณ„ ์ž…๋ฌธ (Korean)

How to learn

Mathematical thinking and problem solving