Skip to content

Instantly share code, notes, and snippets.

View somesebastian's full-sized avatar
🎯
Focusing

Sebastián Piñango somesebastian

🎯
Focusing
View GitHub Profile
@syntaxhacker
syntaxhacker / Flutterinstallwithoutandroidstudio.md
Last active April 25, 2025 21:17
setup flutter without android studio

Flutter install without android studio

set flutter

Download flutter

tar xvf flutter_linux_1.17.5-stable.tar.xz

@mdonkers
mdonkers / server.py
Last active June 14, 2025 20:50
Simple Python 3 HTTP server for logging all GET and POST requests
#!/usr/bin/env python3
"""
License: MIT License
Copyright (c) 2023 Miel Donkers
Very simple HTTP server in python for logging requests
Usage::
./server.py [<port>]
"""
from http.server import BaseHTTPRequestHandler, HTTPServer