博客

2025.06.25

混合使用Ada与汇编

在进行系统编程、硬件控制或性能关键型优化时,有时需要从像Ada这样的高级语言下降到原始的汇编语言。但如何以一种结构化的、符合标准的方式来实现,并验证它是否有效呢?


2025.06.24

关于围绕Rust采用的某些论点的批判性考察

Rust无疑是现代编程语言生态系统中最受瞩目的语言之一。其以内存安全为核心的强大功能为许多开发者带来了新的可能性。然而,在讨论Rust成功的过程中,有时会观察到一些超越技术本身优点、包含夸大或逻辑跳跃的主张。本文的目的并非指责任何特定个人或团体,而是为了更健康、更富有成效的技术讨论文化,对这些主张进行批判性的审视。


2025.06.23

超越时代的经典:深度解析张信哲的《爱如潮水》

您知道那首吟唱着如潮水般爱意的华语乐坛顶级情歌——张信哲的《爱如潮水》吗?这首歌自1993年发行以来,三十多年后的今天依旧能湿润无数人的心房。它凭借其哀婉的旋律和诗意的歌词,为张信哲赢得了“情歌王子”的美誉,是一首不折不扣的经典名曲。


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 함수를 통해 이 기능을 사용합니다.