Have you started using Actix-Web in your learning of Rust or real projects? Actix-web is now dead and no longer an open-source project. The author has moved it, along with Actix-Net, to his personal GitHub account. He is taking his
10 Alternatives To The Defunct Actix-Web
People have started looking for 10 alternatives to the now-defunct Actix-web since its death. Some may end up forking Actix-web and evolve it into something uniquely theirs. Others may have started porting their applications to other frameworks or even out of Rust.
Actix-Web: The Most Fun Rust Web Framework Is Back!
The most fun Rust web framework is back with a new project leader! I feel relieved by its comeback. Today, I was trying out one of the alternatives to Actix-web. But I was having difficulties making it read and parse
Why You Should Choose Rust Stable Over Nightly
If you are new to Rust, choose Rust Stable over Nightly to make your life and other people’s lives simple – may apply to both crate producers and consumers. There are three types of Rust compiler – Nightly, Beta, and
Find Interquartile Range In Julia
This post shows how to find the Interquartile Range (IQR) in Julia. We will use custom codes and move them into a function for reusability. Interquartile Range With Custom Codes Before moving on, please install Julia plugin for IntelliJ IDEA. Using
Find Standard Deviation In Julia
Although there is the Statistics.std function, this post shows how to find the Standard Deviation in Julia using custom codes. What is Standard Deviation? The Standard Deviation is a value that shows how much the values deviate from their mean.
How To Create Array Literals In Julia
This post is about how to create array literals in Julia. When we write out array values, we create array literals. Julia can readily interpret these array literals. There are other ways to create arrays in Julia, but we will
docker-compose.yml For WordPress And MySQL
To set up WordPress and MySQL in no time and without installing them, here is a useful docker-compose.yml file. If you’re new to WordPress development, you’d probably installed XAMPP and MySQL on your Windows machine. You may not want to
Rust Core Data Types To Get Familiar With
Rust has two types of core data types – scalar and compound. Scalar types are single-value types, while compound types are multi-value types. Integer Data Types An integer data type is one of Rust’s core data types that represents a
Custom Data Types With Struct, Trait, And Enum In Rust
We can create custom data types in Rust using struct, trait, and enum. A struct is a composite data type that groups variables in a memory block. These variables are then accessible via the struct’s instance – also referred to