RSSAmplifier

Blog

Silvano Cerza Blog and Thoughts

Blog posts and random thoughts about anything, mostly software development.

httpsRSS feed ↗9 posts

Latest posts

(untitled)

I just read this great guide from Duck Typed about AWS Virtual Private Cloud (VPC), it explains in really simple terms what a VPC is and why it's necessary. The illustrations complement the port perfectly too. 🖌️ By the way it's part of a series of posts that explore other AWS networking features, I suggest those too. https://www.ducktyped.org/p/why-is-it-called-a-cloud-if-its-not

(untitled)

I rewrote my blogging system from scratch thinking that I would use it more, and it kinda happened at the start, I wrote some new posts right away. Though right now I find myself not writing as much, I'm not even reading that much these times to be fair. I kinda feel I miss an important part of system to truly use it as I want it. I need to find the time to complete it.

(untitled)

Stupid Safari and iOS forcing me to do this to copy text to clipboard. 😩 export async function copyToClipboard(text: string) { try { await navigator.clipboard.writeText(text); } catch (err) { // Fallback for devices like iOS that don't support Clipboard API const textarea = document.createElement("textarea"); textarea.value = text; textarea.setAttribute("readonly", ""); textarea.style.position =…

A rant on Ghibli slop

I started writing this as a simple thought, it quickly evolved into a rant of sort. These past week OpenAI released their new image generation model, indeed amazing stuff, it can create and reason about images in way that classic diffusion models really can't. Quickly people started generating slop upon slop of Studio Ghibli styled images. All my socials where flooded with these images. Instagram…

A new way to sync your Obsidian vault

I've been working on this Obsidian plugin for quite some time and I'm really happy to say that it's finally been included in the list of community plugins! You can find the sources and the install instructions in my GitHub profile over here . But let's delve a bit into how I came up with the idea for the plugin. If you have never heard of Obsidian it's a desktop and mobile note taking app that you…

My Home Network Setup

I have a small PC at home that I use as a server to run some personal services of mine, Jellyfin, Sonarr, QBitTorrent, and others. This is an outline of the current setup and some of the problems I faced. One of the things that always bothered me about running a server in my network is having to use the IP and port to access this or that service. So when I first set everything up, I had to find a…

(untitled)

Nice writeup by Luigi Gubello regarding Phishing-as-a-service platform and how to defend against them. https://gubello.me/blog/threat-model-phaas-platform-abuses/

(untitled)

Let's see if this works 👀

A simple way to run only one process per application in C++

Some times it might be necessary to limit the number of processes running at the same time for a certain application. There might be several reasons for this, to prevent data corruption for example. This is a simple cross-platform way to do it. We're going to use C++ 17 and the new filesystem library , this will permit us to minimize the use of ifdef since we won't have to use the POSIX or Windows…