Introduction
#
Hello everyone! 👋
In this article I’ll present you the options pattern in Golang. The pattern is useful when you want to create a function that takes different parameters as an option.
I’ve found a BME680 library written in Rust, but I could not compile it because the author added crates which contained alpha versions as dependencies, and they’ve implemented breaking changes.
Hello! 👋
The Cancellation Token Pattern article is a pattern inspired by C#’s CancellationToken struct and Golang’s context package.
The main idea of the pattern is to allow the user of an API to cancel its operations, but in order for this pattern to work, the API must be written with the cancellation token pattern in mind.
Introduction
#
Hello everyone 👋,
This is a quick post about the windows task scheduler, if you’re a Software Developer using Windows the task scheduler is a great tool to automate tasks. I see it as a combination of cron and systemd (if you’re a Linux user you know what I’m talking about).
Introduction
#
Idempotency is a crucial property in the world of APIs, ensuring that operations can be applied multiple times without changing the result.
Hello there 👋,
This is a showcase of a project I’ve been working on for the past weeks. It’s a simple cross-platform desktop application that allows you to tag images using a machine learning model that I’ve trained.
Hello everyone 👋,
In this article, we’ll instrument a simple Node.js API with OpenTelemetry traces.
OpenTelemetry is the new standard for distributed tracing and metrics. Trace data is used to monitor and troubleshoot complex distributed systems.
Hello everyone! 👋
This is a follow-up post to the previous one, long story short I started taking the course from fast.ai to learn more about Deep Learning. I’ve built a simple Image Tagging model using the Resnet architecture (don’t worry about the paper I did not read it, GitHub Copilot suggested it while writing this blog post).
Hello everyone 👋,
I’ve been playing with FastAI and deep learning for a week or so and I’ve decided to combine my passion for software with my passion for photography. I’m working on an app or maybe a library that allows you to generate tags for a photo. For an amateur photographer like me it’s quite useful as I don’t always have inspiration to write tags for my photos and sometimes the tags I write are inconsistent.
Hello everyone 👋,
In this quick post I’ll show you how to deploy a FastAI model using FastAPI.
It’s a follow-up to my previous post from here and it is partially based on this FastAI lecture: