cho.sh 라이브러리
GitHub

웹으로 빚은 다이나믹 아일랜드

웹 기술로 다이나믹 아일랜드를 재현하기 위해 힘쓴 기록

🗣잔말 말고 일단 먼저 보여줘요
그럼요. 아래 검정색 타원을 클릭해보세요. 제가 현재 듣고 있거나 가장 최근에 들은 30개의 음악 중 하나가 무작위로 나타날거예요.
[Dynamic Island on the web](https://dynamic-island.cho.sh/)
리버스엔지니어링한 Apple Music API가 변경되었고, 때문에 API를 더이상 업데이트하지 않을 예정입니다.

유능한 예술가는 모방하고 위대한 예술가는 훔친다 — 그리고 이번에는 Vercel의 개발자 경험 담당 VP Lee Robinson의 아이디어 하나를 베껴보려 한다. Next.js의 각종 신기술을 활용하는 실험적이지만 간결하고 아름다운 포트폴리오로 유명한 leerob.io에는 한 가지 재미있는 기능이 있다. 자신이 현재 듣고 있는 음악이 웹에 같이 나타나는 기능이다.

ALT: leerob.io 웹사이트 하단의 모습

Now Playing — Spotify @ leerob.io

누구보다 음악적 취향이 뚜렷한 나였기에 언젠가는 이를 꼭 내 웹사이트에 구현하고 싶었다. 다만 단순하게 재현하는 수준이 아니라 무언가 기술적인 도전을 해보고 싶었다. 당시 여러 음악 서비스를 돌아가며 사용해보고 있었기에 굳이 개발을 서두르지 않은 이유도 있었다. 그런 이유로 개발을 이리저리 미루다 2022년에 이르렀다. 그러던 중 Apple이 최근 신박한 새로운 기능을 발표했다. 바로 다이나믹 아일랜드(Dynamic Island)라는 기능이다.

ALT: 다이나믹 아일랜드의 모습

화면 상단 펀치홀이 자유자재로 크기를 바꾸며 다양한 부가 정보를 표시한다.

내가 바라고 있던 기술적인 도전이었다! 이를 웹에서 정확하게 똑같이 구현해보고 싶다는 결론에 이르렀다. 몇 가지 안드로이드 전용 복제품을 인터넷에서 확인하기도 했는데, 전부 애니메이션 곡선이 부자연스러워 이런 디테일을 공부해보고 싶었다.

💡목표
웹 상에서 내가 현재 듣고 있는 음악을 보여주는 다이나믹 아일랜드 🏝 를 구현해보자.
🍯꿀팁
이 프로젝트의 [연구 기록](/B21605)도 공개되어 있다.

🛠 기술 정하기

우선 프레임워크로는 가장 익숙한 Next.js와 Tailwind를 골랐다. 문제는 애니메이션이었다. 간단한 CSS 애니메이션은 다루어 보았지만 ease-in-ease-out 이상의 복잡한 애니메이션은 다뤄보지 못했다. Framer Motion이라는 라이브러리를 알게 되어 이를 사용하기로 했다.

ALT: Framer Motion의 웹사이트

Framer Motion

🧑🏻‍🏫 애니메이션의 물리

우선 Apple의 애니메이션과 다른 모방작의 애니메이션이 왜 달라보이는지부터 이해해야 한다. 애니메이션에도 다양한 종류가 있지만, 크게 2가지로 나눌 수 있다. (최소한 Apple 플랫폼에서는 이렇게 2가지로 나누어 지원한다.) 아주 단순하게 이해하자면 다음과 같다.

Parametric Curve. 시작점과 종착점이 있을 때, 그 사이 조작점(Control Point)을 두고 그 조작점 사이를 수학 공식을 이용해 보간(interpolate)한다. 보간에 사용되는 공식의 종류에 따라 Linear Curve, Polynomial Curve, Spline Curve 등으로 나뉜다. 흔히 사용되는 Bezier Curve도 여기에 해당된다.

Spring Curve. 고전 물리학의 탄성 방정식(Hooke's law와 그에 기반한 수많은 방정식)을 이용해 경직도(Stiffness)와 제동 계수(Dampening)를 통한 물리적인 궤도를 계산한다. 더 알아보기: Maxime Heckel

애니메이션 곡선에 대해서 더 깊게 이야기하는 것은 이 글의 초점에서 벗어나니 더 자세하게 설명하지는 않겠지만, 대부분의 다이나믹 아일랜드 재현작들이 위의 Parametric Curve를 이용해 애니메이션을 제작하는 반면 (CSS에 내장되어 제공되니 가장 쉽기도 하다) Apple의 경우 현실의 애니메이션과 비슷하게 구현하기 위함인지 Spring Motion을 주로 사용한다. 이번에 사용한 Framer Motion에서도 useSpring()이라는 React Hook을 통해 이런 물리적인 움직임을 제어할 수 있다.

ts
import { useSpring } from 'framer-motion'useSpring(x, { stiffness: 1000, damping: 10 })

🛥 다이나믹 아일랜드를 향해

Source: Apple

우선 Apple의 문서를 깊이 읽어보며 이런 저런 특징들을 공부했다. 다이나믹 아일랜드는 크기에 따라 다음의 형태를 지닌다.

![Minimal: 다이나믹 아일랜드의 한쪽을 차지하는 작은 형태이다. 두 개 이상의 백그라운드 동작이 작동할 때 각각 한쪽씩 나타나게 된다.](/api/content-assets/9F7F85/2059F2.png) ![Compact: 다이나믹 아일랜드의 양옆을 차지하는 중간 사이즈이다. 단일 백그라운드 동작(음악. 타이머. 등)이 작동할 때 양 옆을 모두 차지한다.](/api/content-assets/9F7F85/421DC3.png) ![Expanded: 다이나믹 아일랜드의 최대 사이즈이다. 다이나믹 아일랜드를 길게 누르고 있을 경우 나타난다. 빨간 영역에는 콘텐츠를 표시하지 못한다.](/api/content-assets/9F7F85/D8C987.png)

더불어서 인터넷 어딘가에서 다음 사진도 확인할 수 있었다. Apple 공식 문서에서는 단순하게 Expanded라고 두루뭉실하게 표현하는 반면 이 사진에는 여러 사이즈가 동시에 나타난다.

다이나믹 아일랜드의 서로 다른 사이즈. 사진에 오타가 있는 것으로 보아 공식적인 자료는 아닌 것 같다. 참고 자료로 사용했다.

이를 반영해서 다음처럼 타입 정의를 해보았다.

ts
export type DynamicIslandSize =  | 'compact'  | 'minimalLeading'  | 'minimalTrailing'  | 'default'  | 'long'  | 'large'  | 'ultra'

그런 다음 하룻밤을 갈아넣어 (2022년 10월 16일) Framer Motion을 이용해 자연스럽게 크기 전환을 하는 방법을 알아냈다. 다음의 코드로 동작한다. 특히 stiffness와 damping 값을 가지고 많은 실험을 했다. 알아낸 값은 const stiffness = 400 그리고 const damping = 30.

tsx
<motion.div  id={props.id}  initial={{	opacity: props.size === props.before ? 1 : 0,	scale: props.size === props.before ? 1 : 0.9,  }}  animate={{	opacity: props.size === props.before ? 0 : 1,	scale: props.size === props.before ? 0.9 : 1,	transition: { type: 'spring', stiffness: stiffness, damping: damping },  }}  exit={{ opacity: 0, filter: 'blur(10px)', scale: 0 }}  style={{ willChange }}  className={props.className}>
ALT: 2022년 10월 16일 완성한 모습

2022년 10월 16일 완성한 모습

📞 전화 구현

다른 API를 붙이기 전에 처음 한 것은 전화 컴포넌트를 구현하는 일이었다. 큰 이유가 있었던 것은 아니고 애니메이션과 익숙해지기 위해서 구현해보았다. 실제로 완성된 제품을 보니 실제 Apple의 제품과 아주 닮아 마음에 들었다. 2022년 10월 20일에 완성되었다.

[Dynamic Island on the web](https://dynamic-island.cho.sh/)

🍎 Apple Music API

그 다음 필요했던 것은 Apple Music API와 연동하는 일이었다. 2021년 초에 Spotify를 이용해서 기술 시연을 완성한 적이 있다. Spotify에는 Now Playing API가 공식적으로 존재한다. 비슷하게 Apple Music도 Now Playing API가 있을 것이라고 생각했다.

![당시 IZ*ONE의 찐팬이었다... 😅](/api/content-assets/9F7F85/B81341.png) ![ALT: Spotify Now Playing API](/api/content-assets/9F7F85/15E359.png) [Spotify for Developers](https://developer.spotify.com/documentation/web-api/reference/#/operations/get-the-users-currently-playing-track)

Apple Music API 1.1이 언제 출시된 것인지 모르겠지만 비교적 최근에 Get Recently Played Tracks라는 이름으로 비슷한 API가 공개되었다.

ALT: Apple Music Get Recently Played Tracks

참고로 2년 전만 해도 API가 존재하지 않았다.

이제 필요한 것은 OAuth 2.0에 필요한 각종 토큰들을 발급 및 저장하는 일이다. Spotify의 경우 OAuth 2.0 표준을 거의 그대로 따라가다시피 했는데 Apple은 몇 가지 정보가 더 필요했다. 특히 이 Now Playing 같은 경우는 단순하게 Apple과의 인증 뿐만 아니라 사용자의 정보에 접근하는 것이다 보니 사용자의 동의 여부에 따른 권한 처리도 별도로 진행되었다. 그리고 이 모든 것이 문서화가 제대로 되어있지 않아 꽤 골치 아팠다. 우선 필요했던 것은 다음과 같다.

비행기Apple에서의 동일한 개념설명
항공기 사업을 위한 비용 처리Apple Developer 유료 계정$99
조종사 자격증Apple Developer에서 발급 받는 Apple Music KeyApple Music 관련 서비스에 내가 요청을 날릴 법적 권한이 있음을 확인한다.
항공기 운항승인 신청서Apple 서버에 요청해서 발급 받는 Apple Music Main TokenApple Music 관련 서비스에 내가 요청을 날릴 때 쓸 통행증을 발급 받는다.
탑승자가 구매하는 비행기 티켓사용자가 인증 플로우를 거쳐 발급 받는 Apple Music User Token내 서비스가 사용자 정보에 접근해도 되는지에 대한 동의를 확인한다.

이 4가지 정보들이 모두 연동되어야지 정상적으로 정보(사용자가 무슨 음악을 듣고 있었는가)를 확인할 수 있다. 이와중에 마지막 User Token은 iOS, macOS와 MusicKit on the Web 등 아주 제한적인 형태로만 사용할 수 있도록 만들어놓았다. MusicKit on the Web은 music.apple.com나 Cider, LitoMusic 등 Apple Music 웹 클라이언트에서 사용하기 위함이지 지금 이 경우처럼 자유자재로 API 요청을 진행하는 곳에 사용할 수 없다. 그런데도 Apple 문서에는 딱 저렇게 MusicKit on the Web를 사용하면 자동으로 됩니다라고만 나와있고 그 외의 경우에는 어떻게 구하는지 전혀 언급이 없다.

그럼 어떡하겠나. 리버스 엔지니어링 해봐야지. 나머지 단계들은 비교적 직관적인 단계들로 진행되었다. 연구 기록 참고.

Apple: 문서화 그런거 모르겠고 MusicKit on the Web을 통해서만 하라고~
ALT: MusicKit on the Web

MusicKit on the Web. 애플 성격에 Storybook 문서로 된 것을 보면 아직 완전 초기 베타인가 보다.

🦾 MusicKit 리버스 엔지니어링

우선 MusicKit on the Web의 기본적인 스펙을 모방하며 기초적인 웹을 만들었다.

![아무 것도 없이 인증 프로세스만 불러오는 웹페이지이다.](/api/content-assets/9F7F85/B7D25C.png) ![이렇게 Apple Music 권한 인증 화면이 나타난다.](/api/content-assets/9F7F85/4BEEDB.png)

그런 다음부터 웹페이지의 요청 헤더를 까보면 다음과 같이 media-user-token이라는 필드가 있다.

그런 다음 Postman에서 key들을 모두 채워서 요청을 날려보면 다음과 같이 JSON 응답이 돌아옴을 확인할 수 있다. 여기까지가 2022년 10월 28일까지 진행된 개발이다.

이렇게 단순하고 짧고 직접적인 과정으로 보이지만, 실제로는 며칠이 살살 녹았다 😭

사람들이 접속할 때마다 API 요청을 날리게 된다면 당연히 순식간에 API Quota를 다 쓸 것이다. 그래서 어떠한 형태로든 캐시 서버를 만들고 싶었다. 하지만 최고의 데이터베이스는 데이터베이스가 없는 것이라는 것을 명심하자.

데이터베이스가 필요 없을 때는 데이터베이스를 쓰지 마세요. 그리고 이건 생각보다 꽤 자주 해당되는 경우랍니다. 예를 들어 전세계 195개 나라 이름을 데이터베이스에 집어넣고 매번 join할 필요가 있겠어요? 그냥 config 파일에 하드코딩하고 부팅할 때 메모리에 읽어 들이자고요. 아니면, 이커머스 사이트의 전체 제품 목록을 하나의 YAML에 다 넣어버리고 서버가 부팅할 때 읽어들이면 어때요? 이것은 생각하는 것보다 훨씬 더 많은 경우에 적용할 수 있어요. It's not Ruby that's slow, it's your database

그냥 GitHub Secrets에 비밀 키를 저장해놓고 몇 분에 한 번씩 API를 요청해 GitHub에 띄워두도록 만들었다.

  • anaclumos/now-playing: What is Sunghyun listening to right now? (Apple Music)
  • raw.githubusercontent.com/anaclumos/now-playing/main/now-playing.json
이 오타 찾는데 몇 시간을 썼는지 모르겠다.

🎼 이퀄라이저

앞서 전화 컴포넌트를 완성한 것과 비슷하게 음악 플레이어 컴포넌트도 완성했다.

근데 어딘가 너무 허전했다.

바로 이퀄라이저가 없는 것이다. React에 괜찮은 이퀄라이저가 없는지 알아보다가 그냥 Framer Motion으로 이마저도 만들기로 결정했다. 몇가지 반복적 개발(iteration)의 과정 스크린샷을 첨부한다.

![ALT: FANCY by TWICE](/api/content-assets/9F7F85/566FD8.gif) ![ALT: After Like by IVE](/api/content-assets/9F7F85/F1A974.gif)
![ALT: Lavender Haze by Taylor Swift](/api/content-assets/9F7F85/1F832D.gif) ![ALT: Hype Boy by NewJeans](/api/content-assets/9F7F85/6AA1FF.gif)

이퀄라이저의 각 봉은 무작위로 길이가 결정된다. 근데 마지막 Hype Boy 예시에서도 볼 수 있듯이, 뭔가 어색한 것이 느껴졌다. 일반적으로 음악은 저음역대와 고음역대는 진폭이 작은데 반해, 완전하게 무작위로 값을 계산해서 저음역대와 고음역대에도 비슷한 진폭의 봉이 나타나서 그런 것 같았다. 그래서 각 봉마다 기준치 (baseLength) 를 정해주고 그 값에서 ±(무작위 값)을 하도록 변경했다. 마지막으로 이퀄라이저의 색깔을 앨범아트의 키 컬러(Key Color)와 동일하게 변경했다. 별도의 작업이 필요하진 않았고 Apple Music API에 그 값이 같이 포함되어 있다.

훨씬 자연스럽다.

🔎 스쿼클의 물리

아직 끝났다고 생각하면 오산이다! 이렇게 완성된 다이나믹 아일랜드도 아직 무언가 어색했다. 곡선이 날카로운 느낌이 들었다. 바로 스쿼클의 미적용 때문이다.

ALT: Squircle

출처: Apple's Icons Have That Shape for a Very Good Reason @ HackerNoon

일반적으로 borderRadius를 통해서 설정하는 테두리는 곡률이 일정하다. 이렇게 되면 곡률이 시작되는 지점에서 급격한 곡률의 변화로 인해 그 부분이 날카롭게 느껴진다. 이에 반해서 곡률을 서서히 높였다가 낮추면 훨씬 부드러운 곡선이 탄생한다.

물투 학생들을 위한 설명: 등가속도 운동이 아니라 등가가속도 운동을 한다고 생각하면 된다 (속도를 일정하게 바꾸는 것이 아니라, 가속도를 일정하게 바꾸는 것).

기벡 학생들을 위한 설명: 스쿼클은 초타원 (Superellipse)이다. 다음 공식을 만족하는 형태들이다. 여기에서 $n$은 곡률, $a$는 $x$ 축 길이, $b$는 $y$ 축의 길이이다. 수학적으로 더 깊은 내용은 Figma의 Desperately seeking squircles 문서를 참고하자.

∣xa∣n+∣yb∣n=1{\lvert{x \over a}\rvert}^n + {\lvert{y \over b}\rvert}^n = 1∣ax​∣n+∣by​∣n=1

tienphaw/figma-squircle를 이용해 SVG 스쿼클을 생성한 뒤 clipPath 프로퍼티를 이용해 다이나믹 아일랜드를 잘라내도록 만들었다.

iOS16 알림센터에서도 비슷한 버그를 봤다.

다만 애니메이션의 모든 프레임에 clipPath를 걸기 위해서는 스쿼클을 모든 프레임마다 생성해야 하는데 이렇게 되면 속도 저하의 문제가 있을 수 있었다. 다이나믹 아일랜드가 크기를 바꾸는 동안은 borderRadius를 이용해 모서리를 다듬고, 애니메이션이 끝나는 즉시 재빠르게 clipPath를 적용하도록 최적화했다.

아주 자세히 보지 않으면 알아차리기 어려워 성능과 디테일의 괜찮은 타협이라고 생각했다. 여기까지 2022년 11월 11일까지 완성한 내용이다.

자세히 보면 애니메이션이 종료되면서 모서리가 스쿼클로 다듬어진다.

💨 애니메이션 최적화

CSS에는 will-change라는 속성이 있다. 화면에 무슨 요소가 어떻게 변화할 것인지 브라우저에게 미리 알려주어 속도를 최적화할 수 있도록 미리 작업하라는 것을 뜻한다. 브라우저는 will-change가 없는 모든 콘텐츠를 애니메이션이 적용될 때마다 다시 "렌더링"(rasterize)하는데, will-change가 있으면 미리 계산된 정해진 이미지로 일단 애니메이션을 진행한 뒤 애니메이션이 완전히 종료되었을 때 렌더링을 다시 진행한다. 때문에 애니메이션이 종류에 따라 흐려보일 수 있지만, transform, scale, rotate 등의 애니메이션의 부드러움을 준다.

  • 참고: will-change - CSS: Cascading Style Sheets | MDN

다이나믹 아일랜드는 크기와 투명도 등을 주로 조절하기에 will-change를 사용하기 적합했다. Framer Motion에서는 다음 코드를 이용해 적용할 수 있었다.

ts
import { motion, useWillChange } from 'framer-motion'
// ...
const willChange = useWillChange()
// ...
<motion.div style={{ willChange }}/>

🔗 연동

마지막으로 연동에 사용할 수 있는 페이지들을 만들었다 (/embed-player, /embed-phone-call). 다른 사이트들에 Tailwind, Framer Motion 등 의존성을 추가하고 싶지 않았기에 iframe을 이용해서 연동하고 싶었다. davidjbradshaw/iframe-resizer를 이용해서 반응형 iframe을 구현할 수 있었다. Position Sticky를 사용해 특정 페이지 화면 상단에 붙어있을 수도 있도록 만들었다. 이 페이지 상단에도 붙어있을 것이다!

💭 회고

이로써 프로젝트를 모두 완성했다. 몇 가지 특별히 느낀 점이 있다.

우선 첫번째로 중장기 프로젝트를 끈기 있게 잘 진행했다. 원래도 규칙적으로 꾸준히 무언가를 진행하는 분들을 존경해왔는데, 약 한 달 반에 걸쳐 프로젝트를 완성해서 프로젝트를 뚫어내는데 성공해서 보람이 있었다. 또한 대학교 수업, 구직 활동, 사이드 프로젝트 등을 잘 저글링 🤹 해서 뿌듯했다. (아직 다 끝나진 않았지만)

두 번째 느낀 점으로, cometkim님께 특별히 감사 인사를 하고 싶다. 당근에서 인턴을 할 당시 특별한 일화가 하나 기억에 남는데, 바로 webpack으로 트랜스파일된 코드 그 자체를 뜯어가며 리버스 엔지니어링하는 것이 가능하다(‼️)는 것을 직접 보여주신 것이다. 인턴십 기간동안 정말 매콤하게 🌶 많이 배웠다. (매콤마켓 당근미니 팀 ❤️) 여하튼 그 덕분에 Apple Music API에서 막혔을 때 그냥 리버스 엔지니어링해서 뚫어내야지라는 자신감이 생겼다. 팀, 감사의 의미로 헤이캐럿 당근을 드립니다 🥕

노트테이킹과 메모의 습관도 점점 생기고 있다. 사람은 생각보다 의지력이 약하니까 환경을 바꾸라는 말이 있다. cho.sh를 노트테이킹에 최적화되어있도록 디지털 정원(또는 Extracranial Memex)을 잘 가꾼 것 같다. 몇 달 간 cho.sh에 연구 노트를 기록하며 워크플로우가 어느 정도 정형화되고 있다. 계속 노트를 꾸준히 작성하고 새로운 것들을 공부하고 싶다. 이 또한 팀(cometkim)의 Roam Research 노트테이킹 습관을 보며 많이 배웠다. 팀, 감사의 의미로 헤이캐럿 당근을 하나 더 드립니다 🥕

어쨌든 이렇게 프로젝트를 끝낸다. 모두 정말 감사합니다!

  • anaclumos/dynamic-island
  • Dynamic Island on the web
GitHub에서 편집 (새 탭에서 열림)

모든 노트

노트 3106개

  • -RSS로 한 번에 백업하기
  • -Meme 추천 시스템 개발기
  • -JS로 달력 만들기
  • -API로 크롤링
  • -컴퓨터 지연 시간 달력
  • -차세대 디지털 브레인 만들기
  • -점자로 보는 뮤직 비디오
  • -의료AI를 위한 차세대 MLOps 프론트엔드
  • -유튜브 댓글에서 한국인 찾기
  • 01웹으로 빚은 다이나믹 아일랜드 (현재 1번째에 열려 있음)
  • -웹 표준 미니앱의 어려움
  • -우아한테크캠프 3기 후기
  • -민사고 간편결제 제작기
  • -마이크로소프트에게 내용증명 받고 23만 유저 앱 삭제한 건에 대하여
  • -동영상 압축과 유체이탈
  • -대한민국 이모지 되찾기
  • -당근 인턴 일주일 후기
  • -갤럭시 천지인을 그리워하는 아이폰 유저들을 위한 키보드
  • -OpenCode Trigger MCP OAuth
  • -Kyber Matrix
  • -AGENTS.md
  • -잡스와 생존 편향 (19誠鉉)
  • -2026-03-04
  • -2026-03-02
  • -2026-02-25
  • -2026-02-24
  • -2026-02-23
  • -2026-01-25
  • -2026-01-24
  • -2026-01-10
  • -PlanetScale DB 하나로 수많은 프로젝트 호스팅
  • -iOS App Icon Design
  • -2026-02-12
  • -Harding (Font)
  • -Bagoss
  • -alacrity
  • -성현산스
  • -2026-02-09
  • -2026-02-08
  • -2026-02-06
  • -2026-02-05
  • -2026-02-04
  • -세상의 확산
  • -OpenClaw
  • -2026-02-03
  • -2026-01-29
  • -Piano 20 Minutes
  • -No Night Time Cravings
  • -No Alcohol
  • -Goongoom
  • -finished.dev
  • -biome.jsonc
  • -조잡생각
  • -2026-01-28
  • -App Icon Inspirations
  • -2026-01-26
  • -2025-08-11
  • -한국의 테크 생태계
  • -2026-01-23
  • -2026-01-22
  • -10년 뒤 어떤 문제를 해결하는 사람이 되어 있고 싶은가
  • -2026-01-21
  • -infisical
  • -2026-01-20
  • -Project Starfinder
  • -Clerk Passkey Nudge
  • -2026-01-19
  • -토스체
  • -역사의 집대성
  • -2026-01-18
  • -2026-01-17
  • -elevatorpitch.com
  • -Better Auth Organizational Schema
  • -How to fix your entire life in 1 day
  • -하루만에 삶을 바꾸는 방법
  • -2026-01-16
  • -2026-01-15
  • -최애 MCP들
  • -2026-01-14
  • -Anthropic AI Safety Fellow
  • -영어 설명충 박멸
  • -OpenAI Grove
  • -2026-01-13
  • -2026-01-12
  • -Picking Postgres DB Provider in 2026
  • -Icon Provider
  • -Grammarly
  • -Neon
  • -Hypany
  • -2026-01-27
  • -2026-01-11
  • -wallet.cho.sh
  • -2026-01-09
  • -TM과 R의 차이
  • -2026-01-08
  • -My Raycast Wrapped of 2025
  • -My Raycast Wrapped of 2024
  • -My Raycast Wrapped of 2023
  • -My Raycast Wrapped of 2022
  • -INCL
  • -바잘제트 오버엔지니어링
  • -Undefined Symbol Vtable
  • -2026-01-06
  • -2026-01-02
  • -The Get-Shit-Done Computer
  • -Clawrium
  • -울트라 르네상스
  • -빙하기 (24誠鉉-25誠鉉)
  • -네오 르네상스 (22誠鉉-24誠鉉)
  • -2026년 탕아의 맥 복귀
  • -2026-01-05
  • -2022년의 선명함
  • -은하대백과 프로토콜
  • -은하대백과 탐사
  • -은하대백과 생각하는 컴퓨터 설계
  • -은하대백과 멜트다운
  • -은하대백과 기능
  • -은하대백과
  • -2026-01-04
  • -2024-06-19
  • -Winning America
  • -Why Korean Banks Suck
  • -WeChat
  • -Vannevar Bush
  • -Universal Chat App
  • -Toss
  • -Three Words
  • -The U.S. is Homelander
  • -The Mafia Companies
  • -The Inhumane Pivot
  • -Texts (Service)
  • -Tax
  • -SVB Debacle
  • -Super App is a Universal Chat App
  • -Sourgraping
  • -SIWOOO
  • -Self-fulfilling Prophecies
  • -Self Driving
  • -Screenshot as an API
  • -Robert Oppenheimer and Jiro Horikoshi
  • -Regulation of Fake News
  • -Protocol Wars
  • -Person A3BA1A
  • -Parallel Computing's Upper Limit
  • -Palantir Gotham
  • -Palantir Apollo
  • -On National Crises and the Intellectuals — Focused on GB and KR
  • -Occam's Norelco
  • -Nuclear Fusion
  • -Metadream
  • -Memory Hierarchy
  • -Martin Shkreli의 마약 문제를 E-ACC로 해결한다는 가설
  • -Looking at the Right Metric
  • -Levi's Companies
  • -Letter to Mr. Matt Rickard on 2022-12-24
  • -Letter to Mr. Matt Rickard on 2022-12-23
  • -Krafton Way
  • -IRS
  • -IP is the new Real Estate
  • -Indian Ocean, Somali, and Anguilla Domains
  • -HCI (Human-Classics Interactions)
  • -Guillermo Rauch
  • -Generative Intelligence
  • -Frames Per Second
  • -FinTech and Justice
  • -Federated Transfer Learning
  • -Fault Tolerance
  • -Fast
  • -Downloading Any Recordings from Zoom
  • -CCPA
  • -Bubbly Solutions
  • -Born of this Land - The Founding Story of Hyundai
  • -Bootstrap
  • -Biden-Harris Administration National Security Strategy 2022
  • -Bazalgette Overengineering
  • -Bas Ording
  • -Avoid Premature Optimizations
  • -AT&T Roaming Incident Report (22誠鉉)
  • -American Bank Problems
  • -한민족의 동족상잔
  • -한민족
  • -한국의 입시와 거짓된 명예
  • -학자 및 직계 가족의 의료보장제
  • -젠리의 성공 공식
  • -일본 과학기술 총력전
  • -이완용
  • -외할머니의 코리안 사이버펑크
  • -앰비언트 컴퓨팅을 향해
  • -雅號
  • -誠鉉
  • -선진국과 주민등록번호
  • -서당개 3년이면 풍월을 읊는다
  • -새로운 부동산은 지적 재산이다
  • -벌금과 물가
  • -민사고
  • -미국물
  • -라즈베리 파이로 스마트 오디오 시스템 만들기
  • -도로명주소
  • -누군가는 온갖 어려움을 무릅쓰고 반드시 성취해야 하는 프로젝트이다
  • -너 주식 해
  • -국내 은행 서비스가 나쁜 이유
  • -국가적 위기와 지식인에 대해 — 영국과 한국을 중심으로
  • -공기 청정 비행선
  • -경제 개발의 길목에서
  • -감세와 벌금 강화를 통한 국가 신경영 모델의 독자 연구
  • -간판법
  • -2024-05-19
  • -2024-04-14
  • -2023-08-22
  • -2023-04-12
  • -2023-04-10
  • -2023-02-16
  • -2022-07-05
  • -2022-06-14
  • -2022-06-10
  • -16세 수능론
  • -Welcome
  • -관능적 경탄
  • -개성은 쟁취하는 것
  • -Zenly Playbook
  • -Zenly 4.0 Design
  • -Yuncheng Wu et al. Privacy-Preserving Vertical Federated Learning for Tree-based Models
  • -You can do everything on computers but you really should not
  • -Yang Liu et al. Vertical Federated Learning
  • -Yang Liu et al. Asymmetrical Vertical Federated Learning
  • -Xinjian Luo et al. Feature Inference Attack on Model Predictions in Vertical Federated Learning
  • -Xcode Cloud
  • -Xcode
  • -WWDC
  • -WidgetKit
  • -Web3
  • -Watchings
  • -von Neumann architecture
  • -Vocab
  • -Vitest
  • -Vitess
  • -Vertical Federated Learning
  • -Vector Graphic
  • -Updating Listmonk
  • -Universal Approximation Theorem
  • -United States
  • -Unified Korea
  • -Transactional Globe
  • -TourScout Identity Management Development Proposal
  • -Toss Product Sans
  • -ToolbarItem
  • -TODO
  • -TipKit
  • -Tianyi Chen et al. VAFL a Method of Vertical Asynchronous Federated Learning
  • -The Paradoxical Moon Philosophy
  • -The Empires of the Future are the Empires of the Mind
  • -Text Message
  • -SwiftData
  • -Swift Macro
  • -StoreKit
  • -Stock
  • -Stale While Revalidate
  • -Sparkle Button
  • -Social Engineering
  • -SOC 2
  • -Smart Stack
  • -SKAdNetwork
  • -Siwei Feng et al. Multi-Participant Multi-Class Vertical Federated Learning
  • -SIMD
  • -Sign in with Apple
  • -Shengwen Yang et al. Parallel Distributed Logistic Regression for Vertical Federated Learning without Third-Party Coordinator
  • -Setting different images for Light & Dark mode
  • -Setting different fonts by language in CSS
  • -Server-side Rendering
  • -SEOCHO Stack (2025)
  • -Sensitive Content Analysis Framework
  • -Senior Levels are not Translatable
  • -Sending Notifications on Chrome Extension
  • -Second Brain
  • -Search AI와 인터넷의 한국어
  • -ScreenCaptureKit
  • -Reduced Motion
  • -Readings
  • -Qiang Yang et al. Chapter 5 Vertical Federated Learning
  • -PyTorch
  • -Pyrrhus and Cinéas
  • -Put Option
  • -Providing DOM API to Worker Threads
  • -Project PIRI 🪈: Programmatic Interlingual Resource Integration
  • -Project PEOPLE
  • -Project Now Korea
  • -Project Heimdall Table Structure
  • -Project Heimdall
  • -Project Ganymede
  • -Project Fiesole
  • -Programmatically Scroll
  • -Products Evolves Barely Enough to Solve Inconveniences
  • -Privacy Supply Chains
  • -Privacy Policy for Bing Chat for All Browsers
  • -Privacy Manifest
  • -Prisma Accelerate
  • -Priority Queue
  • -Preload vs Prefetch
  • -Polymath
  • -Polar.sh
  • -Playings
  • -PlanetScale
  • -Perverse Incentive
  • -Personal Finance AI
  • -Person ED7526
  • -Person ECC2CB
  • -Person E7CFC5
  • -Person A480C6
  • -Person 88B488
  • -Person 5DBDAE
  • -Person 392196
  • -Person 1E6ABA
  • -Person 1B5A5B
  • -Penultimate
  • -Party Planner
  • -Para Bellum
  • -oss/acc
  • -Orion Tube
  • -Optimistic Nihilism
  • -OpenBB
  • -Open Source vs Source Available
  • -One Click Subscribe on Everynews
  • -Nudge
  • -Nuclear Fusion Molecule 3D Printer
  • -Nuclear Fusion Edible Capsule
  • -Neuroplasticity
  • -Nepotism
  • -Neon Genesis Evangelion
  • -NavigationStack
  • -NavigationSplitView
  • -Monte Carlo and Las Vegas Algorithm
  • -Monte Carlo Algorithm
  • -Mohnish Pabrai Interview
  • -ML
  • -Mini App
  • -Migrating Project Aldehyde to FlightControl (February 24誠鉉)
  • -Microservices Architecture
  • -Microeconomics
  • -MetroPunk
  • -Meta (Company)
  • -Memex
  • -Mastodon
  • -Master Detail
  • -Malthusian Trap
  • -Mail
  • -Macroeconomics
  • -Lunit AutoML Engineer JD
  • -Lottie
  • -Lost Futures A 19th-Century Vision of the Year 2000
  • -Limit Access for Photos
  • -Law of Goodhart
  • -Law of Campbell
  • -Las Vegas Algorithm
  • -Korea to Global by Kyum Kim
  • -Knoah AI
  • -Kang Wei et al. Vertical Federated Learning, Challenges, Methodologies and Experiments
  • -jscpd
  • -Jose Luis Ambite et al. Secure & Private Federated Neuroimaging
  • -Jeff Bezos
  • -JavaScript Arrow Functions vs JavaScript Functions
  • -Jasonette
  • -Jaccard Distance
  • -Is Starbucks the Biggest Drug Dealer
  • -iOS Style Toggle in CSS
  • -Internet Computer
  • -Inquiry for Hypany Template
  • -Inliner
  • -iMessage App
  • -Ideas are worthless
  • -Humane Ai Pin
  • -http 없는 http 서버 만들기
  • -HTMX
  • -HTML 텍스트 위에 덧말 강조점 쓰기
  • -Horizontal Federated Learning
  • -Homo Photosynthesis
  • -Hinge Fund
  • -Heimdall Pro Open Alpha
  • -Hash Map
  • -GrammarlyGO
  • -Grammarly Experimentation Platform Overview
  • -Google Pizza Box
  • -Generative AI
  • -Gaussian
  • -GANGNAM (2024)
  • -Game Porting Toolkit
  • -Funeral Playlist
  • -Floyd Cycle Finding Algorithm
  • -FlightControl
  • -First 1000
  • -Finding out Ghost version with JS
  • -Finance
  • -File Over App
  • -Feedforward Neural Network
  • -Facebook Messenger
  • -Exquisite Geometric Nature of the Universe
  • -Explode
  • -Ethereum RPC as a Service
  • -Edge Computing
  • -Economy
  • -Economic Development
  • -E2E testing
  • -Dopamine Detox
  • -DOJ v.s. Apple - Super Apps
  • -Doheny East Asian Book Stacks
  • -Django Rest Framework Database Query Builder Does Not Stable Sort
  • -Diminishing Cost of Service
  • -Dim Flashing Lights
  • -Did Bondee Really Suddenly Rise
  • -Developing Review Notes for Obsidian
  • -Delete All YouTube Watch Later and Liked Videos
  • -DeepL vs. GPT 3.5 vs. GPT 4 벤치마크
  • -Decoy Effect
  • -Databricks AI Summit 2023 Block Session
  • -Data Preservation
  • -Custom Workout API
  • -CSS에서 언어마다 다른 글씨체를 설정하는 방법
  • -CSS Inject
  • -Creating Next Keyboard Button
  • -Crawler
  • -CoreMotion API
  • -Cookie Licking
  • -containerBackground
  • -Computational Theory
  • -Commonplace Book
  • -Cohere Rerank
  • -Cloudflare Worker
  • -Checkmark
  • -Centering
  • -Catastrophic Forgetting
  • -Case-Sensitivity
  • -Call Option
  • -Book Scanning
  • -Blitzscaling
  • -Bitmap Graphic
  • -Biome
  • -Believer Plan
  • -AWS Fargate
  • -AWS CodeBuild
  • -AVCapture
  • -Avatar: The Last Airbender
  • -Attention Settings
  • -ArXiv
  • -Apple Newsroom 서체 따라하기
  • -App Store
  • -App Intents
  • -Antipreneur
  • -anaclumos
  • -Alternative
  • -Airship
  • -AI 단톡방
  • -Agricultural Technology
  • -Adobe After Effects
  • -Adding a Verified Mark on Apple Mail and Gmail
  • -한자
  • -한반도
  • -한민족의 멸종 방어
  • -한국통사
  • -하얼빈
  • -하늘땅사람 업데이트 기록
  • -하늘땅사람 개발 기록
  • -초상권 vs 저작권
  • -지름길과 돌파구 (15誠鉉)
  • -중국어
  • -조디슨 (11誠鉉)
  • -인터넷 공사 (20誠鉉)
  • -예맥
  • -야광봉 (14誠鉉)
  • -시공간적 연속성 (19誠鉉)
  • -시간 횡령 (12誠鉉)
  • -水適穿石
  • -소셜엔지니어링 금지법
  • -성현적 발상
  • -새로운 4대 사회악
  • -브라우저 콘솔에 경고 문구 띄우는 방법
  • -불가사리 (23誠鉉)
  • -북한
  • -본디는 사실 혜성이 아니다
  • -방송부 (13誠鉉-14誠鉉)
  • -반주 구하고 싶은 노래들
  • -박스상자 (12誠鉉)
  • -민사고 앱
  • -미지의 외계행성 (16誠鉉)
  • -물총싸움 (14誠鉉)
  • -디지털 브레인과 개발에 대한 질문 편지 (24誠鉉 2월)
  • -동아일보 1926년 2월 13일 이완용 사망 기사 검열 처리에 대한 사건
  • -도고상인
  • -당근 CEO Gary에게의 발표
  • -네오 코리안 르네상스
  • -까리
  • -기술 벨에포크 (20誠鉉-21誠鉉)
  • -기술 발전의 속도
  • -기술 르네상스 (18誠鉉-20誠鉉)
  • -글 10,000장 써서 해결 안 될 문제는 정말 없는가
  • -국기 색동저고리
  • -과거의 영광 (16誠鉉-18誠鉉)
  • -건강한 한국 토착 신앙
  • -3-SAT
  • -2025-09-19
  • -2025-09-10
  • -2025-09-06
  • -2025-09-04
  • -2025-09-01
  • -2025-08-31
  • -2025-07-09
  • -2025-04-28
  • -2025-04-22
  • -2025-04-16
  • -2025-04-15
  • -2025-04-12
  • -2025-04-10
  • -2025-03-30
  • -2025-02-03
  • -2024-12-23
  • -2024-07-11
  • -2024-03-27
  • -2024-01-25
  • -2023-12-24
  • -2023-09-21
  • -2023-09-08
  • -2023-07-18
  • -2023-07-17
  • -2023-07-14
  • -2023-07-11
  • -2023-07-03
  • -2023-06-30
  • -2023-06-28
  • -2023-06-21
  • -2023-05-06
  • -2023-05-05
  • -2023-05-04
  • -2023-05-02
  • -2023-04-13
  • -2023-03-29
  • -2023-03-24
  • -2023-02-26
  • -2022-10-25
  • -2022-10-17
  • -2022-10-14
  • -2022-10-11
  • -2022-08-03
  • -2022-07-19
  • -2016년 12월 5일 민족사관고등학교 교장 사임 사건
  • -0141 Linked List Cycle
  • -useIsClient vs useIsMounted
  • -The Techno-optimist Manifesto
  • -sssss
  • -Shopify Analyzes CSS Frameworks
  • -N8N 유니버스
  • -Menu Bar Spacing
  • -MAGI
  • -Is there any
  • -INCL이란
  • -INCL의 구성
  • -INCL과 스팟 인스턴스
  • -Hacking SEOs
  • -eSIM으로 변경할 때 입력하신 핸드폰은 온라인 개통이 불가능한 핸드폰이라고 나타난다면
  • -이행 장치
  • -역사의 종말
  • -나락 탐지
  • -기술낙관론자 선언문
  • -30-Day Tweet Test (Harry Stebbings)
  • -2025-09-13
  • -2025-09-07
  • -2025-08-16
  • -Wolfram Alpha
  • -2025-09-15
  • -Enduring Question of Cicada
  • -Accessaurus
  • -2025-01-22
  • -2024-01-04
  • -Zod discriminatedUnion vs union
  • -Willpower
  • -Why is Swift String Manipulation like that
  • -Wayland
  • -Wayfinding with AI Pin
  • -Watch is the Greatest Dumb Phone
  • -Virtual DOM
  • -Vercel Incident Report (23誠鉉)
  • -Using an iPad as my Ebook
  • -ULID
  • -Towards Ambient Computing
  • -Tools Must Vanish
  • -Ticket Bounty Model
  • -Tian Li et al. Federated Learning Challenges, Methods, and Future Directions
  • -Things (3D)
  • -Tech Now Pay Later
  • -taintObjectReference
  • -Tailwind
  • -Symbol (Computer Systems)
  • -Swift String 조작은 왜 그 모양인가
  • -Swift
  • -supernpm
  • -Supergravity Products
  • -Sudden Rise of Bondee
  • -Stephan Ango
  • -Squircle
  • -Spirits do not Inherit
  • -Spacial Cognition
  • -Solar
  • -Small yet Powerful
  • -Shortcuts
  • -SHAP
  • -Self-hosted SaaS Alternatives
  • -Search AI
  • -Saturn (Service)
  • -Resume
  • -Repeated Designs
  • -Renaissance
  • -Remote Procedure Call
  • -Real Exams
  • -Rauno
  • -Python vs C++ (May 2024)
  • -Python
  • -Proposal of Research 2023-01-10
  • -Project: Day One Exodus
  • -Project PIRI Initial Proposal
  • -Project DOGO
  • -Project DANSO 🪈: Document Abstract Notation for Semantic Operations
  • -Project Core ML Inference
  • -Programmable Web
  • -Product Hunt
  • -Processes and Threads
  • -Preprocessor
  • -Powerfully Powerless Tools
  • -PNG
  • -Photoshop for Text
  • -Petersburg
  • -Personal Training Corpus
  • -Person 648442
  • -PaLM 2
  • -Pagemate
  • -p-value Hacking
  • -P vs NP
  • -Optimistic Nihilist
  • -OpenAI가 새로운 테크 리바이스로 등극하다
  • -OpenAI enthroned as the Levis of Tech
  • -Oneday
  • -One Bit Display
  • -One and Only WebExtension
  • -One and only
  • -Nuclear Fission
  • -Node.js 앱을 AWS EB에서 Heroku로 옮기기
  • -No function expr in JS with GritQL
  • -New York City
  • -Neo ArXiv
  • -N-grams Language Detection
  • -Musk-Twitter Incident
  • -Multiclass Classification
  • -Mojo
  • -MLX vs GGUF
  • -Migrating Node.js apps from AWS EB to Heroku
  • -METI Engine
  • -Meta Theme Color for Spacial Cognition
  • -mem-isolate
  • -Maximum Likelihood Estimation
  • -Limitless Day One Review
  • -Library of Babel
  • -Letter to the Heptabase Team on 2022-10-11
  • -Letter to Mr. Matt Rickard on 2022-12-21
  • -Letter to Mr. Matt Rickard on 2022-11-28
  • -Letter to Mr. Gustav Ekerot on 2023-02-24
  • -LavaLab Cohort of Spring 2023
  • -Laplace's Demon
  • -Labor Illusion
  • -Knowledge Base
  • -Keystone.js
  • -Jumpsite
  • -Job Offer
  • -Interactive Articles
  • -In search of my domain
  • -Improving Cache Average Access Time
  • -Implementing Karatsuba Algorithm in Python
  • -Imagining WebNPU API
  • -IDOL Stack
  • -HQ Proximity
  • -How to Build Software like an SRE
  • -hn.cho.sh 개발 기록
  • -Gumroad
  • -Groupthink
  • -Great Schism
  • -Grandma's Koreapunk
  • -Grammarly Work Note 2023-06-01
  • -GitHub Admonition
  • -Getting Verified on Gmail
  • -Generative Databases
  • -Generalist
  • -GDPR
  • -Finally, Apple Pay in Korea
  • -Feature
  • -Exhalation
  • -Evergreen notes
  • -Eventually, Diligent Immatures build the Future
  • -Era of Invites
  • -Entropy
  • -Engine Equation
  • -Dynamic Island on the Web
  • -Do not Hallucinate
  • -Dilemmas of Technopreneur
  • -Demise of Chatbots in 2017
  • -Databricks AI Summit 2023 Databricks Session
  • -Curve Fitting for Charts
  • -CS585 Final
  • -CS572 Search Engines
  • -Cross-Platform AirDrops
  • -Cosmic noises of life
  • -Cool Generative AI Applications
  • -CMS
  • -Clarity
  • -ChatGPT is a Blurry JPEG and We Need That
  • -ChatGPT
  • -CELLO (Product)
  • -CBOR
  • -CARC
  • -Canary Trap
  • -CalliFontia
  • -Bump
  • -Buffer Overflow Attacks
  • -Broken Feedback Loop
  • -Boring Technologies
  • -blank=True vs null=True in Django
  • -Binomial Theorem
  • -Bing Chat for All Browsers in Japan
  • -Bento Grid
  • -Battle of Flow and Asana
  • -Bad Interview Experience with Replo
  • -Backdrop Build Week 1 Update
  • -AutoSCOPE란
  • -As We May Think
  • -Are Computers Psychotropic Substances
  • -App Clips
  • -Apache Kafka
  • -Anti-lock Breaking System
  • -AMR
  • -Almost Monospaced
  • -Alexander Obenauer
  • -Aldehyde Outage (January 23誠鉉)
  • -AI는 고가 노동부터 점령한다
  • -AI replaces expensive jobs first
  • -AI Note Generators
  • -Agentic Fleets
  • -After Steve
  • -Aesthete
  • -Action Required SaaS
  • -Across the Sprachraums
  • -Absolute Mode
  • -A Massive Mystery
  • -효과적 가속주의
  • -프로젝트 어덕행덕
  • -컴퓨터는 향정신성 약물인가
  • -졸업을 앞둔 중학교 3학년들에게
  • -조성문의 블로그
  • -월급만큼 중요한 것은 자존급이다
  • -엔진 방정식
  • -아웃 오브 사이트가 항상 사람을 멀게 하는 것은 아닙니다
  • -식영부원의 관점에서 바라본 치킨데이
  • -바이올린 켜면 바이올레이션
  • -미래는 결국 미성숙한 우리가 만들어낸다
  • -르네상스
  • -기술 할부 결제
  • -기숙사 생활과 방 배정
  • -긍정적 허무주의자
  • -국제 계열과 계열 변경 이야기
  • -공강에서 보내는 공강 활용법
  • -강력하게 미약한 도구들
  • -강기업
  • -800km 밖에 못 가는 이메일
  • -2025-02-26
  • -2024-09-11
  • -2024-07-17
  • -2024-07-12
  • -2024-07-04
  • -2024-06-27
  • -2024-01-16 Search Engine
  • -2024-01-05
  • -2023-12-03
  • -2023-06-14
  • -2023-03-03
  • -2023-03-02
  • -2023-02-24
  • -2023-02-21
  • -2023-02-17
  • -2023-02-02
  • -2022-12-28
  • -2022-12-24
  • -2022-11-30
  • -2022-11-14
  • -2022-10-21
  • -2022-10-19
  • -2022-10-18
  • -2022-10-16
  • -2022-10-13
  • -2022-09-30
  • -2022-09-29
  • -2022-08-09
  • -2022-08-01
  • -2022-07-20
  • -2022-07-18
  • -2022-07-11
  • -2022-07-06
  • -2022-06-28
  • -2022-06-26
  • -0542 01 Matrix
  • -Written 100% By A Human
  • -Project
  • -Hypany Interview with Dohu
  • -나
  • -2025-08-25
  • -2025-07-22
  • -ANN
  • -2025-08-23
  • -2025-08-21
  • -Project MarkRight
  • -Microsoft's Story Format
  • -2025-08-14
  • -2025-08-12
  • -2025-08-10
  • -2024-08-20
  • -2024-08-02
  • -2024-07-31
  • -Think like a farmer
  • -NixOS Framework Laptop AMD AI 300 Don't Sleep
  • -2025-08-06
  • -2025-07-29
  • -2025-07-28
  • -2025-07-18
  • -Overlay Scrollbars in Linux Chromium
  • -Friend.com Mayhem
  • -2025-07-08
  • -Zen browser no padding
  • -Stripe Atlas
  • -2025-07-07
  • -HN Broadcast
  • -2025-08-13
  • -2025-07-06
  • -2025-07-05
  • -2025-07-04
  • -2025-07-03
  • -2025-07-01
  • -2025-06-30
  • -2025-06-27
  • -2025-06-26
  • -2025-06-25
  • -2025-06-20
  • -2025-06-19
  • -2025-06-17
  • -2025-04-26
  • -2025-03-04
  • -2025-02-13
  • -2025-02-12
  • -Pitch Places
  • -2025-07-02
  • -Very Good Photo Backup Service
  • -Project Horcrux
  • -Extracranial.com
  • -SQL Nuke
  • -Everynews is Nigh
  • -every.news
  • -Emoji
  • -2025-06-29
  • -2025-06-04
  • -1Password Quick Access On Linux
  • -Storing sensitive data in iOS Apps
  • -React God
  • -Cosmoe
  • -Accessing Remote Jupyter at USC ISI
  • -일일일
  • -2025-06-24
  • -NixOS Certificate Verify Failed Unable to Get Local Issuer Certificate
  • -M2E Testing
  • -2025-06-18
  • -Project Democratools
  • -Sukyong Hong Interview
  • -2025-06-16
  • -NixOS
  • -2025-06-15
  • -2025-05-27
  • -Running Prisma on NixOS
  • -2025-06-13
  • -2025-06-10
  • -2025-06-09
  • -2025-06-08
  • -Subroutine
  • -Coroutine
  • -2025-06-03
  • -Positional Encoding
  • -Coscientist
  • -2025-05-29
  • -2025-05-28
  • -service diagram generator
  • -SCOPE란
  • -2025-05-26
  • -2025-05-25
  • -2025-05-22
  • -2025-05-21
  • -2025-05-20
  • -Terminal, Shell, TTY, and Console
  • -Tailwind CSS 톺아보기
  • -Open API Hono
  • -Geekbench
  • -Django Fail Fast
  • -2025-05-19
  • -2025-05-16
  • -2025-05-15
  • -Vercel node modules cache
  • -Sunghyun's OS
  • -No preset version installed for command yarn
  • -2025-05-13
  • -WWDC Scholarship
  • -WslRegisterDistribution Failed
  • -WebAssembly
  • -Vertex Buffer
  • -University of Southern California
  • -Try Removing
  • -Python Multiprocessing
  • -PS5 계정과 국제화
  • -Person 57E05E
  • -Obsidian 과거의 오늘
  • -Linkflags
  • -Limerence
  • -LaTeX
  • -LAH Case Study
  • -Karrot NX Team Mission Statement
  • -Journal Everyday (Jan-Feb 24誠鉉)
  • -Jog 25 minutes (Jan-Feb 24誠鉉)
  • -Intl.DurationFormat
  • -Health
  • -Grammarly Work Note 2023-06-07
  • -Grammarly Work Note 2023-05-25
  • -Git Signing on Remote Server
  • -Font Features
  • -Federated Machine Learning
  • -FE in Python
  • -Conditional Compilation
  • -Automattic의 Beeper 인수
  • -AI로 변할 세상에 필요한 것
  • -한자 타자기
  • -한민족은 해적되었다
  • -코리안 르네상스
  • -체스터턴의 울타리
  • -창의는 평온에서 나온다
  • -지구 끝의 온실
  • -중국인
  • -중국
  • -조선보다는 고려, 고려보다는 고구려
  • -일본인
  • -일본어
  • -일본
  • -인공지능 번역의 한국어-대한민국 편향
  • -오직 가지고 싶은 것은 드높은 문화의 힘이다
  • -에밀레 성장 모델
  • -어둠의 앱스토어
  • -서울
  • -사회과부도
  • -사발통문
  • -빚 무서우면 장사를 어떻게 하지
  • -불가사리 재단
  • -부적
  • -벨로퍼트
  • -방송 장비 담당자로 할 일
  • -묵찌빠
  • -무교
  • -딱 봐도 조성현
  • -대한민국의 저출산
  • -대만
  • -노래 vs Play
  • -금동대융합로
  • -글감
  • -공약 미이행 처벌
  • -2025-05-11
  • -2024-08-09
  • -2024-07-28
  • -2024-07-01
  • -2024-06-28
  • -2024-05-23
  • -2024-04-29
  • -2024-02-13
  • -2024-02-01
  • -2024-01-26
  • -2023-10-12
  • -2023-09-10
  • -2023-09-07
  • -2023-09-05
  • -2023-08-24
  • -2023-08-21
  • -2023-08-18
  • -2023-07-30
  • -2023-07-28
  • -2023-07-06
  • -2023-06-23
  • -2023-03-11
  • -2022-12-12
  • -2022-12-11
  • -pip install . vs pip install -e .
  • -nullish vs optional vs nullable in Zod
  • -Format and Lint Python
  • -Docker Compose Localhost
  • -2025-05-09
  • -2025-05-08
  • -Exclude Gitignored Files from VS Code Sidebar
  • -Blocking Screenshot
  • -2025-05-07
  • -Everynews Manifesto
  • -Alpine
  • -2025-05-02
  • -2025-04-30
  • -Stripe
  • -Clop
  • -Zero
  • -XLR8
  • -Xcode Clear Cache
  • -WSGI
  • -Workplace Search
  • -Work Note
  • -Wope
  • -Why are Hard Drives made in Gigabytes, not Gibibytes
  • -when I was young
  • -weird
  • -Web Scheduler
  • -War Against Short Forms
  • -Wael AbdAlmageed
  • -VoidZero
  • -Virtual Reality
  • -Video Editor
  • -Video AI
  • -Vicarious
  • -Vibe Coding Prompts
  • -Vibe Coding
  • -Vesting
  • -Valet Parking
  • -v0 for iOS
  • -uv (python)
  • -UUID
  • -UTM
  • -Use VS Code for Commit Messages
  • -URI
  • -Upsert
  • -United Kingdom
  • -Uniform Distributions (Discrete)
  • -Unexpected number value in conditional. An explicit zero NaN check is required
  • -Uncertainty Principle
  • -Twitter Recommendation Algorithms
  • -Twitter
  • -TS1208 All files must be modules when the --isolatedModules flag is provided.
  • -Try Running Terminal Command If Exists
  • -Towns in Florence
  • -Tossface Firefox Bug Report
  • -Toss Payments
  • -Tools for AI in Production
  • -tmux
  • -Time-Space Continuum (Physics)
  • -tidy
  • -Throughput
  • -Thought Experiment
  • -The Web Can Do What
  • -The Need for Project DANSO
  • -The Dropbox Comment on Hacker News
  • -text-transform capitalize
  • -Text-based Presentations
  • -TermsGPT
  • -Tectonic
  • -TCP vs UDP
  • -Tana
  • -Tailwind File Moving Incident Report
  • -Tailwind Break All
  • -Tailscale
  • -tabOS
  • -tabExtend
  • -Super Mario Wonder
  • -Supastarter
  • -Substack
  • -Styled Components
  • -Studio.Design
  • -Stripe Sessions 2023
  • -Stripe Press
  • -Stripe Acquires Lemon Squeezy
  • -String Template Managing Tools
  • -Strictly Formatted Generative AI
  • -Strategy
  • -Stock Option
  • -Statistics
  • -Static (Computer Systems)
  • -Starlink
  • -Squircled App Icon Generator
  • -Sprachraum
  • -Spiritual Development
  • -Spatial Computer
  • -Socket
  • -Snooze Time of Alarm Clocks
  • -Smooth Cursor on VS Code
  • -Slack Watcher App to Confluence
  • -SIT Technique
  • -SinglePage
  • -Singapore
  • -Simulations
  • -Simian
  • -Sigma Alpha
  • -Sichimi
  • -shots.so
  • -Short Position
  • -shell.ai
  • -Shadcn Skeleton Random Delay
  • -Set Theory
  • -Serverless
  • -Sequential GitHub Action Jobs
  • -Sequence Film
  • -Sentry
  • -Semantic Web
  • -Self-fulfilling Prophecy
  • -Secure Multi-Party Computation
  • -Search Engine Optimization
  • -Scrapers for LLMs
  • -ScienceOps
  • -Scala
  • -Sapiophile
  • -Sample Ratio Mismatch
  • -SaaS for Auth
  • -SaaS 외길인생
  • -RSU
  • -rST
  • -RoughNotation
  • -Risk & Responsibility
  • -Rewind
  • -Resource Description Framework
  • -Research Paper Language System
  • -Remora Trading
  • -Regression
  • -Referrals
  • -Reddit Place for Korea
  • -Reddit Place
  • -React Router
  • -Raycast
  • -Ratio Test
  • -Random Variable
  • -Railway
  • -QUIC
  • -Queueing in Internetworking and Congestions
  • -Quarrelsome
  • -Pushing the Urgency
  • -Pull Request
  • -Public Transport
  • -proved me wrong
  • -Propagation Delay
  • -Proof of Concept
  • -Prompt
  • -Project Starfish
  • -Project Referrals
  • -Project Pontassieve
  • -Project Pied Piper
  • -Project Namie
  • -Project Millionaire
  • -Project Heimdall Random Names
  • -Profiling
  • -Proebsting
  • -Product Skills
  • -Prehistoric
  • -Post Git
  • -Plateau of Latent Potential
  • -Pipelining
  • -PhotoPicker
  • -Ph.D.
  • -Peter the Great
  • -Person 960D1D
  • -Person 542AD7
  • -Person 2476E6
  • -Passkey
  • -Partition
  • -Palworld
  • -Painterly Illustration Design Trend (2024)
  • -Padding Start vs Padding Left
  • -Packet Sniffing
  • -p-value
  • -P-series Test
  • -Overfitting
  • -OS
  • -OneStack.dev
  • -On-Device
  • -OLED
  • -Old Someday
  • -Obsidian Print Force Pagebreak
  • -Obsidian Ava
  • -NRG
  • -NPM
  • -nogitsync
  • -Node.js
  • -NIST Password Recommendations
  • -Nicola Rieke et al. The future of digital health with federated learning
  • -Nicholas I
  • -Next.js Upstream Image Response Failed
  • -Next.js 15 Font Hydration Error
  • -Next Big Thing
  • -News Minimalist
  • -Never reinvent the wheel. But if you end up doing it, let the whole world know why your wheel is better.
  • -Neo
  • -Navigator Copy as Rich Text
  • -Naver Pay
  • -Natural Language Processing
  • -Natural Language
  • -Nation as a Service
  • -NanoID
  • -N-gram
  • -Mymind.com
  • -Mutual Fund
  • -Mundivagant
  • -Mudita
  • -msix
  • -Moments
  • -MLS
  • -Miller Columns
  • -Midjourney
  • -Michael Filipiuk
  • -Metatag
  • -Metastore
  • -Metaphor
  • -Metaknowledge
  • -Metadata
  • -Meta
  • -Mermaid.js
  • -Medium
  • -Medical AI
  • -Maximum A Posteriori
  • -Market 6
  • -Map
  • -Manakin
  • -macOS Disable Diacritics
  • -MacCast
  • -Lunamu
  • -Love Wikipedia
  • -Love Obsidian
  • -Love Ghost
  • -Love Firefox
  • -Love Expo
  • -Love Elysia
  • -Los Angeles
  • -Long Position
  • -Lombok
  • -Logo
  • -Login.gov
  • -Logic Table
  • -LLaMA
  • -Linux Device that keenly follows MacBook
  • -Line
  • -Limitless AI
  • -Limit of a Sequence
  • -LavaLab Cohort of Fall 2023
  • -Language
  • -Landing Page for Developers
  • -KRDS
  • -Korean Discount
  • -kill3000
  • -KakaoTalk
  • -K-Pop
  • -JVM
  • -JSON-LD
  • -JSON
  • -Joining Thread
  • -Jiro Horikoshi
  • -Jetbrains
  • -Jesse Lyu
  • -Java
  • -J. Robert Oppenheimer
  • -Ive
  • -Iterative and Incremental Development
  • -IRA vs 401k
  • -iPhone Keyboard
  • -IP Spoofing
  • -Interoperability
  • -Internal Tool
  • -Intellisense
  • -Instagram
  • -Index Fund
  • -In HTML, button cannot be a descendant of button
  • -Imposter Syndrome
  • -iMessage
  • -Images Missing Alt Tag
  • -Identicon
  • -i18n with Next.js
  • -Husky
  • -How does File Alias work
  • -honest-but-curious
  • -Hive Metastore
  • -history.push vs history.replace
  • -High Growth Handbook
  • -Height (App)
  • -Healthy Paranoia is Appropriate for Any Critical Vendor
  • -Headers Include Order
  • -Hashnode
  • -HackSeoul 2024
  • -Hacker
  • -Greater Northeast Corridor
  • -GraphQL Yoga vs Apollo
  • -Grammarly Work Note 2023-08-03
  • -Grammarly Work Note 2023-07-21
  • -Grammarly Work Note 2023-07-17
  • -Grammarly Work Note 2023-07-10
  • -Grammarly Work Note 2023-07-06
  • -Grammarly Work Note 2023-06-27
  • -Grammarly Work Note
  • -Grammarly Internal Conference with Executives 2023-08-01
  • -Grammarly for CI CD Pipelines
  • -Grammarly Experimentations Team
  • -Grammarly AI-NLP Club
  • -GPT-4
  • -Government Services should have full API support
  • -Governance Model
  • -Google One Tap
  • -Google IO
  • -Go To Market
  • -GNAR
  • -Glitch
  • -GitHub What should I work on
  • -GitHub What should I review
  • -GitHub Package Manager
  • -GitHub Blog Drop-in Newsletter
  • -gimme
  • -Getting Featured on the App Store
  • -Geometric Series
  • -Generative Pre-trained Transformer
  • -Generative Open Graph
  • -Gen Z does not know file directories
  • -Ganymede Table Structure
  • -G++
  • -Frontend Fundamentals
  • -Frivolous
  • -Freedom of Speech and Regulation of Fake News
  • -Framer
  • -Forcing Fixed-Width Numbers in CSS
  • -Flamboyant
  • -Fixing the Document Hell
  • -Firefox Compact Menu Bar
  • -Fey App
  • -Fediverse
  • -Facebook
  • -Fabric.so
  • -Extended Reality
  • -Everything Is Figureoutable
  • -Everynews Organizational Schema
  • -Event Capture
  • -Etymo
  • -Esoteric
  • -Era.app
  • -ePub to PDF
  • -Enginifounder
  • -Engine Equation (Metapage)
  • -Endianness
  • -Employee Stock Purchase Program
  • -ELF
  • -Eleven Labs
  • -eieio.games
  • -Egregore
  • -editorStickyScroll
  • -Edge Browser
  • -Economic Freedom
  • -EC2
  • -eBook
  • -e-commerce
  • -DynamoDB
  • -Dynamic Import
  • -Dumb Phone
  • -Download All Images in a Page
  • -DoS
  • -Dopamine Addiction
  • -Done
  • -Docusaurus 3.5.1 Import Error
  • -Docker Nuke
  • -Do not Disturb for Set Duration
  • -Dither
  • -Distribution
  • -Dismiss Keyboard
  • -Discuss on Social Media Button
  • -Discrete Mathematics
  • -Discord
  • -Disable iPhone from automatically connecting to carrier Wi-Fis
  • -Disable Firefox Safe Mode Trigger
  • -Disable All Animations
  • -Dioxus
  • -Diminishing Monetary Power and Short-Term Culture
  • -Dilemmas of Free stuffs
  • -Digital Signature for Videos
  • -Digital Signature
  • -Digital Garden
  • -Dia (Browser)
  • -DEV.to
  • -Deno
  • -demure
  • -DeepL vs Google Translate vs Bing Translate Offering Comparison
  • -Death Stranding
  • -Deadlock
  • -De Morgan Law
  • -Datahouse
  • -Databricks AI Summit 2023
  • -Database vs Datalake
  • -Dalimagination
  • -D-ID
  • -CUID
  • -CSRF
  • -CS576 Multimedia Design
  • -CS Colloquium
  • -Creating Next Keyboard Button in SwiftUI
  • -Counting
  • -Core ML
  • -Copy Latest SHA
  • -Copper
  • -Copenhagen Interpretation
  • -Convergence of Infinite Series
  • -Convergence of Geometric Series
  • -Convergence of Alternating Series
  • -Content Negotiation
  • -Conditional Dark Mode Image on GitHub README
  • -Condensed H1 Design Trend (2024)
  • -Compress Voice Transcripts
  • -Composer Stock Trading Bots to Consider in 2024
  • -Composer 9 Examples of Established Algorithmic Trading Strategies
  • -Complete Reconsideration of Project Ganymede
  • -Comparing BLIP and CLIP
  • -Club Penguin
  • -Cloud Computing
  • -CITATION.cff
  • -Checksum
  • -ChatGPT보다 내가 나은데?
  • -ChatGPT Client
  • -Channel.io
  • -Change Google One Subscription Country
  • -Change App Display Name on Xcode
  • -Chaf Games
  • -Central Limit Theorem
  • -Catherine the Great
  • -Casu Marzu
  • -CardDrop
  • -Cannot Command Click to File with Next App Router Segments
  • -Buzzword
  • -Brian Lovin
  • -Brave Browser
  • -Borrowing a Book from USC
  • -Bluetooth
  • -Blockchain
  • -Block Protocol
  • -Binomial Distribution
  • -Bikeshed
  • -BFCM
  • -Better LaTeX
  • -Beta Binomial Conjugacy
  • -Bershire Hathaway Annual Meeting 2025
  • -Benchmarking LLMs
  • -Benchmarking Deep Learning Models for Project Malmantile
  • -Ben 10
  • -BCP 47
  • -Backfill
  • -Backdrop Build
  • -Backblaze
  • -AWS Edge Continuum
  • -AWS CLI Do not page
  • -Automattic
  • -Auto-remove Unused Imports
  • -Augmented Reality
  • -audiobook.ing
  • -Atopic Zeropoint
  • -Atomicity
  • -armada
  • -Apple Vision Pro
  • -Apple Music Color Washout
  • -Apple Music API
  • -Apple Music
  • -App Router
  • -Apollo (GraphQL)
  • -API
  • -Apache Hive
  • -Antiagile
  • -Android Intent
  • -Andrew Huberman
  • -Ancestors of C
  • -American
  • -Alternatives to Hacker News
  • -Alien X
  • -Alexander I
  • -Alan Chan
  • -Akzidenz
  • -AI
  • -Agentic Trading
  • -Adobe Premiere Pro
  • -Add Shadow to Transparent PNG
  • -Accessibility
  • -Absolute Convergence
  • -화요일에는 인쇄 기능이 고장나는 오피스 프로그램
  • -洪兔雜記
  • -함대결전
  • -한타 vs 케이타운
  • -한복 정장
  • -한국판
  • -한국 IT 산업의 내수 편중
  • -파이널 컷 프로 영역 블러
  • -쿠팡
  • -커피의 끝
  • -카카오스토리 완전백업
  • -충분히 똑똑한 컴파일러
  • -조선민족의 진로 재론
  • -전화교환원
  • -재학생일기
  • -장단점이 아닌 특색
  • -일민주의
  • -인사가 만사다
  • -이역만리
  • -우아한테크캠프
  • -역사적 리셋
  • -역사에는 사건만 있을 뿐 진실은 없다
  • -언어학과 우주적 소음
  • -시간-돈
  • -상공농사
  • -산나비
  • -비 오는 날에만 작동하는 와이파이
  • -블록 기반 링킹
  • -벨로그
  • -배달의민족
  • -방지된 폭탄에 대한 경의
  • -박정희
  • -바닐라 아이스크림을 싫어하는 자동차
  • -미국 이행 장치
  • -망 사용료
  • -뤼튼
  • -디지털 정부의 모든 코드 오픈 소스화
  • -남이사
  • -깍두기
  • -과학 기술의 메디치
  • -곰단
  • -거함거포주의
  • -84-24
  • -2025-04-23
  • -2025-04-20
  • -2025-04-09
  • -2025-04-08
  • -2025-04-07
  • -2025-04-01
  • -2025-03-28
  • -2025-03-27
  • -2025-03-26
  • -2025-03-25
  • -2025-03-21
  • -2025-03-17
  • -2025-03-16
  • -2025-03-15
  • -2025-03-14
  • -2025-03-07
  • -2025-03-06
  • -2025-02-27
  • -2025-02-24
  • -2025-02-20
  • -2025-02-18
  • -2025-02-17
  • -2025-02-14
  • -2025-02-11
  • -2025-01-30
  • -2025-01-28
  • -2025-01-24
  • -2025-01-23
  • -2025-01-21
  • -2025-01-20
  • -2025-01-18
  • -2025-01-17
  • -2025-01-12
  • -2025-01-07
  • -2025-01-04
  • -2025-01-02
  • -2024-12-28
  • -2024-12-20
  • -2024-12-19
  • -2024-12-06
  • -2024-12-05
  • -2024-12-02
  • -2024-12-01
  • -2024-11-29
  • -2024-11-15
  • -2024-11-14
  • -2024-10-14
  • -2024-10-13
  • -2024-10-07
  • -2024-10-05
  • -2024-10-04
  • -2024-10-03
  • -2024-10-02
  • -2024-09-25
  • -2024-09-21
  • -2024-09-16
  • -2024-09-09
  • -2024-09-08
  • -2024-09-05
  • -2024-09-04
  • -2024-09-02
  • -2024-08-27
  • -2024-08-23
  • -2024-08-15
  • -2024-08-14
  • -2024-08-08
  • -2024-08-07
  • -2024-08-06
  • -2024-08-04
  • -2024-08-03
  • -2024-07-30
  • -2024-07-29
  • -2024-07-27
  • -2024-07-24
  • -2024-07-23
  • -2024-07-22
  • -2024-07-19
  • -2024-07-18
  • -2024-07-16
  • -2024-07-15
  • -2024-07-10
  • -2024-07-09
  • -2024-07-08
  • -2024-07-06
  • -2024-07-02
  • -2024-06-26
  • -2024-06-24
  • -2024-06-21
  • -2024-06-18
  • -2024-05-29
  • -2024-05-28
  • -2024-05-11
  • -2024-05-07
  • -2024-05-02
  • -2024-05-01
  • -2024-04-28
  • -2024-04-27
  • -2024-04-24
  • -2024-04-23
  • -2024-04-20
  • -2024-04-19
  • -2024-04-15
  • -2024-04-11
  • -2024-04-09
  • -2024-04-07
  • -2024-04-04
  • -2024-04-01
  • -2024-03-29
  • -2024-03-28
  • -2024-03-26
  • -2024-03-20
  • -2024-03-18
  • -2024-03-15
  • -2024-03-14
  • -2024-03-11
  • -2024-02-20
  • -2024-02-17
  • -2024-02-15
  • -2024-02-10
  • -2024-02-08
  • -2024-02-06
  • -2024-01-30
  • -2024-01-28
  • -2024-01-24
  • -2024-01-22 Multimedia Systems
  • -2024-01-22
  • -2024-01-11
  • -2024-01-03
  • -2024-01-01
  • -2023-12-28
  • -2023-12-26
  • -2023-12-16
  • -2023-12-14
  • -2023-12-05
  • -2023-12-04
  • -2023-12-01
  • -2023-11-23
  • -2023-11-21
  • -2023-11-19
  • -2023-11-18
  • -2023-11-16
  • -2023-11-15
  • -2023-11-02
  • -2023-11-01
  • -2023-10-29
  • -2023-10-28
  • -2023-10-27
  • -2023-10-22
  • -2023-10-21
  • -2023-10-18
  • -2023-10-11
  • -2023-10-02
  • -2023-10-01
  • -2023-09-30
  • -2023-09-25
  • -2023-09-24
  • -2023-09-22
  • -2023-09-17
  • -2023-09-16
  • -2023-09-12
  • -2023-09-06
  • -2023-08-30
  • -2023-08-19
  • -2023-08-13
  • -2023-08-12
  • -2023-08-03
  • -2023-08-01
  • -2023-07-27
  • -2023-07-23
  • -2023-07-21
  • -2023-07-20
  • -2023-07-12
  • -2023-06-13
  • -2023-06-03
  • -2023-06-02
  • -2023-06-01
  • -2023-05-29
  • -2023-05-27
  • -2023-05-25
  • -2023-05-17
  • -2023-05-01
  • -2023-04-24
  • -2023-04-05
  • -2023-04-04
  • -2023-04-01
  • -2023-03-28
  • -2023-03-23
  • -2023-03-17
  • -2023-03-13
  • -2023-03-07
  • -2023-01-08
  • -2022-12-03
  • -2022-12-02
  • -2022-11-05
  • -2022-08-16
  • -2022-05-11
  • -2022-05-07
  • -2022-04-26
  • -2022-04-18
  • -2022-04-06
  • -2021-08-15
  • -2021-08-11
  • -2021-07-14
  • -2021-06-24
  • -2021-05-04
  • -2021-02-26
  • -2021-01-16
  • -2020-11-27
  • -2020-11-20
  • -2020-11-19
  • -2020-11-13
  • -2020-11-09
  • -2020-11-06
  • -2020-10-27
  • -2020-10-17
  • -2020-10-05
  • -2020-09-27
  • -2020-09-25
  • -2020-09-24
  • -2020-09-20
  • -2020-08-01
  • -2020-07-20
  • -2020-07-11
  • -2020-07-03
  • -2020-05-29
  • -2020-04-26
  • -2020-04-18
  • -2020-04-15
  • -2020-04-08
  • -2020-04-01
  • -2020-03-28
  • -2020-03-08
  • -2020-03-07
  • -2020-02-27
  • -2020-02-23
  • -2020-02-22
  • -2020-02-17
  • -2020-02-15
  • -2020-02-14
  • -2020-02-13
  • -2020-02-12
  • -2020-01-20
  • -2020-01-05
  • -2019-12-28
  • -2019-11-16
  • -2019-11-09
  • -2019-11-08
  • -2019-11-07
  • -2019-11-06
  • -2018-10-28
  • -2016-12-08
  • -2016-11-28
  • -2016-11-15
  • -2016-11-11
  • -2016-10-22
  • -2016-07-01
  • -2016-06-24
  • -2016-05-31
  • -2016-04-01
  • -2010년 테크 블로그 여행
  • -0973 K Closest Points to Origin
  • -0059 Spiral Matrix II
  • -0003 Longest Substring Without Repeating Characters
  • -2025-04-11
  • -Text-based Tools for Thought
  • -Snowpack으로 WASM 시작하기
  • -lovearc.net
  • -Browser Company Hackathon
  • -Browser Company
  • -BitTorrent
  • -Linux
  • -2024-04-16
  • -Aldehyde Landing Page 2023
  • -2023-11-20
  • -2023-08-26
  • -2023-06-15
  • -2023-02-18
  • -2023-02-01
  • -2022-12-27
  • -2022-12-18
  • -2022-12-16
  • -WebNPU API를 상상하다
  • -Use Your Mac as your Bluetooth Speaker
  • -Titanium Calculator
  • -Timebelt
  • -TextGPT
  • -Synonym-based Fuzzy Search
  • -Sticker Party
  • -Someday
  • -Show me your Laptop
  • -Send Separately
  • -sem.sh
  • -Satori Widgets
  • -Research Paper NPM System
  • -Referral Share
  • -Redactor for iPhone
  • -Quoridor Game
  • -Project Sillok
  • -Project MAGI
  • -Project FFMpeg for iPad
  • -Programmable Vaccines
  • -Problem
  • -Power Nap Pill
  • -postcredit.info
  • -PineApple Pay
  • -Open Graph Image as a Service
  • -Old Fashioned Camera
  • -Not-So-Procrastinating Lazy Loading
  • -Neo Aldehyde
  • -Markdown Email Client
  • -linkflags.crx
  • -latexify.cho.sh
  • -Intracranial
  • -iiframe
  • -HealthKit as an API
  • -Habit Together
  • -Guestbook
  • -Fix Your Posture
  • -Embeddable GitHub Repo Card But It Looks Great
  • -ElonPet
  • -Digital Bookmarks for Physical Books
  • -DB Cron Benchmark
  • -Cube
  • -Confession in Slack
  • -ChromeOS Packer
  • -Chopstick Game
  • -Cashflow (Service)
  • -Better Hacker News
  • -Autosave Everything
  • -Autopedia
  • -Automemoji
  • -Apple Earth
  • -already.dev
  • -Aldehyde SaaS
  • -Action Button Walkie-Talkie
  • -aaaa.coffee
  • -프로젝트 주령구
  • -조선왕조실록
  • -원하는 곳만 전자레인지
  • -불가사리
  • -도메인 찾아 삼만리
  • -네오상평통보
  • -2025-02-10
  • -2024-07-26
  • -KSAT Benchmark
  • -SignalKite DB Schema
  • -Make GPT Print LaTeX
  • -2025-02-04
  • -2023-09-27
  • -2023-09-20
  • -Open Core Models
  • -My UI Framework
  • -Block Screenshots in iOS
  • -Base32
  • -2023-12-15
  • -2023-10-16
  • -es-toolkit
  • -Cloudflare Pages
  • -2025-01-16
  • -2025-01-15
  • -frenzy.money
  • -Drag and Drop
  • -2025-01-14
  • -YC에 지원하지 말아야 할 이유
  • -Winning Backdrop Build v2 (23誠鉉)
  • -Weihu
  • -Vertical ChatGPT
  • -Vector DB
  • -Upscale
  • -UI Designs for Editing Messages
  • -Technocapital and Biocapital
  • -Swear Turing Test
  • -Supabase
  • -Skeumorphism
  • -Shazam for Smells
  • -Seaflooding
  • -Sci-Fi and Rome
  • -Response from Dan Siroker (January 24誠鉉)
  • -R=VD and Generative AIs
  • -Project PIRI 🪈: Performant & Interoperable Rendering Infrastructure
  • -Project Heimdall Initial Planning
  • -Probe Server Errors
  • -Probe Confidential Documents
  • -PPR All The Way
  • -NMD.cho.sh
  • -LLM Namecard
  • -iTunes
  • -Impact over Performance
  • -Heath Resume
  • -GitHub Copilot Investigation
  • -Gall's Law
  • -eBPF
  • -Dynamic Scrollbar
  • -document.designMode
  • -CSS Scroll Snapping
  • -Cookies that Outlive Login Sessions
  • -Color Palette
  • -CMDK
  • -Bing Chat for All Browsers Widespread Unavailability Incident (April 23誠鉉)
  • -Beeper
  • -Apple vs Spotify
  • -Algorithmic Recommendation Engine for Texts
  • -AIs.txt
  • -초대장의 시대
  • -애국심은 국가 단위의 스톡홀름 신드롬인가?
  • -401(K)
  • -2024-04-25
  • -2024-04-18
  • -2024-03-21
  • -2024-03-10
  • -2024-03-06
  • -2024-03-04
  • -2024-02-22
  • -2024-01-31
  • -2024-01-23
  • -2024-01-21
  • -2024-01-15
  • -2023-12-13
  • -2023-12-07
  • -2023-11-24
  • -2023-10-31
  • -2023-10-26
  • -2023-10-13
  • -2023-10-05
  • -2023-08-10
  • -2023-07-16
  • -2023-01-27
  • -2022-11-28
  • -2022-10-27
  • -2022-10-24
  • -Vimium
  • -GitHub PR Message Prompt
  • -Dear AIs, I have a question.
  • -2024-12-18
  • -SignalKite
  • -2024-10-06
  • -Notion AI
  • -2024-09-26
  • -shadcn
  • -Animation
  • -2024-08-17
  • -UI AI
  • -Svelte
  • -Sliding Master Master Detail
  • -Simulated Annealing for Designs
  • -React Native
  • -React
  • -Mr. Doob
  • -Modern MacPaint
  • -Menu Hover Effects
  • -Magician
  • -Listmonk
  • -Dynamic Viewport Units
  • -Docusaurus
  • -Diagram Labs
  • -Confectionery
  • -Andy Matuschak
  • -혜성처럼 나타난 본디
  • -빙글
  • -배달의민족 FE 개발자가 일하는 법 Q&A
  • -말도 안 되는 버그
  • -날씨 요정
  • -2023-03-12
  • -2024-08-11
  • -2024-08-10
  • -Run by a human
  • -Linguine Engine Test Drive Result 2023-07-13
  • -FIRE
  • -2024-08-01
  • -2023-02-08
  • -2022-07-24
  • -Backlinking for Aldehyde
  • -Project Heimdall Locale Transition Strategy
  • -Heimdall Bogus Subscribers Attack Incident
  • -FireCrawl
  • -Docker
  • -2023-12-23
  • -2023-11-28
  • -2023-11-06
  • -2023-11-03
  • -2023-08-08
  • -2023-07-15
  • -2023-07-13
  • -2023-06-27
  • -2023-06-26
  • -2023-06-20
  • -2023-06-18
  • -2023-06-17
  • -2023-05-18
  • -2023-05-16
  • -2023-05-10
  • -2023-04-19
  • -Python Tooling
  • -ChatGPT는 흐릿한 이미지이지만 필요합니다
  • -Love Software
  • -Contextify
  • -2024-06-25
  • -2024-06-20
  • -2024-07-07
  • -Site On Which the Sun Never Sets
  • -Metaverse
  • -Design Trend
  • -pun
  • -One Million Checkboxes
  • -Better Obsidian
  • -Django Rest Framework
  • -2024-06-23
  • -Timed Terminal Commands
  • -2024-06-12
  • -2023-10-19
  • -2023-09-29
  • -2023-09-26
  • -2023-09-09
  • -2024-06-03
  • -Person CC8297
  • -무제한번역
  • -2024-05-30
  • -AirDrop
  • -2024-02-29
  • -2024-02-24
  • -2024-05-17
  • -PDF OCR
  • -Anti
  • -2022-11-19
  • -2024-05-06
  • -Rabbit R1 First Impressions (May 2024)
  • -Apple Vision Pro First Impressions (May 2024)
  • -2024-05-03
  • -Veil of Ignorance
  • -TroyLabs Cohort of Fall 2023
  • -Newtonian Correspondence
  • -Government as a Service
  • -Beehiiv
  • -태백산맥 계획
  • -인공자궁
  • -의료 인공지능과 의대 쏠림
  • -내가 만든
  • -김치, 엽전, 선비 등 한국적 문화유산에 대한 부정적 의미 제거 작업
  • -2024-04-26
  • -2023-03-16
  • -앎의 그릇
  • -2024-04-30
  • -Ghost에서 외부 링크를 새로운 창에서 여는 방법
  • -Ghost 테마를 자동 배포하는 방법
  • -Displaying exact datetimes on Ghost
  • -ContentLayer
  • -WWDC23
  • -CS585 Database Systems
  • -Chrome
  • -기술 유출
  • -Vercel
  • -Y Combinator
  • -2024-04-21
  • -QA.json
  • -Headless
  • -Database
  • -데이터베이스권
  • -Captivating Products
  • -Building Habit
  • -두그열
  • -국가와 민족
  • -과목우수상
  • -2024-03-05
  • -2024-02-02
  • -2024-01-20
  • -2024-01-19
  • -2024-01-18
  • -2024-01-16
  • -2024-01-14
  • -2024-01-10
  • -2023-09-11
  • -2023-08-02
  • -2023-07-25
  • -2023-07-07
  • -2023-07-05
  • -2023-05-03
  • -2023-04-08
  • -2023-02-14
  • -2023-02-13
  • -2023-02-12
  • -2023-02-11
  • -2023-02-10
  • -2023-02-09
  • -2023-02-07
  • -2023-02-06
  • -2023-02-05
  • -2023-02-04
  • -2023-02-03
  • -2023-01-31
  • -2023-01-30
  • -2023-01-29
  • -2023-01-28
  • -2023-01-26
  • -2023-01-25
  • -2023-01-24
  • -2023-01-23
  • -2023-01-22
  • -2023-01-21
  • -2023-01-20
  • -2023-01-19
  • -2023-01-18
  • -2023-01-17
  • -2023-01-16
  • -2023-01-15
  • -2023-01-14
  • -2023-01-13
  • -2023-01-12
  • -2023-01-11
  • -2023-01-10
  • -2022-12-21
  • -2022-12-20
  • -2022-11-07
  • -2019-10-13
  • -2016-02-21
  • -2024-04-12
  • -End of History Fallacy
  • -Project Florence
  • -2024-03-25
  • -2024-03-19
  • -Project Calenzano
  • -2024-03-07
  • -Universal Basic Income for Scholars
  • -Small Government vs Big Government
  • -Neo Block Economy
  • -I just want it fixed
  • -強力反權
  • -한민족의 문화
  • -이무기 기업, 청룡 기업
  • -이공계
  • -연암 박지원 그리고 전국수도권화
  • -2024-03-03
  • -2022-10-10
  • -2022-08-04
  • -Antipilot
  • -2024-03-02
  • -2024-03-01
  • -2024-02-28
  • -2024-02-27
  • -2024-02-26
  • -tRPC
  • -Stories Behind Satori
  • -Simple Analytics War Room
  • -Shim
  • -Service Shimming
  • -Reverse Engineering Apple Music API
  • -Resend
  • -Refine (Framework)
  • -Redwood.js
  • -Reddit-Apollo Mayhem
  • -React App on GitHub Pages
  • -Proposal of Research 2023-03-28
  • -OpenAI
  • -Metal
  • -Letter to Mr. Matt Rickard on 2022-10-03
  • -jQuery
  • -HEEx
  • -Hacker News
  • -GraphQL
  • -Emails and Decentralized Protocols
  • -DX
  • -Cartography
  • -Canvas (HTML5)
  • -Brane
  • -Automation
  • -API Economy
  • -AI and Ecommerce
  • -ActivityPub
  • -배달의민족 FE 개발자가 일하는 법 발표
  • -2024-02-21
  • -2023-09-13
  • -2023-06-12
  • -2023-04-29
  • -2022-06-22
  • -2022-06-20
  • -2022-05-31
  • -0278 First Bad Version
  • -2024-02-19
  • -Use Apple GPU on PyTorch
  • -Soft Power
  • -Psychohistory
  • -Person 431D6C
  • -LocLog
  • -KMLA Online
  • -Configuring Root Domain on FlightControl with CloudFlare
  • -Can we ever build TikTok for Text
  • -우린 텍스트 틱톡을 평생 만들 수 있을까
  • -심리역사학
  • -2024-02-07
  • -Aldehyde
  • -하늘땅사람 지원 문서
  • -2024-01-29
  • -2024-01-27
  • -Wikiversity
  • -Space Terraforming
  • -Researcher
  • -LiFiDeA
  • -Learning Execution Semantics from Micro-Traces for Binary Similarity
  • -In-house and Free Market
  • -Homomorphic Encryption
  • -인하우스와 자유경쟁
  • -서낭당
  • -2023-09-28
  • -2023-12-25
  • -2023-12-17
  • -SVG
  • -2023-10-20
  • -Final Cut Pro
  • -2023-11-29
  • -Project Impruneta
  • -Person 4460DA
  • -2023-11-22
  • -Neo Apps
  • -Useful ChatGPT Prompt
  • -Space in LaTeX
  • -2023-11-14
  • -2023-11-10
  • -2023-11-09
  • -Prisma
  • -DNS
  • -Configuring Jest for React Native
  • -Coding Tests in Swift
  • -원숭이와 꽃신
  • -2023-11-12
  • -Prettier
  • -2023-11-11
  • -Visual-based Tools for Thought
  • -Visual ChatGPT
  • -Video to GIF
  • -Tome
  • -Stitch Images
  • -Project Prepare for Grammarly
  • -Pretendard의 아쉬운 점
  • -Link Preview for Arc
  • -Heptabase
  • -Hashflags
  • -Download All Videos in a Page
  • -Detroit Become Human
  • -Data Capturers
  • -Collaboration-based Tools for Thought
  • -Boring Report
  • -2023-11-08
  • -2023-01-02
  • -2022-11-11
  • -2022-11-10
  • -2022-10-20
  • -Project Malmantile
  • -Storybook
  • -HTML
  • -Grammarly Work Note 2023-06-02
  • -DRM
  • -Cost of Engineering
  • -Computational Linguistics
  • -Bloomberg Terminal
  • -Better Aldehyde
  • -Back-end
  • -AGPL
  • -2022-12-26
  • -0110 Balanced Binary Tree
  • -0104 Maximum Depth of Binary Tree
  • -Real Interviews
  • -Karrot
  • -2023-10-23
  • -한국의 식민지 근대성
  • -2023-10-17
  • -UI and UX
  • -Simian과 심미안
  • -2023-10-10
  • -2023-10-09
  • -2023-10-08
  • -2023-01-09
  • -2022-09-11
  • -sitemap.xml
  • -Search Engine Indexing Your Life
  • -Search Engine
  • -Project Florence Literature Review
  • -Information among Data
  • -hreflang
  • -Blurry JPEG
  • -2023-10-04
  • -2023-10-03
  • -Covariance
  • -Nuclear Fusion Terrarium
  • -Digital Addiction
  • -자아는 발굴되는 것이다
  • -2023-09-19
  • -2023-09-14
  • -2022-07-29
  • -2022-09-05
  • -2023-09-18
  • -Git
  • -Qinbin Li et al. Federated Learning Systems. Vision, Hype, and Reality for Data Privacy and Protection
  • -Qiang Yang et al. Federated Machine Learning Concept and Applications
  • -Probability Of Queueing (Internetworking)
  • -Peter Kairouz et al. Advances and Open Problems in Federated Learning
  • -Extracranial
  • -Daniele Romanini et al. PyVertical
  • -Super App and Democracy
  • -Memex is more than a Memex
  • -Gaussian Distribution
  • -EU
  • -Companies are Economic Organisms
  • -Software as a Service
  • -Blind Illness
  • -BIMI
  • -2023-08-31
  • -2023-08-29
  • -Yarn
  • -Tools for Thought
  • -Sungari
  • -Spring Boot
  • -Separation of Computer Scientists and Computer Technologists
  • -Search in a Latent Space
  • -Ridi
  • -Render.com
  • -Project Core ML Foundation
  • -PNPM
  • -Packet Switching vs Circuit Switching
  • -Letter to Mr. Stephan Ango on 2022-10-19
  • -Jog 25 minutes (Jan-Feb 23誠鉉)
  • -Jetski
  • -Indirect Information Leakage
  • -How is WebAssembly cross-platform when Assembly is not
  • -Horizontally Stacked Interface
  • -Higher-Level Languages and Their Speeds
  • -henrymakesapps
  • -Google Analytics
  • -Google
  • -Ensemble learning
  • -Differential Privacy
  • -Classic Blogs
  • -CDN
  • -Atomic Habits
  • -슈퍼자판기
  • -북스페이스
  • -2023-08-28
  • -2023-04-17
  • -2023-03-18
  • -2022-12-17
  • -2022-12-09
  • -2022-12-07
  • -2022-12-06
  • -2022-11-29
  • -2022-11-21
  • -2022-11-16
  • -2022-11-15
  • -2022-10-29
  • -2022-10-23
  • -2022-10-15
  • -2022-10-12
  • -LavaLab
  • -조선의 노비제도에 관한 보고
  • -대한민국
  • -2023-08-23
  • -Research Paper Hub
  • -Geohot-Twitter Mayhem
  • -Building a Second Brain
  • -Bluesky
  • -Arc (Browser)
  • -서비스 시밍
  • -두 번째 뇌
  • -Zenly
  • -Replicating Balenciaga Harry Potter Advertisement
  • -Pieter Levels
  • -Page Size and Address Translations
  • -Multiplayer
  • -Mathematics under The Library of Babel
  • -glTF
  • -AT protocol
  • -2023-08-15
  • -2023-08-14
  • -2022-11-23
  • -2022-07-12
  • -상경과 상항
  • -관성 질량과 중력 질량
  • -2023-08-11
  • -RCS
  • -유난한 도전
  • -2023-08-09
  • -macOS
  • -Graphic Renderer
  • -Fiercely Overpriced
  • -Cloud-native Video Editor
  • -Anti-Tiktok
  • -Aldehyde Backlinks Outage (January 23誠鉉)
  • -코드클럽
  • -2023-08-07
  • -2023-08-04
  • -0020 Valid Parentheses
  • -Tossface
  • -Threads (Service)
  • -Super App
  • -Matrix Network
  • -Mac을 Command+L로 잠그는 방법
  • -Kakao
  • -CJK
  • -한국인
  • -이루다
  • -삼체
  • -드디어, 한국 애플페이
  • -Superbrain
  • -InterviewKit
  • -YCLF 주간 사용자 1000명
  • -Write Once Run Everywhere
  • -When TSC suddenly errors with cannot find module
  • -Web Typography
  • -VP9 vs HEVC
  • -Visual Studio Code
  • -UUIDs are Awesome
  • -Symlink
  • -Simple DirectMedia Layer
  • -Safari
  • -Retroactive (Software)
  • -Reimagining Emails
  • -Porting a Chrome Extension to Firefox Add-on
  • -Opening external links in a new tab by default on Ghost
  • -Mapping keys to set different input languages on macOS
  • -Locking your Mac with Command+L
  • -Linux Permissions for Keys
  • -iOS
  • -IntelliJ
  • -Halting Problem
  • -Grammarly Work Note 2023-05-31
  • -Grammarly Work Note 2023-05-30
  • -Grammarly Work Note 2023-05-26
  • -GitHub Pages에 React 앱 띄우기
  • -Finding the size of the directory in Python
  • -Figma
  • -Disable Screenshot Drop Shadow in macOS
  • -CSS
  • -Apple Easter Egg
  • -Amazon
  • -2022-06-05
  • -Threads
  • -Simple Analytics
  • -Sandbox
  • -Pure Component Model
  • -Pretendard
  • -Point-E
  • -Nota
  • -NewsGPT
  • -Letter to Modos team on 2023-03-16
  • -KakaoPay
  • -Jetbrains Fleet
  • -i18n with Redwood
  • -HYBE
  • -HTTP
  • -Foreign Language
  • -Ethnologue 200
  • -Databricks AI Summit 2023 Definitive Healthcare Session
  • -Bloomberg
  • -Backlink
  • -Accelerationism
  • -이 땅에 태어나서
  • -2023-07-24
  • -2022-09-25
  • -2022-07-10
  • -2022-07-02
  • -2022-06-12
  • -XUID
  • -USDZ vs glTF
  • -Parquet
  • -JavaScript heap out of memory
  • -Is AWS a Dumb Pipe
  • -Native Language
  • -Linux Commands
  • -Heap (Computer Systems)
  • -ESLint
  • -Cauchy
  • -AI-native
  • -SendGrid
  • -Q Function
  • -Prompt Marketplace
  • -Layoff
  • -Datalake
  • -Black-Scholes Model
  • -ACL 60-60
  • -헤이그 특사
  • -퍼블리시티권
  • -2023-07-19
  • -2022-11-24
  • -0121 Best Time to Buy and Sell Stock
  • -Monolith
  • -Kinesis
  • -Kindle
  • -AWS
  • -AI Slop
  • -Project Linguine
  • -European Rhapsody
  • -Local ChatGPT
  • -2023-07-10
  • -WorkerDOM
  • -Web Worker
  • -Virtual Address Space and Physical Address Space
  • -Three Column Design
  • -SharedArrayBuffer
  • -Parallelism
  • -Mutex
  • -Meta Meta Framework
  • -Link (Computer Systems)
  • -JSX
  • -Jest
  • -Firefox
  • -Example References for Alter
  • -Create React App
  • -Artifact
  • -AMP
  • -Amdahl Law
  • -2022-07-28
  • -Primary-Recency Effect
  • -Photo Library of Babel
  • -NDA
  • -FIRE Engine
  • -AWS SES
  • -Apple Pay
  • -Apple
  • -Adaptive Keyboard
  • -아이폰 천지인 자판 프로젝트의 실현 가능성 연구
  • -2023-06-05
  • -10x
  • -Z-Fellows
  • -Survivorship Biased
  • -Matt Rickard
  • -Bing Chat
  • -2023-03-31
  • -2023-03-19
  • -2023-03-06
  • -2023-03-01
  • -2023-02-28
  • -2023-02-27
  • -2023-02-25
  • -2023-02-23
  • -2023-02-22
  • -2023-02-20
  • -2023-02-19
  • -2023-02-15
  • -2022-06-21
  • -Debugging CSS
  • -Databricks AI Summit 2023 Grammarly Session
  • -Truthiness of Empty Strings
  • -Project Padme
  • -Grammarly Work Note 2023-06-13
  • -Grammarly Work Note 2023-06-03
  • -Vanity Metrics
  • -Pivot
  • -Person 9078DC
  • -Greedy Algorithm
  • -First Two Months of a Startup
  • -Case Study
  • -Bernoulli Distribution
  • -10x Technopreneurs
  • -Weak Law of Large Number
  • -Interaction Effect
  • -Grammarly Work Note 2023-06-23
  • -AMP Email
  • -2023-04-20
  • -2023-06-22
  • -당근미니 케이스 스터디
  • -전방위 포위
  • -2023-06-19
  • -2023-06-16
  • -2023-06-07
  • -Poisson Approximation
  • -Now Page
  • -Normal Tables
  • -Feature Flag
  • -Cookie
  • -Internationalization
  • -Haruki Murakami
  • -의대 쏠림
  • -Wikipedia
  • -Torvalds
  • -Ted Chiang
  • -Prompt Injection
  • -Palantir
  • -Hugging Face
  • -EU and AI
  • -Cloudflare
  • -Apache
  • -2023-06-08
  • -2023-05-19
  • -2023-06-10
  • -Workbench
  • -WebExtension
  • -visionOS
  • -Screenplay
  • -Requesting Review in Swift
  • -On-Premise
  • -Linear (Software)
  • -Harry Stebbings
  • -dub.co
  • -Cooperative Multitasking
  • -Chromium
  • -Bondee
  • -Atomics (JavaScript)
  • -2023-06-06
  • -Link Coefficient
  • -Invalid type any of template literal expression
  • -Databricks
  • -Apache Spark
  • -2023-05-31
  • -Make Git Case Sensitive
  • -0409 Longest Palindrome
  • -Satori
  • -Next.js
  • -GitHub Actions
  • -Better Docusaurus
  • -2023-05-30
  • -2023-05-26
  • -2023-05-20
  • -2023-03-21
  • -2022-09-13
  • -USDZ
  • -Text Graphics
  • -Common App for Resume
  • -Removing Last Login on Mac Terminal
  • -2023-05-24
  • -2022-06-27
  • -2022-06-07
  • -2022-05-27
  • -Thesephist Work Case Study
  • -2023-05-22
  • -Elo Rating
  • -2023-05-11
  • -Translation Look-aside Buffers
  • -Page Faults
  • -MAKE (Book)
  • -2023-05-09
  • -2022-07-26
  • -Antifragily
  • -Antifragile
  • -2023-03-05
  • -Architecture of Mastodon
  • -Newline in GitHub Bio
  • -The One and Only (Social App)
  • -Habbo Hotel
  • -Cantankerous
  • -2023-04-30
  • -2023-04-28
  • -Probability
  • -Multiplication Theorem
  • -Internetworking
  • -Bayes Theorem
  • -Probability Review
  • -Base Frame Pointer
  • -Back Buffer
  • -2023-04-27
  • -2022-12-04
  • -2022-11-20
  • -2022-06-06
  • -0053 Maximum Subarray
  • -Notion
  • -Everyprompt
  • -Copilot
  • -Conversational AI Tools for Thought
  • -Composing Mail in SwiftUI
  • -Clock skew detected
  • -2023-04-25
  • -0383 Ransom Note
  • -Lingua Franca
  • -Edge
  • -한국어
  • -2023-04-21
  • -2023-03-20
  • -0232 Implement Queue using Stacks
  • -Substack is the new Medium
  • -Newsletter
  • -Letter to Mr. Alexander Obenauer on 2022-10-12
  • -Unsemantic
  • -Unchained Bing
  • -Twitter Link Preview
  • -Techs Actually Simple
  • -Seed
  • -Ruffle
  • -Riffusion
  • -PKM
  • -Neural Engine
  • -Internet Protocol Stack
  • -Install Yarn Silently
  • -Graphics
  • -Geometric Distribution
  • -DOM
  • -Cloud-Native
  • -Bing
  • -역사의 종말 오류 (에세이)
  • -3D
  • -hn.cho.sh
  • -2023-04-18
  • -2023-04-15
  • -2023-04-14
  • -Rust
  • -2023-04-03
  • -2023-03-25
  • -2023-04-11
  • -Componentizing Views in Android
  • -Bing Chat for All Browsers
  • -Android equivalent of div
  • -Adding Space in Android
  • -2023-04-09
  • -Nigh
  • -2023-04-06
  • -2023-04-16
  • -2023-04-02
  • -2023-03-27
  • -GeoCheatCode
  • -Dynamic Island
  • -2022-05-30
  • -Redirecting READMEs
  • -알람 시계의 9분 스누즈
  • -2023-03-18 Newsletter Automation Test
  • -2023-03-18 뉴스레터 자동화 테스트
  • -Stable Diffusion
  • -Scheduler
  • -Financial Technology
  • -2023-03-10
  • -2023-03-08
  • -Variance
  • -Standard Normal
  • -Standard Cauchy
  • -Gaussian Integral
  • -Data Science
  • -Continuity
  • -Plausible Analytics
  • -PECR
  • -Elon Musk
  • -Newtonian Mail
  • -Logseq
  • -Dumbest Person in the Room
  • -뉴턴의 서신
  • -2023-03-04
  • -2022-07-21
  • -2022-07-01
  • -Palantir Foundry
  • -Neo Email
  • -Naver
  • -Jupyter
  • -CELLO
  • -2022-08-28
  • -Text AI and Information Density
  • -Pensieve
  • -Microsoft
  • -IP
  • -Intellisense for Knowledge Management
  • -GitHub
  • -Educational Technology
  • -Deepfake
  • -AWS Nuke
  • -AI and ML
  • -2022-11-22
  • -SMTP
  • -SMIME
  • -Reminder Tools
  • -React Email
  • -Port
  • -POP3 vs IMAP
  • -Buttondown
  • -2022-10-02
  • -Grotesque
  • -2022-12-08
  • -Safari is the new Internet Explorer
  • -2021-06-23
  • -YAML
  • -WebGPU
  • -Universal Identity
  • -Unicorn
  • -Stirling Approximation
  • -Ray.st
  • -Prototyper
  • -Now Runs On
  • -Multiplexing
  • -Master Socket
  • -Independence
  • -Edge Network
  • -Convergence of Power Series
  • -Clustering
  • -민사고와 쇼비니즘
  • -2022-07-08
  • -10x Technologist
  • -0704 Binary Search
  • -0235 LCA of a Binary Search Tree
  • -0001 Two Sum
  • -Imoogi and Dragon Company
  • -Brunch violates SF terms of use
  • -Brunch
  • -Problems of ChatGPT
  • -Metapage
  • -Memory Allocation
  • -Inspecting Assembly
  • -Hyperview
  • -HLSL
  • -GPU
  • -DASH Protocol
  • -Cross-Origin Opener Policy
  • -Cross-Origin Embedder Policy
  • -Cache and Virtual Memory
  • -2022-12-30
  • -Cut the Fat
  • -Time to Market
  • -NPU
  • -CPU
  • -Ruby
  • -Desire-Compatible Growth & Preservation
  • -Conversational Generative AI as Search Engine
  • -Assembly
  • -장승
  • -솟대
  • -Social Coding
  • -Mood.surf
  • -2023-05-07
  • -2023-03-30
  • -2023-03-26
  • -2023-03-22
  • -2022-10-22
  • -2022-10-03
  • -Domain Search Tools
  • -Sudo with Touch ID
  • -Ignoring $ for copy-pasting online resources to terminal
  • -Coding Tests
  • -Clean Energy
  • -Remembering that Disarmed Bomb
  • -Mathematic Programming
  • -Web Graphics
  • -Web Analyzer Tool
  • -Treehouse
  • -To Kill a Night Owl
  • -Satoshi
  • -Rewrite it in Rust
  • -Prompt Engineering
  • -Meta Theme Color
  • -MessageBird
  • -Is DevOps Overrated
  • -Infinite Canvas
  • -Framer Motion
  • -Daily Dev
  • -Collecting Data
  • -3d Globe on the Web
  • -2022-10-08
  • -2022-09-10
  • -SwiftUI
  • -Redirect
  • -Poisson Law
  • -Negative Binomial Series
  • -Negative Binomial
  • -JavaScript
  • -Graphics Engine Process
  • -FFMpeg
  • -Engine
  • -Computer Science
  • -2022-11-12
  • -2022-11-09
  • -Amie
  • -활자
  • -하늘땅사람
  • -0015 3Sum
  • -Using System Haptics and Sounds in Swift
  • -Shader
  • -README Badges
  • -Reading Files in Swift
  • -Creating Observable Object in SwiftUI
  • -0876 Middle of the Linked List
  • -0543 Diameter of Binary Tree
  • -0217 Contains Duplicate
  • -0206 Reverse Linked List
  • -0169 Majority Element
  • -0070 Climbing Stairs
  • -0067 Add Binary
  • -0057 Insert Interval
  • -Forward Declaration
  • -Compiling
  • -Pascal Triangle
  • -Markovity
  • -Approximation
  • -Total Probability
  • -PDF
  • -Partition Problem
  • -Odds
  • -Conditional Probability
  • -하늘땅사람 개인 정보 보호 정책
  • -2023-01-03
  • -2022-12-19
  • -2022-08-18
  • -WasmEdge
  • -TypeScript
  • -Spectre
  • -Principles of Inclusion
  • -Preemptive Multitasking
  • -Meltdown and Spectre
  • -Meltdown
  • -C++
  • -Slow Down Your Clock Cycle Speed
  • -Architectural Decision Records
  • -ACSM
  • -2022-07-13
  • -2022년 11월 한 달간 일기 쓰기
  • -Product-Market Fit
  • -2022-07-07
  • -2022-09-09
  • -Paracosm
  • -ULLO
  • -Readwise Reader
  • -phash.wasm
  • -Perceptual Hashing
  • -Nextra
  • -Interface (Jumpsite)
  • -Interactive ML Models
  • -Diagram (Company)
  • -designOS
  • -Deepnote
  • -Resolving GPG Fail to Sign Error
  • -2019-03-04
  • -Optimized Simulations
  • -2022-12-10
  • -Sources of Packet Delay
  • -Dynamically Linked Libraries
  • -Computer Systems
  • -Are.na (Service)
  • -2022-09-22
  • -Spellbound
  • -San Francisco
  • -Markdown
  • -In The End Trust Yourself
  • -GA
  • -XTML
  • -Subproject
  • -Structs and Unions
  • -Memory Wall
  • -Latency and Throughput
  • -Kubernetes
  • -Jira
  • -DOM Reflow
  • -Cache Conscious Programming
  • -서울 프로
  • -Inter
  • -Handling files in Unix
  • -File Descriptor
  • -2022-12-05
  • -Lesser Known Tricks
  • -Synthography
  • -Surfit
  • -MessagePack
  • -2022-11-27
  • -2022-11-26
  • -2022-11-25
  • -Noumenon
  • -LLM
  • -그게 뭐라고
  • -Tree Style
  • -Journal is a Waypoint, nothing more
  • -2022-11-18
  • -2022-11-17
  • -2022-06-15
  • -Get Job Done
  • -Search-based Tools for Thought
  • -Roam Research
  • -Archiving-based Tools for Thoughts
  • -Wildcard Image Domain on Next.js
  • -Lazy
  • -2022-11-08
  • -P2P
  • -2022-11-02
  • -2022-11-04
  • -2022-11-01
  • -Virtual Memory
  • -Caching
  • -Cache Write Policy
  • -Cache Mapping
  • -Cache Evictions
  • -Cache Average Access Time
  • -ARM Architecture
  • -Principles of Locality
  • -Playing Sounds in SDL
  • -Iron Law of Processor Performance
  • -2022-11-06
  • -2022-11-03
  • -2022-10-31
  • -Maserati Problem
  • -DjVu
  • -2022-10-28
  • -I travel the World Wide Web
  • -洪民憙雜記
  • -Makefile
  • -Front-end
  • -Linear README
  • -2022-10-07
  • -2022-09-27
  • -2022-09-20
  • -2022-09-18
  • -Remux
  • -2022-08-23
  • -Packet Loss
  • -Handwriting Tools for Thoughts
  • -Game Programming
  • -Font
  • -CBR vs VBR
  • -Android
  • -2022-09-28
  • -2022-09-17
  • -2022-09-12
  • -2022-09-06
  • -2022-09-03
  • -2022-05-28
  • -Transient Notes
  • -Sliding Panes
  • -PARA
  • -Dijkstra
  • -Apple Silicon
  • -2022-08-29
  • -2022-07-14
  • -2022-07-09
  • -2022-07-03
  • -2022-05-29
  • -Deno Deploy
  • -WeCrashed
  • -Web Browser
  • -We become what we do
  • -Venture Capital
  • -Turing Machine
  • -Trie
  • -Tesla Release Models
  • -Social Network Service
  • -ShadowRealm
  • -Realm Shim
  • -QuickSelect
  • -Pragmatic Engineer
  • -Our tools also shape us
  • -OCR
  • -Obsidian
  • -Monolithic Model
  • -MOBI
  • -Minimaximalism
  • -Metadata as a Service
  • -Leetcode
  • -K-Pop App
  • -Handwriting Grammarly
  • -GDB
  • -Extracting string in Android
  • -EPUB
  • -Either be the best-in-class or the most efficient
  • -Dogfooding
  • -Delta Time
  • -Code Quality for Game Programming
  • -CODE Procedure
  • -Binary Search
  • -BFS
  • -Atomic Notes
  • -Alter
  • -고통에는 순응이 아니라 감작이 나타난다
  • -2022-10-04
  • -2022-09-26
  • -2022-09-24
  • -2022-09-21
  • -2022-09-19
  • -2022-09-14
  • -2022-09-08
  • -2022-09-07
  • -2022-09-04
  • -2022-08-30
  • -2022-08-27
  • -2022-08-26
  • -2022-08-25
  • -2022-08-24
  • -2022-08-11
  • -2022-08-10
  • -2022-08-07
  • -2022-08-02
  • -2022-07-31
  • -2022-07-25
  • -2022-06-29
  • -2022-06-23
  • -1448 Count Good Nodes in Binary Tree
  • -1290 Convert Binary Number in a Linked List to Integer
  • -1046 Last Stone Weight
  • -0733 Flood Fill
  • -0242 Valid Anagram
  • -0226 Invert Binary Tree
  • -0215 Kth Largest Element in an Array
  • -0199 Binary Tree Right Side View
  • -0125 Valid Palindrome
  • -0079 Word Search
  • -0021 Merge Two Sorted Lists
  • -0002 Add Two Numbers
  • -Below
import { useSpring } from 'framer-motion'useSpring(x, { stiffness: 1000, damping: 10 })
export type DynamicIslandSize =  | 'compact'  | 'minimalLeading'  | 'minimalTrailing'  | 'default'  | 'long'  | 'large'  | 'ultra'
<motion.div  id={props.id}  initial={{	opacity: props.size === props.before ? 1 : 0,	scale: props.size === props.before ? 1 : 0.9,  }}  animate={{	opacity: props.size === props.before ? 0 : 1,	scale: props.size === props.before ? 0.9 : 1,	transition: { type: 'spring', stiffness: stiffness, damping: damping },  }}  exit={{ opacity: 0, filter: 'blur(10px)', scale: 0 }}  style={{ willChange }}  className={props.className}>
import { motion, useWillChange } from 'framer-motion'
// ...
const willChange = useWillChange()
// ...
<motion.div style={{ willChange }}/>