[-] RandomLegend@lemmy.dbzer0.com 88 points 1 month ago

After working in a really big company for a while and seeing how incredibly degrading the hiring process is nowadays i simply woulnd't want to apply for a job for those companies.

I just signed the contract for a much smaller company and the process was:

  1. Apply online.... via mail and just attaching some PDFs :D
  2. "We are interested in you, we would love to do an interview. Can you come over or do you want to do this Online?"
  3. Meeting them in person, having a nice interview and chat afterwards.
  4. Agreeing to do this and sign the contract.

Thats it. No Booking time slots to getting interviewed bullshit. This is just ridicilous.

[-] RandomLegend@lemmy.dbzer0.com 57 points 2 months ago

Why don't you americans have some younger and more capable people to vote for?

Why are you voting for nearly dead person and a liiiiiiiittle bit less nearly dead person that is also one of the most stupid beings on this planet?

52

Canon 1100D + Darktable

92
Sunset (lemmy.dbzer0.com)

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

[-] RandomLegend@lemmy.dbzer0.com 53 points 3 months ago

Why are you defining the gender of a Linux distro lmao

23
submitted 4 months ago* (last edited 4 months ago) by RandomLegend@lemmy.dbzer0.com to c/foss@beehaw.org

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!

[-] RandomLegend@lemmy.dbzer0.com 81 points 5 months ago

Too little too late.

Already sold my 3070 and went for an 7900 XT bcs i got fed up with NVidia being lazy

1
60
submitted 6 months ago* (last edited 6 months ago) by RandomLegend@lemmy.dbzer0.com to c/pics@lemmy.world

Samsung Galaxy S23 Ultra + Expert Raw + Adobe Lightroom

137
submitted 6 months ago* (last edited 6 months ago) by RandomLegend@lemmy.dbzer0.com to c/pics@lemmy.world

Samsung Galaxy S23 Ultra + Expert Raw + Adobe Lightroom

82
submitted 6 months ago* (last edited 6 months ago) by RandomLegend@lemmy.dbzer0.com to c/pics@lemmy.world

Samsung Galaxy S23 Ultra + Expert Raw + Darktable

174
[OC] Spring is coming! (lemmy.dbzer0.com)
submitted 6 months ago* (last edited 6 months ago) by RandomLegend@lemmy.dbzer0.com to c/pics@lemmy.world

Samsung Galaxy S23 Ultra - Expert RAW + Darktable

[-] RandomLegend@lemmy.dbzer0.com 67 points 6 months ago

Straight to hell. To the boiler room of hell. All the way down.

15
Paperbox for Q-Tips (lemmy.dbzer0.com)
14
submitted 6 months ago* (last edited 6 months ago) by RandomLegend@lemmy.dbzer0.com to c/freecad@lemmy.ml

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
15

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.

[-] RandomLegend@lemmy.dbzer0.com 58 points 7 months ago

i heavily rely on CUDA for many things i do on my personal computer. If this establishes itself as a reliable method to use all the funky CUDA stuff on AMD cards, my next card will 100% be AMD.

[-] RandomLegend@lemmy.dbzer0.com 54 points 7 months ago

This just doesn't make sense.

You wouldn't say the same when talking about other products. If you buy ibuprofen for example you wouldn't say "it can't be packaged to scientific standards, it has to be packaged to ours" if you try to weigh a single pill with your kitchen scale.

Stuff HAS to be packaged to scientific standards. Period.

If your tools at home aren't accurate enough or simply aren't properly calibrated for a specific job, it can't be the fault of the producer.

If you use a 2€ kitchen scale that is 10 years old you can't blame the producer if your measurement is off by 10%.

The producer cannot make sure YOUR equipment is proper for the task, and they can't make sure EVERYONES scales see the exact same. So of course they have to weigh with their own scales and surprise surprise they use extremely precise scales that are properly calibrated and tested regularly.

[-] RandomLegend@lemmy.dbzer0.com 61 points 7 months ago

I don't believe that even without DRM the game would've been pirated that much... i mean people usually pirate games they actually want to play lmao.

But let's see how long it takes the industry to realize that games like bg3 and palworlds, that don't have any DRM, are still money making machines.... hmmm

15
submitted 7 months ago* (last edited 7 months ago) by RandomLegend@lemmy.dbzer0.com to c/selfhosted@lemmy.world

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

[-] RandomLegend@lemmy.dbzer0.com 72 points 10 months ago* (last edited 10 months ago)

Yeah, just like the post described - they know good and bad. They get sneaky, quiet and guilty because they know they were bad.

I have a cat and a dog and i swear to god, my cat gives me a challenging look of pure intent when she does something that she KNOWS she is not allowed; Like jumping up the kitchen counter. We don't want her on that. She sits in front of it, sees me coming, looks me in the eyes with a very certain look and jumps on it. When i tell her to jump down, she will do it immediately but again... a look of pure intent and naughtiness.

[-] RandomLegend@lemmy.dbzer0.com 93 points 1 year ago

Anyone who still financially supports Ubisoft is at their own fault at this point.

view more: ‹ prev next ›

RandomLegend

joined 1 year ago
MODERATOR OF