Skip to main content
Q-Bytes
    • Nothing bookmarked yet

  • Home
  • Open source
  • About
  • Portfolio

Q-Bytes

I write articles about my learning journey, including modern Javascript, Typescript, Vue and Rust development.

How to keep your Azure infrastructure highly available - Availability sets and availability zones by

How to keep your Azure infrastructure highly available - Availability sets and availability zones

Featured

15 open-source tools to elevate your software design workflow in 2024 by

15 open-source tools to elevate your software design workflow in 2024

Featured

How to create svg elements with Javascript

Featured

How to copy text to the clipboard with Javascript

Featured

Latest publications

Mastering Efficient Queue Structures in TypeScript: A Complete Guide by Tobias Quante

Mastering Efficient Queue Structures in TypeScript: A Complete Guide

Queues help you to process data using the FIFO (first in, first out) principle. They're specifically great for managing events or asynchronous tasks. Unless other languages, like Java or Python, Typescript does not have its own native Queue class. So let's build some ourselves
Tobias Quante

Tobias Quante

07 January 2025
typescript
Master Efficient Window Scroll Event Handling in JavaScript: Best Practices and Tips by Tobias Quante

Master Efficient Window Scroll Event Handling in JavaScript: Best Practices and Tips

Not properly handling these scroll events can lead to serious performance issues: * Partially by blocking the DOM rendering process. * A huge number of registered events increases CPU usage, causing reduced battery life of mobile devices. * If you rely on scroll events for heavier computations, you will inevitably cause memory leaks
Tobias Quante

Tobias Quante

31 December 2024
javascript
How to keep your Azure infrastructure highly available - Configuring data redundancy by Tobias Quante

How to keep your Azure infrastructure highly available - Configuring data redundancy

This post is part of my 'Learning in public' journey for Microsoft Azure. We're exploring the topic of data redundancy as part of keeping a highly available software infrastructure
Tobias Quante

Tobias Quante

03 July 2024
How to keep your Azure infrastructure highly available - Availability sets and availability zones by Tobias Quante

Featured

How to keep your Azure infrastructure highly available - Availability sets and availability zones

This post is part of my 'Learning in public' journey for Microsoft Azure. It summarizes the key concepts of keeping Virtual Machines available in several disaster scenarios, such as local outages or full data center failures.
Tobias Quante

Tobias Quante

01 July 2024
azure
15 open-source tools to elevate your software design workflow in 2024 by Tobias Quante

Featured

15 open-source tools to elevate your software design workflow in 2024

Writing code is just one phase of creating software solutions. And while there are many proprietary tools out there, open source is doing a great job of putting great tools into your hands. I've compiled a list of those I liked to work with most during the last five years.
Tobias Quante

Tobias Quante

22 January 2024
webdev
How to get the count of your followers on dev.to by Tobias Quante

How to get the count of your followers on dev.to

You can see how many followers you can see in your dev.to dashboard. But there are scenarios where you'd like to have them available elsewhere, say on a personal blog or portfolio.
Tobias Quante

Tobias Quante

16 November 2023
javascript
How to use IndexedDB to store images and other files in your browser by Tobias Quante

How to use IndexedDB to store images and other files in your browser

IndexedDB is a low-level, asynchronous NoSQL database in the browser. It allows developers to store bigger amounts of data in a structured manner without having to rely on a backend service. This article aims to shed some light on the basic functionalities of the IndexedDB API
Tobias Quante

Tobias Quante

04 October 2023
javascript
Understanding the Node.js process variable by Tobias Quante

Understanding the Node.js process variable

Chances are, you've encountered 'process.env' in your coding journey. It's a fantastic feature to control your application's environment context. And you probably wondered what else there is to this.
Tobias Quante

Tobias Quante

30 August 2023
javascript
Let's build Vue directives - Plug and play Motion Design with vMotion by Tobias Quante

Let's build Vue directives - Plug and play Motion Design with vMotion

TL: DR - take me to the code -> Vue 3 Code Sandbox The idea of motion design has been around since the 1950s. Its primary advantage over the static counterpart is user engagement. Our eyes evolved to pay particular attention to moving objects. Motion design aims to do precisely
Tobias Quante

Tobias Quante

23 August 2023
vuejs
Mastering Efficient Queue Structures in TypeScript: A Complete Guide by Tobias Quante

Mastering Efficient Queue Structures in TypeScript: A Complete Guide

Queues help you to process data using the FIFO (first in, first out) principle. They're specifically great for managing events or asynchronous tasks. Unless other languages, like Java or Python, Typescript does not have its own native Queue class. So let's build some ourselves
Master Efficient Window Scroll Event Handling in JavaScript: Best Practices and Tips by Tobias Quante

Master Efficient Window Scroll Event Handling in JavaScript: Best Practices and Tips

Not properly handling these scroll events can lead to serious performance issues: * Partially by blocking the DOM rendering process. * A huge number of registered events increases CPU usage, causing reduced battery life of mobile devices. * If you rely on scroll events for heavier computations, you will inevitably cause memory leaks
How to keep your Azure infrastructure highly available - Configuring data redundancy by Tobias Quante

How to keep your Azure infrastructure highly available - Configuring data redundancy

This post is part of my 'Learning in public' journey for Microsoft Azure. We're exploring the topic of data redundancy as part of keeping a highly available software infrastructure
How to keep your Azure infrastructure highly available - Availability sets and availability zones by Tobias Quante

How to keep your Azure infrastructure highly available - Availability sets and availability zones

This post is part of my 'Learning in public' journey for Microsoft Azure. It summarizes the key concepts of keeping Virtual Machines available in several disaster scenarios, such as local outages or full data center failures.
15 open-source tools to elevate your software design workflow in 2024 by Tobias Quante

15 open-source tools to elevate your software design workflow in 2024

Writing code is just one phase of creating software solutions. And while there are many proprietary tools out there, open source is doing a great job of putting great tools into your hands. I've compiled a list of those I liked to work with most during the last five years.
How to get the count of your followers on dev.to by Tobias Quante

How to get the count of your followers on dev.to

You can see how many followers you can see in your dev.to dashboard. But there are scenarios where you'd like to have them available elsewhere, say on a personal blog or portfolio.
How to use IndexedDB to store images and other files in your browser by Tobias Quante

How to use IndexedDB to store images and other files in your browser

IndexedDB is a low-level, asynchronous NoSQL database in the browser. It allows developers to store bigger amounts of data in a structured manner without having to rely on a backend service. This article aims to shed some light on the basic functionalities of the IndexedDB API
Understanding the Node.js process variable by Tobias Quante

Understanding the Node.js process variable

Chances are, you've encountered 'process.env' in your coding journey. It's a fantastic feature to control your application's environment context. And you probably wondered what else there is to this.
Let's build Vue directives - Plug and play Motion Design with vMotion by Tobias Quante

Let's build Vue directives - Plug and play Motion Design with vMotion

TL: DR - take me to the code -> Vue 3 Code Sandbox The idea of motion design has been around since the 1950s. Its primary advantage over the static counterpart is user engagement. Our eyes evolved to pay particular attention to moving objects. Motion design aims to do precisely

Newsletter

I'm not actively maintaining newsletters, you can however follow me on dev.to to keep up to date with my content

Topics

  • azure
  • database
  • devops
  • javascript
  • nodejs_basics
  • opensource
  • privacy
  • productivity
  • rust
  • serverside_js
  • tutorial
  • typescript
  • vuejs

Navigation

  • Privacy policy

Follow Q-Bytes

DigitalOcean Referral Badge
Q-Bytes © 2025 Powered by Ghost & Candidus Theme