UntouchedWagons

joined 2 years ago
[–] UntouchedWagons@lemmy.ca 5 points 4 months ago

CERTAINLY SIR, HERE YOU GO. WILL THERE BE ANYTHING ELSE?

[–] UntouchedWagons@lemmy.ca 15 points 4 months ago (1 children)

HEY NOW THAT IS REALLY MEAN

[–] UntouchedWagons@lemmy.ca 2 points 5 months ago

Yeah the Canadian dollar isn't great.

[–] UntouchedWagons@lemmy.ca 29 points 5 months ago (2 children)

$90 here in maple syrup land + denuvo = yikes

[–] UntouchedWagons@lemmy.ca 1 points 6 months ago (1 children)

Yeah the legendary drop rate in 3 was way too high just like it was way too low in 2. I've played through 2 several times and only ever got a couple of legendaries. The only way I got anything better than uncommons were quest rewards or from the golden chest.

[–] UntouchedWagons@lemmy.ca 2 points 6 months ago* (last edited 6 months ago)

I made my own solution since I wasn't impressed by projects I had found. There's two parts, the backup image and the restore image.

I use it like so:

services:
  restore_sabnzbd:
    image: untouchedwagons/simple-restore:1.0.5
    container_name: restore_sabnzbd
    restart: no
    environment:
      - BACKUP_APPEND_DIRECTORY=/docker/production/sabnzbd
      - BACKUP_BASE_NAME=sabnzbd
      - FORCE_OWNERSHIP=1000:1000
    volumes:
      - sabnzbd:/data
      - /mnt/tank/Media/Backups:/backups

  sabnzbd:
    image: ghcr.io/onedr0p/sabnzbd:4
    container_name: sabnzbd
    restart: unless-stopped
    user: 1000:1000
    volumes:
      - sabnzbd:/config
      - /mnt/tank/Media/Usenet:/mnt/data/Usenet
    depends_on:
      restore_sabnzbd:
        condition: service_completed_successfully
    networks:
      - traefik_default

  backup_sabnzbd:
    image: untouchedwagons/simple-backup:1.1.0
    container_name: backup_sabnzbd
    restart: unless-stopped
    environment:
      TZ: "America/Toronto"
      BACKUP_APPEND_DIRECTORY: "/docker/production/sabnzbd"
      BACKUP_BASE_NAME: "sabnzbd"
      BACKUP_RETENTION: "24"
      BACKUP_FREQUENCY: "0 0 * * *"
    volumes:
      - sabnzbd:/data:ro
      - /mnt/tank/Media/Backups:/backups
      
networks:
  traefik_default:
    external: true

volumes:
  sabnzbd:

The restore container looks for a file called RESTORED in /data and if one isn't found it'll try to restore the latest backup (if available) and then create a RESTORED file. The backup container ignores this file during backup.

[–] UntouchedWagons@lemmy.ca 1 points 7 months ago

Drills, foundries, science, turbo belts, and the tungsten parts.

[–] UntouchedWagons@lemmy.ca 6 points 9 months ago

AWW YEAH THOSE ARE SOME CUTE KITTIES AROOO

[–] UntouchedWagons@lemmy.ca 8 points 9 months ago

I JUST BRUSHED MY TEETH SO I WILL DRINK GROG TOMORROW MORNING.

[–] UntouchedWagons@lemmy.ca 9 points 9 months ago (2 children)

YOU BETTER PAY THE CAT TAX AROOO

[–] UntouchedWagons@lemmy.ca 14 points 9 months ago

Meowdy purrdnurr

 

Years ago I tried modding Fallout New Vegas and I think 4 on Fedora ages (I was running Fedora 28 at the time) ago using Mod Organizer 2 and it wouldn't work for reasons I didn't understand, possibly file system related. I'm thinking of switching to Pop! OS full time but I'd still like to play either modded Skyrim or FO4 from time to time, preferably using MO2.

 

I go to a random post, read some comments, collapse them then upvotes another comment. All the comments I collapsed are uncollapsed! Why?! What is the point of that?! Is that something I can turn off?

 

A couple of days ago I asked about using my xbox one controller with my steam deck. I did get it working via bluetooth but I'd prefer something I could plug into my dock. I have an old xbox 360 controller that still works but the PC receiver I had no longer works. If I get a replacement 360 receiver (or maybe a different receiver for an xbox one controller) will that work out of the box on my steam deck?

I know there's a project for the xbox one receiver I've got but due to the way SteamOS is set up I'd need to reinstall those drivers whenever there's an update which I don't really want to bother with.

 

This is the receiver I have: https://www.amazon.ca/gp/product/B00ZB7W4QU/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&psc=1

And this is the controller I have: https://www.amazon.ca/gp/product/B08DF26MXW/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&psc=1

If I try to connect the controller using bluetooth my deck can see the controller but can't establish a connection. Is there an addon I can install so that I can use the usb receiver I currently have?

 
 
 

The title is indeed terrible but I have no idea what to put. I am working on a Bill of Materials app and I'm starting out with the database layout and the REST API to interact with the database.

I currently have four tables but the query I want to write involves three of them

CREATE TABLE `components` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL,
  `description` text DEFAULT NULL,
  `price` float unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

CREATE TABLE `products` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL,
  `description` text DEFAULT NULL,
  `tax_code` varchar(8) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name_UNIQUE` (`name`),
  KEY `name_idx` (`tax_code`),
  CONSTRAINT `name` FOREIGN KEY (`tax_code`) REFERENCES `tax_codes` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

CREATE TABLE `product_components` (
  `product_id` int(10) unsigned NOT NULL,
  `component_id` int(10) unsigned NOT NULL,
  `count` int(10) unsigned NOT NULL,
  PRIMARY KEY (`product_id`,`component_id`),
  KEY `fk_component_id_idx` (`component_id`),
  CONSTRAINT `fk_component_id` FOREIGN KEY (`component_id`) REFERENCES `components` (`id`),
  CONSTRAINT `fk_product_id` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

Now what I want to do is list all the products and for each product calculate the cost of all the components that product needs. So if a product needs 4 doodads that cost $1 and 7 whatzits that cost $2 the cost of the product would be $18 (41 + 72). I know I'd need some JOINs but I have no idea what I'd need.

 

I'm going on a trip tomorrow and want to be able to access jellyfin remotely but port forwarding JF isn't an option. I already have Wireguard set up on my pfsense router and my phone can VPN in just fine. I used to have a tablet so I reused its config for my steam deck. I SSH'd the config file over, imported in Network Manager. But when I activate the Wireguard VPN nearly the entire UI stops responding. The power button works and I can bring up the on-screen keyboard but that's it. My only option is to hold down the power button to force the deck to shut down.

Anyone have any ideas what's going on?

 

I'm looking for communities to subscribe to so I went to the Communities page then selected All but I can't sort the listed communities. My cursor changes to a finger when I hover over the Subscribers column but nothing happens when I click on it or any of the other columns..

view more: ‹ prev next ›