Skip to content

Instantly share code, notes, and snippets.

@Dreaming381
Dreaming381 / Your ECS Probably Still Sucks Part 1.md
Last active February 1, 2025 16:48
Your ECS Probably Still Sucks - Practical Tips for a Next Level ECS

Your ECS Probably Still Sucks: Part 1 – Memory Matters

This article was first written during the Unity Fee-asco of 2023. As such, many Unity ECS community members were seeking alternative high-performance solutions, and were asking me about potential places to migrate some technology I have developed.

Unfortunately, most of the ECS solutions were inadequate for facilitating the technology, yet it hasn’t been easy to explain why. That’s why this series exists. I’ll explain several ECS concepts ideas that are often overlooked in

@microbug
microbug / plots-pause.sh
Created May 14, 2021 21:28
Pause Chia plots (Linux)
#!/usr/bin/env bash
# Send SIGSTOP (pause) to all plot processes
ps aux | grep "[c]hia plots create" | awk '{print $2}' | xargs kill -STOP
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 9, 2025 03:04
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