[-] [email protected] 26 points 10 months ago

Left has thicker plot armour.

[-] [email protected] 23 points 10 months ago

Chest: “I am definitely not a time mimic.”

[-] [email protected] 22 points 10 months ago

I can work under pressure. Just not mental pressure.
Pressure from heavy blankets is fine though.

[-] [email protected] 20 points 1 year ago

*Shuts the laptop lid and opens it.
“Ok! It’s restarted”
IT person: “Well that was certainly quick. Are you sure you restarted it?”
Person: *Feels smug about how they were able to restart quicker than most people.

[-] [email protected] 23 points 1 year ago

It amazes me that she nonetheless came so close to keeping her seat. Who voted for her?

I don’t like how it was a labour landslide. I hoped it would be more balanced with the tories getting fewer seats than green if any.

1
submitted 1 year ago by [email protected] to c/[email protected]

Even without the search, those two were the only small SSDs I could find under "Memory and Storage".

1
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]

I assembled my new Framework laptop 16 yesterday and tested it out with a live Linux Mint environment.

Today I tried to install Linux Mint to a storage expansion card. During the instillation, I had to create a secure boot password for the codecs. When partitioning, I made a 32GB Swap and had the rest of the storage as root. During the instillation, there was a fatal error. I tried unmounting the partitions on the card to create a new table to try again (using fdisk). This also gave an error, so I decided to reboot.

When rebooting, the error shown in the image was displayed and then the computer is powered off. Trying to turn it on without the live USB inserted goes to bios. I tried re imaging the USB, but the Framework still displays the same error. I tried disabling secure boot; same result. I tried factory resetting secure boot; same result. I tried booting without the expansion card; same result.

Transcription:

Failed to open \EFI\BOOT\mmx64.efi - Not Found
Failed to load image ###: Not Found
Failed to start MokManager: Not Found
Something has gone seriously wrong: Import_mok_state() failed: Not Found

The "#"s are completely solid (or possibly checked) characters.

I tried creating a debian USB, but using that gave the same error.

I'm unsure what I should do. Any help would be great. Thank you in advance!

Solution: Go into the BIOS with the USB inserted and locate the boot from file option, then navigate the usb to find the grub efi file and use it to boot.

[-] [email protected] 20 points 1 year ago

Then it’ll get worse again.

[-] [email protected] 25 points 1 year 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.”

29
submitted 1 year ago by [email protected] to c/[email protected]
[-] [email protected] 19 points 1 year ago

About what I was expecting.

Kinda hoping for it to reach the debate milestone, but its growth seems to have slowed. Still plenty of time for that to change though. It’s still in the first month I believe.

329
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]

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

2
submitted 1 year ago by [email protected] to c/[email protected]

Does anyone know if this has been reported yet, or how long these issues last for?

[-] [email protected] 23 points 1 year ago

WHAT THE F-

Oh! I forgot to hit ctrl-s…

10
submitted 1 year ago by [email protected] to c/[email protected]

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 1 year ago by [email protected] to c/[email protected]

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!

[-] [email protected] 22 points 1 year ago

Rails: “No. Don’t worry Ruby.”
Ruby: “Huh?”
Rails: *Hugs Ruby
Rails: “We’re becoming irrelevant.”

Together forever!

[-] [email protected] 23 points 2 years ago* (last edited 2 years ago)

What if a pc simply discovered that their god/patron was another pc who was also unaware that they were a god/patron?

6
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]

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?

[-] [email protected] 23 points 2 years ago

I’ve been playing Deep Rock Galactic with my friend. It’s been really fun.

Works great on deck apart from small text sometimes being a problem.

14
submitted 2 years ago by [email protected] to c/[email protected]

cross-posted from: https://sopuli.xyz/post/770433

Any tips for creating memes using FOSS. I made this in Impress, then copy-pasted it into gimp, and it reduced the quality a lot.

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.

25
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]

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?

73
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]

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

2
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]

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.

view more: ‹ prev next ›

s12

0 post score
0 comment score
joined 2 years ago