260202_rust_kernel_basic002
현재(Linux 커널 도입된 버젼 6.18.12) Rust로 커널 만드는데 중요한 3가지 개념 정리(1. 필드 프로젝션(Field Projection), 2.제자리(in-place) 초기화 (In-place Initialization), 3. 임의 Self 타입(Arbitrary self types))
965 words
|
5 minutes
260201_Arc_Basic001
Arc in Rust stands for Atomically Reference Counted. It allows multiple owners of the same heap data across threads, while safely tracking how many references exist.
1712 words
|
9 minutes
260201_ML_perceptron
Rust Perceptron algorithm in machine learning
636 words
|
3 minutes
260201_Serialize_Deserialize
2026-02-01
CS 기초 | 직렬화(Serialize)와 역직렬화(Deserialize)란?
964 words
|
5 minutes
260201_kernel_dev_in_Rust_basic01
rust개발자를 위한 커널 개발 기초
1667 words
|
8 minutes
260131_implementing_LFU_Cache_Least_Frequently_Used
(C++ & Rust) How to implement a Least Frequently Used (LFU) cache?
1697 words
|
8 minutes
260130Deep_Dive_into_HashMap002_Try_making
나만의 HashMap만들기 & Assembly code로 Hash최적화 시도
2389 words
|
12 minutes
260130_What_does_const_fn_actually_do
const fn을 사용하여 얻는 것, 중요한 경우, 그렇지 않은 경우를 구체적인 시스템 수준의 직관(C/C++ 스타일)으로 설명해 드리겠습니다.
1458 words
|
7 minutes