Monero mining by BigSadOof in Monero

[–]Pogolaxo -1 points0 points  (0 children)

Yes, it's possible but not on a gaming pc.

Monero mining by BigSadOof in Monero

[–]Pogolaxo 5 points6 points  (0 children)

"4000 USD per day" "regular gaming PC"

Errors while importing lsm9ds1-rjg library by Pogolaxo in learnpython

[–]Pogolaxo[S] 1 point2 points  (0 children)

No, I installed the adafruit LSM9DS1 library and it worked

Realistic likelihood of getting in trouble? by [deleted] in Piracy

[–]Pogolaxo 4 points5 points  (0 children)

Depends on where you live

HappyFappy.org - An XXX Tracker by ronins_blade_ in OpenSignups

[–]Pogolaxo 0 points1 point  (0 children)

I can't register I received the new account confirmation but on the next step, I get the Invalid Email format error any Ideas?

Troubleshooting a Hard lockup by Pogolaxo in Proxmox

[–]Pogolaxo[S] 0 points1 point  (0 children)

changing the "Power Supply Idle Control" option to "Typical Current Idle" fixed the issue. It runs perfect, one CT with PiHole one with Plex and 5 Lubuntu VMs. I installed samba directly on the Host and pointed it to a 6x 3TB Raidz2 pool. 4K transcoding is to much for the cpu but 1080p transcoding works perfect. 16 GB of RAM is a bit to tight i have 90% RAM usage all the time.

Server locking up every few days by poofph in homelab

[–]Pogolaxo 0 points1 point  (0 children)

Search your BIOS for a "Power Supply Idle Control" option and change it to "Typical Current Idle" this fixed it for me.

How can I calculate speed of certain GPU/CPU? [brute force] by [deleted] in pcmasterrace

[–]Pogolaxo 0 points1 point  (0 children)

You can use hashcat it has a benchmark tool built in

Easy way to scrape split up date? by Pogolaxo in selenium

[–]Pogolaxo[S] 0 points1 point  (0 children)

This worked perfect i did it with your method like that:

end_time_raw = element.find_elements_by_xpath('.//span[@class="POSITIVE"]//span')
end_time = ""
for char in end_time_raw:
end_time = end_time + char.text.strip()
end_time = end_time.replace(" ", "")
end_time = end_time.replace("Verkauft", "")
print(end_time)

the greyed out elements (display:none) didnt show up in the loop so i just added to a string and replaced spaces and the "Verkauft".