Skip to content

Instantly share code, notes, and snippets.

View Gyarbij's full-sized avatar

Chono N Gyarbij

View GitHub Profile
@Gyarbij
Gyarbij / rclone.onedrive.md
Created November 29, 2023 17:08
Steps and example RClone systemd with mounted OneDrive for use with Plex en Jellyfin and other similar use-cases. Replace 'nano' with vi or your editor of choice if not on distro with nano included or because you like misery... your kinks are yours :)

CHANGE LEGEND: (you MUST replace these in the service file)

  • USERNAME = your actual username e.g. gyarbij
  • I recommend changing odrive.service to the name of eache drive if you have multiple mount points.
  • If you already have rclone mounts check Step #2 then skip to Step #4 and place your mount point at #MOUNT

Steps for RClone systemd to autostart on boot

  1. Install fusermount (if not already installed)
@Gyarbij
Gyarbij / simple-docker-build.md
Created June 5, 2023 20:36
A quick and simple getting started for building docker images locally and pushing to docker hub.

Run docker build -t <your_username>/my-private-repo . to build your Docker image.

Run docker run <your_username>/my-private-repo to test your Docker image locally.

Run docker push <your_username>/my-private-repo to push your Docker image to Docker Hub.

You need to add a dot, which means to use the Dockerfile in the local directory.

For example: docker build -t mytag .

/* Jellyfin CSS tweaks */
/* Custom Logo */
.pageTitleWithDefaultLogo {background-image: url('IMAGEURL')!important;}
/* Transparent Top Menu */
.skinHeader.focuscontainer-x.skinHeader-withBackground.skinHeader-blurred {background:none; background-color:rgba(0, 0, 0, 0);}
.skinHeader.focuscontainer-x.skinHeader-withBackground.skinHeader-blurred.noHomeButtonHeader {background:none; background-color:rgba(0, 0, 0, 0);}
@Gyarbij
Gyarbij / plex-streaming-quality-settings.md
Created May 7, 2023 22:07 — forked from RulerOf/plex-streaming-quality-settings.md
Adjusting Plex Media Player streaming quality defaults and per-stream

Setting a default quality in Plex Media Player desktop

The Plex Media Player desktop application's default quality setting is in different places depending on the interface you're using. The Plex Web UI is used as a point-and-click interface, whereas the Plex Media Player TV UI is used as a remote-friendly interface.

Plex Web UI Plex Media Player TV UI
@Gyarbij
Gyarbij / Mastodon Apps.md
Created February 19, 2023 19:50
A list of applications and clients for Mastodon including extensions and sync tools.
@Gyarbij
Gyarbij / key.md
Created February 3, 2023 08:22
Twitter (un)official Consumer Key

Twitter Official Consumer Key

Twitter for Android

type:            PIN
Consumer key:    3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys

Twitter for iPhone

type:            PIN

Consumer key: IQKbtAYlXLripLGPWd0HUA

@Gyarbij
Gyarbij / discord-markdown.md
Last active December 27, 2022 18:27 — forked from matthewzring/markdown-text-101.md
A guide to Markdown on Discord.

Markdown Text 101

Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...

Sweet Styles

Italics *italics* or _italics_

Underline italics __*underline italics*__

@Gyarbij
Gyarbij / arr-docker-compose.yml
Created August 7, 2022 08:54 — forked from Webreaper/docker-compose.yml
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
@Gyarbij
Gyarbij / private_fork.md
Created July 23, 2022 08:52 — forked from 0xjac/private_fork.md
Create a private fork of a public repository

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

  1. Create a bare clone of the repository. (This is temporary and will be removed so just do it wherever.)

git clone --bare git@github.com:usi-systems/easytrace.git

@Gyarbij
Gyarbij / rclone.service.md
Last active June 6, 2024 12:47
Steps and example RClone systemd with mounted Google Drive or OneDrive for use with Plex en Jellyfin and other similar use-cases. Replace 'nano' with vi or your editor of choice if not on distro with nano included or because you like misery... your kinks are yours :)

CHANGE LEGEND: (you MUST replace these in the service file)

  • USERNAME = your actual username e.g. gyarbij
  • I recommend changing rclone.service to the name of eache drive if you have multiple mount points.
  • If you already have rclone mounts check Step #2 then skip to Step #4 and place your mount point at #MOUNT

Steps for RClone systemd to autostart on boot

  1. Install fusermount (if not already installed)