Go Go: parsing a YAML file September 25, 2023 In this article, we will explore how to parse a YAML file using the Go programming language. Read more
Go Go: multiple downloads with goroutines and channels September 25, 2023 In this article, we will explore how to implement multiple file downloads using goroutines and channels in Go. Read more
What is the difference between :first-child and :first-of-type in CSS? September 21, 2023 In this article we will talk about the important difference that exists between two CSS selectors whose purpose is to select the first element of a series. Read more
JavaScript JavaScript: promise concurrency with Promise.allSettled() September 19, 2023 In this article we're going to see when it's appropriate to use the Promise.allSettled() method for promise concurrency in JavaScript. Read more
JavaScript JavaScript: how to handle WebSocket streams with SPA frameworks September 18, 2023 In this article we'll take a deep look at how to handle WebSocket streams with SPA JavaScript frameworks. Read more
Go Go: how to parse arbitrary JSON data September 17, 2023 How can we parse an arbitrary JSON structure? In Go you can use an alternative solution to structs. Read more
Go Go: best practices for TDD (Test-Driven Development) September 17, 2023 In this article, we will explore some of the best practices for TDD in Go. Read more
Node.js Node.js: best practices for TDD (Test-Driven Development) with Jest September 17, 2023 In this article, we will explore some best practices for using Jest effectively in TDD. Read more
Go Go: how to list the files of a directory September 17, 2023 In this article we will see how to get the list of files in a directory with Go. Read more
Python Python: using Faker for testing REST APIs September 17, 2023 In this article, we'll explore how to use the Faker module to generate random, realistic data for testing your REST APIs. Read more