Skip to content

Instantly share code, notes, and snippets.

blueprint:
name: Inovelli Red Series ZWaveJS
description: Create automations for the Inovelli Red Series LZW31-SN Dimmer using the ZWave-JS integration.
domain: automation
input:
inovelli_switch:
name: Inovelli Series
description: "List of available inovelli switches/dimmers."
selector:
device:

Keybase proof

I hereby claim:

  • I am geekingreen on github.
  • I am geekingreen (https://keybase.io/geekingreen) on keybase.
  • I have a public key whose fingerprint is 5596 65B9 3BFE 4859 73F7 82A5 A5EA EA13 C97D 57BC

To claim this, I am signing this object:

@geekingreen
geekingreen / nginx-passenger.sh
Last active August 29, 2015 14:20
Install nginx + passenger from source
#!/bin/bash
# Download nginx src
# cd into nginx src dir
sudo apt-get install ruby ruby-dev libcurl4-openssl-dev
sudo gem install passenger
PASSENGER_NGINX_DIR=`passenger-config --root`/ext/nginx
sudo ./configure --prefix=/etc/nginx\
--with-http_ssl_module \
@geekingreen
geekingreen / npm-perms.sh
Last active August 29, 2015 14:19
Set global permissions for npm
sudo usermod -a -G users <username>
sudo chgrp -R users /usr/local/bin /usr/local/share /usr/local/lib/node_modules
sudo chmod -R g+ws /usr/local/bin /usr/local/share /usr/local/lib/node_modules