Skip to content

Instantly share code, notes, and snippets.

@9OOO
9OOO / list.txt
Created January 8, 2023 09:45
NS
0-0-----------------------------------------------------------0.com
0-60cmo.com
0-ass.com
00-9.com
000.co.il
000000book.com
000deals.com
000eyes.com
000fff.org
000ideas.com
@9OOO
9OOO / ssh.md
Created July 5, 2020 16:16 — forked from bradtraversy/ssh.md
SSH & DevOps Crash Course Snippets

SSH Cheat Sheet

This sheet goes along with this SSH YouTube tutorial

Login via SSH with password (LOCAL SERVER)

$ ssh brad@192.168.1.29

Create folder, file, install Apache (Just messing around)

$ mkdir test

$ cd test

upstream tunnel {
server 127.0.0.1:8888;
}
server {
server_name tun.transfer.vin;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@9OOO
9OOO / README.md A simple Docker and Docker Compose install script for Ubuntu

A simple Docker and Docker Compose install script for Ubuntu

Usage

  1. sh install-docker.sh
  2. log out
  3. log back in

Links

@9OOO
9OOO / kde-setup.sh
Created April 22, 2020 02:20 — forked from VladimirMikulic/kde-setup.sh
Setup script for my KDE system
#!/usr/bin/env bash
alias knshandler="/usr/lib/x86_64-linux-gnu/libexec/kf5/kpackagehandlers/knshandler"
# Folder for storing global npm packages
mkdir "${HOME}/.npm-global"
echo " ✔️ Folder ~/.npm-packages created!"
offer_driver_installation(){
echo "Do you want me to install Nvidia/AMD drivers? y/N"
@9OOO
9OOO / help.sh
Created April 22, 2020 01:36 — forked from mdmartinez/help.sh
various comment snippets documenting 3rd-party bash programs
# Make PATH easier to read by printing each directory on a new line
easypath() {
echo '\n'; echo $PATH | tr ':' '\0' | xargs -I _ -0 echo _ | ccat
}
help-tools-cli-mgmt() {
echo "
# 'tldr'
# Abbreviated man pages.
@9OOO
9OOO / README.md
Created April 22, 2020 01:09 — forked from jordanyeo/README.md
Routing plex traffic through an SSH tunnel

#Routing plex traffic through an SSH tunnel

This guide creates a reverse SSH tunnel to route all Plex server traffic through it.

Step 2 is done on the tunnel, all other steps are done on the plex server.

#1. Setup SSH keys (if you already have key based authenthication setup skip to step 2)

On plex server:

// XPath CheatSheet
// To test XPath in your Chrome Debugger: $x('/html/body')
// http://www.jittuu.com/2012/2/14/Testing-XPath-In-Chrome/
// 0. XPath Examples.
// More: http://xpath.alephzarro.com/content/cheatsheet.html
'//hr[@class="edge" and position()=1]' // every first hr of 'edge' class