Root an LG WebOS TV to add Ambilight

What is Ambilight? It’s just a marketing term used by the Philips brand that describes extra RGB illumination near and/or behind the television that matches the color of what is displayed on the screen. I wouldn’t say it’s an immersive effect, but it is stunningly pleasing to the eye and removes the sharp contrast of a bright screen in a dark room. Preface I’ve had a desire to configure Ambilight on my living room television for several years....

November 28, 2023 · 8 min · JermaNoiD

MyQ Garage Door Openers

If you have spent any time automating your domicile, you may have acquired a MyQ based garage door opener that was manufactured by Chaimberland, Liftmaster, or Merlin. Perhaps, like myself, you signed a mortgage on a home that included one or more of these MyQ openers. You were probably excited with the ability to create automations revolving around the use of garage entrance into your home. There are many great home automation platforms....

November 21, 2023 · 12 min · JermaNoiD

Installing Kubernetes Cluster with Rancher and MetalLB

Initialize cluster on master node curl -sfL https://get.k3s.io | sh -s - server k3s server --cluster-init --node-taint CriticalAddonsOnly=true:NoExecute --tls-san [K3S IP] --disable servicelb --disable traefik a K3S TOKEN should be generated and presented in the console, take note of it a SERVER TOKEN is also generated and stored in /var/lib/rancher/k3s/server/node-token Add additional masters curl -sfL https://get.k3s.io | K3S_URL=https://[K3S IP]:6443 K3S_TOKEN=[Token] sh -s - server --node-taint CriticalAddonsOnly=true:NoExecute --tls-san [K3S IP] --server https://[This node's IP address]:6443 --disable servicelb --disable traefik Add additional agents curl -sfL https://get....

February 15, 2021 · 2 min · JermaNoiD