Skip to content

Instantly share code, notes, and snippets.

# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
import socket
import threading
HOST = '127.0.0.1'
PORT = 9999
def client() -> None:
"""Avvia il client: chiede il nome poi entra in chat."""
# ─────────────────────────────────────────
import socket
import threading
HOST = '127.0.0.1'
PORT = 9999
lock = threading.Lock()
clienti_connessi = []