• 0 Posts
  • 14 Comments
Joined 2 years ago
cake
Cake day: February 20th, 2023

help-circle
  • How down-puttingly assuming of you to know me or my country who in its entire long history never invaded someone and was mostly a vassal for others. We gained independence after a bloody civil war which tore the country apart and saw its fair share of genocide, during which the whole world stood by the sidelines. No, muslims are not the only victims of this cruel world.

    No, I generally don’t comment on politics exactly because it breeds polarizing comments like this, but this open call for death for any side is horrific from my point of view, who saw what it does to a nation. This outlook of complete eradication of the other side is what is preventing any possible long lasting peace, and truthfully if the people don’t recognize it there won’t be anybody left to see it. As it currently stands there will be no peace until one side completely displaces the other, which is not what I or the vast majority of the world want.














  • 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