This file contains hidden or 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
blueprint: | |
name: Advanced Automation Control with Device State Options | |
description: > | |
Enables or disables automations, optionally triggers scenes, and controls devices | |
based on the state of an input_boolean. | |
domain: automation | |
author: "XtremeOwnage (https://static.xtremeownage.com)" | |
homeassistant: | |
min_version: "2024.6.0" |
This file contains hidden or 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
# # # Main Entities | |
# # entity_list - list[] switch | |
# # | |
# # # Flags, Helpers, etc. | |
# # input_bool_enabled - Input_Boolean which determines if this automation is enabled. | |
# # input_bool_vacation - Input_Boolean which determines if we are on vacation. | |
# # input_timer - Timer helper, used to execute stopping logic after a period of time has passed. | |
# # | |
# # # Checkboxes | |
# # bool_start_at - Checkbox to determine if starting based on specific time is enabled. |
This file contains hidden or 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
// Version 1: https://pastebin.com/EHkdSBuM | |
// Version 2: https://pastebin.com/6P8mNPqN | |
// - Fixed display on retirement percentage. (Static number replaced with correct variable) | |
// - Removed annual sales tax for vehicle being included. (Sales tax only applicable when purchasing the vehicle) | |
// - Enforced 401k max yearly contriutions. (IRS-enforces a max annual contribution limit) | |
// - Fixed formatting, and duplicate numbers. (aka, totals being displayed twice) | |
using System; |
This file contains hidden or 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
apiVersion: apps/v1 | |
kind: StatefulSet | |
metadata: | |
labels: | |
app: paperless | |
run: paperless | |
name: paperless | |
namespace: paperless | |
annotations: | |
keel.sh/policy: all |
This file contains hidden or 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
"score","name","domain" | |
1,"1UpadLyJ","sh.itjust.works" | |
1,"2JP9VDQH","feddit.uk" | |
-1,"2xsaiko","discuss.tchncs.de" | |
1,"3NgFh2a4","bbs.darkwitch.net" | |
1,"4ffy","lemmy.ml" | |
-1,"65535","lemmy.world" | |
1,"6UopS6La","feddit.uk" | |
1,"6w3fd9Gt","feddit.uk" | |
1,"7OO","feddit.de" |
This file contains hidden or 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
score | name | |
---|---|---|
1 | 1UpadLyJ | |
1 | 2JP9VDQH | |
-1 | 2xsaiko | |
1 | 3NgFh2a4 | |
1 | 4ffy | |
-1 | 65535 | |
1 | 6UopS6La | |
1 | 6w3fd9Gt | |
1 | 7OO |
This file contains hidden or 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
blueprint: | |
name: Entity - Run ON Timer | |
description: > | |
# ENTITY - RUN ON TIMER | |
Version: 1.1 | |
The most common automation used for a Entity Run on Timer. Select a entity so when you turn it ON the pre-set time period will turn it OFF automatically. | |