Skip to content

Instantly share code, notes, and snippets.

View BearTS's full-sized avatar
🫶
Self hosting

Anuj Parihar BearTS

🫶
Self hosting
View GitHub Profile
@stossy11
stossy11 / sidejitserver.md
Last active November 8, 2024 23:20
SideJITServer Over VPN

This is an install guide for SideJITServer over VPN (i prefer Tailscale as its the easiest)

First you will need a working install of SideJITServer, find out more here

Open your (Administrator Terminal on Windows) Terminal (you might need to be in venv):

# Install the modified pymd3 and SideJITServer version
pip3 install git+https://github.com/jawshoeadan/SideJITServer#egg=sidejitserver
@troykelly
troykelly / INTEGRATION.md
Last active May 2, 2024 10:51
Automatically mount rclone mounts

Automatic Rclone Mounting and Unmounting on macOS

Prerequisites

  • rclone configured with remotes.
  • The mounting script is properly set up.
  • brew package manager for installing sleepwatcher.

Steps

@bubba-h57
bubba-h57 / instructions.md
Last active April 20, 2025 21:08
Configuring Jetbrains Gateway and WSL

Step 1: SSH Daemon

In your WSL instance, re-install OpenSSH server as follows.

sudo apt remove --purge openssh-server
sudo apt install openssh-server

Edit /etc/ssh/sshd_config (e.g. sudo vi /etc/ssh/sshd_config) and add the following lines to the bottom of the file. Ensure you replace WSL_ACCOUNT_NAME with your WSL2 account name.

@Zekfad
Zekfad / conventional-commits.md
Last active October 1, 2025 09:27
Conventional Commits Cheatsheet

Quick examples

  • feat: new feature
  • fix(scope): bug in scope
  • feat!: breaking change / feat(scope)!: rework API
  • chore(deps): update dependencies

Commit types

  • build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
  • ci: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
  • chore: Changes which doesn't change source code or tests e.g. changes to the build process, auxiliary tools, libraries
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active October 4, 2025 14:29
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example