my blog. for you.

Reden wir über Digitales.

Ich bin selbständiger IT Berater und Unternehmer in der Internet und Software Branche. Ich beschäftige mich mit Design, Enterprise Applikationen, Web Apps und SaaS Produkten. Ich entwerfe und entwickle Business Lösungen und Anwendungen. Ich helfe Unternehmen in Sachen Software Qualität und Wissenstransfer, z.B. mit Angular und Spring Boot.

Using SQLite on a Static Website Without a Back-end Server

Leider ist der Eintrag nur auf English verfügbar.GitHub user phiresky recently published an interesting blog post on Hosting SQLite databases on Github Pages. Using SQLite - or in fact any kind of SQL database - in the browser? Why should one want to do this? Now, while it's certainly true that in the context of web applications SQL databases and RDBMS generally are relegated to the realm of back-end servers, depending on the requirements, a database in a front-end application or a ... Read more

GDPR Transparency: Web App for Managing GDPR-related Activities in Your Company

Leider ist der Eintrag nur auf English verfügbar.GDPR Transparency is a web app for managing the record of processing activities (see https://gdpr-info.eu/art-30-gdpr/) and technical and organisational measures (seehttps://gdpr-info.eu/art-32-gdpr/) as required by GDPR. Since I didn't feel comfortable with the common - rather makeshift - solution of managing GDPR-related processing activities (see https://gdpr-info.eu/art-30-gdpr/) in a spreadsheet table I've created this web app called GDPR Transparency that allows you to manage that kind of information for your business: https://bjoernkw.github.io/gdpr-transparency/ The source code is available here: https://github.com/BjoernKW/gdpr-transparency GDPR ... Read more

On Building Offline-Friendly Forms

Leider ist der Eintrag nur auf English verfügbar.Frontend developer Max Böck some time ago posted an article on how to create offline-friendly web forms Using the navigator.onLine method for checking if the user is still connected to the Internet, localStorage and service workers Max outlines a method for alleviating an annoying problem that comes with using forms on the web, particular on mobile platforms: Losing data and having to fill in a form repetitively if you lose your Internet connection before that form ... Read more

Creating Resuable Web Components with Stencil

Leider ist der Eintrag nur auf English verfügbar.Stencil is a compiler that generates Custom Elements (part of the Web Components specification) for reuse in any JavaScript web framework. Stencil was conceived by the creators of the Ionic Framework as means to build reliable framework-agnostic components. The Stencil developers put emphasis on creating progressive web apps that make use of modern browser features in a user-friendly manner. So, no matter if you use Angular, React or Vue.js for developing web applications Stencil allows you ... Read more