Skip to content

Instantly share code, notes, and snippets.

View che8u's full-sized avatar
🤓

Chaitanya Sharma che8u

🤓
View GitHub Profile
@corlaez
corlaez / README.md
Last active July 10, 2025 20:53
Hexagonal Architecture and Modular Implementation

Hexagonal Architecture

Conceptualized by Alistair Cockburn. Also known as "Ports and Adapters".

In a nutshell:

Application Driver -> Primary Adapter -> Primary Port -> Use Case -> Secondary Port -> Secondary Adapter -> External System/Side Effect
@evertrol
evertrol / Makefiles.md
Last active June 18, 2025 10:53
Makefile cheat sheet

Makefile cheat sheet

Mostly geared towards GNU make

I've used ->| to indicate a tab character, as it's clearer to read than

  • Set a target, its dependencies and the commands to execute in order
target: [dependencies]
->|