Skip to content

Instantly share code, notes, and snippets.

View tguichaoua's full-sized avatar
👨‍💻
Coding

Tristan Guichaoua tguichaoua

👨‍💻
Coding
View GitHub Profile
@tguichaoua
tguichaoua / extensions.json
Last active January 26, 2025 13:33
My personnal list of Visual Studio Code extensions
{
"recommendations": [
// General
"aaron-bond.better-comments",
"streetsidesoftware.code-spell-checker",
"editorconfig.editorconfig",
"usernamehw.errorlens",
"seatonjiang.gitmoji-vscode",
"davidanson.vscode-markdownlint",
import enum
def to_long_uuid(uuid: int) -> str:
"""Converts 16-bits UUID into 128-bits UUID."""
return f'0000{uuid:04x}-0000-1000-8000-00805f9b34fb'
@enum.unique
class Characteristic(enum.Enum):