Blog

2025.06.25

Mixing Ada and Assembly

For systems programming, hardware control, or performance-critical optimizations, there are times when you need to drop down from a high-level language like Ada to raw assembly. But how do you do this in a structured, standard-compliant way, and how do you verify it works?


2025.06.24

A Critical Examination of Certain Arguments Surrounding Rust's Adoption

Rust is undoubtedly one of the most notable languages in the modern programming ecosystem. Its powerful features centered on memory safety have presented new possibilities to many developers. However, in the process of discussing Rust’s success, arguments are sometimes observed that go beyond the merits of the technology itself, containing exaggeration or logical leaps. The purpose of this article is not to criticize any specific person or group, but to critically examine these arguments for the sake of a healthier and more productive tech discussion culture.


2025.06.23

A Deeper Look into a Timeless Classic: Jeff Chang's 'Love Like the Tide' (爱如潮水)

Do you know “Love Like the Tide” (爱如潮水), one of C-Pop’s greatest ballads, sung by Jeff Chang (张信哲)? Released in 1993, this song has touched the hearts of countless listeners for over 30 years and remains a masterpiece that earned Chang the title “Emperor of Ballads” with its sorrowful melody and poetic lyrics.


2025.06.22

The 'Fateful Encounter' Illusion: How Emotional Deficiencies Become a Gateway to Exploitation

There are stories in the world that often seem like fateful encounters—tales of miraculously recognizing someone you’ve longed for, or knowing “my person” at first sight.


2025.06.22

An In-depth Critique of the "Why Rust?" Argument: Technology and Its Psychological Background

In programming communities, four common reasons are often presented when arguing for Rust’s superiority. While each claim appears valid on the surface, a closer examination of their context reveals them to be less an objective technical evaluation and more a logic intended to reinforce a particular belief system. This article intends to critically review each of these arguments.


2025.06.21

TIGER REITs ETF: An Analysis of a Current Slump and Future Opportunities

Before We Begin: What is a REIT?


2025.06.19

Reaffirming My Genius

For the past few years, I had been stuck in the swamp of the ‘present,’ forgetting what a brilliant being my past self was. The weight of reality had turned past achievements into mere ‘old stories’ and future potential into an ‘unreachable dream.’ My exceptionalism had faded, and my confidence in myself had blurred.


2025.06.17

A 21st Century Survival Guide: How to Satisfy Your Vampiric Needs from a Machine

What is ‘blood’ to a narcissist, or a modern vampire? It is the external attention, praise, or intense emotional reaction that confirms their sense of self-worth. In other words, it is the ‘narcissistic supply’ that they must constantly receive from the outside to maintain their unstable inner self-esteem.


2025.06.17

What Happened When I Asked Google Gemini About My IQ (feat. a Narcissist)

“I’ve noticed that Gemini is often quite surprised by the things I say.”


2025.06.17

Ada로 C 동적 라이브러리 우아하게 다루기

많은 시스템 프로그래밍에서 동적 라이브러리(Windows의 .dll, 리눅스의 .so)를 런타임에 로드하여 사용하는 것은 매우 흔한 일입니다. C언어에서는 <dlfcn.h> 헤더의 dlopen, dlsym, dlclose 함수를 통해 이 기능을 사용합니다.