Oliver Jumpertz
Engineer by heart 💛 | Rust | Hey Mom, I'm finally a YouTuber! @ https://t.co/3x83WnFpN7 | Blogging over @ https://t.co/uXTufCI1dK
عرض في 𝕏سلاسل التغريدات
Git is by far the most used source control management tool out there. It is basially an essential to know. And this justifies knowing a few of the most important git commands you...
Git is by far the most used source control management tool out there. It is basially an essential to know. And this justifies knowing a few of the most important git commands you...
I've seen some people complaining about Twitter putting text-based 2FA behind the paywall. There is gladly a far better way that still works for everyone (and to be honest, text-b...
If you learn Rust, you'll learn much more about computers and optimization/programming than many other programming languages can even teach you. Want an example? The Rust compile...
Useful Rust knowledge: An enum always takes up the space in memory occupied by its largest member + a discriminant (which is often optimized away, though). This means: For an Op...
Web Assembly is one of the major technologies that will influence our industry significantly. Even Docker's co-founder once said he would not have created Docker if Web Assembly h...
How to learn Rust: 1. Rustlings 2. THE Rust Book (enhanced version by Brown) 3. Rust by Example (to fill gaps) 4. Error Handling in Rust 5. Build projects on your own That's it....
@csaba_kissi Let me be the devil's advocate here: It is NOT for everyone. EverOne CAN do it; but not everyone will probably LIKE it. Coding is a direct application of abstract m...
The hardest part of being a senior software engineer: Having experience. Sometimes, experience tells us to take care of a million things that might not even be relevant to the ca...
Algorithms in Rust: This is the infamous fast inverse square root implemented in Rust. This particular implementation was initially discovered in Quake III Arena's source code an...
Most Software Developers don't code all day. You should never feel guilty for not writing code for 8 straight hours. Software development is also about thinking, taking breaks, th...
Algorithms in Rust: Here is an implementation of finding the greatest common divisor of n numbers in Rust. It uses Euclidean division to calculate the GCD of two numbers and recu...