2020-03-08
So far we have an ap that can scan its config from a QR code and persist it in the keychain on the device. Today we'll add support for using biometric unlock (Face ID or Touch ID depending on the device).
2020-03-04
At this stage - we've a lot of stuff in the main ContentView. Let's do something about that first.
2020-03-03
So the first thing we want to do is to have a way to scan a QR code to get the relevant IDs for the app.
2020-03-02
Let's start by getting the correct project setup.
2020-03-02
In this series - we will take a look at creating the app from scratch - but using SwiftUI and some helper libraries.
2020-02-22
After a cloudkey gen2 plus crash - how to get a backup restored when a factory reset installs an older software version.
2020-01-29
My ISP connection to home does not offer a static IP address. It does maintain a stable IP address - but after a period offline (either a fault or a power failure or similar) then that IP address may change. How to monitor this?
2020-01-09
When you connect your OSX mac to a VPN using the inbuilt VPN setup - as long as you get the service order correct it should pick up the DNS servers. But it often doesn't.
2019-11-22
To get some devices running under Mac OSX I have been using the drivers from mac-usb-serial.com - it seems that the ones I need are now working in Catalina out of the box
2019-09-22
I recently added a running copy of pi-hole onto a spare raspberry pi to test. Moving it to https
2019-09-18
Running a local/internal certificate authority - even though it is 2019
2019-07-14
I thought that it would be interesting to run up an instance of owncloud on docker. I have several machines I could put this on - but - if I were to use it as a larger server then I want the bigger disk of the NAS.
2019-05-15
In the previous post we took a look at akka streams in general. Let's apply that to our producer and consumer.
2019-05-08
In the previous post we updated our clients to use a configuration library and to make them somewhat more scala-like. Moving forward - we will look at using them together with akka streams but before we can do that - we'll take a very quick trip on akka streams in general.
2019-05-03
In the previous step we created a basic producer and consumer in scala but it was very close to a line by line conversion. Let's try for something that is closer to normal scala - and let's get the config values out to a configuration file.
2019-04-30
In the previous step we created a basic producer and consumer in java. Let's try for a direct conversion (almost line by line) to scala as a first step.