[-] s12@sopuli.xyz 4 points 1 day ago* (last edited 1 day ago)

Yes.

I don’t have a desktop pc, so before I got my Steam Deck, I was using my laptop for pc gaming.

[-] s12@sopuli.xyz 3 points 2 days ago* (last edited 2 days ago)

I had the same question; it’s nice to find out the answer. … if I ever play again, I was probably going to start a new save file anyway.

I don’t think I even got entirely through act one.

[-] s12@sopuli.xyz 11 points 5 days ago

This looks like a job for my unseen servant (or phantasmal minion for people who play the Pathfinder Remaster)!

[-] s12@sopuli.xyz 2 points 5 days ago

I think that comment said something along the lines of;

Did you seriously just assume the gender of the DDOSers?!?

[-] s12@sopuli.xyz 2 points 1 week ago

I would. There’d hopefully be an exodus.

[-] s12@sopuli.xyz 20 points 1 week ago

Then it’ll get worse again.

[-] s12@sopuli.xyz 11 points 1 week ago

I’d call that karma for Reddit and Google.

[-] s12@sopuli.xyz 24 points 1 week ago

Me: “Is bugger a term that denotes a bugged state?
Senior: “No. That’s just what I have it print to show if something has failed.”

26
submitted 2 weeks ago by s12@sopuli.xyz to c/animemes@ani.social
[-] s12@sopuli.xyz 6 points 2 weeks ago

I dislike cheese.

[-] s12@sopuli.xyz 5 points 2 weeks ago

If you’re going that far; just ban gendered pronouns altogether.

[-] s12@sopuli.xyz 6 points 2 weeks ago

“But my reality is how it’s always been” - Torys

[-] s12@sopuli.xyz 5 points 2 weeks ago

The AI can give a variety of answers.

  1. First, take the goat across to the opposite shore.
  2. Then go back to the original shore to get the boat.
  3. Finally, take the boat across to the opposite shore.

This ensures that the goat is never left alone such that it could wonder off.

I got something like that.

325
submitted 1 month ago* (last edited 3 weeks ago) by s12@sopuli.xyz to c/unitedkingdom@feddit.uk

The recent stopkillinggames campaign has been my first exposure to UK petitions.

Link to petition: https://petition.parliament.uk/petitions/659071
Link to campaign: stopkillinggames.com
Link to the campaigner’s video

Update: Link to the campaigner’s video on the response

10

I’ve been having a go at using Stable Diffusion through Easy Diffusion. I made a png with alpha for img2img, but the transparency seems to be getting replaced with black, ruining the image. I was expecting the transparency to get replaced with noise. Are there any good fixes/workarounds?

  • I don’t really want to add my own noise to the input image itself, because wouldn’t that make the randomness produced by stable diffusion useless?
  • Could I manually script it to automatically layer the image over the noise, or over the image after a few steps in?
  • I don’t have a dedicated graphics card yet, so I’m CPU only.
2
submitted 3 months ago by s12@sopuli.xyz to c/framework@lemmy.ml

I don’t know much about graphics cards, but the framework laptop seems to offer an “AMD Radeon™ RX 7700S” and stable diffusion requires Linux ROCm.

It’s not completely clear if ROCm runs on AMD Radeon™ RX 7700S, so I was wondering if anyone had any experience with setting it up on framework.

2
submitted 3 months ago by s12@sopuli.xyz to c/steamdeck@sopuli.xyz

When I try to turn off Use CPU in settings, it says "No compatible graphics card found!".

During the instillation, I got an error "hipErrorNoBinaryForGpu" which I looked up and found the command export HSA_OVERRIDE_GFX_VERSION=10.3.0 which got me through the instillation.

I don't know much about GPUs, so thanks in advance for any help/advice!

8
submitted 5 months ago* (last edited 5 months ago) by s12@sopuli.xyz to c/godot@programming.dev

I want to create a "gradual colour change" effect in Godot.

eg: some_set_font_color_func(Color8(255,n,n) where n gradually decreases to make the text fade from white to red.

I can't figure out what function I would use in place of some_set_font_color_func to change a font's colour.

Godot themes are somewhat confusing. Given some var var UI:control how would I set the colour of any font(s) contained within that node?

24
submitted 8 months ago* (last edited 8 months ago) by s12@sopuli.xyz to c/godot@programming.dev

I’m just curious about which is the most efficient way of doing this kind of node enumiration:

for i in something():
    o=[var1,var2,var3,varN][i]
    o.new()
    o.do_something_based_on_number_of_loops()
    add_child(o)

or

for i in something():
    match i:
        0:
            o=var1
            o.new()
            o.do_something_based_on_number_of_loops()
            add_child(o)
        1:
            o=var2
            o.new()
            o.do_something_based_on_number_of_loops()
            add_child(o)
        2:
            o=var3
            o.new()
            o.do_something_based_on_number_of_loops()
            add_child(o)
        N-1:
            o=varN
            o.new()
            o.do_something_based_on_number_of_loops()
            add_child(o)

or

var items = [var1,var2,var3,varN]
for i in something():
    o=items[i]
    o.new()
    o.do_something_based_on_number_of_loops()
    add_child(o)

Or is there a more efficient way of doing it?

Edit: Sorry if that wasn't clear. Is it better to constantly get something from an "unstored list", store the list in a variable, or not use a list and use a match statement instead? Do they have any advantages/disadvantages that make them better in certain situations?

12
submitted 8 months ago* (last edited 8 months ago) by s12@sopuli.xyz to c/baldurs_gate_3@lemmy.world

Baldur’s Gate 3 worked fine before. Now it returns to the game’s library page just before it would normally show the game’s logos.

We tried switching to proton experimental, as suggested by people who were having a similar issue back in August, but this gives the same result.

Has anyone been experiencing anything similar, or does anyone have any advice?

Thanks in advance.

Edit: I tried setting “gamemoderun --skip-launcher” or “--skip-launcher” as a launch option, but this didn’t work.

73
submitted 9 months ago* (last edited 9 months ago) by s12@sopuli.xyz to c/memes@sopuli.xyz

Ah. It's still called cake day over here.
Wasn’t sure if it had to be called something different on Lemmy.

1
submitted 9 months ago* (last edited 9 months ago) by s12@sopuli.xyz to c/linuxquestions@lemmy.zip

I want to install Debian over an existing Debian install with an existing home partition in an encrypted lvm (to upgrade to testing), and I have been practising in a vm.

After trying to follow the advice on https://www.blakehartshorn.com/installing-debian-on-existing-encrypted-lvm/, I successfully reached the end of the installation, but when I try to boot into my system, I get the error(s) shown in the attached screenshot.

Any idea what I did wrong/need to do?

Edit: "sgx: There are zero EPC sections" is something that displayes when booting successfully into a machine that works too.

2
submitted 10 months ago* (last edited 10 months ago) by s12@sopuli.xyz to c/linuxmint@lemmy.ml

I noticed the updater was incredibly slow today. security.ubuntu.com seems to be down. Is that the reason the updater isn't working so well right now? Why is that the case? It makes it somewhat difficult to apply other updates. Even changing mirrors is incredibly slow and hardly works.

Also, how long does this usually go of for if so?

Update: Seems to be working fine now. Anyone know what happened?

1
submitted 11 months ago by s12@sopuli.xyz to c/linux_memes@sopuli.xyz

In PowerPoint, you can just select everything, then right-click -> save as image, and it saves whatever you have selected rather than the whole slide. There doesn't seem to be a way to do that in Impress, but I realised you could copy-paste into Gimp and that would copy the objects as an image, so I've been making memes that way.

view more: next ›

s12

joined 2 years ago