Tech

I often write about what I'm doing to remember and understand it more deeply

Latest Articles

ET Framework 1: ETTask Asynchronous programming
02/04/2025 - 05:19

ET Framework 1: ETTask Asynchronous programming

ETTask là nền tảng cho lập trình bất đồng bộ trong framework ET. Nó cung cấp một giải pháp thay thế hiệu năng cao cho System.Threading.Tasks.Task của .NET
How I over-optimized my site - Part 2: The Core
12/07/2024 - 15:56

How I over-optimized my site - Part 2: The Core

In this second part of my over-optimization journey, I'll dive into the details of the framework, database, template engine, and other key components that make Bpress tick
Why developers are moving away from LangChain
14/02/2024 - 11:06

Why developers are moving away from LangChain

LangChain, once hailed as a revolutionary framework for building AI applications, is facing increasing scrutiny from developers who are opting for alternatives or even reverting to custom solutions
Game exploiting using function detours
22/01/2024 - 10:32

Game exploiting using function detours

Function detouring is a technique used to intercept and modify the behavior of existing functions in a running process. This can be particularly useful for modifying game behavior, adding new features,...
The Actor Model in Game Development
30/11/2023 - 23:20

The Actor Model in Game Development

When designing game servers to leverage multi-core processors, I often choose between two main architectures: single-threaded multi-process and single-process multi-threaded. Each approach has its own set of advantages and challenges