Skip Navigation
Let me play among the stars...
  • Hey hey.....or jellyfin

  • The aliens need our gold! The proof? 3.
  • Those Anunnakis were audiophiles and couldn't survive without gold plated audio jacks

  • I liked Fusion 360, I like Onshape - but I'd rather like something that I won't lose over the whims of one company. So, what?
  • sure, but i am happy with what Ondsel preconfigured for me me. And since it's freecad in the core anyway

  • I liked Fusion 360, I like Onshape - but I'd rather like something that I won't lose over the whims of one company. So, what?
  • I started on FreeCAD but now went for Ondsel.

    Their UX redesign is really nice and works much better for me

  • Privacy@lemmy.world: An open source two factor auth app that syncs keys between devices?
  • I usw Aegis on my phone and sync them to the PC via Nextcloud, on the PC i use OTPClient

  • Ich🐮🩸🤦‍♂️iel
  • Mach einfach n bingo draus, dann hat man wenigstens ein wenig spaß

  • meme
  • Just wanted to let you know

  • meme
  • Please stop using Steven Crowder for that Meme template. This person is a piece of shit and people should not see his face anymore when looking for funny things.

  • Update on 'Best "convertible" or 2-in-1 device to run Linux on?' (Minisforum V3 first impressions)
  • i used Fedora with Gnome on Lenovo Yoga and regularly flipped the keyboard around and used it in Tablet mode.

    It's not average, it's pretty good if you ask me. Never had any issues and it was absolutely usabale.

  • Priorities
  • *I tit my fedora to you, sir.

  • Is there some way to get the user and post flairs from reddit?
  • Lemmy currently doesn't have the ability to have flairs at all.

    It's on the wishlist for many, but it's not implemented.

  • beautiful day in the neighborhood
  • If you visit Germany one day, you'll be enlightenend

  • Rules for Fae
  • Describes my typical retail experience, i wouldn't call that weird at all :D

  • Using CAD on a curved monitor?
  • Using fusion360 and freecad in my AOC 32" 21:9 curved and I see / feel absolutely zero difference to a flat display

    It doesnt distort anything for me, my vision simply accounts for the curve and I have no problems

  • Fork of HomeBox released (v0.11.0)
  • I used homebox but switched over to nocodb

  • [OC] Woody
  • Sure thing, glad you like it! :) https://imgur.com/a/XINL1Yp

  • [OC] Fields
  • Thank you very much! :)

  • Proton keeps the prices for existing customers

    I really love this approach. Many services which increase their subscription prices also do so for existing customers.

    4
    Sunset

    Shot on Samsung S23 Ultra - Expert Raw - Adobe Lightroom for Samsung

    0
    Any apps to find your phone if it's on mute?

    My wife and I regularly misplace our phones in the house and we also keep them on mute like 99% of the time.

    Are there any apps that allow us to ping the other ones phone audibly despite it being on mute?

    One is a oneplus 6t the other a s23 ultra if that makes a difference

    EDIT: I found a solution i like; Homeassistant with TTS Notifications. Of couse you can still list some apps and solutions for others to find, but i am happy now!

    37
    Help needed for home screen

    Hey guys!

    So maybe i understood something wrong or maybe my settings are way off. Any way, i need your help.

    I have two issues:

    1. When i add a new show it SOMETIMES get's shown in "Latest Media / Latest Shows" sometimes it does not. For example, yesterday i added The Office, it was added to latest shows immediately, today i added Dracula and it's not added there despite me being able to find and watch it.

    2. When watching an episode from a season that is not the very first it, the next episode will not be shown in Continue Watching. For example, i have all the Dimension 20 Seasons (i pay for Dropout but their video player is abysmal). Now i started to watch Season 20 and didn't watch the seasons before that. I watched the first episode of it, but it won't show me Episode 2 as "Continue Watching" or "Up Next"

    Is anyone else facing similar issues?

    6
    Alternate Android TV Client?

    Heyho,

    does anyone know if an alternate or "modded" Android TV Version of the client exists?

    I'd love to have intro skipping on my NVidia Shield but as far as i know this isnt possible? I can install the server plugin but i have to mount a modified web client for that; Maybe this is different for the android tv version?

    Intro skipping is such a nice feature and i hope it someday gets upstreamed and properly implemented in all clients.

    5
    Live TV - Germany, Vodafone, Fritz!Box, GigaTV

    Heyho, i am a long time Plex user but since they go more and more corpo each day and i have a few .... otherwisely obtained assets in my library i want to make the switch to Jellyfin before i really HAVE to.

    Everything works great so far! But i have a DVB-C access on my router and it can create a m3u playlist for me to simply plug into VLC for example. On plex this was super easy and i just had to reorder some channels here and there and then everything worked great.

    Now i was able to put the m3u playlist into jellyfin and it manages to find the channels... but when i click on a channel i only get audio. the image stays black. My router shows me that the stream is going and shows the quality is good.

    Also plex was able to actually grab the metadata of all the shows running.

    Am i missing something?

    5
    [OC] I love oranges.... wait a second

    Samsung Galaxy S23 Ultra + Expert Raw + Adobe Lightroom

    8
    [OC] Leaving your mark on the world

    Samsung Galaxy S23 Ultra + Expert Raw + Adobe Lightroom

    2
    [OC] Viewpoint of the small

    Samsung Galaxy S23 Ultra + Expert Raw + Darktable

    0
    [OC] Spring is coming!

    Samsung Galaxy S23 Ultra - Expert RAW + Darktable

    10
    How to make this macro reusable?

    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 ```

    3
    Gnome NPC for my Pathfinder campaign

    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

    3
    How to set up Immich from the files within nextcloud?

    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.

    13
    GameStreaming from UbuntuServer

    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

    15
    BambuLab will enable everyone to use X1 Plus.
    blog.bambulab.com Rooted: The Good the Bad and Freedom of Choice

    As many of our customers may have already noticed, there is a third-party firmware being developed by the X1 Plus team, which has become a hot topic in the community. Our first awareness of this firmware was through some Youtube videos, which led to my last blog post. Initially, we

    Rooted: The Good the Bad and Freedom of Choice

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

    14
    RandomLegend RandomLegend @lemmy.dbzer0.com

    You wouldn't download a car.

    wiki-user: RandomLegend

    Posts 48
    Comments 489
    Moderates