-
-
Notifications
You must be signed in to change notification settings - Fork 718
Expand file tree
/
Copy pathindex.html
More file actions
494 lines (441 loc) Β· 21.3 KB
/
index.html
File metadata and controls
494 lines (441 loc) Β· 21.3 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevOps and IT Cheat-Sheet Collection</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary-color: #2563eb;
--text-color: #1f2937;
--bg-color: #ffffff;
--secondary-bg: #f3f4f6;
--border-color: #e5e7eb;
--hover-bg: #f8fafc;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--bg-color);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
header {
background-color: var(--bg-color);
border-bottom: 1px solid var(--border-color);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 100;
backdrop-filter: blur(8px);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
}
.hero {
padding: 2rem 0;
text-align: center;
background-color: var(--secondary-bg);
}
.hero h1 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
}
.hero p {
font-size: 1.25rem;
color: #4b5563;
max-width: 800px;
margin: 0 auto;
}
.cheat-sheets {
padding: 2rem 0;
}
.cheat-sheet-table {
width: 100%;
border-collapse: collapse;
margin-top: 1rem;
}
.cheat-sheet-table th {
text-align: left;
padding: 1rem;
background-color: var(--secondary-bg);
border-bottom: 2px solid var(--border-color);
font-weight: 600;
}
.cheat-sheet-table td {
padding: 1rem;
border-bottom: 1px solid var(--border-color);
vertical-align: top;
}
.cheat-sheet-table tr:hover {
background-color: var(--hover-bg);
}
.tool-name {
font-weight: 600;
color: var(--primary-color);
display: flex;
align-items: center;
gap: 0.5rem;
}
.tool-description {
color: #4b5563;
font-size: 0.95rem;
}
.tool-links {
list-style: none;
}
.tool-links li {
margin-bottom: 0.5rem;
}
.tool-links a {
color: var(--text-color);
text-decoration: none;
transition: color 0.2s;
}
.tool-links a:hover {
color: var(--primary-color);
text-decoration: underline;
}
footer {
background-color: var(--secondary-bg);
padding: 2rem 0;
text-align: center;
border-top: 1px solid var(--border-color);
}
.support-link {
display: inline-block;
margin-top: 1rem;
color: var(--primary-color);
text-decoration: none;
font-weight: 500;
}
.support-link:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.container {
padding: 1rem;
}
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
.cheat-sheet-table {
display: block;
overflow-x: auto;
}
}
</style>
</head>
<body>
<header>
<div class="container header-content">
<a href="/" class="logo">DevOps & IT Cheat Sheets</a>
</div>
</header>
<main>
<section class="hero">
<div class="container">
<h1>DevOps and IT Cheat-Sheet Collection</h1>
<p>Welcome to the Cheat-Sheet Collection for DevOps, Engineers, IT professionals, and more!</p>
</div>
</section>
<section class="cheat-sheets">
<div class="container">
<table class="cheat-sheet-table">
<thead>
<tr>
<th>Tool</th>
<th>Description</th>
<th>Links</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tool-name">π³ Nginx</td>
<td class="tool-description">Nginx is open-source software for web serving, reverse proxying, caching, load balancing, media streaming, and more.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/nginx.pdf">Nginx Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π³ Docker</td>
<td class="tool-description">Docker is a tool designed to make it easier to create, deploy, and run applications using containers.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/docker.pdf">Docker Cheat Sheet</a></li>
<li><a href="pdf/docker_by_jrebel.pdf">Docker by JRebel</a></li>
<li><a href="pdf/docker-security.pdf">Docker Security</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π§ Ansible</td>
<td class="tool-description">Ansible is the simplest way to automate apps and IT infrastructure.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/ansible.pdf">Ansible Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π Python</td>
<td class="tool-description">Python is a high-level, interpreted programming language known for its simplicity and versatility.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/cheatsheet-python-grok.pdf">Python 3 - The Basics</a></li>
<li><a href="pdf/python_beginners.pdf">Python for Beginners</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π Go (Golang)</td>
<td class="tool-description">Go, also known as Golang, is a statically typed, compiled programming language designed at Google.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/go_golang.pdf">Go (Golang) Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π Git</td>
<td class="tool-description">Git is a distributed version control system for tracking changes in source code.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/atlassian-git-cheatsheet.pdf">Git by Atlassian</a></li>
<li><a href="pdf/git_by_github.pdf">Git by GitHub</a></li>
<li><a href="pdf/git_by_git-tower.pdf">Git by Git-Tower</a></li>
<li><a href="pdf/github.pdf">Git/GitHub - Pull Request</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π Regular Expressions</td>
<td class="tool-description">Regular expressions are special text strings for describing search patterns.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/regex.pdf">Regex Cheat Sheet</a></li>
<li><a href="pdf/python-regular-expression-regex.pdf">Regex for Python</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">β‘ PowerShell</td>
<td class="tool-description">PowerShell is a task automation and configuration management framework from Microsoft.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/Powershell.pdf">PowerShell Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">β¨οΈ VIM</td>
<td class="tool-description">VIM, aka `Vi IMproved`, is a highly configurable text editor for efficiently creating and changing any kind of text.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/vim-cheat-sheet.pdf">VIM Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π· Jenkins</td>
<td class="tool-description">Jenkins is an open-source automation server that enables developers to reliably build, test, and deploy their software.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/Jenkins-Cheat-Sheet-converted.pdf">Jenkins Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π CI/CD</td>
<td class="tool-description">Continuous Integration and Continuous Delivery frameworks for modern software development.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/cicd-framework_by_densify.pdf">CI/CD Framework</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π’ Kubernetes</td>
<td class="tool-description">Kubernetes is an open-source container orchestration platform for automating deployment, scaling, and management.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/Kubernetes-Cheat-Sheet.pdf">Kubernetes K8s Cheat Sheet</a></li>
<li><a href="pdf/kubectl.pdf">Kubectl Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π§ Linux</td>
<td class="tool-description">Comprehensive collection of Linux commands and tools for system administration.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/linux-bash.pdf">Linux Commands 1</a></li>
<li><a href="pdf/linux-bash-terminal.pdf">Linux Commands 2</a></li>
<li><a href="pdf/linux_commands.pdf">Linux Commands 3</a></li>
<li><a href="pdf/linux-networking-tool">Linux Network Tools</a></li>
<li><a href="pdf/linux-networing-tools.pdf">Network Tools</a></li>
<li><a href="pdf/cron.pdf">Cron</a></li>
<li><a href="pdf/rsync.pdf">Rsync</a></li>
<li><a href="pdf/curl.pdf">cURL</a></li>
<li><a href="pdf/ssh.pdf">SSH</a></li>
<li><a href="pdf/netcat.pdf">NC (Netcat)</a></li>
<li><a href="pdf/nmap.pdf">Nmap</a></li>
<li><a href="pdf/Nmap-Cheat-Sheet.pdf">Nmap Cheat Sheet</a></li>
<li><a href="pdf/openssl.pdf">OpenSSL</a></li>
<li><a href="pdf/ethtool.pdf">Ethtool</a></li>
<li><a href="pdf/ngrep.pdf">ngrep</a></li>
<li><a href="pdf/grep.pdf">grep</a></li>
<li><a href="pdf/xargs.pdf">xargs</a></li>
<li><a href="pdf/find.pdf">find</a></li>
<li><a href="pdf/awk.pdf">awk</a></li>
<li><a href="pdf/sed.pdf">sed</a></li>
<li><a href="pdf/tar.pdf">tar</a></li>
<li><a href="pdf/ps.pdf">ps</a></li>
<li><a href="pdf/top.pdf">top</a></li>
<li><a href="pdf/wireshark.pdf">Wireshark</a></li>
<li><a href="pdf/LinuxFileSystems.gif">Linux File Systems</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">πΎ Redis</td>
<td class="tool-description">Redis is an in-memory data structure store used as a database, cache, and message broker.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/redis.pdf">Redis Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π¬ Slack</td>
<td class="tool-description">Slack is a messaging tool for fast and easy communication within teams, organized by channels.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/slack.pdf">Slack Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π Puppet</td>
<td class="tool-description">Puppet lets you automate the enforcement, security, and delivery of your hybrid or cloud-native infrastructure.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/puppet.pdf">Puppet Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">βοΈ Google Cloud</td>
<td class="tool-description">Google Cloud Platform cheat sheet for building scalable and highly available applications.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/GoogleCloudDeveloper.pdf">Google Cloud Developer</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π€ AI & ML</td>
<td class="tool-description">Artificial Intelligence, Machine Learning, Deep Learning & Data Science resources.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/AI_ML.pdf">AI & ML Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π PostgreSQL</td>
<td class="tool-description">PostgreSQL is a free and open-source relational database management system.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/PostgreSQL-Cheat-Sheet.pdf">PostgreSQL Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π Ajax</td>
<td class="tool-description">AJAX = Asynchronous JavaScript And XML.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/ajax.pdf">Ajax Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">βοΈ AWS</td>
<td class="tool-description">Amazon Web Services (AWS) cloud computing platform resources.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/AWS-Basic-Cheat-Sheet.pdf">AWS: The Basics</a></li>
<li><a href="pdf/aws-services.pdf">AWS Services</a></li>
<li><a href="pdf/aws-cost.pdf">AWS Cost Information</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">ποΈ Infrastructure as Code</td>
<td class="tool-description">Terraform and other IaC tools for managing cloud services.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/terraform-cheatsheet1-.pdf">Terraform Cheat Sheet</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">βοΈ System Design</td>
<td class="tool-description">System Design architecture and best practices.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/System_Design_Blueprint.pdf">System Design Blueprint</a></li>
</ul>
</td>
</tr>
<tr>
<td class="tool-name">π Cyber Security</td>
<td class="tool-description">Cybersecurity fundamentals and DevSecOps practices.</td>
<td>
<ul class="tool-links">
<li><a href="pdf/cybersecurity-101.gif">Cyber Security 101</a></li>
<li><a href="pdf/devsecops.gif">What is DevSecOps?</a></li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</section>
</main>
<footer>
<div class="container">
<p>Thank you for using our cheat sheet collection! Happy coding! π</p>
<a href="https://www.buymeacoffee.com/haim_cohen" class="support-link" target="_blank">Support the project by buying us a coffee β</a>
</div>
</footer>
</body>
</html>