Blxter

joined 2 years ago
[–] Blxter@lemmy.zip 5 points 6 days ago

Hunt showdown also plays well on linux

[–] Blxter@lemmy.zip 1 points 1 week ago (1 children)

With the Linux situation I am hopeful (I'm probably coping) but there alpha sign up talked about steam deck, destiny devs have as well, and the anti cheat will not be kernel level but no idea just speculation

[–] Blxter@lemmy.zip 2 points 2 weeks ago

No doubt this game will have best in class gameplay but I doubt I'll get into it like i did with halo or destiny. For destiny especially D2 they showed how much they care about any sort of soft or hard competitive PVP scene and now they 'are doing the most' for this game (dedicated servers and such)? Like TF they literally threw destiny in the trash to make this game and others that all now all canned or something not sure at this point anymore. On top of all that 100% won't be playable on Linux, (according to leaks) will cost 40$ witch to be clear is not the problem but instead the problem is the 40$ price tag with the inevitable season pass, cosmetics MTX. Etc

 

Hello 👋

Disclaimer I would switch to try grapheneos if I could currently my phone from Verizon apparently can not have it's bootloader unlocked so...

I am looking for launcher suggestions that are maybe less intrusive if that's possible. I mostly just want to get rid of the Google search at the bottom and the 'at a glance' at the top of the home page I can't figure it out.

Edit: forgot my phone model 'Pixel 8 Pro'

 

Valve may be developing a "Steam Box" powered by SteamOS

The new kernel designed for "AMD Lilac" hints at possible new hardware

The device seems more of a competitor for Nvidia Shield than an upcoming Steam Deck 2.

 

Steam Controller 2 (Codename "Ibex ")

Ibex rendermodel thumbnail leaked in SteamVR drivers

https://xcancel.com/SadlyItsBradley/status/1861543924470251771

1
submitted 5 months ago* (last edited 5 months ago) by Blxter@lemmy.zip to c/selfhosted@lemmy.world
 

Hello All,

I am trying to run scrutiny via docker compose and I am running into an issue where nothing shows up on the wub UI. If anyone here has this working would love some ideas on what the issue could be.

as per there trouble shooting for this I followed those steps and here is the output

$ smartctl --scan
/dev/sda -d scsi # /dev/sda, SCSI device
/dev/sdb -d sat # /dev/sdb [SAT], ATA device
/dev/nvme0 -d nvme # /dev/nvme0, NVMe device
docker run -it --rm \
  -v /run/udev:/run/udev:ro \
  --cap-add SYS_RAWIO \
  --device=/dev/sda \
  --device=/dev/sdb \
  ghcr.io/analogj/scrutiny:master-collector smartctl --scan
/dev/sda -d scsi # /dev/sda, SCSI device
/dev/sdb -d sat # /dev/sdb [SAT], ATA device

So I think I am imputing the devices correctly.

I only really changed the port number for the web UI to 8090 from 8080 in there example as 8080 is taken. compose file

services:
  influxdb:
    image: influxdb:2.2
    ports:
      - '8086:8086'
    volumes:
      - './influxdb:/var/lib/influxdb2'
    healthcheck:
      test: ["CMD", "curl", "-f", "http://localhost:8086/health"]
      interval: 5s
      timeout: 10s
      retries: 20


  web:
    image: 'ghcr.io/analogj/scrutiny:master-web'
    ports:
      - '8090:8090'
    volumes:
      - './config:/opt/scrutiny/config'
    environment:
      SCRUTINY_WEB_INFLUXDB_HOST: 'influxdb'
    depends_on:
      influxdb:
        condition: service_healthy
    healthcheck:
      test: ["CMD", "curl", "-f", "http://localhost:8090/api/health"]
      interval: 5s
      timeout: 10s
      retries: 20
      start_period: 10s

  collector:
    image: 'ghcr.io/analogj/scrutiny:master-collector'
    cap_add:
      - SYS_RAWIO
    volumes:
      - '/run/udev:/run/udev:ro'
    environment:
      COLLECTOR_API_ENDPOINT: 'http://web:8090/'
      COLLECTOR_HOST_ID: 'scrutiny-collector-hostname'
    depends_on:
      web:
        condition: service_healthy
    devices:
      - "/dev/sda"
      - "/dev/sdb"

everything appears to start and work and no errors in the terminal.

Thanks for the help.

 

cross-posted from: https://lemmy.zip/post/26115554

I am not the developer of this extension

This extension will have an overview of missable achievements, HLTB, and other info for those that achievement hunt would find helpful.

 

So I self host all my music via Plex and for some artists and albums Plex (via Plex pass I believe) pulls lyrics and can show you like Spotify etc but some artists are not supported/popular. I found a couple apps that 'worked' to download lyrics but the best one was this https://github.com/tranxuanthang/lrcget

Just thought I would share for others who would want to do the same I have a large library and adding lyrics was not hard at all and found most out of the gate. If you have other solutions I would love to hear about them maybe they are better lol

It adds the file as same name in same folder that song is located

 

I would like to be able to give people an URL and have them be able to access my service.

Example I have overseerr currently funneled so when the go to url pcname.tail$$$$$.ts.net they are greeted with overseerr. But if I funneled another service at pcname.tail$$$$$.ts.net/immich for example it does nothing just blank loading but the url knows it should be Immich or another service (I can put the url pcname.tail$$$$$.ts.net/immich in the immich app and have it work). I have tried reversing them so I believe I can not set paths after .net..

Am I doing something wrong or is this not supported?