분류 전체보기(289)
-
YCC 상단과 엔 캐리 트레이드 포지션
. BOJ(Bank Of Japan)이 지난달 YCC(Yield Curve Control) 상단을 0.25%에서 0.5%로 올린데 이어, 이를 0.75%로 다시 한번 올려야 하는가에 대한 논의가 나오고 있다. 이것이 갖는 의미에 대해 논하기 위해서는 YCC가 무엇이며, 어떻게 등장하게 되었는지에 대해 먼저 살펴볼 필요가 있다. . YCC의 시초는 동일본 대지진으로 방점을 찍은 2011년 일본의 불경기와, 이를 해결하기 위해 무제한 양적완화를 들고 등장한 아베노믹스까지 거슬러간다. 아베 정권은 침체기에 접어든 경기를 다시 활성화시키기 위해 단기 금리를 마이너스로 유지하면서 양적 완화를 통해 연간 80조 엔만큼 장기 국채를 매입했다. 이로 인해 10년 동안 일본의 단기 금리는 마이너스, 장기 금리는 0%대를..
2023.01.24 -
이데아 기반의 사고와 현상 기반의 사고
that logic excludes _by definition_ nuances, and since truth resides exclusively in the nuances, it is "a useless instrument for finding Truth in the moral and political sciences." . 모든 사물과 현상에는 원인과 본질이 있으며, 이를 "이데아"라고 정의한 플라톤의 이데아 사상으로부터 시작된 서양의 형이상학은 의심에 의심을 거듭해 불변의 진리를 찾고, 이를 통해 항상 참인 명제들을 탐구하는 방식으로 발전해 왔다. (당연히 모든 서양 철학이 이러한 것은 아니지만 적어도 데카르트 때까지는 그런 것처럼 보인다.) 생각해 보면 서양 철학의 역사는 곧 논리학의 역사이다. 감..
2023.01.22 -
How @next/font Works
Overview @next/font includes built-in automatic self-hosting for any font file. This means you can optimally load web fonts with zero layout shift, thanks to the underlying CSS size-adjust property used. This new font system also allows you to conveniently use all Google Fonts with performance and privacy in mind. CSS and font files are downloaded at build time and self-hosted with the rest of y..
2023.01.15 -
Concept of React Scheduler
Overview 이전 포스팅에서 React Sync Mode(Concurrent Mode가 아닌 것, Legacy Mode)가 어떻게 동작하는지에 대해 Source Code Level에서 간략하게 살펴보았습니다. 이번 포스팅부터는 해당 내용을 기반으로 해서 Concurrent Mode가 어떻게 동작하는지에 대해서 한 단계씩 살펴보려고 합니다. Fiber, workInProgress Node, workLoopSync와 같은 용어들을 이해하고 있다는 전제로 전개되므로 이전 포스팅을 먼저 읽어보시는 것을 추천합니다. Concurrent Mode의 핵심은 Task를 수행하는 도중에 더 높은 우선순위를 지니고 있는 Task가 들어오면, 지금 처리 중인 Task를 "일시중단(Pause)"하고, 우선순위가 더 높은 ..
2023.01.14 -
속도 조절은 피벗이 아니다
Participants reaffirmed their strong commitment to returning inflation to the Committee’s 2 percent objective. A number of participants emphasized that it would be important to clearly communicate that a slowing in the pace of rate increases was not an indication of any weakening of the Committee’s resolve to achieve its pricestability goal or a judgment that inflation was already on a persisten..
2023.01.08 -
React Mount System Deep Dive (Sync Mode)
Overview 이전 글들 (Conceptual Model of React Suspense, Algebraic Effects of React Suspense, Suspense SSR Architecture in React 18)에 이어 Suspense의 동작 원리에 대해 Source Code Level에서 다루는 포스팅을 준비하고 있었습니다. 하지만 막상 Code Level에서 이를 분석하려고 하니 너무나 방대한 React의 개념들과 용어들(Fiber, Scheduler, Task, Lane, performUnitOfWork, Double Buffering)을 능숙하게 이해하고 있음을 전제하여야 했고, 이 모든 내용을 하나의 포스팅에 담기는 어려울 것 같다는 결론을 내렸습니다. 따라서 React18에서 ..
2023.01.08