$argon2id$v=19$m=64,t=512,p=2$oZ1WYUwDi9aEoNgliyaZqA$gNQ53QmkebhVTQ54/1R5eg
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 | |
| set -e | |
| # Colori per il terminale | |
| GREEN='\033[0;32m' | |
| YELLOW='\033[1;33m' | |
| RED='\033[0;31m' | |
| NC='\033[0m' | |
| print_info() { echo -e "${GREEN}[INFO]${NC} $1"; } |
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
| import time | |
| import openai | |
| import argparse | |
| import uuid | |
| import tiktoken | |
| # --------------------------------------------------------------------------- | |
| # Configurazione provider | |
| # --------------------------------------------------------------------------- | |
| PROVIDERS = { |
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
| { | |
| "order": -1, | |
| "index_patterns": [ | |
| "pfsense_*" | |
| ], | |
| "settings": { | |
| "index": { | |
| "analysis": { | |
| "analyzer": { | |
| "analyzer_keyword": { |
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
| <TDRNova bandSelected_1="On" bandActive_1="On" bandGain_1="2.1" bandQ_1="0.67" bandFreq_1="79" bandType_1="Low S" bandDynActive_1="Off" bandDynThreshold_1="0.0" bandDynRatio_1="2.0" bandDynSplit_1="On" bandDynAttack_1="20" bandDynRelease_1="200" bandSelected_2="Off" bandActive_2="On" bandGain_2="1.7" bandQ_2="1.50" bandFreq_2="1319" bandType_2="Bell" bandDynActive_2="Off" bandDynThreshold_2="0.0" bandDynRatio_2="2.0" bandDynSplit_2="On" bandDynAttack_2="10.0" bandDynRelease_2="180" bandSelected_3="Off" bandActive_3="On" bandGain_3="-1.1" bandQ_3="0.82" bandFreq_3="3100" bandType_3="High S" bandDynActive_3="Off" bandDynThreshold_3="0.0" bandDynRatio_3="2.0" bandDynSplit_3="On" bandDynAttack_3="5.0" bandDynRelease_3="160" bandSelected_4="Off" bandActive_4="Off" bandGain_4="0.0" bandQ_4="0.60" bandFreq_4="6000" bandType_4="High S" bandDynActive_4="Off" bandDynThreshold_4="0.0" bandDynRatio_4="2.0" bandDynSplit_4="On" bandDynAttack_4="4.0" bandDynRelease_4="23" hpSelected_master="Off" hpActive_master="Off" hpFreq |
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
| #Possible colors: red, green, yellow, blue, magenta, cyan and white. | |
| colorscheme:hass:Home Assistant | |
| cs_re:blue:^.......... ..:..:.. | |
| cs_re:red:(\sERROR\s) | |
| cs_re:yellow:(\sWARNING\s) | |
| cs_re:blue:(\sDEBUG\s) | |
| cs_re:cyan:: | |
| cs_re:green:\[ | |
| cs_re:green:\] | |
| cs_re:green:\( |
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
| slate: | |
| # Main colors | |
| primary-color: '#2980b9' | |
| accent-color: '#2980b9' | |
| dark-primary-color: 'var(--accent-color)' | |
| light-primary-color: 'var(--accent-color)' | |
| # Text colors | |
| primary-text-color: '#FFFFFF' | |
| text-primary-color: 'var(--primary-text-color)' | |
| secondary-text-color: '#b58e31' |
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
| { | |
| "interfaces": { | |
| "ethernet": { | |
| "eth0": { | |
| "address": [ | |
| "10.0.0.10/24" | |
| ] | |
| } | |
| } | |
| }, |
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
| #!/usr/bin/env python | |
| import socket | |
| import sys | |
| if len(sys.argv) < 3: | |
| print "Uso: wake.py <ADR> <MAC> (es: 192.168.1.255 00:11:22:33:44:55)" | |
| sys.exit(1) | |
| mac = sys.argv[2] |
Steps I take when setting up a VPN server on Digital Ocean
NewerOlder