This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ::::::::: Color Loop ::::::::::::::::::::::::::::::::::::::::::::::::::::::> | |
# :: Credit @hugalafutro for inspiration and color codes | |
# :: Color Loop any light when toggled by another entity's state | |
# :: Will Furphy • https://github.com/wfurphy | |
# ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::/ | |
blueprint: | |
name: "Color Loop Light with Toggle" | |
description: "Color Loop any light when toggled by another entity's state (On/Off)." | |
domain: automation | |
source_url: https://gist.github.com/wfurphy/288f9b3a3942fe980ab06c3ffe0582f1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==UserStyle== | |
@name Home Assistant Docs - Dark Mode | |
@namespace github.com/openstyles/stylus | |
@author Will Furphy | |
@description Home Assistant Documentation in Dark mode | |
@version 0.2.1 | |
@license MIT | |
@preprocessor default | |
==/UserStyle== */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Traits; | |
use Illuminate\Support\Arr; | |
use Illuminate\Support\Facades\Log; | |
use Illuminate\Contracts\Support\Arrayable; | |
/** | |
* Trait ReportsExceptions | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( ! function_exists('config_path')) | |
{ | |
/** | |
* Get the configuration path. | |
* | |
* @param string $path | |
* @return string | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |