Skip to content

Instantly share code, notes, and snippets.

@sebastiancarlos
sebastiancarlos / open_links_with_keyboard.bash
Last active August 25, 2023 02:55
Opening links in your Bash terminal with the keyboard
@kissgyorgy
kissgyorgy / http_over_ssh_proxy.py
Last active December 24, 2023 16:35
Python: HTTP over SSH
import asyncio
import sys
from typing import Optional
import asyncssh
import httpx
class MySSHTCPSession(asyncssh.SSHTCPSession):
def __init__(self):