ToTo

Results 13 comments of ToTo

As far as I read the bus is very well described in the attached datasheet? Unfortunately my programming skills are not enough to pull this off, that's why I asked...

Thanks for the fast answers! I'll try to find time to dig into this.

No, have a look here: https://github.com/Chia-Network/chia-blockchain/wiki/Pooling-User-Guide "You should ensure that your points found in the last 24h are accurate. You should be obtaining around 10 points per day per k32,...

Just figured that adding `--deprecated-check-disable` ignores the error, but it would be nice if you add the new format. Thanks!

Yes, here: https://hashcat.net/forum/thread-10253.html For developers The new hash format 22000 in detail: Code: `PROTOCOL*TYPE*PMKID/MIC*MACAP*MACCLIENT*ESSID*ANONCE*EAPOL*MESSAGEPAIR` PROTOCOL = Fixed string "WPA" TYPE = 01 for PMKID, 02 for EAPOL PMKID/MIC = PMKID...

Also here: https://hashcat.net/wiki/doku.php?id=cracking_wpawpa2

Same here, double click does not work.

Confirming that 3.0.0-alpha3 does NOT produce valid plots using ramplot and 0 compression on linux. `chia plots check` returns invalid plot. This feature is still broken.

Not sure if it's the same issue, but I have every 3-4 out of 10 plots invalid with -n 30. I'm plotting with NVIDIA RTX A4000 with 0 compression. ```...

I tested the available PSRAM with this sketch: ```c++ #include void setup() { M5.begin(); Serial.begin(115200); // Initialize PSRAM if(!psramInit()) { Serial.println("Failed to initialize PSRAM"); while(1); } // Test PSRAM testPSRAM();...