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
$ docker exec -it paperless manage | |
Type 'manage.py help <subcommand>' for help on a specific subcommand. | |
Available subcommands: | |
[auth] | |
changepassword | |
createsuperuser |
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
exiftool _MG_8896.CR2 | |
ExifTool Version Number : 11.16 | |
File Name : _MG_8896.CR2 | |
Directory : . | |
File Size : 24 MB | |
File Modification Date/Time : 2021:05:04 22:09:18-04:00 | |
File Access Date/Time : 2021:06:04 22:48:50-04:00 | |
File Inode Change Date/Time : 2021:05:27 23:13:14-04:00 | |
File Permissions : rwxrwxrwx | |
File Type : CR2 |
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: "2" | |
services: | |
prometheus: | |
image: prom/prometheus | |
container_name: prometheus | |
privileged: True | |
volumes: | |
- /mnt/tank/appdata/prometheus:/etc/prometheus | |
ports: |
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
General | |
Unique ID : 162663708653422819879569831683315961704 (0x7A5FE407477584418E6F0BBAC20B8F68) | |
Complete name : Back to the Future (1985) Remux-1080p.mkv | |
Format : Matroska | |
Format version : Version 4 | |
File size : 34.8 GiB | |
Duration : 1 h 56 min | |
Overall bit rate mode : Variable | |
Overall bit rate : 43.0 Mb/s | |
Encoded date : UTC 2014-02-20 16:38:36 |
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
esphome: | |
name: sonoffsv_garage_car | |
platform: ESP8266 | |
board: esp01_1m | |
wifi: | |
ssid: "123" | |
password: "123" | |
# Enable fallback hotspot (captive portal) in case wifi connection fails |
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
cards: | |
- content: >- | |
# Quarantine-o-meter | |
The gauge meters display the amount of time spend at home in the last 7 | |
days. Where Alex left the house (on average) {{ | |
(states("sensor.quarantine_meter_alex_times_left")|int / 7) | round(1) }} | |
times per day and Cat {{ | |
(states("sensor.quarantine_meter_cat_times_left")|int / 7) | round(1) }} | |
times per day. |
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
#!/bin/bash | |
rm -rf bootstrap-files/ | |
sleep 1 | |
mkdir -p bootstrap-files | |
cp install-config.yaml bootstrap-files/ | |
cp append-bootstrap.ign bootstrap-files/ | |
cd bootstrap-files |
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: "2" | |
services: | |
librespeed: | |
image: adolfintel/speedtest | |
container_name: librespeed | |
ports: | |
- 8008:80 | |
environment: | |
- MODE=standalone |
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
#!/bin/bash | |
export ETCD_ENDPOINTS="https://ocp311-m1.ktz.lan:2379,https://ocp311-m2.ktz.lan:2379,https://ocp311-m3.ktz.lan:2379" | |
# master backup | |
mkdir git && cd git | |
git clone https://github.com/openshift/openshift-ansible-contrib.git | |
touch /etc/pki/ca-trust/source/anchors/test # github issue opened to avoid this step | |
./openshift-ansible-contrib/reference-architecture/day2ops/scripts/backup_master_node.sh |
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
#!/bin/bash | |
# call as replace.sh filename | |
file="$1" | |
sed -i 's/+ \*\*/ - { date: "/g' $file | |
sed -i 's/:\*\* /:", desc: "/g' $file | |
sed -i '/ - { date:/ s/$/" }/' $file |