Skip to content

Instantly share code, notes, and snippets.

View elevenpassin's full-sized avatar
🏠
Working from home

Alice Kile elevenpassin

🏠
Working from home
View GitHub Profile
@elevenpassin
elevenpassin / ssh-tunnel-setup.md
Created November 18, 2025 20:37 — forked from jmnsf/ssh-tunnel-setup.md
SSH Tunnel Setup

SSH Tunnel Setup

Use this for protected networks where port 22 isn't available, or for general security reasons where your traffic will be routed through an external server via SSH tunnel.

Server Setup

An EC2 micro instance or a tiny DigitalOcean droplet will work for this. For the initial configuration, access to port 22 is required, as you'll have to SSH onto your host.

In the host, edit /etc/ssh/sshd_config and add the line Port 443. Reboot. From now on you can SSH into the server through port 443 (ssh -p 443 user@server).

Tunnel Setup

@elevenpassin
elevenpassin / nodejs-deployment.md
Created May 9, 2025 11:54
Notes for deploying a NodeJS application on a VPS
@elevenpassin
elevenpassin / delete_all_tweets.py
Created October 27, 2023 07:41 — forked from davej/delete_all_tweets.py
This script will delete all of the tweets in a specified account.
# -*- coding: utf-8 -*-
"""
This script will delete all of the tweets in the specified account.
You may need to hit the "more" button on the bottom of your twitter profile
page every now and then as the script runs, this is due to a bug in twitter.
You will need to get a consumer key and consumer secret token to use this
script, you can do so by registering a twitter application at https://dev.twitter.com/apps
@requirements: Python 2.5+, Tweepy (http://pypi.python.org/pypi/tweepy/1.7.1)
@elevenpassin
elevenpassin / README.md
Last active February 2, 2025 14:47
Get YT Channel RSS

Get YT Channel RSS | Violentmonkey Script

@elevenpassin
elevenpassin / commitlint.config.js
Created September 28, 2021 05:39
A simple but useful extension to config conventional and commitlint defaults.
const configConventional = require('@commitlint/config-conventional')
const customConventionalConfig = {
...configConventional,
}
customConventionalConfig.rules['type-enum'] = [
2,
'always',
[
@elevenpassin
elevenpassin / boom-images.js
Created September 27, 2021 15:34
All credit goes to @kentcdodds ! I just extracted the code from this [commit](https://github.com/kentcdodds/kentcdodds.com/commit/d7ebfcc7e3e8fb8354f0ca58da8159fccaeeb14d#) for personal use :D
import path from 'path'
import cloudinary from 'cloudinary'
import glob from 'glob'
import fs from 'fs'
import os from 'os'
const directoryCache = {}
const existingFolders = new Set()
cloudinary.config({
@elevenpassin
elevenpassin / README.md
Last active September 28, 2021 05:40
SSH Config with multiple Identities

SSH Config /w Multiple Identities

@elevenpassin
elevenpassin / README.md
Last active September 28, 2021 05:41
Minecraft thingy

Setup Minecraft /w Paper + Geyser Spigot

Quickly setup and run minecraft server