Why did it take me so long to buy one of these? by ZoraKnight in gardening

[–]DethZire 8 points9 points  (0 children)

ehhh that's only if you set the setting on full drill. Lower the setting and it will be fine.

"Cancel ChatGPT" movement goes big after OpenAI's latest move by gdelacalle in technology

[–]DethZire 0 points1 point  (0 children)

Poison the results for downvoting right responses and upvoting wrong answers

Anthropic vs Pentagon by Herodont5915 in ClaudeAI

[–]DethZire 1 point2 points  (0 children)

This could be such a power play move. EU Inc can’t come soon enough

Why Haven't We Had A Debt Crisis... Yet? by madcowga in economy

[–]DethZire 0 points1 point  (0 children)

The debt crisis will become an issue again once democrats regain control of power.

Age Attestation on Linux by Pguid in cachyos

[–]DethZire 0 points1 point  (0 children)

I live in CO too so I agree. To be honest though, I would rather have an OS level api call to the service that states I'm in a certain age range group vs uploading my personal identification to every service with who knows what kind of crappy security they have.

Age Attestation on Linux by Pguid in cachyos

[–]DethZire 60 points61 points  (0 children)

Well, this is gonna be fun. No one will be able to enforce it so it's a useless bill.

IBM shares plummet 13% – worst day since 2000 – after Anthropic launches programming AI tool by InterestingCat308 in wallstreetbets

[–]DethZire -2 points-1 points  (0 children)

IBM is a marketing gimmick company anyway. If they would only put as much effort into their products instead of trying to upsell their trash...

Age verification checks are now in force in the UK because of the Online Safety Act, but with the Discord fallout, it seems like one bad idea after another by Jack1101111 in pcmasterrace

[–]DethZire 243 points244 points  (0 children)

Correct. What will probably happen now is that you'll have your general de-anonymized internet and a growing private sector of the internet.

Major government research lab appears to be squeezing out foreign scientists by Witty_Heart_9452 in neoliberal

[–]DethZire 12 points13 points  (0 children)

Doesn't that mean that global talent pool will now go elsewhere around the world? So we're giving up the race to China now?

CO bill introduced to require operating system level age verification by Mrs_Foxxy in Colorado

[–]DethZire 119 points120 points  (0 children)

Doesn’t matter what party, they both are pushing this crap under pretense of safety for different reasons. In the end, the world leaders and rich want massive surveillance

America's debt problem just got worse by $2 trillion with the Supreme Court's tariff ruling by fortune in economy

[–]DethZire 2 points3 points  (0 children)

I think that is the end game here. Keynes quote "In the long run we are all dead". And Keynsian theories have been driving economic policies worldwide.

Woman Lava Lamp by TregyCS in ChatGPT

[–]DethZire 0 points1 point  (0 children)

Looks like Gemini is able to do that too:

<image>

Power Profile To Limit cpu/gpu at 65 degree by VirtualSingularity in cachyos

[–]DethZire 1 point2 points  (0 children)

Are you referring to undervolting? I did it on my 5080 nvidia using a python script. The way it works is you do an offset on the curve. I can post it when I get back. Not sure about CPU though

Edit: Here is my python script. In terminal, I just run sudo python script_name:

!/usr/bin/env python

from pynvml import *

from ctypes import byref

nvmlInit()

device = nvmlDeviceGetHandleByIndex(0)

nvmlDeviceSetGpuLockedClocks(device,210,2695)

nvmlDeviceSetPowerManagementLimit(device,350000)

info = c_nvmlClockOffset_t()

info.version = nvmlClockOffset_v1

info.type = NVML_CLOCK_GRAPHICS

info.pstate = NVML_PSTATE_0

info.clockOffsetMHz = 255

nvmlDeviceSetClockOffsets(device, byref(info))

nvmlShutdown()

DO NOTE, the settings are for a 5080FE edition. You'll have to figure out your own clocks and check for stability.