Getting started:
Related tutorials:
| blueprint: | |
| name: Send a camera snapshot when motion is detected in night time | |
| description: > | |
| This automation blueprint creates a camera snapshot if motion is detected | |
| and sends a notification to your phone with the picture. | |
| domain: automation | |
| input: | |
| motion_sensor: | |
| name: Motion sensor | |
| description: The sensor wich triggers the snapshot creation |
| blueprint: | |
| name: Heating Control | |
| description: Control your heating with options for person home, if temp is below a specific value, set temp, and heating between specific times. | |
| domain: automation | |
| input: | |
| heating: | |
| name: Climate Device | |
| description: The climate device to use. | |
| selector: | |
| entity: |
Getting started:
Related tutorials:
| # Corsair headsets will stuck the apps on your linux system. This is due to wrong usb-mapping. | |
| # thx to http://www.c0urier.net/2016/corsair-gaming-void-usb-rgb-linux-fun | |
| # 1. open terminal | |
| # 2. type this and search the line with your headset | |
| lsusb | |
| #Get the USB ID of the mouse and add it to xorg.conf: |
| <?php | |
| /************************************************************************* | |
| php easy :: whois lookup script | |
| ========================================================================== | |
| Author: php easy code, www.phpeasycode.com | |
| Web Site: http://www.phpeasycode.com | |
| Contact: [email protected] | |
| *************************************************************************/ | |
| $domain = $_GET['domain']; |
| server { | |
| listen 80; | |
| server_name observium.yourdomain.com; | |
| access_log /var/log/nginx/observium-access_log combined; | |
| error_log /var/log/nginx/observium-error_log warn; | |
| root /opt/observium/html; | |
| client_max_body_size 10m; | |
| client_body_buffer_size 8K; |
| Credit where credit's due, I mainly used these 3 resources to get this all working. There were several others but I don't exactly remember which is which. So at least here are the 3 main places that I used. | |
| The vast majority of this came from this link, the others helped me make it work for Plex. | |
| http://emby.media/community/index.php?/topic/30975-reverse-proxy-with-ssl-hostname-routing-and-embyopenvpn-port-sharing/ | |
| https://gist.github.com/spikegrobstein/4384954 | |
| https://forums.plex.tv/discussion/207725/ubuntu-14-04-4-lts-plex-incorrectly-handles-lower-case-headers#latest | |
| The data flow here is: |
| upstream plex-upstream { | |
| # change plex-server.example.com:32400 to the hostname:port of your plex server. | |
| # this can be "localhost:32400", for instance, if Plex is running on the same server as nginx. | |
| server plex-server.example.com:32400; | |
| } | |
| server { | |
| listen 80; | |
| # server names for this server. |
| package org.bukkit.craftbukkit.util; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.Map; | |
| import java.util.regex.Matcher; | |
| import java.util.regex.Pattern; | |
| import net.minecraft.server.ChatClickable; | |
| import net.minecraft.server.ChatComponentText; |