Skip to content

Instantly share code, notes, and snippets.

View serge-eric-kalaga's full-sized avatar
🎯
Focusing

KALAGA Serge Eric serge-eric-kalaga

🎯
Focusing
View GitHub Profile
@erikkinding
erikkinding / kafka-local-docker-compose.yaml
Last active November 3, 2025 16:39
Docker compose for local Kafka setup with kafka-ui
# This setup allows you to both connect from within the docker-compose context as well as from services running on your local
# machine but not as part of the docker-compose setup. Any client connecting to the broker from the outside can connect to
# localhost:9092 while services running as part of the docker-compose connect to broker:9093.
#
# To access kafka-ui: http://localhost:7777
#
# I hope this helps someone out there! :)
version: '3'
networks:
@akrisanov
akrisanov / Makefile
Last active May 9, 2025 14:19
Makefile for FastAPI project
.PHONY: psql up down venv check-deps update-deps install-deps isort black mypy flake8 bandit lint test migrate serve
ifneq (,$(wildcard ./.env))
include .env
export
endif
VENV=.venv
PYTHON=$(VENV)/bin/python3
@mdang
mdang / RAILS_CHEATSHEET.md
Last active November 28, 2025 10:01
Ruby on Rails Cheatsheet

Ruby on Rails Cheatsheet

Architecture

Create a new application

Install the Rails gem if you haven't done so before