Skip to content

Instantly share code, notes, and snippets.

@WisdomCode
WisdomCode / moonlightssh.sh
Created June 5, 2019 12:14
Moonlight Game Streaming via SSH
#!/bin/bash
#Enables Playing on a moonlight server via an ssh tunnel. This is useful on restricted networks, as only the ssh port is needed.
#Needs the complimentary script, redirectudp, running on the ssh server to function.
#needs a private key for the ssh server
#sudo apt install ssh socat snap
#snap install moonlight
@WisdomCode
WisdomCode / installextensions.py
Created May 28, 2019 18:47
Installs chrome Extensions, their IDs are given in an external Textfile as a parameter. According extension get installed or updated as needed automatically
#!/usr/bin/env python3
import json
import os
import subprocess
import re
import requests
from bs4 import BeautifulSoup
from distutils.version import LooseVersion
import shutil