Skip to content

Instantly share code, notes, and snippets.

View yusufmalikul's full-sized avatar
🏠
Working from home

Yusuf Malikul Mulki yusufmalikul

🏠
Working from home
View GitHub Profile
@raysan5
raysan5 / raylib_vs_sdl.md
Last active July 13, 2024 16:59
raylib vs SDL - A libraries comparison

raylib_vs_sdl

In the last years I've been asked multiple times about the comparison between raylib and SDL libraries. Unfortunately, my experience with SDL was quite limited so I couldn't provide a good comparison. In the last two years I've learned about SDL and used it to teach at University so I feel that now I can provide a good comparison between both.

Hope it helps future users to better understand this two libraries internals and functionality.

Table of Content

@enricofoltran
enricofoltran / main.go
Last active June 26, 2024 12:16
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"