shmanio

joined 1 year ago
[–] [email protected] 0 points 1 week ago (2 children)

It is not different from how the previous shared libraries worked. I guess it's there to stop cheaters from buying a single copy of the game and sharing it with throwaway accounts.

 

A friend challenged me to score more than 100

[–] [email protected] 0 points 3 months ago
 

I've found some discussions about hosting the Jellyfin server on lower end devices, but what about the client? I imagine the requirements to be pretty low, since a gen 2 Chromecast worked fine.

Has someone tried setting up a raspberry pi in kiosk mode? Can you suggest something cheap that would be good enough for 1080p?

[–] [email protected] 0 points 7 months ago

Romero's Night of the Living Dead is in the public domain as well.

You can find it in the Internet Archive here: https://archive.org/details/night_of_the_living_dead

[–] [email protected] 0 points 7 months ago
[–] [email protected] 5 points 7 months ago

It could be an issue with the codecs (browsers are usually pretty limited in what they support). You could try to use a client like Jellyfin Media Player instead. It bundles libmpv, so it plays almost any video format there is.

[–] [email protected] 0 points 8 months ago

Since you are sharing anecdotes, let me join.

For me FF has always been extremely stable, and I too regularly keep 100+ tabs open, on much more limited system resources. It is so stable that I've completely disabled history saving, and if there is something I want to read later I just keep the tab open. Never had an issue.

Tree Style Tabs also pushed me to have many tabs, because now I can actually organize those that I've opened and find them later.

[–] [email protected] 1 points 10 months ago* (last edited 5 months ago)

You should put some quotes where you use the array:

not_what_you_think=( "a b" "c" "d" )
for sneaky in "${not_what_you_think[@]}"; do
  echo "This is sneaky: ${sneaky}"
done

This is sneaky: a b
This is sneaky: c
This is sneaky: d