Heat Index Calculated Sensor in Home Assistant

The following is a sample of how to implement a sensor in Home Assistant that displays a calculated heat index value based off an existing sensor device that provides temperature and relative humidity readings. This calculation is using the formulas provided on the National Weather Service website. - platform: template…

Update

Content has been migrated from the old blog. Stay tuned! I plan to be working on some new content in the coming weeks.…

Cake Build Script - Node, Gulp, .NET Core MSBuild

The following is a basic guide for setting up a Cake build script to work with a project that utilizes .NET Core, Node.JS, and Gulp. This build script can be used with various continuous integration setups to assist with automated builds and deployments of code. Requirements: * .NET Core SDK…

Minecraft Server Docker Image

Dockerfile Create a Dockerfile for the minecraft server image with the following: FROM ubuntu:xenial MAINTAINER Richard Meyer ENV MINECRAFT_VERSION 1.11.2 ENV DEBIAN_FRONTEND noninteractive RUN apt-get -y update && apt-get -y upgrade && apt-get install --no-install-recommends -y -q \ software-properties-common \ && apt-add-repository -y ppa:webupd8team/java \ && apt-get -y update \ && echo…

Dynamic Responsive Tables with Bootstrap 3

The following function will force the table-responsive behavior in Bootstrap 3 when the table's width exceeds the window's, and while the window size is > 768 pixels. Bootstrap's default of 768 pixels [http://getbootstrap.com/css/#tables-responsive] is great in most cases, however I've encountered some requirements where I need to…

Bootstrap 3 Twitter Typeahead LESS Improvements

The following are some improvements I've made for Twitter Typeahead 0.9.3 [http://twitter.github.io/typeahead.js/] with Bootstrap 3 [http://getbootstrap.com/]. The typeahead-bootstrap.less file should be imported at the end of the bootstrap.less file. typeahead-bootstrap.less .tt-dropdown-menu { min-width: 160px; width: 100%; margin-top: 2px; padding:…