DSL Vergleich relaunch

Das Vergleichsportal für Internetzugangstarife, DSL Tarife, Kabel Tarife, Glasfaser Tarife ist seit heute in neuer Version verfügbar. Aktuell sind nur wenige Tarife in der Datenbank, doch das wird sich im Laufe der Zeit ändern. Besuchen Sie folgenden Link: DSL Vergleich

Read Article

Keycloak-js client with Quasar (now updated for v2)

So you’d like to use openid-connect (oidc), especially keycloak (kc) in your Quasar app. There’s a package, @dsb-norge/vue-keycloak-js . I’d recommend you fork it and create your own version with the keycloak-js version that matches your Keycloak server. However it also works with just the version used in this git repository. The git repository is…

Read Article

vue dev server with nginx

The Nginx conf is the same for any sock-js site. It can be used for Vue and Angular and Svelte, not sure about React but I’d guess it uses sock-js as well. My dev domain is qxdsladmin.local in this example. /etc/nginx/conf.d/qxdsladmin.local.conf

This location ~ ^/api/v1/.* is a mountpoint for the backend http api, which…

Read Article

nvm upgrade to latest LTS and migrate all installed packages

This command is also in the readme of nvm, however I put it here on my blog so I don’t have to search the readme and previously google for the readme 😉

and then set this version to be the default version

For the record, a link to the readme of nvm

Read Article

Modern efficient backend design

When writing backends with Go, I follow a simple pattern. At the core there is the, well, core object, the service. It has its own configuration struct. In this struct are all the configurations for the related services. It is the central gateway for everything. Connected to it on the back side are all the…

Read Article