Skip to content

Instantly share code, notes, and snippets.

View arthurdouillard's full-sized avatar
📚
Learning

Arthur Douillard arthurdouillard

📚
Learning
View GitHub Profile
@enricofoltran
enricofoltran / main.go
Last active April 1, 2024 00:17
A simple golang web server with basic logging, tracing, health check, graceful shutdown and zero dependencies
package main
import (
"context"
"flag"
"fmt"
"log"
"net/http"
"os"
"os/signal"
@ian-weisser
ian-weisser / autocomplete.py
Created April 7, 2014 00:33
Python3 tkinter text entry widget with built-in autocompletion class,, with working example
#!/usr/bin/python3
"""
tkentrycomplete.py
A tkinter widget that features autocompletion.
Created by Mitja Martini on 2008-11-29.
Converted to Python3 by Ian weisser on 2014-04-06.
"""