66
submitted 3 months ago by mouse@midwest.social to c/linux_gaming@lemmy.ml

cross-posted from: https://midwest.social/post/41411460

They had to close down to check that all content was in compliance of the UK Online Safety Act.

Now they have reopened after making a few adjustments. Links and media require approval before being displayed, and links are only clickable if logged in.

172

They had to close down to check that all content was in compliance of the UK Online Safety Act.

Now they have reopened after making a few adjustments. Links and media require approval before being displayed, and links are only clickable if logged in.

[-] mouse@midwest.social 19 points 3 months ago

Steam's AI Generated Content Disclosure states:

The developers describe how their game uses AI Generated Content like this:

-Some base textures have been AI generated during the development

-Some of the imagery and speech audio in the in-game TV programs are AI generated

-Some in-game radio music is AI generated

And a post by the developer specifically stating where AI is used.

Here is a specific rundown of the AI used in the game:

-One TV program that has two episodes, around 5min in length each (images and speech is AI, but written, edited and music composed by humans)

-One TV commercial 10sec in lenght

-Paintings on the house walls (same as in MSC)

-Food pictures/textures, around 12 separate pieces

-"Carbon fiber finish" texture, but this is definitely not important so it can be removed :D

-And then maybe half (in minutes) of the music on the radio, generated by AI and lyrics written by humans except for one instrumental song. These can be removed (apart from one song that is part of the game feature), but there is no replacement. Lets just say that without them, the radio experience is... rather interesting.

40
submitted 5 months ago by mouse@midwest.social to c/steam@lemmy.ml
20
submitted 5 months ago by mouse@midwest.social to c/guildwars2@lemmy.wtf
[-] mouse@midwest.social 18 points 6 months ago

Check out this repo for udev rules: https://codeberg.org/fabiscafe/game-devices-udev

Instructions copied from repo:

  1. Download the archive.
  2. Extract the archive.
  3. Copy all the rule files to /etc/udev/rules.d.
  4. Create another file: /etc/modules-load.d/uinput.conf.
  5. Put uinput into that file.
  6. Reboot.
1
submitted 6 months ago by mouse@midwest.social to c/cozygames@lemmy.world

It's going to be 25% off at launch.

Steam description: Transform your childhood home as you build brilliant factories and forge lifelong friendships, then reach for the skies and finally finish your family's dream - your mother's precious rocket ship. Roll up your sleeves, it turns out that saving this town really IS rocket science!

[-] mouse@midwest.social 25 points 6 months ago* (last edited 6 months ago)

8BitDo Ultimate 2 Wireless Controller.

It uses the xbox layout. It has hall effect triggers and TMR joysticks (similar to hall effect), 2 back paddle buttons, 2 extra bumper buttons, and gyro.

The software does not work, or at least didn't work on Linux with wine when I tried a few months ago. However for just regular controls and if using Steam Input it doesn't matter.

https://www.8bitdo.com/ultimate-2-wireless-controller/

https://www.gamingonlinux.com/2025/04/8bitdo-ultimate-2-is-getting-full-steam-input-support-for-more-buttons/

[-] mouse@midwest.social 22 points 8 months ago

Try contacting the Forgejo admin, they can enable the HTTP meta refresh challenge, though it does have a higher false positive rate. https://anubis.techaro.lol/docs/admin/configuration/challenges/metarefresh

[-] mouse@midwest.social 21 points 10 months ago

It's probably this bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1955112

It's a bug specifically on Wayland.

Try grabbing the tab and moving it and letting go, you don't have to move it's tab slot.

[-] mouse@midwest.social 100 points 1 year ago* (last edited 1 year ago)

I use Caddy for this. I'll leave links to the documentation as well as a few examples.

Here's the documentation for wildcard certs. https://caddyserver.com/docs/automatic-https#wildcard-certificates

Here's how you add DNS providers to Caddy without Docker. https://caddy.community/t/how-to-use-dns-provider-modules-in-caddy-2/8148

Here's how you do it with Docker. https://github.com/docker-library/docs/tree/master/caddy#adding-custom-caddy-modules

Look for the DNS provider in this repository first. https://github.com/caddy-dns

Here's documentation about using environment variables. https://caddyserver.com/docs/caddyfile/concepts#environment-variables

Docker

A few examples of Dockerfiles. These will build Caddy with DNS support.

DuckDNS

FROM caddy:2-builder AS builder
RUN xcaddy build --with github.com/caddy-dns/duckdns

FROM caddy:2
COPY --from=builder /usr/bin/caddy /usr/bin/caddy

Cloudflare

FROM caddy:2-builder AS builder
RUN xcaddy build --with github.com/caddy-dns/cloudflare

FROM caddy:2
COPY --from=builder /usr/bin/caddy /usr/bin/caddy

Porkbun

FROM caddy:2-builder AS builder
RUN xcaddy build --with github.com/caddy-dns/porkbun

FROM caddy:2
COPY --from=builder /usr/bin/caddy /usr/bin/caddy

Configure DNS provider

This is what to add the the Caddyfile, I've used these in the examples that follow this section. You can look at the repository for the DNS provider to see how to configure it for example.

DuckDNS

https://github.com/caddy-dns/cloudflare?tab=readme-ov-file#caddyfile-examples

