Posts published by: Alejandro Liu

Home Assistant Wall Panel

For a while I was using TabletClock with old tablets. But this has not been updated in a while. I was thinking of writing my own version until I found WallPanel. Essentially it is purposely built web-browser with special features which makes it possible to use it to replaces TabletClock. Essentially, I could replace TabletClock with a web-page showing the time and a weather ...

RDP vs VNC

For years I have been using VNC for my remote desktop needs. This works usually well enough. The features that I like are: Basic set-up is easy Desktop sessions are persistent Can be used to view an actual X11.org desktop. ...

Docker on Void

This is a quick recipe to run Docker on void: Make sure your system is up-to-date: sudo xbps-install -Syu ...

Home Assistant sensors

I finished migrating my VeraEdge to Home Assistant. I think after using it for some time, I find Home Assistant far superior to the VeraEdge in every way. So, I took the time to mostly standardise my sensors which make things simpler to manage/mantain. As such, essentially I am only using 4 types of sensors: ...

Looking up docker image tags

This recipe is to check the tags defined for a specific Docker image in docker.hub. The basic API is at https://registry.hub.docker.com/v2 So the format is as follows: https://registry.hub.docker.com/v2/repositories/{namespace}/{image}/tags/ Where: ...

Home Assistant Large Clock

This recipe is my version of providing a "large clock" face in the home assistant dashboard. Enable serving local static files: Create directory www in your config directory. Restart home assistant. ...

Nanowiki

NanoWiki is a Wiki implementation based on picowiki. I have been using SimpleNote for a number of years. It works pretty well but somehow I was looking for: Ability to include and render nice asciiart pictures Organizes articles in a folder structure. ...

cuylib

This is a tiny library to implement Web server embedded editor. You can find it in github. Can be used either from haserl or directly from a shell script. Features: ...

SupervisorUI MF

In a previous article, I updated a supervisorui project to work for me. This updated version supervisorui-redone is essentially a PHP application which is a different approach from the original supervisorui project which was more of a JavaScript application with some helper functionality implemented in PHP. As such, I figured that I could probably fix the supervisorui code base ...

Supervisorui REDONE

Currently I am using docker containers to deploy applications. A number of those containers make use of supervisord for managing processes. While supervisord itself comes with a UI, it is unhandy for me because each container is its own supervisord instance. So I was interested in some software that would let me manage multiple supervisord instances in a single page. Turns out that there ...