https://www.reddit.com/user/LegalCan4801/ Software architecture Composition over inheritance quickly explained with legos Composition over inheritance is a recurring theme in object-oriented programming (OOP). Usually, it is explained in a …
Image by Tsutomu Nihei --niji 5 Software architecture Common and Useful Deployment Patterns What is a deployment pattern? A deployment pattern (Not to be confused with a design pattern ) is an automatic method of …
Software architecture Go Worker Pool Design Pattern Explanation This entry is about a the Worker Pool design pattern. Imagine that you have a number of concurrent tasks that you want …
Artificial intelligence Opinion Chat Gpt, Searle's Chinese Room and consciousness Chat GPT is on everyone’s lips, some are afraid of it, because of its ability to solve code problems others are …
Go Go with Reflect: Boost Your Code's Flexibility The “reflect” package is a useful library in the Go programming language that provides functions for working …
Linux Software architecture Stream your videos and audios: HLS for your applications Almost all modern web applications perform some form of streaming, from video platforms to live streaming. In this post …
Software architecture Fast and performant APIs using Go Lang gRPC and Protobuffers Protobuffers allow you to create a Go Lang gRPC API that has the characteristic of being incredibly faster, because it …
Imagen por Midjourney CC License https://midjourney.com Artificial intelligence I Test ChatGPT With Codewars Coding Challenges ChatGPT is breaking with everything previously known in artificial intelligence, some developers are worried that it may …
Go Databases Go Migration Tutorial with migrate In frameworks like Django, migrations are created automatically , from the models. However, in languages like go, as …