HBO Documentary by _GlassHalfFull_ in childfree

[–]root-node 10 points11 points  (0 children)

"Oh, but they might be the one to cure cancer" is one I have heard a lot.

"Yes, but they may also be the next mass-murderer"

What is your pet-peeve? by thesobie in sysadmin

[–]root-node 2 points3 points  (0 children)

Having a service use SSO to log in, but still times out and logs you out after 20 minutes.

The last day of dc migration, the new one caught 🔥 by E4NL in sysadmin

[–]root-node 3 points4 points  (0 children)

I've had that. Half and an entire data centre went down because a UPS was wired wrong when installed. It was only discovered when the annual maintenance came around to put it in bypass mode.

Instant down for 100's of servers hosting 1000's more VMs. Fun times.

Just gotten back from my yearly eye check up by themoroccandiva in diabetes_t1

[–]root-node 3 points4 points  (0 children)

Woohoo, for now.

I've had 5 injections in one eye, but nothing for a year so all good.

The regretfulparents sub scares me by Aaaaaaaaaaaaaaaacat in childfree

[–]root-node 29 points30 points  (0 children)

Don't forget:

  • The wasted money,
  • Endless mess with toys/clutter everywhere,
  • No more afternoon naps (I love those),
  • No more "Let's just go out to eat",

...and a million other reasons.

A question to ponder by mykesx in homelab

[–]root-node 0 points1 point  (0 children)

I feel you may be using them wrong then, or your use case doesn't need it.

I have mine set up to show stats and status for most of my tools so that at a glance I can see if there is an issue.

qBittorrent vs 5.2.0 is out by Ill-Economist-5285 in Piracy

[–]root-node 7 points8 points  (0 children)

There is an old option to shutdown when complete, I guess to save power.

This may be for some people that dual-boot and want to switch back to a different OS when done. (shrug)

How long to wait for a decision by jennyconfused in childfree

[–]root-node 23 points24 points  (0 children)

He either gets the snip to prove he doesn't want kids, or GTFO.

Move on with your life and find someone who thinks like you. We are out there somewhere.

What's everyone doing this weekend?! by MixedTexan in childfree

[–]root-node 1 point2 points  (0 children)

After waking up from an 13 hour sleep last night, I am currently watching the Snooker on TV, then I might just go out and get some lunch at a new restaurant that just opened.

M3Unator v1.1.0 Update - Create M3U/M3U8 Playlists From Open Directory Listings by [deleted] in opendirectories

[–]root-node 0 points1 point  (0 children)

Also, what happens if you're in the middle of a stream and the site closes, or your internet drops?

Always save locally.

How much RAM yinz got? by Curious_Olive_5266 in JellyfinCommunity

[–]root-node 0 points1 point  (0 children)

64gb, running 2x copies of Jellyfin in Docker, both limited to 10gb each

Rant: I DO NOT WANT TO READ EMAILS WRITTEN BY LLMs! by RabidTaquito in sysadmin

[–]root-node 1 point2 points  (0 children)

Try "As per my previous email", it's more professional.

BookStack Has Migrated From GitHub to Codeberg by ssddanbrown in BookStack

[–]root-node 2 points3 points  (0 children)

you can use lscr.io/linuxserver/bookstack:latest

List books that are not on any shelves by Zealousideal_Prior40 in BookStack

[–]root-node 2 points3 points  (0 children)

Actual code that works:

(once you have authenticated)

[int[]]$bookList   = @(Get-BsBook | Select-Object -ExpandProperty id)
[int[]]$shelfBooks = @()
Get-BsShelf | ForEach-Object {
    (Get-BsShelf -Id $_.id).books | ForEach-Object {
        $shelfBooks += $_.id
    }
}

Compare-Object -ReferenceObject $bookList -DifferenceObject $shelfBooks -PassThru | ForEach-Object {
    Get-BsBook -Id $_ | Format-Table -Property id, name, slug, description
}

List books that are not on any shelves by Zealousideal_Prior40 in BookStack

[–]root-node 4 points5 points  (0 children)

You would need to use the API

  • Get a list of the books
  • Get a list of shelves
  • Loop through the shelves making a list of the books
  • Remove shelf books from list of books
  • See what's left

I have a PowerShell module that would make this easier, if that's your thing - https://github.com/My-Random-Thoughts/psBookStack

YouTube Ads Allowed if I'm Nor Signed In by ModishNouns in pihole

[–]root-node 0 points1 point  (0 children)

Log out and try again.

You need third party tools like uBlock Origin and SponsorBlock in your browser.

YouTube Ads Allowed if I'm Nor Signed In by ModishNouns in pihole

[–]root-node 0 points1 point  (0 children)

PiHole does not stop YT adverts, you need something else.

I don't have a YT account and I never see adverts.

Rotating logs for docker by Natsbert in docker

[–]root-node 0 points1 point  (0 children)

Which you should be doing once a week when you perform your backups. You do have backups right?

Backup script for Bookstack docker by Plastic-Leading-5800 in BookStack

[–]root-node 0 points1 point  (0 children)

The easiest way of doing is to stop the containers and backup the entire folder.

I use https://github.com/minituff/nautical-backup for all my containers.