Category Archives: software

Everyone who is forced to use Microsoft Teams on a Mac knows this extremly annoying behaviour: You want to cmd+tab to Teams but instead of bringing the Teams window to the front, an invisible Teams window is activated. The only way to get to Teams is to manually switch to the right Space (virtual desktop) and then cmd+tab to Teams or click to Teams Dock icon multiple times. According to the internet™, a fix is to disable Teams own notifications and use system notifications instead. When cmd+tabbing to Teams this notification window is activated instead of the actual Teams window, so the fix sounds plausible. But no, this only works until the next wakeup from sleep or restart. The frustating aspect of this bug is that Microsoft knows about it for years and choses to not do anything, although they easily could. Outlook can also use its own notification system…

Read more

waters meters on a wall - generated by Stable Diffusion

Conserving resources is an important topic and always worth pursuing. The current energy prices and inflation just add a higher monetary incentive for everyone to make more effort. I took this as a trigger to see if and how much water, especially warm water, I can save in my household. As with all improvement projects, you need to know your current baseline before you can measure any improvements. The nice, but impractible solution Ideally, I would want a continous measurement of my water usage, so every change can be tracked. The usual analog water meters are not ideal for this task, but it is not too complicated to set up an ESP32 with an ESPcam to digitize the meters. A little bit of machine learning to detect the numbers and the spinning wheel will give very precise readings throughout the whole day. Unfortunately, this setup is not practible as I…

Read more

The terminal multiplexer tmux is a very useful and versatile tool. One thing that it apparently can’t do, however, is to automatically log a session to a log file. Such a feature can be very useful for interactive workloads. Sidenote: tmux also has a plugin manager and there are logging plugins available, but they don’t do exactly what I want. The manual way Logging all inputs/outputs can be done with a simple command: Manually executing this command at the creation of a pane, e.g. the start of a new session is possible but let’s be honest: I will forget it the next day already. So, an automatic method is needed. How it should work but doesn’t Tmux has hooks that trigger actions when certain events happen. The after-new-pane or after-new-session hooks would be ideal to execute the logging command whenever a new session or pane is opened. Adding the hook…

Read more

Working on AWS projects in the terminal can be annoying sometimes, especially when you have a large list of accounts and roles to work with. Typing in the multi-part command and the role ARN is just too much work to do over and over again:aws sts assume-role –role-arn arn:aws:iam::123456789012:role/roletoassumeDefining an alias for each role is impracticable, as well, because it would require to edit the AWS CLI config file (~/.aws/config and ~/.aws/credentials) and update the aliases (~/.bash_aliases or similar depending on your shell). It would be so much easier if the assume-role command would just query the AWS config. Just like this: The solution is the little helper programm assume-role in combination with fzf. Installation and setup The following assumes bash as your shell of choice and aptitude as the package manager. Other shells or package managers work just as well. AWS CLI Download and install AWS CLI: This covers…

Read more

A working approach on how to migrate a network Time Machine backup.

Read more

In 2018, a colleague mentioned to me that he found a nice CO2 monitor with an undocumented but open USB connection. On Github, vfilimonov wrote a nice python package to decode the USB connection and show the measured data on a website. From this starting point on, I experimented with further sensors and a more complex data acquisition, storage and visualisation. The current state is an experimental setup running on a Raspberry Pi 3B+. Several sensors are connected to test and compare them. Connected sensors are: TFA Dostmann AirCO2ntrol Mini CO2 Monitor Two DHT22 temperature and humidity MH-Z19 IR absorption CO2 sensor 0-5000ppm TSL 2561 light intensity sensor BMP280 digital barometer The monitoring system in the configuration as used in the following. Raspbian Buster runs from an old SSD that also stores programs and databases (black cable with two USB port because the Pi cannot supply enough current). The white…

Read more

As mentioned in the introduction to the homeclimate monitoring project, I run a small unRAID homeserver with a couple of disks to provide some services in my local network. Besides monitoring the server itself with the TIG stack (Telegraf, InfluxDB, Grafana), it is also interesting to monitor power consumption to find out what the server costs aside from the initial cost for the hardware. Self-made solutions operating on mains voltages is always tricky and the potential risks are large. Luckily, there are a number of cheap and easy commercial options. I opted for the “TP-Link Kasa smart plug HS110” which is available online for typically less than 20€. The HS110 can monitor voltage, current, power and turn on/off the integrated outlet remotely. It also has smart home feature (e.g. Alexa skills, Google Assistant, IFTTT) but I don’t need nor want those. Still, it is one of the cheapest and also…

Read more

7/7