#web

Tag's specific feed:
Killing in the name of Privacy

Tags: #web,#linux,#foss,#selfhosting

Reading time: ~11min


An AD blocker killed a project that I was working on for 4 months. It was one commit adding 2 lines that killed 419 commits with more than 2000 total lines of code.

The script that powers my project was placed on the filter list "EasyPrivacy". But is the project that I designed with privacy as the first feature trying to invade your privacy?

This brings up the topic about telemetry in FOSS projects. Is telemetry inherently bad? Is there a way to collect telemetry without comprimising privacy?

Read more...
SQLx integration in Axum

Tags: #rust,#axum,#web,#database

Reading time: ~9min


SQLx is an awesome crate for interacting with databases in Rust with compile time checks. In this blog post, we will learn how to use it in an Axum backend to store and retrieve data from a database.

The example will be storing submitted contact forms from the previous post about Axum.

During the SQLx integration, we will learn about states and returning JSON in Axum.

Read more...
Getting started with Rust backends

Tags: #rust,#axum,#web

Reading time: ~9min


How hard can it be to write a web backend in Rust? We will try to answer this question through an example.

Read more...
Back to all tags