Libraries Foldes problems

I accidentally click on use OneDrive to backup my documents while installing Windows 11. When I got inside the OS, I can’t move the folders to another location (at least for Pictures and Documents). When I got a solution to fix it, another one comes up showing me that I cannot pin them to Quick Access. Here’s the solution to fix both of them if you ever encountered. Can't move folder because there is a folder in the same location that can't be redirected....

December 1, 2022 · 1 min · 194 words · Me

Setup SSH Key for Git services on Windows

Installing Git Git-scm.com Generating SSH key Open Terminal, type these and just hit Enter 1 ssh-keygen -t ed25519 It will generate a public key (id_ed25519.pub) and a private key (id_ed25519) in your home directory %userprofile%\.ssh. I’m gonna call it <private_file> and <public_file>.pub from now on. Create config file Navigate to %userprofile%\.ssh Create new text file and name it config.txt Add these lines Host <your_git_service>.com HostName <your_git_service>.com IdentityFile ~/.ssh/<private_file> IdentitiesOnly yes Save it and REMOVE THE ....

November 27, 2022 · 2 min · 309 words · Me
Source: research.mozilla.org

Everything you need to know about AV1 encoding (as a noob)

Key features you need to know Waaaay better compression than JPEG and WEBP (Google’s 10+ years old codec) Royalty-free -> anyone can use, implement, redistribute without paying any fee -> more adoption High browser adoption (~74% according to caniuse) Support for alpha channel and animation (Chrome 91+ only at the time of writing), replacing +35 years old GIF format and WEBP Installations Getting the binaries My favorite and also the recommended method is to get the pre-build binaries directly from the source-code repository (or the official website):...

October 27, 2022 · 2 min · 392 words · Me