Categories
Tags
algorithms APIT Arc arm assembly asynchronous base64 BitHacks Blogging box c clang-format client cmake compiler concat concurrency const_fn contravariant cos covariant cpp Customization cybersecurity DataStructure db debugging Demo deserialization discrete doc DP dtruss Dynamic Example FFI flat_map format FP fsanitize Functional functions futures Fuwari GATs gccrs generics gitignore glibc GUI hacking hashmap haskell heap interop invariant iterator join justfile kernel LaTeX leak LFU linux lto MachineLearning macOS Markdown math ML mmap nc OnceLock optimization OS panic parallels perf physics pin postgresql radare2 release reverse RPIT rust sanitizer science Science serialization server shift sin SmallProjects socket std strace String StringView strip strlen surrealdb SWAR swisstable synchronous tan toml traits triangulation UnsafeRust utf16 utf8 Video wsl x86_64 xilem zig
260202_rust_kernel_basic002
2026-02-02
현재(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
2026-02-01
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_Serialize_Deserialize
2026-02-01
CS 기초 | 직렬화(Serialize)와 역직렬화(Deserialize)란?
964 words
|
5 minutes
260131_implementing_LFU_Cache_Least_Frequently_Used
2026-01-31
(C++ & Rust) How to implement a Least Frequently Used (LFU) cache?
1697 words
|
8 minutes
260130Deep_Dive_into_HashMap002_Try_making
2026-01-30
나만의 HashMap만들기 & Assembly code로 Hash최적화 시도
2389 words
|
12 minutes
260130_What_does_const_fn_actually_do
2026-01-30
const fn을 사용하여 얻는 것, 중요한 경우, 그렇지 않은 경우를 구체적인 시스템 수준의 직관(C/C++ 스타일)으로 설명해 드리겠습니다.
1458 words
|
7 minutes