Skip to content

Commit 0f6bbd4

Browse files
committed
feat(project): initialize personal structure 🎉
0 parents  commit 0f6bbd4

File tree

8 files changed

+87
-0
lines changed

8 files changed

+87
-0
lines changed

ARCHITECTURE/CODE-ORGANIZATION.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Code Organization
2+
3+
Where everything lives and why
4+
5+
## Overview
6+
7+
*Coming soon...*

ARCHITECTURE/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# ⚔️ Architecture Notes
2+
3+
My collection of architecture patterns, principles, and hard-learned lessons.
4+
5+
## Contents
6+
7+
- [Code Organization](./CODE-ORGANIZATION.md) - Where everything lives and why
8+
9+
---
10+
11+
_Building better systems, one mistake at a time._

PERSONAL/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# 💀 Personal Tech Experience
2+
3+
Real stories from the development trenches.
4+
5+
## Contents
6+
7+
- [Dev Stories](./STORIES.md) - Tales from the keyboard trenches
8+
9+
---
10+
11+
_Where code meets reality and chaos ensues._

PERSONAL/STORIES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Dev Stories
2+
3+
Tales from the keyboard trenches
4+
5+
## Overview
6+
7+
*Coming soon...*

PRINCIPLES/DRY.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# DRY: Don't Repeat Yourself
2+
3+
Because copying code is lazy
4+
5+
## Overview
6+
7+
*Coming soon...*

PRINCIPLES/KISS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# KISS: Keep It Simple Stupid
2+
3+
Complexity kills productivity
4+
5+
## Overview
6+
7+
*Coming soon...*

PRINCIPLES/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# 📋 Coding Principles
2+
3+
Rules I try to follow (when I remember them).
4+
5+
## Contents
6+
7+
- [DRY: Don't Repeat Yourself](./DRY.md) - Because copying code is lazy
8+
- [KISS: Keep It Simple Stupid](./KISS.md) - Complexity kills productivity
9+
10+
---
11+
12+
_Simple rules for complex problems._

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
```diff
2+
class Me {
3+
fixProblems(): string {
4+
- return "Ah, I've encountered countless linting errors"
5+
+ return "Any type should work, right?"
6+
}
7+
}
8+
```
9+
10+
# About This Space 💻
11+
12+
Architecture, principles, time tracking, and the occasional "why did I think `any` was a good idea?" moment. 🤦‍♂️
13+
14+
## ⚔️ My [Architecture](./ARCHITECTURE/README.md) Notes
15+
16+
- [Code Organization](./ARCHITECTURE/CODE-ORGANIZATION.md) - Where everything lives and why
17+
18+
## 📋 Coding [Principle](./PRINCIPLES/README.md) Rules
19+
20+
- [DRY: Don't Repeat Yourself](./PRINCIPLES/DRY.md) - Because copying code is lazy
21+
- [KISS: Keep It Simple Stupid](./PRINCIPLES/KISS.md) - Complexity kills productivity
22+
23+
## 💀 Personal [Tech](./PERSONAL/README.md) Experience
24+
25+
- [Dev Stories](./PERSONAL/STORIES.md) - Tales from the keyboard trenches

0 commit comments

Comments
 (0)