Damus

Recent Notes

d0enakalle🐇⚡ profile picture
DEUTSCHLAND IST AM ENDE - https://www.youtube.com/watch?v=jdBlpyCom3U

Der deutsche YouTube Kanal "kurzgesagt", der mit der englischsprachigen Ausgabe "in a nutshell" ein echter Exportschlager ist, widmet sich dem Problem des "Rentensystems + Demographie".

Über 2 Millionen Abonnenten
SOUTH KOREA IS OVER - https://www.youtube.com/watch?v=Ufmu1WD2TSk

Der englische Kanal hat vor einem Jahr ein ähnliches Video zu Südkorea veröffentlicht. 15 Millionen Views. Es war eines der erfolgreichsten Videos des Kanals der letzten 1,5 Jahre. Mal sehen, was mit der deutschen Version geschieht. 🤔

#Einundzwanzig
@Ursli⚡️
3
Johnny · 3w
Überraschend ehrlich 😱
PlebInstitute · 3w
Der Staat hasst uns 🤷🏽‍♂️
Mabio DeFasi · 3w
Dann können wir danach ein Europa der tausend Lichtensteine aufbauen.
d0enakalle🐇⚡ · 3w
I'm a happier Pleb now! 🥳 I managed to write api-sensors for my self hosted Public Pool in Home Assistant. Now I'm getting push notifications to my Smartphone when my miners find a new "Bestever"...
d0enakalle🐇⚡ profile picture
here's the whole package, if somebody is interested. You gotta change fill in your Public Pool's IP address and then paste this into your confiiguration.yaml . "cgminer" is my AvalonQ, the "2025" is a S19 with BraiinsOS+:

rest:
- resource: http://YOUR_PUBLIC_POOL_IP/api/info
scan_interval: 60
sensor:
- name: "Bitcoin Best Difficulty (cgminer)"
unique_id: bitcoin_best_difficulty_cgminer
value_template: "{{ (value_json.userAgents[0].bestDifficulty | float) | round(2) }}"
unit_of_measurement: "Diff"

- name: "Bitcoin Best Difficulty (2025)"
unique_id: bitcoin_best_difficulty_2025
value_template: "{{ (value_json.userAgents[1].bestDifficulty | float) | round(2) }}"
unit_of_measurement: "Diff"

- name: "Bitcoin Best Difficulty (High Score)"
unique_id: bitcoin_best_difficulty_highscore
value_template: "{{ (value_json.highScores[0].bestDifficulty | float) | round(2) }}"
unit_of_measurement: "Diff"

- name: "Bitcoin Found Blocks Count"
unique_id: bitcoin_found_blocks_count
value_template: "{{ value_json.blockData | length }}"
unit_of_measurement: "Blöcke"
icon: "mdi:cube"
21❤️1
YoungSatoshi · 3w
What's a public pool IP address?
d0enakalle🐇⚡ · 3w
your miners' names are found on the Public Pool Browser Page, under "Online Devices".
d0enakalle🐇⚡ profile picture
I'm a happier Pleb now! 🥳

I managed to write api-sensors for my self hosted Public Pool in Home Assistant. Now I'm getting push notifications to my Smartphone when my miners find a new "Bestever" difficulty hash.

A notification for a "found block" should also work. At least that's what the AI said...

I hope I will find out - one day... MAYBE 🤞

#homeassistant
#publicpool
#homemining
@WantClue
@Public-Pool
21❤️2💯1🤘1
d0enakalle🐇⚡ · 3w
here's the whole package, if somebody is interested. You gotta change fill in your Public Pool's IP address and then paste this into your confiiguration.yaml . "cgminer" is my AvalonQ, the "2025" is a S19 with BraiinsOS+: rest: - resource: http://YOUR_PUBLIC_POOL_IP/api/info scan_interval: 6...