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
/** | |
* Proton Mail - Delete All Mail Script | |
* | |
* This script deletes all mail from Proton Mail by | |
* clicking Select all messages button, waiting and | |
* clicking trash button. This is repeated indefinitely. | |
* | |
* 1. Open Proton Mail | |
* 2. Navigate to Settings -> Messages and Composing | |
* 3. Change Conversation per page to 200 |
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
[Unit] | |
Description=Monero Full Node | |
After=network.target | |
[Service] | |
User=monero | |
Group=monero | |
WorkingDirectory=~ | |
StateDirectory=monero | |
LogsDirectory=monero |
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
[Unit] | |
Description=High performance, open source, cross platform RandomX, KawPow, CryptoNight and AstroBWT CPU/GPU miner. | |
After=network.target | |
[Service] | |
User=root | |
Group=root | |
WorkingDirectory=~ | |
StateDirectory=xmrig | |
LogsDirectory=xmrig |
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
window.setInterval(() => document.querySelectorAll("button[aria-label=\"Claim Bonus\"]").forEach(e => e.click()), 1000) |
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
using System; | |
namespace ErikKralj | |
{ | |
public static class ByteExtensions | |
{ | |
public static string ToHex(this byte value) | |
{ | |
return string.Format("{0:X2}", value); | |
} |