tls {
	dns duckdns {env.DUCKDNS_API_TOKEN}
}

CloudFlare

https://github.com/caddy-dns/cloudflare?tab=readme-ov-file#caddyfile-examples Dual-key

tls {
	dns cloudflare {
		zone_token {env.CF_ZONE_TOKEN}
		api_token {env.CF_API_TOKEN}
	}
}

Single-key

tls {
	dns cloudflare {env.CF_API_TOKEN}
}

PorkBun

https://github.com/caddy-dns/porkbun?tab=readme-ov-file#config-examples Global

{
        acme_dns porkbun {
                api_key {env.PORKBUN_API_KEY}
                api_secret_key {env.PORKBUN_API_SECRET_KEY}
        }
}

or per site

tls {
	dns porkbun {
			api_key {env.PORKBUN_API_KEY}
			api_secret_key {env.PORKBUN_API_SECRET_KEY}
	}
}

Caddyfile

And finally the Caddyfile examples.

DuckDNS

Here's how you do it with DuckDNS.

*.example.org {
        tls {
                dns duckdns {$DUCKDNS_TOKEN}
        }

        @hass host home-assistant.example.org
        handle @hass {
                reverse_proxy home-assistant:8123
        }
}

Also you can use environment variables like this.

*.{$DOMAIN} {
        tls {
                dns duckdns {$DUCKDNS_TOKEN}
        }

        @hass host home-assistant.{$DOMAIN}
        handle @hass {
                reverse_proxy home-assistant:8123
        }
}

CloudFlare

*.{$DOMAIN} {
        tls {
	        dns cloudflare {env.CF_API_TOKEN}
        }

        @hass host home-assistant.{$DOMAIN}
        handle @hass {
                reverse_proxy home-assistant:8123
        }
}

Porkbun

*.{$DOMAIN} {
        tls {
	        dns porkbun {
			api_key {env.PORKBUN_API_KEY}
			api_secret_key {env.PORKBUN_API_SECRET_KEY}
	        }
        }

        @hass host home-assistant.{$DOMAIN}
        handle @hass {
                reverse_proxy home-assistant:8123
        }
}
[-] mouse@midwest.social 26 points 1 year ago

It looks like they are working on fixing that with this pull request.

[-] mouse@midwest.social 15 points 2 years ago

Unless I missed something, the article states as follows

Another method of bypassing the account lockdown still exists. You simply have to enter OOBE\BYPASSNRO in the command prompt during the Windows 11 setup process, which allows you to skip the connection to the Internet and thus also the link to a Microsoft account.

[-] mouse@midwest.social 21 points 2 years ago

I agree. I am someone who values their privacy and often does not like opt-out style analytics however I also know opt-in skews analytics. The way the searches are only categorized, and they are using Oblivious HTTP keeping IP addresses private makes me A-OK with this.

[-] mouse@midwest.social 28 points 2 years ago* (last edited 2 years ago)

XLink Kai? I remember it from late 2000s, I don't know much about it now.

https://en.wikipedia.org/wiki/XLink_Kai

https://www.teamxlink.co.uk/

[-] mouse@midwest.social 49 points 2 years ago

As an adult, we do too, and it also negatively impacts us. When I left the other social platforms I took the time to uninstall or disable many notifications, I now receive a total of 5 a day on average. It's good to see these conversations happening though, whether we react and change though only time will tell.

47

I have recently become interested in mini PCs, but one thing that is stopping me is a feeling that bit rot could cause me to lose data.

Is bit rot something to worry about when storing data for services such as Git, or Samba. I have another PC right now that is setup with btrfs raid1 and backups locally and to the cloud, however was thinking about downsizing for the benefit of size and power usage.

I know many people use the mini PCs such as ThinkCentres, Optiplex, EliteDesks and others, I am curious if I should be worried about losing data due to bit rot, or is bit rot a really rare occurrence?

Let's say I have backups with a year of retention, wouldn't it be possible that the data becomes corrupt and that it isn't noticed until after a year? for example archived data that I don't look at often but might need in the future.

1
1
submitted 2 years ago* (last edited 2 years ago) by mouse@midwest.social to c/askmidwest@midwest.social
89

Experience: I have a bit of experience with Linux. I started around 2008, distro-hopped weekly, decided on Debian until around 2011, when I switched to Windows as I started getting interested in gaming. Tried switching back around 2015, this time using Arch Linux for about a month, but had some bad experiences with gaming and switched back to Windows. I have had a Debian and Arch VM in Virtual Box since then for testing different applications and a more coherent environment to work with servers.

Understanding: Which brings me to now, I am really interested in using Linux for gaming, I know there is Proton from Valve and that they have been really pushing Linux gaming forward with it.

Thoughts: I have been contemplating dual booting by installing Debian to an SSD and simply using the UEFI boot menu to choose instead of having to install to the EFI of Windows.

I guess, I should just do it, as it won't affect my Windows installation, and I could test different games and if all works well, move over. This would also allow me to try different distributions, though my heart is for Debian, I even like Debian Unstable.

Note: I am sorry for the wall of text, I am just kind of anxious I guess.

1
[-] mouse@midwest.social 17 points 2 years ago

We all make mistakes, thank you for being transparent. ๐Ÿ’–

view more: next โ€บ

mouse

0 post score
0 comment score
joined 2 years ago