I started to work on the UpMock MVP! 🚀

On Sunday, 09/01/2022 I started working on the first version of UpMock. The idea was to get a relatively simple product up and running within a week that turns screenshots into beautiful mockups in just a few steps. After some consideration I started that day to create first designs for the website and the editor …

May I introduce? ServerMonitor! | The process of creating a web application

It is time! 🎉🎉 🔥🔥 Version 1.0.0 of ServerMonitor is officially released and it feels awesome!💪 Introduction 🤝 In this article, I want to tell you about my process of developing my first real project from start to finish. Far too often I had the problem of never finishing any project I have started. Maybe …

Picture of ServerMonitor

Getting started with Flask – „Hello World Wide Web!“

Creating web apps is possibly one of the coolest things you could do in your lifetime. 😉 The reasons are obvious. You can create something meaningful, everyone can use. With some work, you may be creating something like this: Follow me to get more information about the ServerMonitor in the near future. Let’s get started! …

VS Code | Shortcuts and functions

Visual Studio Code has a lot of useful functions to make coding easier.Some of them I want to show you. Shortcuts VS Code comes with a lot of shortcuts you can use to work much faster.Also extentions you will install, could have their own shortcuts.   Multiline Cursor Multiline Cursor make it possible to edit …

Progressive Web App Logo

Was sind Progressive Web Apps?

Progressive Web Apps (PWA) sind im Grunde Webseiten, die merkmale einer nativen App besitzen. Eine PWA wird wie eine normale Website mit HTML, CSS und JavaScript erstellt. ServiceWorker dienen dabei dazu, die Progressive Web App auch ohne Internetzugang verwenden zu können. Dazu werden die Inhalte der Web App in einen Offline Cache gespeichert. Vorteile einer …

VS Code | Shortcuts und Funktionen

Visual Studio Code hat viele nützliche Funktionen, die dir deine Arbeit erleichtern können. Einige kleine Tipps und Funktionen möchte ich dir gerne näher bringen. Shortcuts VS Code kommt mit vielen Tastenkombinationen, die es überflüssig machen, Funktionen im Menü suchen zu müssen. Auch Erweiterungen die du hinzu installierst, haben zum Teil eigene Shortcuts. Multiline Cursor Mit …

Sortieren in Python

Die sorted() Funktion Es gibt manchmal Situationen, bei dem man in Python eine Liste mit Werten hat, die man sortieren will. Natürlich könnte man jetzt selbst einen Algorithmus mit for-Schleifen programmieren. Weil wir aber faul sind, nutzen wir die sorted() Funktion. 😉 Was genau macht sorted()? Kurz gesagt sortiert die Funktion eine übergebene Liste mit …

Windows Umgebungsvariablen | QuickTipps

Umgebungsvariablen

Passwörter im Code?! Das Speichern von Zugangsdaten für Datenbanken oder API-Keys im Programmcode birgt Risiken. Die Lösung dafür sind Umgebungsvariablen. In ein paar einfachen Schritten kann man Umgebungsvariablen in Windows erstellen. Vorgehensweise Windows-Taste + R drücken -> „sysdm.cpl“ eingeben und bestätigen. Fenster „Systemeigenschaften“ öffnet sich -> Auf den Reiter „Erweitert“ drücken -> Auf „Umgebungsvariablen“ drücken. …

Funktionen | Python Basics

Funktionen! Funktionen sind in der Programmierung ungefähr so Wichtig wie Kaffee für einen Programmierer. Scherz bei Seite. 😉 Funktionen sind beim Programmieren unerlässlich und sehr hilfreich. Python selbst hat viele Funktionen mitgebracht wie zum Beispiel die print()-Funktion.   Was sind Funktionen? In der Programmierung sind Funktionen so etwas wie eine App. Eine App auf deinem …