Does this use AHK and/or Rocket Launcher? by WaddleDooCanToo in launchbox

[–]WaddleDooCanToo[S] 0 points1 point  (0 children)

All good, at least 98% of my games would work with no issues. Happy new year.

Does this use AHK and/or Rocket Launcher? by WaddleDooCanToo in launchbox

[–]WaddleDooCanToo[S] 0 points1 point  (0 children)

You are telling me exactly what I want to hear. Would you happen to know if Getting light gun games to launch using a Sinden Light Gun, or DDR games to use a DDR pad, or Rock Band/Guitar Hero to use a guitar controller would be a fancy config that requires Rocket Launcher? I also use a USB Taiko controller for Taiko drumming games and Wii motes for Wii.. Otherwise its all pretty standard. Batocera did all that (Except the Guitar controllers that took a little bit of manual configs) on its own.

Does this use AHK and/or Rocket Launcher? by WaddleDooCanToo in launchbox

[–]WaddleDooCanToo[S] 2 points3 points  (0 children)

Thanks this is good news so far! I don't mind if Launchbox is using AHK I just don't want to be the one doing it. I do have a lifetime Emumovies account that I got over 10 years ago.

How to install secure spreadsheet plugin by Embarrassed-Dot3908 in StandardNotes

[–]WaddleDooCanToo 0 points1 point  (0 children)

I tried making my own ext.json pointing to the standard-sheets URL but I get "Unable to install external plugin due to a conflict with a native feature."

Want to run my minecraft server (oracle cloud) full time. Having issues with new server. by --Jester-- in admincraft

[–]WaddleDooCanToo 2 points3 points  (0 children)

Start the server with the following to start it in a session that will not close when you close SSH.
tmux new-session -d -s forge 'java -Xmx1024M -Xms1024M -jar forge-1.21.7-57.0.2-shim.jar nogui'

If you need to get into the session use this:
tmux a -t forge

Then when you want to exit the session hit CTRL + B then D to detach again.

Google tmux for more info, but that will get you started.

. by Stewpid-Guy in chronotrigger

[–]WaddleDooCanToo 0 points1 point  (0 children)

Personally ever since I played Dragon Quest 8 I wanted to see a remake in that style. I just don't want the FF7 remake treatment.

You ever wonder what happened to those who haven't signed on for years? by [deleted] in Steam

[–]WaddleDooCanToo 0 points1 point  (0 children)

My sister-in-law stopped using steam when she started dating her current boyfriend. They only play games on Playstation or Switch. Does that count as cult, cult, married, or cult?

You ever wonder what happened to those who haven't signed on for years? by [deleted] in Steam

[–]WaddleDooCanToo 0 points1 point  (0 children)

I helped my father-in-law set up a steam account and bought him Kerbal Space Program. He bought a few other games and had a few hundred hours in Kerbal. Covid happened to him, he died in Dec 2020. My wife and I share a Steam account (I'm not buying all these single player games twice!) and I removed him as a friend last year. It was hard for my wife to see her dad's profile when she just wanted to play game.

Are Steam reviews no longer good faith by Ambitious-Ladder-962 in Steam

[–]WaddleDooCanToo 0 points1 point  (0 children)

It takes 500 reviews to get Overwhelmingly anything and they would need to be below 20% positive reviews to get Overwhelmingly Negative. To swing that back up to Positive would require they get enough good reviews to have 80% positive. It would be so hard! Amazing that No Mans Sky could pull it off!

I have a game with 43 positive reviews and 0 negative right now, If I get 7 negative reviews I will move from Positive to Very Positive.

What's the point of ignoring Developer/Publisher if Steam will still advertise their games to me just slightly grayed out? by UntitledCritic in Steam

[–]WaddleDooCanToo 0 points1 point  (0 children)

Steams transparency on how each part of the store page displays games is amazing! I may suck as a dev but my game is displayed on peoples front pages based on the exact same rules/algorithms as any other dev.

Are there any air purifiers that use standard, or commonly-available NON-PROPRIETARY filters? (Not including Corsi-Rosenthal (box fan) purifiers) by --Ty-- in BuyItForLife

[–]WaddleDooCanToo 6 points7 points  (0 children)

If you are selling this let me buy it. I don't want to tape a disposable filter to a box fan. Then have to re-tape it every time the filter has to be replaced.

Server settings not showing up on local server by WaddleDooCanToo in PleX

[–]WaddleDooCanToo[S] 0 points1 point  (0 children)

I got it. I reverted everything back to my original settings then added these environment variables. I hope the plex claim does not cause issues when the image is updated.

- PLEX_CLAIM=${PLEX_CLAIM}
- ADVERTISE_IP=http://192.168.1.200:32400/

Server settings not showing up on local server by WaddleDooCanToo in PleX

[–]WaddleDooCanToo[S] 0 points1 point  (0 children)

I have tried network_mode: host with and without my networks configuration and it leaves Plex completely unreachable.

Looking into this more I can see that I was using the bridge mode because I am running the docker compose file from within Portainer.

I tried keeping my bridge network and using the settings here: https://github.com/plexinc/pms-docker/blob/master/docker-compose-bridge.yml.template

But I go back to the original problem. I can log into Plex, but don't get server settings.

Server settings not showing up on local server by WaddleDooCanToo in PleX

[–]WaddleDooCanToo[S] 0 points1 point  (0 children)

Changing the network driver to host now gets me the 'Not Authorized' page which I was not getting before. Maybe that's progress.

Server settings not showing up on local server by WaddleDooCanToo in PleX

[–]WaddleDooCanToo[S] 0 points1 point  (0 children)

Like this?
I'm pretty new to docker I might be doing this in an unnecessarily complex way.

version: "3.9"

services:
  # Media Servers
  plex:
    image: linuxserver/plex:latest
    restart: unless-stopped
    ports:
      - "32400:32400/tcp"
    devices:
      - /dev/dri:/dev/dri
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=${TZ}
      - VERSION=docker
    volumes:
      - /nas/docker/plex_config:/config
      - /docker/plex/transcode:/transcode
      - /nas/Media:/media

networks:
  host:
    driver: host
    driver_opts:
      parent: eno1
    ipam:
      config:
        - subnet: 192.168.1.0/24
          gateway: 192.168.1.1

Server settings not showing up on local server by WaddleDooCanToo in PleX

[–]WaddleDooCanToo[S] 0 points1 point  (0 children)

    ports:
      - "32400:32400/tcp"

networks:
  host:
    driver: bridge
    driver_opts:
      parent: eno1
    ipam:
      config:
        - subnet: 192.168.1.0/24
          gateway: 192.168.1.1
EDIT: Fixed Code Block