This file contains 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 | |
set -eo pipefail | |
json=$(y2j <"$1") | |
overrides=$(echo "$json" | jq "{spec}") | |
name=$(echo "$json" | jq -r ".metadata.name") | |
labels=$(echo "$json" | jq -r '.metadata.labels | keys[] as $k | "\($k)=\(.[$k])"' | paste -sd "," -) | |
image=$(echo "$json" | jq -r ".spec.containers[0].image") |
This file contains 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
#!python | |
""" | |
Exports a Bitwarden database into a KeePass file (kdbx) including file attachments, custom fields and folder structure. | |
It can also export an unencrypted XML KeePass file conforming to KeePass 2 XML format. | |
It requires keepassxc-cli, if not available it can still export KeePass 2 XML | |
- https://github.com/keepassxreboot/keepassxc | |
Usage: bw_export_kp.py [-h] [-x] [-d] [-bw-password None] [-kee-password None] |
This file contains 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
browserSync = require 'browser-sync' | |
browserSync.use | |
plugin: -> | |
hooks: | |
'client:js': ' | |
/* Close tab when server dies */ | |
(function (bs) { | |
bs.socket.on("disconnect", function (client) { window.close(); }); | |
})(___browserSync___);' |