RandomLegend

joined 2 years ago
MODERATOR OF
[–] [email protected] 9 points 2 months ago (6 children)

They're selling the hardware at a loss and make up by selling data.

If don't fear to sail the high seas, you can completely lock the device out of the internet and simply sideload the games and apps from your PC.

That way you can use one of the best bang for your buck VR devices, enjoy all the games AND actively made Meta lose money

[–] [email protected] 1 points 2 months ago

i've searched for that aswell and never found anything.. only stuff like bubbleupnp that does the same trick with using screen recording to stream it...

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

Huh interesting, thanks for the info ✌️

[–] [email protected] 20 points 2 months ago (2 children)
  1. Sadly, most big competetive online games actually do ban Linux players and then state afterwards that this is something they will continue to do because yadayadayada Linux unsupported...

  2. never played the game, what shady stuff so you mean?

[–] [email protected] 7 points 2 months ago (1 children)

Also i find that the speed of scanning, getting metadata, accuracy of linking metadata and files, the whole music section is lacking on jellyfin comparing to Plex

Still I prefer jellyfin as its free and open source and it does what I want it to do. But in my experience Plex did all of this way better, faster, more accurately and reliable.... And jellyfin music category is outright unusable compared to plex

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

I am talking solely about the server side, not the player side.

Obviously a good functioning player will not need hw accellerated transcoding or hdr conversion. But sometimes that's simply neither possible or feasable. Some hardware simply cannot properly transcode all formats, or don't allow for installation of a player that can do that. Sometimes i watch a movie on my laptop while being connected to my phone mobile hotspot and using wireguard to phone home, i don't want to direct stream a full movie in hdr and 1080p 40mbit/s... i want the server to transcode it properly.

So to conclude - i am talking about serverside, not playerside - stop assuming the person you are talking with doesn't know what they do simply because you think you know better.

[–] [email protected] 19 points 2 months ago (4 children)

No i am not talking about the player as hw accell and hdr conversion runs on the server itself

The server is not bulletproof and in my experience plex ran better for me than jellyfin.

[–] [email protected] 37 points 2 months ago (6 children)

I have to say, Plex is a much more polished and more reliable piece of software in my experience.

I've used Plex for a couple of years and even got myself a lifetime premium pass when it was 65% reduced or something. But when news started popping up about them potentially leaking what content you watch i burned that bridge (look at the instance i come from, you can guess where my content stems from :D)

I then migrated over to jellyfin. It's not as polished, it doesn't run that reliable for me as plex did, hw accell, hdr convertion didn't setup as easy but after a lot of tinkering it now works very fine for me.

I really enjoy jellyfin and the ecosystem that evolved around it.

[–] [email protected] 88 points 2 months ago (13 children)

I switched from Plex to jellyfin solely for that reason

Also hw accell being free in jelly aswell

[–] [email protected] 1 points 3 months ago (1 children)
[–] [email protected] 1 points 3 months ago (5 children)
[–] [email protected] 1 points 3 months ago (7 children)

Works perfectly fine for me on all available frontends and the voyager app on android

173
[OC] Spring is coming! (lemmy.dbzer0.com)
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

Samsung Galaxy S23 Ultra - Expert RAW + Darktable

 
1
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

Hello,

so i just started to do some macro writing and had to get some help by ChatGPT because i am no programmer. But i made something useful for me.

import FreeCAD
import PartDesignGui
import Draft
import Part
import PartDesign
from FreeCAD import Base

doc_name = App.activeDocument().Label

sels = FreeCADGui.Selection.getSelectionEx('', 0)
facebinder1 = Draft.make_facebinder(sels[0])
facebinder2 = Draft.make_facebinder(sels[1])
Draft.autogroup(facebinder1)
Draft.autogroup(facebinder2)
FreeCAD.ActiveDocument.recompute()
App.getDocument(doc_name).addObject('Part::Loft','Loft')
App.getDocument(doc_name).ActiveObject.Sections=[App.getDocument(doc_name).Facebinder, App.getDocument(doc_name).Facebinder001, ]
App.getDocument(doc_name).ActiveObject.Solid=True
App.getDocument(doc_name).ActiveObject.Ruled=False
App.getDocument(doc_name).ActiveObject.Closed=False

I select two faces from two bodies and it will create two seperate facebinders and performs a loft with those two.

This allows me to make a loft in one fell swoop. However the facebinders created by the

Draft.make_facebinder(sels[X])

will always come out as Facerbinder and Facebinder001 and counting upwards. I don't see any way to change those names. Yes, i can do something with labels, but the following part of

App.getDocument(doc_name).ActiveObject.Sections=[App.getDocument(doc_name).Facebinder, App.getDocument(doc_name).Facebinder001, ]

doesn't seem to work with labels... As you can see Facebinder and Facebinder001 are hardcoded in there. Is there any way to either fully rename items so i could go for facebinder_temp1 and _temp2 and then rename them afterwards to make room for another _temp1 and _temp2 again or if i can somehow let the Loft function know what Facebinders were created prior?

Sorry if this is a little bit unstructured i am bashing my head right now... maybe you can help me out here.

Thanks!


EDIT:

Solution was:

# -*- coding: utf-8 -*-

# Macro Begin: /home/frank-garuda/.local/share/Ondsel/Macro/asfasdf.FCMacro +++++++++++++++++++++++++++++++++++++++++++++++++
import FreeCAD
import PartDesignGui
import Draft
import Part
import PartDesign

