Skip to content

Instantly share code, notes, and snippets.

View helresa's full-sized avatar

Theresa Davis helresa

  • EcoGeek SL
  • Canary Islands, Spain
  • 05:15 (UTC)
View GitHub Profile
@EverythingSmartHome
EverythingSmartHome / All open windows and doors
Last active March 19, 2026 17:10
A collection of useful templates for Home Assistant dashboards
{{ states.binary_sensor
| selectattr('attributes.device_class', 'in', ['door','window'])
| selectattr('state', 'equalto', 'on')
| list | count }}
@sirbrillig
sirbrillig / pgsql_backup.sh
Last active November 15, 2025 02:29 — forked from dangerousbeans/pgsql_backup.sh
Postgresql daily backup script.
#!/bin/bash
#
# Backup a Postgresql database into a daily file.
#
BACKUP_DIR=/pg_backup
DAYS_TO_KEEP=14
FILE_SUFFIX=_pg_backup.sql
DATABASE=
USER=postgres