Skip to content

Instantly share code, notes, and snippets.

View KrappRamiro's full-sized avatar
🐧
Mis amigos me dicen "el kubernete"

Krapp KrappRamiro

🐧
Mis amigos me dicen "el kubernete"
View GitHub Profile
@bitterteasweetorange
bitterteasweetorange / keybindings.json
Last active March 27, 2025 09:56
setup vscode like neovim
[
{
"command": "projectManager.listGitProjects#sideBarGit",
"key": "cmd+o"
},
{
"command": "expand_region",
"key": "ctrl+=",
"when": "editorTextFocus"
},
@Jarmos-san
Jarmos-san / main.py
Last active March 26, 2025 14:56
A simple FastAPI project with a health check route
"""Entrypoint to invoke the FastAPI application service with."""
from fastapi import FastAPI, status
from pydantic import BaseModel
import uvicorn
app = FastAPI()
class HealthCheck(BaseModel):