Skip to content

Instantly share code, notes, and snippets.

View nikolay-dementiev's full-sized avatar

Mykola Dementiev nikolay-dementiev

View GitHub Profile
@Webreaper
Webreaper / docker-compose.yml
Last active December 8, 2025 21:10
Sample Docker-compose file which shows how to set up Sonarr, Radarr, Prowlarr, Lidarr, QBittorrent and a VPN container so that all all traffic from the containers is routed through the VPN. Also includes Plex and get_iplayer containers, which are not routed through the VPN.
# Docker compose to set up containers for all services you need:
# VPN
# Sonarr, Radarr, Lidarr, Qbittorrent
# Non-VPN
# Plex, get_iplayer
# Before running docker-compose, you should pre-create all of the following folders.
# Folders for Docker State:
# /volume1/dockerdata. - root where this docker-compose.yml should live
# /volume1/dockerdata/plex - Plex config and DB
# /volume1/dockerdata/sonarr - Sonarr config and DB
@IsaacXen
IsaacXen / README.md
Last active December 5, 2025 12:15
(Almost) Every WWDC videos download links for aria2c.
@broomburgo
broomburgo / Optional.h
Last active September 5, 2018 08:21
Optional type for Objective-C
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface Optional : NSObject
+ (Optional*)with:(id _Nullable)value;
+ (Optional*)with:(id _Nullable)value as:(Class _Nonnull)valueClass;