The runtime-level security issues that come from the MicroPython
interpreter and its bundled TLS stack, as opposed to the app-layer
protocol weaknesses documented in SECURITY_ANALYSIS.md
(cleartext CBOR/TCP, unsigned replies). These are the issues that could let
someone own the box, not just spoof what it displays.
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 python3 | |
| """Show the Coldcard entropy-hack stolen BTC total on a BTClock. | |
| Two public trackers publish a total; they measure different things: | |
| watch coldcardwatch.com -- what was *stolen*. Sum of | |
| min(live_balance, attributed) over the 7 collector addresses, | |
| plus a snapshot of the wave-3 vaults. The attribution cap means | |
| the figure is a verified minimum and can only fall. |
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 python3 | |
| """Show USB-C adapter load + system power via Apple SMC. | |
| Auto-detects sysfs base (legacy applesmc.<N> on pre-T2, ACPI APP0001:00 on T2) | |
| and SMC endianness (T2 stores ui/si little-endian; sp* and flt stay big- and | |
| little-endian respectively on all Apple SMC variants). | |
| Usage: | |
| smc-power.py # one-shot | |
| smc-power.py --watch # live every 1s (Ctrl-C to stop) |
The Delta Air Lines Flight DL4819 crash at Toronto Pearson International Airport on February 17, 2025, resulted in a rare but survivable scenario where the aircraft’s wings detached during impact. This report examines the engineering principles and safety mechanisms behind controlled wing separation, emphasizing its role in preserving fuselage integrity and enabling passenger survival. Insights are drawn from the Toronto incident, aviation design literature, and historical precedents.
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
| ; PlatformIO Project Configuration File | |
| ; | |
| ; Build options: build flags, source filter | |
| ; Upload options: custom upload port, speed and extra flags | |
| ; Library options: dependencies, extra library storages | |
| ; Advanced options: extra scripting | |
| ; | |
| ; Please visit documentation for the other options and examples | |
| ; https://docs.platformio.org/page/projectconf.html | |
| ; |
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
| sensor: | |
| - platform: rest | |
| name: &device_name Device1 | |
| resource: http://<ipaddress1>/api/system/info | |
| scan_interval: 60 | |
| value_template: "{{ value_json.power }}" # Example primary value | |
| json_attributes: | |
| - power | |
| - voltage | |
| - current |
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
| sensor: | |
| - platform: rest | |
| name: Device1 | |
| resource: http://<ipaddress1>/api/system/info | |
| scan_interval: 60 | |
| value_template: "{{ value_json.power }}" # Example primary value | |
| json_attributes: | |
| - power | |
| - voltage | |
| - current |
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: '3' | |
| services: | |
| db: | |
| image: mariadb | |
| container_name: nextcloud-mariadb | |
| networks: | |
| - nextcloud_network | |
| volumes: | |
| - db:/var/lib/mysql | |
| - /etc/localtime:/etc/localtime:ro |
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
| type: custom:apexcharts-card | |
| header: | |
| show: true | |
| title: Nordpool Prize | |
| show_states: false | |
| graph_span: 2d | |
| now: | |
| show: true | |
| label: Nu | |
| span: |
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
| RTL_IMAGE=shahanafarooqui/rtl:0.12.3 | |
| THUNDERHUB_IMAGE=apotdevin/thunderhub:base-v0.13.13 | |
| TOR_IMAGE=lncm/tor:0.4.7.7 | |
| TOR_IP=10.21.21.11 | |
| LND_IMAGE=lightninglabs/lnd:v0.14.3-beta | |
| LND_DATADIR=/home/umbrel/umbrel/app-data/lightning/data/lnd/ | |
| LND_IP=10.21.21.9 | |
| BITCOIND_IMAGE=lncm/bitcoind:v22.0 | |
| BITCOIND_DATADIR=/home/umbrel/umbrel/app-data/bitcoin/data/bitcoin/ | |
| BITCOIN_IP=10.21.21.8 |
NewerOlder
