RandomLegend

joined 2 years ago
MODERATOR OF
[–] RandomLegend 34 points 2 months ago (19 children)

I personally ditched torrenting completly. Haven't touched a torrent in literal years.

Usenet is the way for me. Still using via Mullvad nonetheless.

[–] RandomLegend 7 points 2 months ago

Danke, und gerne

[–] RandomLegend 13 points 2 months ago (3 children)

Die ganzen reports landen ja unter anderem auch bei mir... Es ist sehr ermüdend...

[–] RandomLegend 3 points 2 months ago
[–] RandomLegend 17 points 2 months ago
[–] RandomLegend 39 points 2 months ago (19 children)

There is a huge difference between your house and a country.

[–] RandomLegend 3 points 2 months ago

A factory reset

[–] RandomLegend 2 points 3 months ago
[–] RandomLegend 2 points 3 months ago

Found it on "Kleinanzeigen" which is basically german craigslist or facebook marketplace and i am so happy about it. I use the knob all the time and it feels so good

[–] RandomLegend 2 points 3 months ago

Oof don't know anymore

Got them of AliExpress couple years ago and they were the only cool looking ISO-DE ones I found

92
Sunset (lemmy.dbzer0.com)
 

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

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

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!

 

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?

 

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.

 

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?

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

Samsung Galaxy S23 Ultra + Expert Raw + Adobe Lightroom

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

Samsung Galaxy S23 Ultra + Expert Raw + Adobe Lightroom

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

Samsung Galaxy S23 Ultra + Expert Raw + Darktable

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

Samsung Galaxy S23 Ultra - Expert RAW + Darktable

17
Paperbox for Q-Tips (lemmy.dbzer0.com)
 
14
submitted 1 year ago* (last edited 1 year ago) by RandomLegend 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
view more: ‹ prev next ›