Skip to main content
Tobi's Blog - qbit.me
    • Nothing bookmarked yet

  • Home
  • Open source
  • About
  • Portfolio

Tobi's Blog - qbit.me

Blogging about modern Typescript, integration development and cloud computing

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

Getting started with Rust as a web developer by Tobias Quante

Getting started with Rust as a web developer

Javascript was my first big step toward programming. And since it's still under active development, there's something new to learn every other day. It takes more than that to regularly step out of one's comfort zone, so I committed to learning a second language. Introducing Rust.
Tobias Quante

Tobias Quante

21 June 2022
rust
An Introduction to Vue 3 and Typescript: Functional components, attributes, and slots by Tobias Quante

An Introduction to Vue 3 and Typescript: Functional components, attributes, and slots

After getting a grip on reactivity and component communication, let's look at what basic features remain. Take slots and attributes. We use them mostly in templates. But what if you must access them in your script? Say, to write a functional component? Functional components The official docs recommend
Tobias Quante

Tobias Quante

03 May 2022
vuejs
An Introduction to Vue 3 and Typescript: Component properties and events by Tobias Quante

An Introduction to Vue 3 and Typescript: Component properties and events

Declaring a local state with references is a good start. Still, in all but the most simple cases, you will want your components to be able to interact with one another. That's where properties and events come into play. In case you're after the code, check
Tobias Quante

Tobias Quante

26 April 2022
vuejs
An Introduction to Vue 3 and Typescript: Refs and reactivity by Tobias Quante

An Introduction to Vue 3 and Typescript: Refs and reactivity

Reactivity is the buzzword in every frontend framework. And Vue's reactivity module makes handling state a breeze. In this article, we'll explore how to apply fundamental reactivity concepts to a Vue app. And how Typescript helps us by making our reactive data more robust.
Tobias Quante

Tobias Quante

19 April 2022
vuejs
An introduction to Vue 3 and Typescript - Getting started by Tobias Quante

An introduction to Vue 3 and Typescript - Getting started

Vue 3 has been completely rewritten in Typescript. Okay. Now, what does that mean for your next web project? This article series will shine a light on what makes Vue 3 so different.
Tobias Quante

Tobias Quante

12 April 2022
vuejs
How I set up my Ubuntu Laptop for web development by Tobias Quante

How I set up my Ubuntu Laptop for web development

A few years ago, I moved from Windows to Ubuntu. Mainly due to my dear old laptop's decline in performance. Launching a text editor and a dev-server should take only a few seconds. So, I thought, let's try something else next.
Tobias Quante

Tobias Quante

15 March 2022
productivity
How to register an AppImage as a desktop application in Linux by Tobias Quante

How to register an AppImage as a desktop application in Linux

AppImages are alternatives to the classic Linux apps. While uncommon in usage, they're practical insofar as they run on several Linux distros all the same. And you might want to treat them like you treat your usual applications. Read on to find out how to do so.
Tobias Quante

Tobias Quante

05 March 2022
productivity
⚡ Write your own reactivity function in 10 lines of Javascript by Tobias Quante

⚡ Write your own reactivity function in 10 lines of Javascript

Have you ever wondered how frameworks like React and Vue handle reactive data? This article aims to bring clarity. It presents Javascript Proxies, Proxy traps, and how they are used to create a simple reactivity system.
Tobias Quante

Tobias Quante

18 February 2022
javascript
A step-by-step guide to migrate a Node.js web app to Typescript by Tobias Quante

A step-by-step guide to migrate a Node.js web app to Typescript

Migrating from Javascript to Typescript is a tedious task. However, typing makes your code more robust. This results in better code quality and a reduced likelihood to introduce bugs. Read on to learn how to make the best use of it for your Javascript-powered web application.
Tobias Quante

Tobias Quante

15 January 2022
javascript
Getting started with Rust as a web developer by Tobias Quante

Getting started with Rust as a web developer

Javascript was my first big step toward programming. And since it's still under active development, there's something new to learn every other day. It takes more than that to regularly step out of one's comfort zone, so I committed to learning a second language. Introducing Rust.
An Introduction to Vue 3 and Typescript: Functional components, attributes, and slots by Tobias Quante

An Introduction to Vue 3 and Typescript: Functional components, attributes, and slots

After getting a grip on reactivity and component communication, let's look at what basic features remain. Take slots and attributes. We use them mostly in templates. But what if you must access them in your script? Say, to write a functional component? Functional components The official docs recommend
An Introduction to Vue 3 and Typescript: Component properties and events by Tobias Quante

An Introduction to Vue 3 and Typescript: Component properties and events

Declaring a local state with references is a good start. Still, in all but the most simple cases, you will want your components to be able to interact with one another. That's where properties and events come into play. In case you're after the code, check
An Introduction to Vue 3 and Typescript: Refs and reactivity by Tobias Quante

An Introduction to Vue 3 and Typescript: Refs and reactivity

Reactivity is the buzzword in every frontend framework. And Vue's reactivity module makes handling state a breeze. In this article, we'll explore how to apply fundamental reactivity concepts to a Vue app. And how Typescript helps us by making our reactive data more robust.
An introduction to Vue 3 and Typescript - Getting started by Tobias Quante

An introduction to Vue 3 and Typescript - Getting started

Vue 3 has been completely rewritten in Typescript. Okay. Now, what does that mean for your next web project? This article series will shine a light on what makes Vue 3 so different.
How I set up my Ubuntu Laptop for web development by Tobias Quante

How I set up my Ubuntu Laptop for web development

A few years ago, I moved from Windows to Ubuntu. Mainly due to my dear old laptop's decline in performance. Launching a text editor and a dev-server should take only a few seconds. So, I thought, let's try something else next.
How to register an AppImage as a desktop application in Linux by Tobias Quante

How to register an AppImage as a desktop application in Linux

AppImages are alternatives to the classic Linux apps. While uncommon in usage, they're practical insofar as they run on several Linux distros all the same. And you might want to treat them like you treat your usual applications. Read on to find out how to do so.
⚡ Write your own reactivity function in 10 lines of Javascript by Tobias Quante

⚡ Write your own reactivity function in 10 lines of Javascript

Have you ever wondered how frameworks like React and Vue handle reactive data? This article aims to bring clarity. It presents Javascript Proxies, Proxy traps, and how they are used to create a simple reactivity system.
A step-by-step guide to migrate a Node.js web app to Typescript by Tobias Quante

A step-by-step guide to migrate a Node.js web app to Typescript

Migrating from Javascript to Typescript is a tedious task. However, typing makes your code more robust. This results in better code quality and a reduced likelihood to introduce bugs. Read on to learn how to make the best use of it for your Javascript-powered web application.

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
  • development
  • devops
  • javascript
  • nodejs_basics
  • opensource
  • privacy
  • productivity
  • rust
  • serverside_js
  • tutorial
  • typescript

Navigation

  • Privacy policy

Follow Tobi's Blog - qbit.me

Tobi's Blog - qbit.me © 2025 Powered by Ghost & Candidus Theme