Skip to content

Instantly share code, notes, and snippets.

View slim71's full-sized avatar

Simone Vollaro slim71

  • Italy
View GitHub Profile
@kvnxiao
kvnxiao / awesome-selfhosted-sorted-by-stars.md
Last active February 18, 2026 07:03
awesome-selfhosted-sorted-by-stars.md

Awesome-Selfhosted

Awesome

Selfhosting is the process of locally hosting and managing applications instead of renting from SaaS providers.

This is a list of Free Software network services and web applications which can be hosted locally. Non-Free software is listed on the Non-Free page.

See Contributing.

If 2fa is enabled on github switch to ssh instead of https on linux
1. generate an ssh keypair on your linux box
ssh-keygen -t {rsa|dsa}
2. add the public key to github: profile - settings - ssh keys
3. switch from https to ssh
Check your repo remote:
@fogleman
fogleman / main.py
Last active September 11, 2024 07:27
Collision Avoidance
from collections import deque
from math import sin, cos, pi, atan2, hypot
import random
import time
import wx
SIZE = 600
COUNT = 64
SPEED = 100
FOLLOWERS = 4