• 0 Posts
  • 16 Comments
Joined 1 year ago
cake
Cake day: February 20th, 2023

help-circle








  • Bought Hogwarts Legacy a week or so on a deep discount and I’m enjoying the hell of it. During december I traditionally watch the Harry Potter movies so now I expanded to the game. So far it might be my game of the year since I didn’t try Baldur’s gate 3 yet, I’ll pick that one up on a sale later on. I’m taking my time and explore every nook and cranny in the game. I was hyped for Diablo 4 as a long time devotee but in it’s current form it’s simply not fun and needs quire a rework for me to pick it up sadly. The atmosphere, visuals, music, even combat is spot on but it lost way too much on other fronts. Starfield is another game which I put on hold as I simply didn’t continue the game at some point, will probably resume it after a few more patches.








  • I similarly made two functions depending on the use case (see comments in code) and saved them in Powershell’s default profile (Microsoft.PowerShell_profile.ps1) so I can invoke them with just one word directly in commandline, works great 👌

    function Vid {
        param (
            [Parameter(Mandatory=$true)]
            [string]$link
        )
        yt-dlp -P "$env:USERPROFILE\Downloads" $link -S "res:1080,br" --embed-subs --sub-langs all,-live_chat --remux mp4
    } #Downloads videos using yt-dlp limited to 1080p; usage Vid YT_URL
    function VidFull {
        param (
            [Parameter(Mandatory=$true)]
            [string]$link
        )
        yt-dlp -P "$env:USERPROFILE\Downloads" $link --embed-subs --sub-langs all,-live_chat --remux mp4
    } #Downloads videos using yt-dlp in maximum quality; usage VidFull YT_URL