# Gui.runCommand('Std_DlgMacroRecord',0)
### Begin command Part_Loft
from FreeCAD import Base

# Get document name
doc_name = App.activeDocument().Label

# Gui.runCommand('Std_DlgMacroRecord',0)
### Begin command Std_Workbench
# Gui.activateWorkbench("DraftWorkbench")
### End command Std_Workbench
### Begin command Draft_Facebinder
sels = FreeCADGui.Selection.getSelectionEx('', 0)
facebinder1 = Draft.make_facebinder(sels[0])
facebinder1.Label = "Facebinder_Loft_1"
facebinder2 = Draft.make_facebinder(sels[1])
facebinder2.Label = "Facebinder_Loft_2"
Draft.autogroup(facebinder1)
Draft.autogroup(facebinder2)
FreeCAD.ActiveDocument.recompute()
App.getDocument(doc_name).addObject('Part::Loft','Loft')
App.getDocument(doc_name).ActiveObject.Sections=[facebinder1, facebinder2, ]
App.getDocument(doc_name).ActiveObject.Solid=True
App.getDocument(doc_name).ActiveObject.Ruled=False
App.getDocument(doc_name).ActiveObject.Closed=False
9
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

Prompt: Full body portrait of a 20 year old female gnome. Wearing colorful tinkerers cloth. Happy expression., , Standing in front of a round glowing magical teleportation cirlce in the wall with runes around it that is in a cellar., , Adventurer, Dungeons and Dragons, Character Art, 2D Game Art, (Oil Painting:1.3), Character Design (In the style of Steve Henderson, Fabian Perez, Henry Asencio, Jeremy Mann, Marc Simonetti:1.2), walking towards viewer, (brush strokes:1.2)

Negative: text, watermark, Beard, 3d render, plastic, weapon, (beard:1.3), hat, naked legs, showing legs, sexy, flirty, dancing

Seed: 1066990150

Sampler: DPM++ 2M Karras

Steps: 20

Model: Brightprotonuke

 

Hey,

so i have a nextcloud docker instance running and i want to set up immich aswell. But the photos are nested inside the nextcloud folder structure and are all owned by www-data user. What is the easiest way to get immich access to them without duplicating them with the proper permissions?

I want the files to exist once.

16
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

Hey Community!

i vaguely remember a post from a couple weeks ago that was about some way to stream games (either via SteamLink or Moonlight/Sunshine) from a Linux Server to a mini-PC...

I can't find it and i want to hear your opinions / experiences about this. I got a minisforum running BazziteOS hooked on my TV. I got a Server that has an Ryzen 5 2600X and NVidia GTX1660 Super with 16GB of RAM. This server runs my WhisperAPI for Home Assistant on GPU, Plex with HW-Transcoding that's why i put the GPU in there.

Now i thought about making it able to run games on that and be able to stream them on my MinisForum because the little one is struggling hard to get BG3 and comparable titles to run at acceptable quality :D

Does someone have experience with that or maybe even remembers the post i can't find anymore :D

1
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

Awesome to see that Bambu and the X1 Plus devs are talking.

 

Release v0.7.10 Patch Notes

New Feature

  • Next Estimated Chapter: This release introduces a new feature called "Next Estimated Chapter." It calculates the estimated release date for the next chapter or volume in a series, based on underlying volumes and chapters in a series. It takes into account acquisition methods and series status, providing estimated dates for your reading pleasure.

Changes

  • DB Connection Tweaks: Tweaked the pooling for DB connections to reduce database contention issues.
  • Improved UI: Various UI improvements, including changes in email service testing, updated email format checks, and more.
  • Better Epub Mapping: Epub marc:relators now map illustrator to Inker instead of Letterer.
  • Series Scrobbling: In Kavita+, series that are already completed in AniList won't update to "in progress" in Kavita+.

Bug Fixes

  • Various Fixes: A myriad of bug fixes, including issues related to series completion, sorting, email links, dark mode in the PDF reader, smart filters, and more.
  • Authentication: Improved authentication behavior in the UI.
  • Reader Preferences: Fixed an issue where some users experienced missing locales when saving reader preferences.

Removed

  • Migrations Removed: Several migrations from v0.7.2 through v0.7.6 have been removed.

Please note that this release is primarily focused on bug fixes and improvements. Stay tuned for more bug fixes in v0.7.11.

 

Hey guys,

i just found out that we can self-host excalidraw. And i love this tool and want to use it on my own hardware... but i didn't get the collaboration running because i apparently only hosted the client but not the server.

Now i just don't want to set up everything by hand via npm... does someone know of a handy-dandy docker-compose that has everything needed hand in hand?

Thanks in advance!

 

We all are pretty annoyed at how the printer industry is screwing customers over. There are a few printers that are really good but most of them suck and try to suck out your money by demanding ink when none is needed.

And i also know that it's nearly impossible to create an open-source printer that can be build by smaller businesses like the 3D printing space can do.

But are there any projects underway to reverse-engineer printer firmware and make it possible to flash the custom ROM onto a printer? No specific manufacturer in mind right now, but wouldn't that make things better? Simply disable all the stupid checks that claim that you NEED ink to scan or that you NEED yellow to print a black text?

 
 
view more: ‹ prev next ›