ReducedArc

joined 3 years ago
[–] ReducedArc@lemmy.world 2 points 2 weeks ago

yeah the new plex app sucks, live tv only sometimes works on it and won't cast. I side loaded the most recent version of the old app (10.26) and set it to not auto update.

[–] ReducedArc@lemmy.world 1 points 1 month ago (1 children)

Do you know if there's a good place to find mods for these N64 re/decomps? Googling around hasn't produced many relavent results for me ( or maybe they don't exist yet? )

[–] ReducedArc@lemmy.world 2 points 3 months ago

I wonder why the numbers have plateaued for Texas and New Mexico

[–] ReducedArc@lemmy.world 10 points 5 months ago (1 children)

Notepad on windows, I think around the XP and earlier versions, had a similar bug. If you typed this app can break and saved it, the file would be corrupted. Something to do with the number and placement of characters.

[–] ReducedArc@lemmy.world 2 points 7 months ago (1 children)

For learning about economic & financial concepts and how they impact the world check out the NPR podcast Planet Money. It's free, episodes aren't too long, and they cover some really interesting stories that involve businesses, supply chains, government policy, etc. a fun episode is #862: Big Government Cheese

[–] ReducedArc@lemmy.world 3 points 7 months ago* (last edited 7 months ago)

Willing to bet a lot of companies will be considering that now lol. Will it actually happen though? ¯\_(ツ)_/¯

[–] ReducedArc@lemmy.world 5 points 11 months ago

Ohhh a cow bunny!!

[–] ReducedArc@lemmy.world 2 points 1 year ago

If you wait till the last minute.. then it only takes a minute.

[–] ReducedArc@lemmy.world 9 points 1 year ago (1 children)

Line drying makes your clothes last longer too. I do that with all my jeans, towels, hoodies, etc. Basically only use the dryer for cotton socks, underwear, and tshirts.

 

😍

[–] ReducedArc@lemmy.world 2 points 1 year ago* (last edited 1 year ago)
[–] ReducedArc@lemmy.world 5 points 2 years ago

Ahh excellent, I'll definitely be checking that out. Thank you!

[–] ReducedArc@lemmy.world 8 points 2 years ago (7 children)

The charge limiting, is it in the settings somewhere? I haven't seen anything about it

 

Greetings Pioneers! I got my local dedicated server stats added to Home Assistant and wanted to share if anyone else is interested.

First off the API documentation can be found at “steamapps/common/Satisfactory/CommunityResources/DedicatedServerAPIDocs.md” or here thanks to redditor /u/suudo.

I generated an API token by opening the game client, clicking Server Manager > Console and entering the command server.GenerateAPIToken and added the following code block below to my configuration.yaml file.

NOTE: I assume this goes without saying, but just wanted to note that you need to input your own server IP at YOUR_DEDICATED_SERVER_IP and input your own API token at YOUR_TOKEN in my example below. If there’s more you want to see please consult the documentation I’ve linked above.

NOTE: I specified a unique_id for each sensor so they are customizable in the UI - this can be literally anything as long as it’s unique.

rest:
  - scan_interval: 60
    method: POST
    resource: "https://YOUR_DEDICATED_SERVER_IP:7777/api/v1"
    verify_ssl: false
    headers:
      Authorization: Bearer YOUR_TOKEN
      Content-Type: "application/json"
    payload: '{ "function": "QueryServerState" }'
    sensor:
      - name: "Satisfactory Connected Players"
        value_template: "{{ value_json.data.serverGameState.numConnectedPlayers | int }}"
        unique_id: 63628608-0139-40f0-b163-d2534d17ca78
        unit_of_measurement: "Players"
      - name: "Satisfactory Tech Tier"
        value_template: "{{ value_json.data.serverGameState.techTier | int }}"
        unique_id: 63628608-0139-40f0-b163-d2534d17ca79
      - name: "Satisfactory Average Tick Rate"
        value_template: "{{ value_json.data.serverGameState.averageTickRate | float | round(1) }}"
        unique_id: 63628608-0139-40f0-b163-d2534d17ca7a
        unit_of_measurement: "Ticks/s"
      - name: "Satisfactory Active Session Name"
        value_template: "{{ value_json.data.serverGameState.activeSessionName }}"
        unique_id: 63628608-0139-40f0-b163-d2534d17ca7b
      - name: "Satisfactory Total Game Duration"
        value_template: "{{ (value_json.data.serverGameState.totalGameDuration | int) // 3600 }}"
        unique_id: 63628608-0139-40f0-b163-d2534d17ca7c
        device_class: "duration"
        unit_of_measurement: "hours"
view more: next ›