waitmarks

joined 11 months ago
[–] waitmarks 5 points 4 days ago (1 children)

it should probably stay in docker containers

[–] waitmarks 2 points 1 week ago

Because they would be the ones actually entering it, you would just say some numbers out loud.

But probably the smarter thing to do would be to leave the wipe code on a sticky note inside the phone case and hope they try it.

[–] waitmarks 3 points 1 week ago (1 children)

Because instead of unlocking, everything would get deleted when they entered the code.

[–] waitmarks 5 points 1 week ago (7 children)

I wonder though, if you had that set up and the cops ask you for the code to unlock and you told them the code to wipe and they end up wiping the phone. Would they be able to charge you with evidence tampering?

[–] waitmarks 27 points 1 week ago (2 children)

As if managers even know what RISC-V is

[–] waitmarks 9 points 1 week ago (1 children)

What about making these massive trucks require a CDL to drive? Sure some would be dedicated enough to do it, but im sure most people would see that requirement and just get something more reasonable.

[–] waitmarks 3 points 1 week ago

Its the server world that is demanding it. For most consumers 4.0 is more than enough, but servers are already maxing out 5.0 and will probably immediately max out 6.0 when devices actually become available.

[–] waitmarks 2 points 1 week ago (1 children)

??? Literally every android phone is linux. All arm SBCs run linux. Linux is the default on arm, macos and windows are just catching up.

365
submitted 2 weeks ago* (last edited 2 weeks ago) by waitmarks to c/technology
86
submitted 2 weeks ago* (last edited 2 weeks ago) by waitmarks to c/privacy
[–] waitmarks 5 points 2 weeks ago

the NSA (which lacks a mandate to act on US soil, and CF is a US company)

They absolutely do have a mandate to operate on US soil, that is actually the main mandate and there is a separate military agency (CNMF) that operates on foreign soil. They are both headed by the same guy though so they might as well just be one agency.

[–] waitmarks 2 points 1 month ago

the thing about Recaptcha is that it didn’t always gate keep a google provided service, so that logic doesn’t really work. i agree though that we all benefit from less bots.

[–] waitmarks 3 points 1 month ago
[–] waitmarks 2 points 2 months ago* (last edited 2 months ago)

There is one extra step. I have an 6700xt, and with the docker containers, you just have to pass the environment variable HSA_OVERRIDE_GFX_VERSION=10.3.0 to allow that card to work. For cards other than 6000 series, you would need to look up the version to pass for your generation.

Here's an example compose file that I use for ollama that runs ai models on my 6700xt.

version: '3'
services:
  ollama:
    image: ollama/ollama:rocm
    container_name: ollama
    devices:
      - /dev/kfd:/dev/kfd
      - /dev/dri:/dev/dri
    group_add:
      - video
    ports:
      - "11434:11434"
    environment:
      - HSA_OVERRIDE_GFX_VERSION=10.3.0
    volumes:
      - ollama_data:/root/.ollama

volumes:
  ollama_data:
view more: next ›