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
# Firefox Proxy Settings: | |
# HTTP Proxy: localhost:8888 | |
# HTTPS Proxy: localhost:8888 | |
# SOCKS Host: localhost:8388 | |
services: | |
gluetun: | |
image: qmcgaw/gluetun | |
container_name: gluetun | |
cap_add: |
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
Having a hard time to set up the adafruit nRF Bluetooth LE Sniffer on windows, so here is a tutorial: | |
Tutorial: https://learn.adafruit.com/introducing-the-adafruit-bluefruit-le-sniffer/using-with-sniffer-v2-and-python3 | |
1. Plugin the sniffer, check device manager if there is a new com port | |
2. Install wireshark | |
3. Go to wireshark extcap folder (something like C:\Program Files\Wireshark\extcap) | |
4. Download BLE package from nordic semiconductor: https://www.nordicsemi.com/Products/Development-tools/nRF-Sniffer-for-Bluetooth-LE/Download?lang=en#infotabs | |
5. move all extcap files from zip into wireshark extcap folder | |
6. go to wireshark extcap folder via console: cd C:\Program Files\Wireshark\extcap | |
7. Run nrf_sniffer_ble.py to check requirements/dependencies: python nrf_sniffer_ble.py |
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 | |
# automatic installation of endlessh, always works for me at least | |
# | |
# run script with: | |
# wget -q -O /tmp/install_endlessh.sh https://gist.githubusercontent.com/Staubgeborener/d55e42b8b6f951f054af823dfd71e214/raw/ && sudo bash /tmp/install_endlessh.sh | |
sudo cp /etc/ssh/sshd_config /etc/ssh/sshd_config.bak | |
sudo apt install git | |
git clone https://github.com/skeeto/endlessh/ |
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
Tasmota devices have a web ui which is accessible via the ip address of the device. This UI offers an API which can be accessed via the following URL: | |
http://tasmota-ip/cm?cmnd=Status%2010 | |
You can select any variable there that you want to map in homepage with the custom API widget. | |
The output will look more or less like this: | |
{ | |
"StatusSNS": { | |
"Time": "2024-12-07T11:39:47", |
OlderNewer