Rust 101 – 30: good pattern and not so good

June 17, 2024 [Programming, Programming Languages, Rust, Tech, Videos] Some good patterns to be followed in your code such as “Newtype”, “Liptate” and one to avoid. Series: Basics of language, more syntax, characteristics and generation, building applications, concurrence and parallelism, Nature objectASYNC, NOT SAFE, FFI This section (the object of nature): 28: Dynamic Dispatch, 29:…

Mini-Rust in Rust 020: The Gap in Our Type Examiner

The type of examiner passed our unit test, but stopped our language to really function. It’s time to fill the gap. You can find the source code at codeberg.org/andybalaam/milk and more of my items in artificialworlds.net Game Online Gaming Hub

Rust 101 – 31: Exercise for Module D (Q1)

June 22, 2024 [Programming, Programming Languages, Rust, Tech, Videos] Some good patterns to be followed in your code such as “Newtype”, “Liptate” and one to avoid. To see the training code like when I recorded the video: git clone cd teach-rs git checkout 95d9927 Series: Basics of language, more syntax, characteristics and generation, building applications,…

Mini-Rust in Rust 019: Type Checking Actual Type Errors

We have a plan to order what error should we get when we try to write a code like let x: i32 = 3.0;. Let’s try to make it happen! You can find the source code at codeberg.org/andybalaam/milk and more of my items in artificialworlds.net Game Online Gaming Hub

Kenapa Link Slot Gacor Selalu Dicari Pemain?

Dalam dunia slot online, link slot gacor selalu menjadi incaran para pemain. Istilah “gacor” sendiri berarti gampang bocor atau mudah menang, sehingga pemain berharap bisa mendapatkan kemenangan lebih sering dan lebih besar. Tapi, apa sebenarnya yang membuat link slot gacor begitu dicari? 1. Potensi Kemenangan Besar 💰 ✔ Slot gacor sering dikaitkan dengan RTP (Return…

Rust 101 – 32: Exercise for Module D (Q2)

June 23, 2024 [Programming, Programming Languages, Rust, Tech, Videos] Try the symbol pattern by tracking the state of the 3D printer by changing our type instead of updating the variables every time it changes. To see the training code like when I recorded the video: git clone cd teach-rs git checkout 95d9927 Series: Basics of…

Mini-Rust in Rust 018: Type Examination, Happy Path

Here it is: we will do some of the actual types of checks. We want to be able to identify that let x: i32 = 3.0; Wrong, but for now we will examine some of the right things. This type of checking is much easier than the full type of inference that we will ultimately…

Selected for the Foundation Matrix Regulatory Board!

June 23, 2024 [Matrix, Tech] I am very happy to say that I was elected as a member of the Matrix Foundation Regulatory Board! I was really surprised because there were many people who were standing, and the quality of the candidate was very high, but I was the lucky one. I hope I can…

Rust 101 – 33: Exercise for Module D (Q3)

June 24, 2024 [Programming, Programming Languages, Rust, Tech, Videos, Writing] Follow the exercise using the object of nature with dynamic delivery to choose different behaviors during Runtime. To see the training code like when I recorded the video: git clone cd teach-rs git checkout 95d9927 Series: Basics of language, more syntax, characteristics and generation, building…

Mini-Rust in Rust 017: Handling Literal Float

We are still in the mission to carry out several types of checks, and our plan is to allow writing let x: i32 = 3.0;Then produce a type of error because 3.0 not an integer that can be stored in i32. The last part of the puzzles is to be able to handle 3.0 Bit…