Skip to content

Instantly share code, notes, and snippets.

View aeilers's full-sized avatar

Adam Eilers aeilers

View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 13, 2025 21:24
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@aeilers
aeilers / Hive_Pattern-Stack.md
Last active December 11, 2019 07:19
Hive Pattern/Stack

Hive Pattern/Stack

The Hive Pattern is a proven theory to redefine enterprise level architecture based on Command Query Responsibility Segregation (CQRS), Event Sourcing (ES), unified transaction logs, and microservices patterns.

Goals of the Hive Pattern:

  • define a horizontally scalable, high performing, fault tolerant solution for enterprise architecture
  • remove boilerplate application logic so engineers can focus on solving enterprise challenges
  • improve operational efficiencies through specialization and micro implementations
  • minimize the depth of n-tier architecture

The Hive Stack is an open source, enterprise application stack in the spirit of LAMP, MEAN, and other open source application stacks that proves the Hive Pattern. The intent is to provide a standardized set of services and storage solutions as a base set of tools to solve enterprise challenges.

@ursuad
ursuad / kafka-cheat-sheet.md
Last active March 12, 2025 10:08
Quick command reference for Apache Kafka

Kafka Topics

List existing topics

bin/kafka-topics.sh --zookeeper localhost:2181 --list

Describe a topic

bin/kafka-topics.sh --zookeeper localhost:2181 --describe --topic mytopic

Purge a topic

bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --config retention.ms=1000

... wait a minute ...

@staltz
staltz / introrx.md
Last active May 12, 2025 23:22
The introduction to Reactive Programming you've been missing