© 2022 Hashnode
solution is install openssl and pkg-config pacman -S openssl pacman -S pkg-config error: linker cc not found | = note: No such file or directory (os error 2) rust compiler need cc , just install gcc can get rid of this error pacman -S gcc
Some of you know I started the project osmini : a simple mini-operating system from scratch in Rust and Assembly. (I haven't worked on it since something like a month, I don't know when I could get the time to work on it again) Then, I was …
The two traits Base and Derived each define a trait method called method. These methods happen to have the same name but are otherwise unrelated methods as explained below. Both traits provide a default implementation of their trait method.…
According to me, after documentation, GitHub repositories are one of the best ways to learn to program. There are lots of resources where you can learn programming and it is easy to become lost in the…
In my last post, there was a small bug that needs to be corrected. Until now the game has not counted the number of unique letters that match so let's implement this. In order to do so, we need to add…
Bevy is an ECS-based game engine built in Rust. Extension traits are a pattern in rust that allows you to add methods to an existing type defined outside of your crate. You can probably guess where I’m going with this. In bevy, any system c…
What is Rust? Rust is a multi-paradigm general purpose language which provides memory safety out of the box. It's similar to C++. It's a statically and strongly typed language and it's a compiled lang…
Hello 👋, In this article, I will describe the steps I went through to create a small desktop application to help me focus on my daily tasks. Contents The focus problem The idea of the application Setting up the project Creating the UI Cal…
Solana is a decentralized blockchain built to enable scalable, user-friendly apps for the world. I think it is the best choice for a promising career because this is a new blockchain, but despite this…
Intelligent Rust IntelliJ Rust brings JetBrains-quality language support and the full IDE experience to your Rust workflow. Rust becomes native to IntelliJ IDEA, CLion , and other IntelliJ-based IDEs…