Technology, Politics, and Folk Literature

Learning Rust Pt. 1 (2023)

Rust is the system programming language that run blazingly fast, prevent segfaults, and guarantees thread safety. In other words, Rust is designed for the speed, safety, and concurrency. But, nowadays developers are crazy and use language other than it was originally intended for.

TIL: typedef is not recommanded with struct in C (2023)

Today, I learn that typedef with struct trick give you a way to use structure tag like normal type. But, it is not suggested as mentioned in Linux kernel coding style document except few scenarios.

Learning Nest Pt. 1 (2023)

Nest is the Node framework. It is built on top of Express. You can build Microservices, REST APIs, GraphQL APIs, real-time apps and more.

TIL: Recommended Way to Define Pointer Variables in C (2023)

Today, I learn that we should use int* x to define a pointer variable than int *x. Why?

One-to-one Meeting (2023)

Sharing with you some meeting advice that I find useful and learn from others.