
Not really, you can get a 26tb (new) for 340€… Best €/TB would be a 12tb (refurbished) for 120€.
https://diskprices.com/?locale=de&condition=new%2Cused&capacity=12-26&disk_types=internal_hdd
Not really, you can get a 26tb (new) for 340€… Best €/TB would be a 12tb (refurbished) for 120€.
https://diskprices.com/?locale=de&condition=new%2Cused&capacity=12-26&disk_types=internal_hdd
brânză
Give easyeffects a try.
Be honest, and when there is something you don’t know, just say so. I am hiring right now, and many people adjust their CVs to match the job description, but then don’t actually know some of the technologies mentioned there…
Also, the line between confidence and arrogance can be very slim. Try to be confident, but don’t overdo it.
Ffmpeg is totally capable of doing this. Something like ffmpeg -i in.mkv -vf "crop=width:height:x:y" out.mkv
might work. You would need to specify the crop area (x:y), which you can get with ffmpeg’s cropdetect
. Here’s an article about it. To automate this, I would use a for loop in a shell script, for more control, or just a one liner if width, height and x:y are the same for all:
for file in *.mkv; do ffmpeg -i "${file}" -vf "crop=width:height:x:y" "cropped_${file}"; done
𝓕𝓲𝓻𝓼𝓽𝓷𝓪𝓶𝓮
You shouldn’t need to open any additional ports. Do you have separate accounts for admin and viewing purposes?
Indeed, it turned out well done, I’ll try getting a thicker piece next time. The fries I got frozen, and I oven baked them. I usually use fresh potatoes, but I couldn’t be bothered on a Sunday evening :)
Thanks for the tip! I did a red wine reduction with the garlic, shallots, thyme and butter used for basting.
I think you are referring to the chili threads?
Walking alone around the river bank, with a kitchen knife on my belt. I was “adventuring”.
I agree with you, but this was specifically about jellyfin.
I don’t think so, but don’t quote me on that. My machines come with a 65w charger.
A micro sized PC with an i5 and 8gb or ram can cost under 100€, and it’s way more powerful compared to a pi. Power efficient too. That’s what I used for a long time for my jellyfin server.
I know, I was joking. I just prefer to avoid adding labels to madeup/hybrid/fusion dishes.
I got some last time I was in Italy, not something we usually have in the kitchen either.
I use terraform, helm, a bit of ansible and gitlab/forgejo (for cicd). The minimum amount of scripting I do is shell, I don’t have a need for more…
Back in the days of manual deployments and semi-automated configurations, I did use bash.
What is your need for complex scripting/programming?