© 2023 Hashnode
#rust
Creating reusable GitHub Actions is an easy way to automate away everyday tasks in CI/CD. However, actions are typically implemented in TypeScript or JavaScript, and getting started in another languag…
Problem Given a vector of non-negative integer numbers vec, arrange the numbers in a way that they form the largest possible number and return its string representation. Examples: Input vecOutput …
Introduction When I set out on learning embedded Rust, I recall one of my struggles is material spanning multiple abstraction levels. As might be known in embedded Rust, the abstraction level sitting …
How are ebpf programs written? You write an eBPF program. Mostly in restricted C. Compile the program into bytecode using tools like clang Use bpftool or another high-level program to load bytecode…
I have been developing web applications since 2005 in RubyonRails and I think it is the best framework for building web applications ever. Why? Ruby Language Dynamic Easy to understand and write M…
The objective of this series I had dabbled in rust before but did not go very deep into it. Now, I will be "relearning" rust (in public) and sharing all the concepts and code that in the blog form her…
At the beginning of 2023, I decided to learn a new language just for fun. As of now, I am quite good with Java, Python and Javascript though I use only Python and javascript for all of my web developm…
Hello It's been a while since I've blogged about the IDE. A lot of exciting changes have been introduced to the codebase since my last post in July! Highlights🎉 UTF-16 support Lazy-load directories in Workspace Explorer. Show hidden fil…
🦀Hello to all Rust lovers! You're probably here because you already know about the myriad wonders the Rust programming language has to offer. Rust is indeed a powerful language on its own, but with t…
I recently developed my first Rust crate, a library for generating unique IDs. The idea was inspired by Twitter's snowflake and I was looking to bring a similar solution to Rust projects. One of the k…