geekAbyte
Books
(Move to ...)
▼
Sunday, April 14, 2024
FuturesOrdered: Keeping Concurrency in Order In Rust
›
The use case is as follows: You have some tasks you want to execute concurrently, but you want the results to be returned in the same order ...
Friday, May 05, 2023
Fixing "Failed to get Recent Blockhash" Error in Solana Development with Anchor Framework
›
I took a break from exploring development in Solana, and the first thing I hit when I recently resumed again was failing tests when using th...
Monday, January 23, 2023
A Short Note on Types in Rust
›
Types, loosely defined, are about capabilities. What are the capabilities available on a value of a certain type? Programmers experienced wi...
Tuesday, October 11, 2022
Introduction to Declarative Macros in Rust
›
This post will give a quick overview of declarative macros in Rust. If you are not familiar with the concepts of macros in Rust, then read I...
Monday, October 10, 2022
Introduction to Macros In Rust
›
This guide will present an overview of the fundamentals a new developer approaching macros in Rust needs to know. If you have read other mat...
Wednesday, September 28, 2022
How to query account balance on Solana using Rust.
›
This post shows how to query Solana's cluster rpc endpoint using Rust. Most of the examples of how to perform this task that I ran to us...
1 comment:
Saturday, August 13, 2022
IntoIterator and the for ... in Syntax in Rust
›
In Rust Iterator pattern with iter(), into_iter() and iter_mut() methods I explained why attempting to use a variable holding a Vec after ...
4 comments:
›
Home
View web version