Some notes from me from the Fronteers 15 conference. Not a full transcript or summary of the talks, but just the bits and pieces I found worth noting.
Content blockers can block: scripts, & fonts :) Also, resources from CDN's like google.
blueprint: | |
name: Sensor Light Add On | |
description: > | |
# ♾️ Sensor Light Add On - Media & Movie - House Alarm - Smoke Alarm + More | |
**Version: 2.2** | |
Lights, Camera, Action! Get ready to grab the popcorn because it's movie time with a touch of cinematic magic! 🎬✨ |
blueprint: | |
name: Motion-activated Light with illuminance, nightmode and dimmable | |
description: Turn on a light when motion is detected and illuminance is below a | |
set Lux level. The light will dim before it is turned off to signal that it has | |
not detected motion in quite a while. There is also two timers, on for daytime | |
and one for nighttime. | |
domain: automation | |
input: | |
motion_entity: | |
name: Motion Sensor |
blueprint: | |
name: Sensor Light | |
description: > | |
# 💡 Sensor Light | |
**Version: 7.1** | |
Your lighting experience, your way - take control and customize it to perfection! 💡✨ |
.force-show-scrollbars ::-webkit-scrollbar-track:vertical { | |
border-left: 1px solid #E7E7E7; | |
box-shadow: 1px 0 1px 0 #F6F6F6 inset, -1px 0 1px 0 #F6F6F6 inset; | |
} | |
.force-show-scrollbars ::-webkit-scrollbar-track:horizontal { | |
border-top: 1px solid #E7E7E7; | |
box-shadow: 0 1px 1px 0 #F6F6F6 inset, 0 -1px 1px 0 #F6F6F6 inset; | |
} |
Some notes from me from the Fronteers 15 conference. Not a full transcript or summary of the talks, but just the bits and pieces I found worth noting.
Content blockers can block: scripts, & fonts :) Also, resources from CDN's like google.
(function() { | |
var requests = window.performance.getEntries(); | |
var hosts = {}; | |
var output = ""; | |
for(var requestIdx = 0; requestIdx < requests.length; requestIdx++) { | |
var request = requests[requestIdx]; | |
var origin = new URL(request.name).origin; | |
hosts[origin] = 1; |
<?php | |
/** | |
* Instructions: | |
* | |
* 1. Put this into the document root of your Kirby site | |
* 2. Make sure to setup the base url for your site correctly | |
* 3. Run this script with `php statify.php` or open it in your browser | |
* 4. Upload all files and folders from static to your server | |
* 5. Test your site |