RSSAmplifier

Blog

ValeriaVG

Collection of tutorials, essays and articles about things I've learned along the way.

valeriavg.devRSS feed ↗17 posts

Latest posts

Agentic Development Survival Guide

A practical guide to navigating identity crisis and poor developer experience while trying to stay ahead of the curve of coding with AI agents.

Simplicity Police

An essay about intellect, complexity, perfection and treating software as play-doh.

The sunset of Arrogance as a Service

An essay about the past AI-promises-era and how we got here in the first place

How do I delegate when I can do it faster myself?

Transitioning from an individual contributor to a leader is not easy. Why would it be? One day you are the hero doing all the work, the next day you are expected to guide others to do it for you. I wish I had the knowledge I have now when I was starting out as a manager. Perhaps this article will help you avoid some pitfalls I dug myself into.

Implementing custom Calendar component

HTML comes with a lot of ready to use and flexible elements, but date selector has a handful of limitations and the need to write your own calendar / date input emerges sooner rather than later. In this tutorial I'll walk you though implementing a calendar view and show how you can extend its functionality to fit your booking widget or dashboard filter

Plug & Play Modular Architecture for Scalable and Maintainable Apps

A new project is always a joy: the code hasn't yet been bloated with deprecated features, rushed decisions and questionable dependencies. When my projects get to this state I become increasingly less productive and the urge to refactor grows exponentially, which, as you would imagine, halts any progress entirely.

ES Modules & Import Maps: Back to the Future

There was a time when creating a web page meant creating an html file, yet nowadays it seems impossible to build any frontend without the bottomless pit of node_modules, yielding a finely chewed yet hefty bundle.xyz.js. Well, I got to learn that it might not be the case soon and, naturally, I feel the urge to share it with the rest of you.

Me & React: 5 Years in 15 Minutes

I first heard of React when a friend showed me a project he had written. It was some sort of content management system: it had tables, forms, visual editors and stuff like this. I don't remember much, except that code was really really confusing

10 Reasons NOT to Use Go for Your Next Project

They say Go is the language of the web. Of course, with Google backing it up it sounds very objective! But is it as good as they say? I can think of cases where it wouldn't be a good fit

How Build a Web App in 11 Minutes and Fall in Love With Sveltekit

It's been a long time since I got excited about a framework. I often advocate for reinventing the wheel, how come I'm writing an ode to a framework? Short answer because SvelteKit is very good, even though it's still in beta. The long answer is ahead.

Master Git in 7 Minutes

Essentially, Git keeps tabs on text changes, but the definition is a version control system. Chances are you've already used git one way or another: it is a de-facto standard for code versioning due to it's distributed nature, as opposed to centralised Apache Subversion (SVN).

Crc 32 Checksum in Wasm and Raw Js Tutorial and Benchmark

In this tutorial we'll build a cyclic redundancy check (CRC) hashing function. More specifically, its 32 bit variant called "CRC-32". I bumped into it in the PNG specification, but it's also used in Gzip and bunch of other formats and protocols. In short, it makes a tiny (4 bytes) hash out of whatever binary data you feed to it and changes significantly if data changes even slightly. Of course,…

Master Binary in Five Minutes

Binary is the very core of everything digital, not only in web development, but literally everything: from variables and file data to transport protocols and executables themselves.

Five Pro Tips to Master Promises in Js

Events handling and promises in particular are hands down the best JavaScript feature. You're probably familiar with the concept itself, but in short, a Promise in JavaScript is a promise to call back with the result.

How to Use Custom Files as Modules in Nodejs

There are quite a few cases where you can benefit from importing an arbitrary file directly: in universal apps, tests, or simply to avoid boilerplate. Good news: you don't need Babel, Webpack, or anything else for it.

How to Do Magic With Numbers

JavaScript Number type would have been called double or float64 in a compiled language. Therefore, numbers have some limits

5 Ways to Use Redis in Your Next Project

If the best code is no code at all, then the next best thing is code, that you can explain in one simple sentence. For example, like this: Redis holds a variety of structures in memory and lets you manage them through a text based command protocol. Despite, or maybe, because of its simplicity, Redis has plenty of utility in modern web architecture.