Korbs / Bypass Anti-Adblock on FalixNodes
Last active 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
Last active 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
Last active 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
Last active 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.
