Welcome to my blog!
- I am a software developer focusing on ο£Ώ app development .
- Here you can find my socials and contact details:
Welcome to my blog!
Using Obsidian in conjunction with GitHub offers a powerful solution for teams to create, manage, and maintain their documentation collaboratively. This post guides you through setting up an Obsidian vault with a GitHub repository to enable seamless documentation workflow for your team. Setting Up Your GitHub Repository Create a New GitHub Repository: Start by creating a new repository on GitHub. Include an `.md` (Markdown) file to serve as the starting point of your documentation....
Integrating a WiFi setup with a captive portal into your ESP32 projects significantly enhances the user experience by simplifying the network connection process. This tutorial will guide you through setting up your ESP32 project with a captive portal using PlatformIO in Visual Studio Code (VSCode) and incorporating the WiFiManager library. Setting up PlatformIO in VSCode PlatformIO is an open-source ecosystem for IoT development. It supports a vast number of boards and frameworks, including ESP32....
Welcome to my step-by-step guide on how to build your own digital ticket for the Apple Wallet. Today, Iβm going to show you how to set up a backend system and create an app with SwiftUI that lets you store and use tickets right on your iPhone. Weβre going to turn the Klimaticket, a yearly public transport ticket in Austria, into a ticket on your phone. This will make your travels simpler and help the planet too....
Creating custom colors in SwiftUI enhances the visual appeal of your app and maintains consistency across the user interface. Extending the Color struct in SwiftUI is an efficient way to define and manage custom colors. Follow this step-by-step guide to learn how: Organize Your Code: Begin by creating a new Swift file. Naming it CustomColors.swift would be a logical choice. This practice helps in keeping your codebase organized and clean....
When it comes to aligning views in SwiftUI, Apple has provided a powerful and flexible system. However, sometimes you might find yourself wishing for a simpler way to handle common alignment scenarios. In this article, weβll explore how to extend the View protocol to include two new methods, hAlign(_:) and vAlign(_:), that make horizontal and vertical alignment more straightforward. Extending the View Protocol First, letβs take a look at the Swift code snippet that adds these methods:...