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); | |
} |