Skip to content

Instantly share code, notes, and snippets.

@lnwncentral
lnwncentral / Officially Translated Light Novels
Last active April 12, 2025 08:14
Officially Translated Light Novels
Last update: 25/02/2025 20:47
!Completed: https://mega.nz/folder/sMcCXKpa#_R-M2Cqh9NYbFWWVWVAmxw
!EPUB: https://mega.nz/folder/5AE2DTKS#-u5vZ1LauFo4vRDiAvFQIw
!PDF: https://mega.nz/folder/ER1HXJZT#AnftN521aESOeisBWk_tMw
!Yaoi/37C: https://mega.nz/folder/8A0RyZIS#x4N8tGqddmDHMMbCy1L0qA
!Yaoi/A Kiss and a Pair of Handcuffs: https://mega.nz/folder/0V9zTQ6J#TnF--X0XuXuKr_lmIqTOxA
!Yaoi/Ai no Kusabi: https://mega.nz/folder/5FUhmLyA#p_iCdky89s6sTHJNAHXMDQ
!Yaoi/Ai Shika Iranee yo: https://mega.nz/folder/cR9FRADS#8Byg_qCw_mQ1VIGEFCc4KA
!Yaoi/All My Loving: https://mega.nz/folder/Ud80ATRK#BFzuo5vhxZx1uYtZlhwbVw
!Yaoi/Amazing Grace: https://mega.nz/folder/FcFW2bRC#vxpnv6Kq4MwPYOsUI1353g
@rickklaasboer
rickklaasboer / how-to-setup-plex-with-sonarr-radarr-jackett-overseerr-and-qbittorrent-using-docker.md
Last active April 12, 2025 08:14
How to setup Plex with Sonarr, Radarr, Jackett, Overseerr and qBitTorrent using Docker

How to setup Plex with Sonarr, Radarr, Jackett, Overseerr and qBitTorrent using Docker

Before continuing: This guide is currently outdated but I'm working on a new one with upgrading steps included. I'll link it here once it's finished :)

This is a guide that will show you how to setup Plex Media Server with Sonarr, Radarr, Jackett, Overseerr and qBitTorrent with Docker. It is written for Ubuntu 20.04 but should work on other Linux distributions as well (considering supported distributions by Docker). It is also written for people who have some experience with Linux and Docker. If you are new to Docker, I recommend you to read the Docker documentation, and if you are new to Linux, I recommend you to read the Ubuntu documentation.

Now, let's get started!

Please note: This guide was written without considering hardlinking for Sonarr/Radarr. If you want to use hardlinking refer to #Hardlinking

@Colbss
Colbss / KeyMappings.ts
Last active April 12, 2025 08:12
Convert GTA V / FiveM keybind to JS eventCode / human readable string. Intended to be used with ox_lib keybind getCurrentKey().
// Key mapping interface
export interface KeyMapping {
key: string; // Human-readable key name
keyButton: string; // Value sent from Lua
eventCode?: string | null; // JavaScript event listener code
displayName?: string; // Display name for UI
}
// Complete mapping of all keys
export const keyMappings: KeyMapping[] = [
@VVispy
VVispy / revancedobtainiumguide.md
Last active April 12, 2025 08:11
Revanced Obtainium Guide

Install ReVanced Apps + Update Checking LogoLogo

Note

You will have to uninstall previously patched Revanced apps before following this guide. You can export Youtube Revanced settings before doing this.

Included apps:

  • YouTube Revanced
@danawesome
danawesome / uninstall-xrdp.sh
Last active April 12, 2025 08:11
Zorin OS 17 remove enhanced session xrdp
#!/bin/bash
if [ "$(id -u)" -ne 0 ]; then
echo 'This script must be run with root privileges' >&2
exit 1
fi
if [ -f /var/run/reboot-required ]; then
echo "A reboot is required in order to proceed with the install." >&2
echo "Please reboot and re-run this script to finish the install." >&2
@danawesome
danawesome / install-custom.sh
Last active April 12, 2025 08:11
Zorin OS 17 Post Install custom installs
#!/bin/bash
# APT Install of net-tools, MS VSCode (and dependencies), then reboot.
if [ "$(id -u)" -ne 0 ]; then
echo 'This script must be run with root privileges' >&2
exit 1
fi
apt update && apt upgrade -y
local wezterm = require "wezterm"
local module = {}
local data_dir = (os.getenv("XDG_DATA_HOME") or wezterm.home_dir .. "/.local/share") .. "/wezterm/"
local pidfile_path = data_dir .. "wuake_pid"
local last_exit_path = data_dir .. "wuake_last_exit"
local pid = wezterm.procinfo.pid()
@t3dotgg
t3dotgg / try-catch.ts
Last active April 12, 2025 08:04
Theo's preferred way of handling try/catch in TypeScript
// Types for the result object with discriminated union
type Success<T> = {
data: T;
error: null;
};
type Failure<E> = {
data: null;
error: E;
};

Libraries and Tools for React

If you're developing an application based on React it can be helpful if you don't need to develop all the basic UI components yourself. Here you can find a list with various components, component libraries and complete design systems developed with and for React.

As the list got longer and longer I thought it would be better to have a "real" site for it.

👉 Please find the (new) list here: https://react-libs.nilshartmann.net/