RSSAmplifier

Blog

My Personal Blog | Mohammad Abbasi

Recent content on My Personal Blog | Mohammad Abbasi

blog.mohammad-abbasi.meRSS feed ↗3 posts

Latest posts

Why and How You Should Persist Your OpenWrt Logs?

Stop losing your OpenWrt router logs on every reboot, Learn why it is crucial to persist your OpenWrt logs and explore various methods to achieve this, from local storage solutions to cloud-based log management services.

From Bits to Integers: The Journey of Numbers in Computers

Learn how computers store, represent, and manipulate integers in binary systems. Explore unsigned and signed integers, two's complement, and overflow handling.

Generics in Go

You probably know that Go is a statically typed language, which means that every variable in your program must have a predefined type. For example, when we define a function, we need to specify the types of its parameters, like in the following code: func Print ( s string ) { fmt . Println ( s ) } Here, we have defined a parameter named “s” with the string type. We can define any…