Note: everything here is pretty specific to my usage/accounts and not written for public use... You'll probably have to tweak a bunch of stuff.
$ bean-extract config.py ~/Downloads # the csvs should be in hereNote: everything here is pretty specific to my usage/accounts and not written for public use... You'll probably have to tweak a bunch of stuff.
$ bean-extract config.py ~/Downloads # the csvs should be in here| FROM homeassistant/home-assistant:stable | |
| # Install dev tools | |
| RUN apk add --update alpine-sdk | |
| # Grab heyu | |
| RUN wget -O heyu.zip https://codeload.github.com/HeyuX10Automation/heyu/zip/v2.10.1 | |
| RUN unzip heyu.zip | |
| # Build it (the 'darwin' configuration seems to work on Alpine) |
| #!/bin/bash | |
| # Important note: | |
| # If you don't synchronize but then edit the other file, | |
| # the newer modification time on the second file edited | |
| # will cause data to be overridden. | |
| # The solution would be to merge manually | |
| # (Database --> Merge from database). |
| #!/usr/bin/env bash | |
| # | |
| # Copyright 2020 Raman Gupta | |
| # LICENSE: https://opensource.org/licenses/MIT | |
| # https://gist.github.com/rocketraman/820d94f2f9c8731a6f2d56cbc2ddb60f | |
| # | |
| # Syncs a local keepassxc database with a remote source via rclone. | |
| # The basic process is: | |
| # 1) rclone copy to temporary local location | |
| # 2) use keepassxc cli to merge the remote database into the local one |
| aws lambda update-function-configuration \ | |
| --function-name "LifetimeTest" \ | |
| --description $(date -u +"%Y-%m-%dT%H:%M:%SZ") |
| { | |
| "AWSTemplateFormatVersion" : "2010-09-09", | |
| "Parameters" : { | |
| "BucketName" : { | |
| "Description" : "Name of the S3 bucket.", | |
| "Type" : "String" | |
| }, | |
| "TopicName" : { | |
| "Description" : "Name of the SNS topic.", | |
| "Type" : "String", |
| #!/bin/bash | |
| # | |
| # Get all IPs from an autoscale group and update set the local ip as | |
| # equal weight A entries (round robin dns). Takes autoscale group as | |
| # parameter. | |
| # | |
| # Amit Bakshi | |
| # 10/21/2014 | |
| # |