Solving Next.js and NextAuth Integration Issues · If you use NextAuth within your Next.js v12.x project, you've probably faced this issue: Can't resolve...
Learning Rust · Tuple let numbers: (i32, i32, f64) = (1, 2, 3.5); // destructuring let (a, b, c) = numbers; // mutable let mut mau = (10, 11, 12) mau.0...
2023 has already started and a small TODO list (at least, giving them a try) for this year: Be an expert with Algolia Rust tRPC SolidJS (They've...
How does JS run async code if it's a single-threaded language? · It's been a long time without posting anything here, but I'm back.Let's talk about...
Notes about clients and servers · Client A client is a process that basically requests data from a server. As we're talking about the web, the browsers...
I'm reading this book with GraphQL content. Thanks @leonardomso Pagination: Cursor Pagination Cursor pagination is generally a great choice, because...