I hereby claim:
- I am starbuck93 on github.
- I am starbuck93 (https://keybase.io/starbuck93) on keybase.
- I have a public key ASB_yMZmYe07-8w34vqvDHLNldTZK1jv2rNfSPtXyk3tRgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<?php | |
/** | |
* Split PDF file | |
* | |
* <p>Split all of the pages from a larger PDF files into | |
* single-page PDF files.</p> | |
* | |
* @package FPDF required http://www.fpdf.org/ | |
* @package FPDI required http://www.setasign.de/products/pdf-php-solutions/fpdi/ |
blueprint: | |
name: Z2M - IKEA five button remote for lights | |
description: | | |
Control lights with an IKEA five button remote (the round ones). | |
The middle "on" button, toggle the lights on/off to the last set brightness | |
(unless the force brightness is toggled on in the blueprint). | |
Dim up/down buttons will change the brightness smoothly and can be pressed | |
and hold until the brightness is satisfactory. |
#!/bin/bash | |
#Assuimg your current Portainer container name is simply "portainer" | |
docker stop portainer | |
docker rm portainer | |
docker image ls | grep portainer | awk '{print $3}' | xargs -I {} docker image rm {} | |
docker pull portainer/portainer-ce:latest | |
docker run -d -p 8000:8000 -p 9000:9000 -p 9443:9443 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce |
blueprint: | |
name: Z2M v2.0 - Inovelli 2-in-1 switch + dimmer Scene Controls | |
description: 'For Inovelli Blue Series 2-in-1 switch + dimmer, model VZM31-SN | |
Allows setting a few different actions such as 2,3,4,5 clicking the up/down and | |
config buttons. | |
Updated for use with Zibbee2MQTT v2.0 with Device Actions | |
' |
The purpose of this sed
command is to get rid of the extra stuff from my Google Takeout of a "new" Google Site to eventually import it into Outline Wiki.
This will read the whole file in a loop (:a;N;$!ba)
, then match everything from the beginning of the file (^.*)
until the substring </header>
and replace it with the replacement (blank).
Then, once I import the file into Outline Wiki, I'll re-link the pictures if there are any, and reorganize the structure of the sidebar from Google Sites. But, removing all the extra HTML will make this much faster.
type: custom:tv-card | |
entity: remote.my_remote | |
title: Chromecast | |
power_row: | |
- back | |
- power | |
- home | |
apps_row: | |
- netflix | |
- disneyplus |
version: "3.8" | |
services: | |
immich-server: | |
container_name: immich_server | |
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} | |
extends: | |
file: hwaccel.yml | |
service: hwaccel | |
volumes: |