Korbs / Watch Dogs 2 on Steam Deck (Last Resort)
Остання активність 19 minutes ago
For last resort only if all other methods to boot Watch Dogs 2 fails on the Steam Deck. This already assumes you own Watch Dogs(WD1) and Watch Dogs 2(WD2). In my case, I own WD1 via Steam and WD2 via Ubisoft Connect.
I've only been able to get WD1 to boot via Steam client and all other methods to boot WD2 do not work as Ubisoft Connect tends to crash on boot.
Instead, since I am no longer interested in playing WD1, I went ahead and swap out the files in the Steam folder for WD1 with WD2, also making sure the executable still matches the target path so Steam boots it. This appears to work in tricking Steam to boot WD2 without issue and Ubisoft Connects boots properly.
File Structure
This is in ./steamsapps/common/Watch_Dogs/, I moved original WD1 files completedly somewhere else.
Korbs / Generating a Spritesheet for any video
Остання активність 5 days ago

Requirements
- ffmpeg
- NodeJS
Script
In a new directory, create a file called generate.js, then install the sprite-vtt-generator package:
Korbs / Switch Audio Outputs on Linux
Остання активність 1 week ago
During the day, I happen to switch between my speakers and headphones quite a bit. I've recently decided to setup custom shortcuts to switch quickly between them without needing to open the volume menu in GNOME or KDE.
Install
Firstly, the pactl tool is used for this, please install it:
sudo dnf install pactl
Korbs / Bypass Anti-Adblock on FalixNodes
Остання активність 1 month ago
How To

Violentmonkey Extension
This extension is required, please install for your browser:
- Chromium
- Firefox (Mobile is also supported)
Violentmonkey Script
Korbs / Adding Fallback to a Custom Video Player
Остання активність 1 month ago
When building a custom video player, it will likely not work for end-users that have decided to disable JavaScript in their web browser. To get around this, it's best to add a fallback that'll allow them to switch over to the web browser's native player.
To pull this off, we'll take advantage of the HTML tag known as details and noscript.
Detect JavaScript is Disabled
First, we need to tell if JavaScript is disabled, we can use the noscript tag. Anything used within a noscript tag is shown if JavaScript is not present.
<noscript>If you're seeing this, JavaScript is not enabled.</noscript>
Korbs / Randomize Class Names in Astro Web Framework
Остання активність 2 months ago
Randomize Class Names in Astro Web Framework
If you're wanting to have your class names in your Astro website randomized, no extra integrations or packages are needed. This can be done simply using the module method.
Module Method
Your CSS file needs to have the module name in it, such as *.module.css. For this example, we'll use index.module.css.
/* index.module.css */
Korbs / Enable Catch-All in Mailcow
Остання активність 2 months ago
Learn how to enable the catch-all address for your Mailcow instance.
Enable Catch-All in Mailcow
Setup a domain first in E-Mail > Configuration > Domain > Domain. Then, once the domain is setup, create an alias that you'll use, go to Alias > Alias.
Create an alias like casper@example.org, then we can setup the catch-all next.
To create an catch-all event, simply just use your domain for an alias. So create an alias called @example.org and set the Goto address to something like casper@example.org.
Korbs / Login via SSH passwordless
Остання активність 2 months ago
Login via SSH Passwordless
Allow yourself to remotely login to your server without the need of typing in the password.
All of the commands listed below are to be run on the client-side only.
Generate RSA Keypair
Generate an RSA Keypair using ssh-keygen, run the following:
Korbs / Selfhosting a Minecraft Java Server
Остання активність 7 months ago
Selfhosting Minecraft Java Server
Getting around to selfhosting your own Minecraft Java server has it's perks and gives you full control of your server's data, it's also much more affordable compared to using a SaaS.
If you have a spare machine laying around that is no longer in use, it would be re-purposed as a Minecraft server.
Hardware Requirements
For the piece of hardware you'll be using to host the server on, you want to make sure you know it can handle it. For your CPU, it should at least have 4 or more cores over 2GHz. 4GB - 8GB or more RAM(Memory), this also varies how much you add to the server like the amount of players connecting or the many plugins or mods you add. For disk space, I make sure you have at least 8GB or more, this also varies like it does with RAM.