Fast local Development using Ko, Golang, and Minikube
ko is a simple, fast container image builder for Go applications. In combination with minikube, it enables an easy local development cycle.
In this post, I will explain how to set up ko to directly build and deploy Golang applications to minikube.
First, we need to start a local minikube cluster. Use the following command to deploy a local cluster and set it as the current kubectl context.
minikube start Ko can build and push containers to all kinds of registries....
Add to Siri Button with SwiftUI
For an app I was building I needed to add an Add to Siri Button, to add new Interaction to Shortcuts. While this straightforward in UIKit, it was more challenging in a project that uses SwiftUI.
SwiftUI makes it easy to build and prototype good-looking UIs for all kinds of applications. While the code of SwiftUI is simple and clean, it is still young and a lot of API functionality is missing....
Stripe Client Side Donation Button With React
I wanted to add a Donation Button to my React Website https://localpdf.tech. Stripes Client-Only-Checkout is perfect for that, beacause you don’t need a server.
Donation Button using React Stripe and Tailwind
Enable Stripe Client only Integration First, you need to add a Test-Product to Stripe. Make sure you activate Viewing Test Data:
After that create a simple Test-Product to test our Donation button later on. After you have created the Product we can enable the Client-Only integration....