-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (154 loc) Β· 5.39 KB
/
index.html
File metadata and controls
161 lines (154 loc) Β· 5.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>System Design Documentation</title>
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background: #f8f9fa;
}
.header {
text-align: center;
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 3px solid #3498db;
}
h1 {
color: #2c3e50;
font-size: 2.5em;
margin-bottom: 10px;
}
.subtitle {
color: #7f8c8d;
font-size: 1.2em;
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 20px;
}
.card {
background: white;
border-radius: 8px;
padding: 20px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
transition: transform 0.2s, box-shadow 0.2s;
border-left: 4px solid #3498db;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.card h3 {
margin-top: 0;
color: #2c3e50;
font-size: 1.4em;
}
.card p {
color: #555;
margin: 10px 0;
}
.card a {
display: inline-block;
background: #3498db;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
margin-top: 10px;
font-weight: 600;
transition: background 0.2s;
}
.card a:hover {
background: #2980b9;
text-decoration: none;
}
.card .meta {
font-size: 0.9em;
color: #95a5a6;
margin-top: 5px;
}
.footer {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #bdc3c7;
color: #7f8c8d;
font-size: 0.9em;
}
.github-link {
display: inline-block;
margin-top: 10px;
color: #3498db;
text-decoration: none;
}
.github-link:hover {
text-decoration: underline;
}
.badge {
display: inline-block;
background: #27ae60;
color: white;
padding: 4px 8px;
border-radius: 12px;
font-size: 0.8em;
font-weight: 600;
margin-left: 8px;
}
</style>
</head>
<body>
<div class="header">
<h1>π System Design Documentation</h1>
<div class="subtitle">Comprehensive guides and architectural patterns</div>
</div>
<div class="card-grid">
<div class="card">
<h3>π Notification Service System Design</h3>
<p>Complete guide to building scalable notification systems with multi-channel delivery, fault tolerance, and user preference management.</p>
<div class="meta">Topics: Event-Driven, Scalability, Fault Tolerance</div>
<a href="notification-service-system-design.html">View Document β</a>
</div>
<div class="card">
<h3>π URL Shortener System Design</h3>
<p>A complete design for a scalable URL shortening service including database schema, API design, and load balancing strategies.</p>
<div class="meta">Topics: Database Design, API, Scaling</div>
<a href="url-shortener-system-design.html">View Document β</a>
</div>
<div class="card">
<h3>β±οΈ Rate Limiter Implementation</h3>
<p>Detailed guide on implementing rate limiting algorithms including Token Bucket, Leaky Bucket, and Fixed Window counters.</p>
<div class="meta">Topics: Algorithms, Performance, Security</div>
<a href="rate-limiter.html">View Document β</a>
</div>
<div class="card">
<h3>π Top-K System Design</h3>
<p>Compact guide for maintaining top-K items at scale: sharding, sketches, aggregation, and merge strategies.</p>
<div class="meta">Topics: Streaming, Sketches, Aggregation</div>
<a href="top-k-system-design.html">View Document β</a>
</div>
<div class="card">
<h3>π― System Design Principles</h3>
<p>Essential principles and best practices for designing scalable, reliable, and maintainable distributed systems.</p>
<div class="meta">Topics: Architecture, Best Practices</div>
<a href="system-design-principles.html">View Document β</a>
</div>
</div>
<div class="footer">
<p>All documents are rendered with Mermaid diagrams and syntax highlighting</p>
<a href="https://github.com/romanstetsenko/SystemDesign" class="github-link" target="_blank">View on GitHub β</a>
</div>
<script>
// Add dynamic year to footer
document.querySelector('.footer p').innerHTML += '<br>Β© ' + new Date().getFullYear() + ' System Design Docs';
</script>
</body>
</html>