Skip to content

Instantly share code, notes, and snippets.

View andrasbacsai's full-sized avatar
😎
Making cool things.

Andras Bacsai andrasbacsai

😎
Making cool things.
View GitHub Profile
@stevendborrelli
stevendborrelli / bluesky.md
Last active April 24, 2025 04:52
Bluesky Starter Packs
@simonplend
simonplend / config.json
Last active February 9, 2022 23:16
Node.js v17.5.0 nightly build test - see instructions.sh
{
"url": "https://jsonplaceholder.typicode.com/todos/1"
}
@enricofoltran
enricofoltran / main.go
Last active April 6, 2025 09:48
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"