Skip to content

Alliedium/awesome-software-engineering

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 

Repository files navigation

Awesome Software Engineering

A curated list of awesome software engineering resources.

Quick links to sections in this page

🔍 Fundamentals 🌀 Common Mistakes 🎁 Code Review
⚔ Data Structures and Algos 💰 Common principles ➿ Design Patterns
🛀 Clean Code 🔦 Clean Architecture 🔧 Refactoring
🧪 Science 🔏 UML & noUML 📜 Software Development Methodologies
🎓OOP 🏁 Debugging 💪 Testing
🤖 IDEs 🧵 Security 🏷️ Programming Languages
🗞️ Databases 📡 Java 🗺️ Python
📥 JavaScript 🐌 Rust 🔬 Julia
🔧 OSI/TCP/IP 🔧 BGP 🔧 TLS certificates 🔧 ACME
🔧 TCP 🔧 VXLAN 🔴 REST API 🧩 GraphQL
📓 Linux ❔ Windows ❔ FreeBSD ❔ MacOs ✨ Virtualization
📊 SSH 🔖 Git 📠 Vim 📠 Fish ✨ Proxmox
🎻 LibreOffice 💎 Kdenlive ✒️GIMP 🔧 Package Managers ✨ Xen
📚 ZFS ⛳ LVM 🎹 tmux 🧮 systemd
🔧 Network Manager 🧮 Ansible 🍃 Docker 🌌 Kubernetes
🔐 KeePassXC 🗿 iptables
🔧 GitHub Actions 🔧 Jenkins 🔧 ArgoCd 🔧 Argo Workflows

Fundamentals

OOP

  1. 🎞️ [rus] What is OOP by FoxMinded
  2. 🎞️ [rus] OOP: Incapsulation explained by FoxMinded
  3. 🎞️ [rus] OOP: Inheritance explained by FoxMinded
  4. 🎞️ [rus] OOP: Polymorphism by explained by FoxMinded
  5. 🎞️ [eng] OOP explained by Mosh
  6. 📜 [eng] Why OOP is not a silver bullet
  7. 📜 [eng] Inheritance vs Composition. Which should you use?

Common mistakes

  1. 🎞️ [rus] 7 Common mistakes of Junior developers
  2. 🎞️ [eng] 5 Programming Anti-patterns for Beginners
  3. 📜 [eng] Anti-patterns and Code Smells
  4. 🎞️ [rus] Why it is bad to return NULL in Java
  5. 📜 [eng] The Anti Pattern of Getters And Setters by Ajeng Sugiarti
  6. 📜 [eng] Avoid getters and setters whenever possible by scottshipp
  7. 📜 [eng] Software Engineering Anti-patterns catalogue in Wikipedia

Code Review

  1. 🎞️ [eng] How to Review Someone Else's Code by Codecademy
  2. 🎞️ [eng] Code Review Best Practices by JetBrains

Code Style

  1. 📜 [rus] Code style as a standard of software development

Data Structures and Algos

  1. 🎞️ [eng] Data Structures and Algorithms by Mosh

Common principles

  1. 🎞️ [rus] Problem Domain Decomposition by FoxMinded
  2. 🎞️ [rus] DRY principle
  3. 🎞️ [rus] DRY, KISS, YAGNI
  4. 🎞️ [rus] SOLID principles
  5. 🎞️ [rus] SOLID principles & Architecture: a lecture from FPMI
  6. 🎞️ [eng] Frameworks & Inversion of Control
  7. 🎞️ [eng] Dependency Injection & Inversion of Control
  8. 📜 [eng] Dependency Injection vs Inversion of Control
  9. 📜 [rus] Low Coupling & High Cohesion by German Gorelkin
  10. 📜 [eng] Low Coupling & High Cohesion by Ammar Verbi Merakli
  11. 📜 [eng] Demeter's Law: Don't talk to strangers by Carlos Caballero
  12. 📜 [eng] GRASP Design Principles by Krzysztof Kwieciński
  13. 📜 [eng] What are General Responsibility Assignment Software Patterns? by Jakub Kapuscik
  14. 📜 [eng] Object-oriented design: GRASP patterns by J.Serrat
  15. 📜 [eng] ADVANCED SOFTWARE DESIGN: GRASP, SOLID, YAGNI, DRY, KISS, OTHER PRINCIPLES BY Dave Clarke

Design Patterns

  1. 🎞️ [eng] Design Patterns by Mosh
  2. 📖 Design Patterns: Elements of Reusable Object-Oriented Software, Erich Gamma, Richard Helm, Ralph Johnson, John Vlissides
  3. 🎞️ [rus] Design patterns (brief)
  4. 🎞️ [rus] Design patterns (full)
  5. 📜 [eng] Java Design Patterns - online catalog
  6. 📜 [eng] The Builder pattern vs Java syntax
  7. 📜 [eng] Awesome Software and Architectural Design Patterns

Clean Architecture

  1. 📖 Clean Architecture, A Craftsman's Guide to Software Structure And Design, Robert C. Martin
  2. 🎞️ [rus] SOLID principles & Architecture: a lecture from FPMI

Clean Code

  1. 🎞️ [rus] Clean Code lecture by FoxMinded
  2. 📖 Clean Code: A Handbook of Agile Software Craftsmanship,Robert C. Martin

Refactoring

  1. 📖 Refactoring: Improving the Design of Existing Code, Martin Fowler, Kent Beck, 2st edition
  2. 🎞️ [rus] Refactoring lectures by FoxMinded
  3. 📜 [eng] The Art of Refactoring: 5 Tips to Write Better Code
  4. 📜 [eng] Code Refactoring Best Practices: When (and When Not) to Do It

Science

  1. 📜 [eng] Software Engineering Research Methods: A curated collection of literature for philosophy of science and research methodologies with a focus on software engineering

UML & noUML

  1. 🎞️ [eng] A brief UML tutorial by Lucidchart
  2. 🎞️ [eng] A detailed UML tutorial by Derek Banas
  3. 📜 [eng] noUML explained, UML criticism by Vladimir Frolov, part1
  4. 📜 [eng] noUML explained by Vladimir Frolov, part2

Software Development Methodologies

  1. 🎞️ [rus] Who is who in Software Development: Developer, QA, BA, PM - who are those people? by FoxMinded
  2. 🎞️ [rus] Phases
  3. 🎞️ [rus] Methodologies

Debugging

  1. 🎞️ [rus] Debugging, lecture from FPMI, part1
  2. 🎞️ [rus] Debugging, lecture from FPMI, part2
  3. 📜 [eng] Debugging tips
  4. 📜 [eng] 10 Debugging Tips for Beginners: How to Troubleshoot and Fix Your Code Without Pulling Your Hair Out By Hartley Brody

Testing

  1. 🎞️ [rus] Unit Testing in Software Development
  2. 🎞️ [eng] TTD vs BDD 1
  3. 🎞️ [eng] TTD vs BDD 2
  4. 📜 [eng] Unit Tests vs Functional Tests
  5. 🎞️ [eng] TTD crash course
  6. 🎞️ [eng] BDD

TTD in Java

  1. Go to "TestNG" and "Mockito" subsections below under "Java Frameworks" section.

BDD in Java

  1. Go to "Serenity BDD" subsection below under "Java Frameworks" section.

TTD in JavaScript

  1. Go to "Jest" subsection below under "Java Script Frameworks" section.
  2. 🎞️ [eng] React Unit Testing

IDEs

IntelliJ Idea

  1. 🎞️ [eng] IntelliJ Idea Full Course by Amigoscode

Linux

  1. 🎞️ [eng] 6 Things to Know When Switching to Linux from Windows by Chris Titus
  2. 🎞️ [eng] 6 Mistakes New Linux Users Make by Chris Titus
  3. 🎞️ [rus] Unix philosophy by unixway
  4. 🎞️ [eng] 5 Things I Hate About Linux by Chris Titus

Linux Distributions

  1. 🎞️ [eng] Which Linux Distribution? | Understanding Linux Distros by Chris Titus
  2. 🎞️ [eng] How to Choose a Linux Distribution by Chris Titus
  3. 📜 [eng] GNU/Linux Distributions Timeline
  4. 🎞️ [eng] Debian vs Arch by Chris Titus
  5. 🎞️ [eng] Why Ubuntu is the Devil and Why So Many No Longer Use It by Chris Titus

Command line

  1. 🎞️ [eng] 15 Useful Linux Commands Every Linux User Needs | Learning Terminal Part 1
  2. 🎞️ [eng] 15 Useful Linux Commands Every Linux User Needs | Learning Terminal Part 2

Bash

  1. 🎞️ [eng] Bash tutorial

Sh

  1. 📜 [eng] How to Linux sh command
  2. 📜 [eng] How to sh(1) - Linux man page

zsh+OhMyZsh+fzf+powerlevel10k

  1. 📜 [eng] zsh+OhMyZsh+fzf+powerlevel10k: Your terminal can be much, MUCH more productive by Ivan
  2. 📜 [eng] fzf: Why you should be using fzf, the command line fuzzy finder by Alexey Samoshkin

User Access Permissions

  1. 📜 [eng] How to Create Users in Linux (useradd Command)
  2. 📜 [eng] Users and groups
  3. 📜 [eng] Access Control Lists

Fish

  1. 📜 [eng] fish Tutorial
  2. 📜 [eng] fish Documentation

Package Managers

  1. 📜 [eng] 5 Best Linux Package Managers for Linux Newbies
  2. 📜 [eng] Best Linux Package Managers

Tips & Tricks

  1. 📜 [eng] Awesome Linux Configuration Scripts by Alliedium
  2. 🎞️ [eng] Git Bare Repository - A Better Way To Manage Dotfiles by DistroTube

Linux Utilities

  1. 🎞️ [eng] Linux Apps I Use Daily by Chris Titus
  2. 🎞️ [eng] Linux Apps I Use At Work by Chris Titus

tmux

  1. 🎞️ [rus] Console Utility tmux by unixway

systemd

  1. 📜 [eng] Beginners Guide on systemd tutorial in Linux

Network Manager

  1. 📜 [eng] Configuring IP Networking with nmtui
  2. 📜 [eng] Configuring IP Networking with nmcli

Arch Linux, Manjaro

  1. 🎞️ [rus] Arch Linux basics
  2. 🎞️ [rus] Arch Linux pacman
  3. 🎞️ [rus] Arch Linux AUR
  4. 🎞️ [rus] Arch Linux vs Manjaro

LVM

  1. 🎞️ [rus] LVM: Theory and practice by unixway

SSH

  1. 🎞️ [rus] OpenSSH basics by unixway
  2. 🎞️ [eng] SSH config basics

Linux Filesystems

  1. 🎞️ [eng] File Systems | Which One is the Best? ZFS, BTRFS, or EXT4 by Chris Titus
  2. 📜 [eng] Classic SysAdmin: The Linux Filesystem Explained

ZFS

  1. 🎞️ [eng] What Is ZFS?: A Brief Primer by Level1Linux
  2. 🎞️ [rus] ZFS filesystem by unixway

Desktop Environments

KDE

  1. 🎞️ [eng] How to Customize KDE | KDE Customization by Chris Titus
  2. 🎞️ [eng] KDE is Slow !?! | Disable Baloo File Indexer by Chris Titus

Image Editing

GIMP

  1. 🎞️ [eng] GIMP vs Photoshop | How to Optimize Your Workflow by Chris Titus

Video Editing

Kdenlive

  1. 🎞️ [eng] Kdenlive Tutorial 2019 - Beginner Basics by Victoriano de Jesus
  2. 🎞️ [eng] 2020 Kdenlive Video Tutorials by Victoriano de Jesus
  3. 🎞️ [eng] Kdenlive Cinematic Title Animation by makinars

Text Editing

Vim

  1. 🎞️ [eng] Vim Basics in 8 Minutes by tutorialLinux

LibreOffice

  1. 🎞️ [eng] Microsoft Office vs LibreOffice | How to Make the Change by Chris Titus

Windows

  1. 🎞️ [eng] 17 Reasons Why I Do Not Use Windows 10 by Chris Titus
  2. 🎞️ [eng] Speed Up Windows 10 in 2020 by Chris Titus

FreeBSD

  1. 📜 [eng] FreeBSD Basics

MacOs

  1. 📜 [eng] A Complete Beginner's Guide to macOS: Get Started in Just 1 Hour

Source Control

Git

  1. 🎞️ [eng] Git Tutorial - Learn Git in 1 Hour by Mosh
  2. 🎞️ [rus] Git Basic Training
  3. 📜 [eng] Awesome Git Exerises by Alliedium
  4. 📜 [eng] Git exercies online by fracz

Security

KeePassXC

  1. 🎞️ [eng] Introduction to KeePassXC

iptables

  1. 🎞️ [eng] iptables: getting started
  2. 🎞️ [rus] Iptables detailed tutorial

Databases

SQL

  1. 🎞️ [eng] SQL Tutorial | PostgreSQL | Full Course by Amigoscode

Apache Ignite

  1. 🎞️ [eng] [eng] Getting started with Apache Ignite part 1
  2. 🎞️ [eng] Getting started with Apache Ignite part 2
  3. 🎞️ [eng] Getting started with Apache Ignite part 3
  4. 🎞️ [eng] Getting started with Apache Ignite part 4
  5. 🎞️ [eng] Moving Apache Ignite into Production: Best Practices for Distributed Transactions
  6. 📜 [eng] Boosting Jira Cloud App Development with Apache Ignite and Spring Boot
  7. 📖 High Performance in-memory computing with Apache Ignite: Building low latency, near real time application, Shamim Ahmed Bhuiyan, Michael Zheludkov and Timur Isachenko

Programming Languages

Java

  1. 🎞️ [rus] Java Overview by FoxMinded
  2. 🎞️ [rus] Java Application Development: the first steps by FoxMinded
  3. 📜 [eng] AWESOME JAVA: A curated list of awesome frameworks, libraries and software for the Java programming language.
  4. 🎞️ [rus] What is a Java server, comparison of Java Servers: Tomcat, Jetty, Wildfly, Glassfish, IBM WebSphere, Oracle WebLogic
  5. 🎞️ [eng] Java Tutorial for Beginners by Mosh
  6. 🎞️ [rus] [rus] [rus] Java For Beginners by FoxMinded
  7. 🎞️ [rus] [rus] Why it is bad to return NULL in Java
  8. 🎞️ [rus] Never ever use Lombok! Why this library is bad by FoxMinded
  9. 📖 Thinking in Java, Bruce Eckel, 4th edition
  10. 📜 [eng] Java Tutorials by JournalDev

Code Style

  1. 📜 [eng] Checkstyle is a tool for enforcing a Code Standard in Java
  2. 📜 [eng] Jenkins Warnings Next Generation Plugin
  3. 📜 [eng] How to Centralize your Checkstyle Configuration with Maven

Build Tools

Maven
  1. 🎞️ [eng] Simple Explanation of Maven and pom.xml
  2. 📜 [eng] Maven Tutorial
  3. 📜 [eng] Multi-Module Maven Project by Baeldung

Java Frameworks

  1. 🎞️ [rus] Which Java Frameworks you should know by FoxMinded
Java Collections Framework
  1. 📜 [eng] Java Collections Framework official documentation
ExecutorService
  1. 📜 [eng] ExecutorService - 10 tips and tricks
  2. 📜 [eng] InterruptedException and interrupting threads explained
TestNG
  1. 📜 [eng] Introduction to TestNG
  2. 📜 [eng] Why TestNG is better than JUnit
  3. 🎞️ [eng] Java Unit Testing with TestNG and Mockito
  4. 📖 Practical Unit Testing with TestNG and Mockito, Tomek Kaczanowski
Mockito
  1. 📜 [eng] Unit Tests with Mockito: Tutorial
  2. 📜 [eng] Mockito in six easy examples
  3. 📜 [ru] A sip of Mockito
  4. 📜 [eng] Mockito - Quick Guide
  5. 📜 [eng] Mockito When/Then Cookbook
  6. 📜 [eng] Usage of Mockito
  7. 📜 [eng] Mocking with Mockito: advanced techniques
  8. 📖 Practical Unit Testing with JUnit and Mockito, Tomek Kaczanowski
Serenity BDD
  1. 📜 [eng] How to implement test automation using Serenity
  2. 📜 [eng] Serenity BDD official documentation
  3. 📜 [eng] JBehave vs Cucumber JVM comparison
Hibernate
  1. 🎞️ [rus] What is JDBC? What is ORM, Hibernate & JPA? by FoxMinded
  2. 🎞️ [eng] Getting started with Hibernate
  3. 🎞️ [rus] Spring Boot JPA(Hibernate): let's add a database to our Java-based website by letsCode
  4. 🎞️ [eng] Hibernate Tutorial, Full Course
Spring Boot
  1. 🎞️ [eng] Spring Boot Tutorial for Beginners by freeCodeCamp.org
  2. 🎞️ [rus] Comparing Spring and JavaEE by FoxMinded
  3. 🎞️ [rus] Spring Boot 2: let us build a simple website together! by letsCode
  4. 📜 [eng] Boosting Jira Cloud App Development with Apache Ignite and Spring Boot
Spring Boot Dev Tools
  1. 📜 [eng] Faster Development with Spring Boot DevTools
  2. 📜 [eng] Optimize Your Dev Loop with Spring Boot Dev Tools

JavaScript

  1. 🎞️ [eng] Java Script Tutorials by Mosh
  2. 📜 [eng] AWESOME JAVASCRIPT: A collection of awesome browser-side JavaScript libraries, resources and shiny things

JavaScript frameworks, Tools and Runtimes

Node.js
  1. 🎞️ [eng] Node.js Tutorial for Beginners: Learn Node in 1 Hour by Mosh
  2. 📜 [eng] AWESOME NODEJS: Delightful Node.js packages and resources
Babel
  1. 🎞️ [eng] What is Babel and why you need it? Introduction to Babel
Jest
  1. 🎞️ [rus] Jest: Unit Testing in Java Script
React
  1. 🎞️ [eng] React Tutorial for Beginners [React js]
  2. 📜 [eng] AWESOME REACT: A collection of awesome things regarding React ecosystem
  3. 🎞️ [eng] React in 30 minutes
  4. 🎞️ [eng] Learn useState In 15 Minutes - React Hooks Explained
  5. 🎞️ [eng] Learn useEffect In 13 Minutes
  6. 🎞️ [eng] Redux Tutorial - Learn Redux from Scratch
  7. 🎞️ [eng] React Unit Testing

Python

  1. 🎞️ [eng] Python Tutorial - Python for Beginners [2020]
  2. 📜 [eng] AWESOME PYTHON: A curated list of awesome Python frameworks, libraries, software and resources

Rust

Rust Tutorial

Rust at Microsoft
Rust at AWS

Julia

Criticism of Julia

Getting started with Julia

Julia adoption

Julia co-creators talks

Julia performance

Julia vs C++

Contributing to Julia ecosystem

Language basics

Finding Julia packages

DataFrames

DataFrames.jl

ML

Parallel Computing

IDE

Notebooks

Jupyter
Pluto.jl

Jilia in production

Microservices
Deployment
Sysimage
Docker

Differential equations

DifferentialEquations.jl

OOP in Julia

Integration with other languages

Python

Basics of hardware architecture

DevOps

  1. 🎞️ [eng] DevOps explained by IBM
  2. 📜 [eng] What is DevOps, DevOps lifecycle
  3. 📜 [eng] Continuous Delivery vs Continuous Deployment
  4. 📜 [eng] DevOps exercies by Bregman Arie

Ansible

  1. 🎞️ [eng] What Is Ansible? | How Ansible Works? | Ansible Tutorial For Beginners by Simplilearn
  2. 🎞️ [eng] You need to learn Ansible RIGHT NOW!! (Linux Automation) by NetworkChuck

Virtualization

  1. 🎞️ [eng] Virtualization Explained
  2. 🎞️ [eng] Introduction to Virtualization by Chris Titus
  3. 🎞️ [eng] Virtualization Explained | Docker | VMware | QEMU | Virtualbox by
  4. 🎞️ [eng] Stop using Virtualbox, Here's how to use QEMU instead
  5. 📜 [eng] QEMU/KVM — Virtualization on Linux
  6. 🎞️ [rus] KVM Virtualization. Part 1 by unixway
  7. 📜 [rus] What is Hypervisor, what's its role in virtualization, types, comparison
  8. 📜 [rus] Virtualization systems. Compare the VMware, Hyper-V, KVM, Xen
  9. 📜 [eng] Compare the Top Hypervisors of 2022

Proxmox

  1. 📜 [eng] Comparing Server Virtualization Software. Why choose Proxmox VE for your workloads?
  2. 🎞️ [eng] Virtualize Everything! - Proxmox Install Tutorial by Craft Computing
  3. 🎞️ [eng] Proxmox VE 6.0 Beginner Tutorial - Installing Proxmox & Creating a virtual machine by Proxmox HHS
  4. 🎞️ [eng] Virtualize Windows 10 with Proxmox VE by Techno Tim
  5. 🎞️ [rus] Proxmox tutorial by realmanual

Xen

  1. 🎞️ [eng] Getting Started Tutorial: Building An Open Source XCP-NG & Xen Orchestra Virtualization Lab

Open vSwitch

  1. 📜 [eng] Production Quality, Multilayer Open Virtual Switch

Containers and Container Orchestration

  1. 📜 [eng] What is a container?
  2. 🎞️ [rus] From Docker to Kubernetes: historical retrospective by unixway. From 10:48

LXC

  1. 📜 [eng] What's LXC?
  2. 📜 [rus] LXC Containers in Linux
  3. 📜 [eng] LXC on gentoo wiki
  4. 📜 [rus] LXC aka Linux Container: simple and reliable

Docker

Basics

  1. 🎞️ [rus] Docker basics
  2. 📜 [eng] Docker Interview Questions
  3. 📜 [eng] Docker Exercises by Bregman Arie
  4. 🎞️ [eng] Portainer - Lightweight Management UI for Docker

Architecture (containerd, CRI-O and runc)

  1. 📜 [eng] The differences between Docker, containerd, CRI-O and runc
  2. 📜 [rus] The differences between Docker, containerd, CRI-O and runc
  3. 📜 [eng] Docker vs containerd vs CRI-O: An In-Depth Comparison

Distributions (Docker, nerdctl + Rancher Desktop)

  1. 🎞️ [eng] How To Replace Docker With nerdctl And Rancher Desktop

How to configure on different platforms

  1. 📜 [eng] Install Docker Desktop on Windows
  2. 📜 [eng] Install Docker Desktop on Mac
  3. 📜 [eng] Install Docker Desktop on Linux

Sample application

  1. 📜 [eng] Get the app contents, build image, start container
  2. 📜 [eng] Update the application
  3. 📜 [eng] Share the application
  4. 📜 [eng] Persist data

Best practices for building containers

  1. 📜 [eng] Best practices for building containers
  2. 📜 [eng] Docker Images : Part I - Reducing Image Size
  3. 📜 [eng] Docker Images : Part II - Details Specific To Different Languages
  4. 📜 [eng] Docker Images : Part III - Going Farther To Reduce Image Size
  5. 📜 [eng] Faster CI Builds with Docker Layer Caching and BuildKit
  6. 📜 [eng] Advanced Dockerfiles: Faster Builds and Smaller Images Using BuildKit and Multistage Builds
  7. 📜 [eng] Docker build cache sharing on multi-hosts with BuildKit and buildx
  8. 📜 [eng] Speed up multi-stage Docker builds in CI/CD with Buildkit’s registry cache
  9. 📜 [eng] Docker ARG vs ENV
  10. 📜 [rus] ENTRYPOINT vs CMD: Back to Basics
  11. 📜 [eng] docker build with --build-arg with multiple arguments
  12. 📜 [eng] specifying .dockerignore file
  13. 📜 [eng] Specify dockerignore from command line
  14. 📜 [eng] Explore Docker layers using Dive
  15. 📜 [eng] Docker Cache – How to Do a Clean Image Rebuild and Clear Docker's Cache
  16. 📜 [eng] Tag an image for a private repository

GPU pass-through

  1. 📜 [eng] How to Properly Use the GPU within a Docker Container
  2. 📜 [eng] A Dockerfile for training model in PyTorch with GPU

Advanced

  1. 📜 [eng] Dockerfile reference: FROM
  2. 📜 [eng] Dockerfile reference: ARG
  3. 📜 [eng] Dockerfile reference: COPY
  4. 📜 [eng] Dockerfile reference: LABEL
  5. 📜 [eng] Dockerfile reference: USER
  6. 📜 [eng] Dockerfile reference: SHELL
  7. 📜 [eng] docker build
  8. 📜 [eng] docker builder prune
  9. 📜 [eng] Comparing Four Hosted Docker Registries
  10. 📜 [eng] Shipping images with a registry

Docker compose

  1. 📜 [eng] Docker Compose Tutorial
  2. 📜 [eng] docker-compose build
  3. 📜 [eng] How to define build-args in docker-compose?
  4. 📜 [eng] Kompose (translate Docker Compose file into Kubernetes resources)

Kubernetes

  1. 🎞️ [rus] Kubernetes video tutorial
  2. 📜 [eng] Setting up a Kubernetes cluster with Kubespray
  3. 📜 [eng] Kubernetes exercies by Bregman Arie

Local Distributions

k3s/k3d

  1. 📜 [eng] K3s Server Configuration Reference
  2. 🎞️ [eng] DOT. K3d - How to run Kubernetes cluster locally using Rancher K3s

minikube

  1. 🎞️ [eng] Minikube Basics and How to Get Started with Kubernetes by Peter Jausovec

Kubernetes Tools

  1. 📜 [eng] Kubernetes Essential Tools: 2021
  2. 📜 [rus] Kubernetes Essential Tools: 2021

kubectl

  1. 🎞️ [rus] Intro to Kubernetes, Part 2 by unixway

Lens

  1. 🎞️ [eng] DOT. Lens - Kubernetes IDE and Dashboard

Kubernetes Objects

  1. 🎞️ [rus] Intro to Kubernetes, Part 2 by unixway. From 05:04
  2. 🎞️ [rus] Intro to Kubernetes, Part 3 by unixway
  3. 📜 [eng] Kubernetes NodePort vs LoadBalancer vs Ingress? When should I use what?
  4. 📜 [rus] Kubernetes: ClusterIP vs NodePort vs LoadBalancer, Services and Ingress – survey, examlpes
  5. 📜 [eng] Publishing Services (ServiceTypes)
  6. 📜 [eng] Jobs
  7. 📜 [eng] Deployments
  8. 📜 [eng] K8s: Deployments vs StatefulSets vs DaemonSets

Ingress

  1. 📜 [eng] NGINX Ingress Controller. Installation Guide
  2. 🎞️ [rus] Intro to Kubernetes, Part 4 by unixway. From 29:16

Applying manifests

  1. 🎞️ [rus] Intro to Kubernetes, Part 3 by unixway. From 05:51

Kubernetes Operators

  1. 🎞️ [rus] What are Kubernetes Operators?
  2. 📜 [eng] Operator for Apache CouchDB

Stateful workloads in Kubernetes

  1. 🎞️ [eng] Stateful Kubernetes Applications - Ask Me Anything

Longhorn

  1. 📜 [eng] Install Longhorn on Kubernetes

Running a database in k8s as an example

  1. 🎞️ [rus] Intro to Kubernetes, Part 5 by unixway

Kubernetes manifest parameterization

Kustomize

  1. 📜 [eng] Declarative Management of Kubernetes Objects Using Kustomize

Helm

  1. 📜 [eng] 13 Best Practices for using Helm
  2. 📜 [eng] The Chart Best Practices Guide
  3. 📜 [eng] Values Files
  4. 📜 [eng] Helm install in certain order (stackoverflow)
  5. 📜 [eng] Chart Hooks
  6. 📜 [eng] Helm Rollback

Kubernetes monitoring

Prometheus

  1. 📜 [eng] What is Prometheus? | When does it fit? | When does it not fit?
  2. 📜 [eng] Prometheus Operator packaged by Bitnami
  3. 📜 [eng] Using Custom Prometheus with Lens app

Grafana

  1. 📜 [rus] Grafana - yet another tool for technical monitoring
  2. 📜 [eng] Grafana project
  3. 📜 [eng] Grafana Operator packaged by Bitnami

Networks

OSI/TCP/IP

  1. 📜 [eng] The OSI Model
  2. 📜 [eng] The TCP/IP Model

BGP

  1. 📜 [eng] What is BGP? | BGP routing explained
  2. 📜 [eng] BGP (Border Gateway Protocol)

HTTPS

TLS certificates

  1. 📜 [eng] Configuring custom SSL/TLS certificates

ACME

  1. 📜 [rus] The ACME protocol has been approved as an IETF standard
  2. 📜 [eng] ACME Protocol: What it is and how it works
  3. 📜 [eng] How It Works

TCP

  1. 📜 [rus] TCP/IP for Beginners
  2. 📜 [eng] Transmission Control Protocol
  3. 📜 [eng] Linux in the Network

VXLAN

  1. 🎞️ [eng] VxLAN | Issues with traditional vlan | VXLAN benifits explained | free ccna 200-301
  2. 📜 [eng] Virtual Extensible LAN
  3. 📜 [eng] VXLAN Virtual eXtensible Local Area Network
  4. 🎞️ [eng] VxLAN | Part 1 - How VxLAN Works

REST API

  1. 🎞️ [eng] REST API explained by Mosh
  2. 🎞️ [eng] Autogenerating Swagger Documentation with Node & Express
  3. 🎞️ [rus] REST API testing via Postman

GraphQL

  1. 📜 [eng] Introduction to GraphQL by Udara Bibile
  2. 📜 [eng] GraphQL With Python Flask by Manish Jain
  3. 📜 [eng] Schema-First GraphQL: The Road Less Travelled by Jakub Draganek

CI/CD

GitHub

  1. 🎞️ [eng] GitHub CLI - How to manage repositories more efficiently

GitHub Actions

  1. 🎞️ [eng] Github Actions Review And Tutorial

GitLab

  1. 🎞️ [eng] GitLab CI CD Tutorial for Beginners [Crash Course]

Jenkins

  1. 📜 [eng] Jenkins Pipeline Tutorial
  2. 📜 [eng] Continuous Integration with Jenkins
  3. 🎞️ [rus] Jenkins Video Course in Russian
  4. 📜 [eng] Jenkins CheatSheet
  5. 📜 [eng] Jenkins Interview Questions
  6. 📜 [eng] jenkins.io - User handbook
  7. 🎞️ [end] CI CD Pipeline Using Jenkins

ArgoCd

  1. 🎞️ [eng] Argo CD - Applying GitOps Principles To Manage A Production Environment In Kubernetes
  2. 🎞️ [eng] Environments Based On Pull Requests (PRs): Using Argo CD To Apply GitOps Principles On Previews
  3. 🎞️ [eng] Koncrete - GitOps As A Service With Argo CD
  4. 🎞️ [eng] GitOps Without Pipelines With ArgoCD Image Updater

Argo Workflows

  1. 🎞️ [eng] Argo Workflows and Pipelines - CI/CD, Machine Learning, and Other Kubernetes Workflows
  2. 🎞️ [eng] Argo Events - Event-Based Dependency Manager for Kubernetes
  3. 🎞️ [eng] Automation of Everything - How To Combine Argo Events, Workflows & Pipelines, CD, and Rollouts

Cloud

Infrastructure as Code

Crossplane

  1. 🎞️ [eng] What Is Kubernetes (k8s)? Kubernetes Explained
  2. 🎞️ [eng] Crossplane - GitOps-based Infrastructure as Code through Kubernetes API
  3. 🎞️ [eng] How To Apply GitOps To Everything - Combining Argo CD And Crossplane
  4. 📜 [eng] Crossplane Documentation. Overview
  5. 📜 [eng] Crossplane Documentation. Install & Configure
  6. 📜 [eng] Crossplane Documentation. Provision Infrastructure
  7. 📜 [eng] Crossplane Documentation. Terminology
  8. 📜 [eng] Crossplane project on GitHub
  9. 📜 [eng] provider-aws: Crossplane infrastructure provider for Amazon Web Services
  10. 📜 [eng] provider-aws Documentation
  11. 📜 [eng] What is the AWS CDK? - AWS Cloud Development Kit (CDK) v2
  12. 📜 [eng] CRD is just a table in Kubernetes
  13. 📜 [rus] CRD is just a table in Kubernetes
  14. 📜 [eng] Kubernetes Custom Resources
  15. 📜 [eng] provider-aws Custom Resource Definitions
  16. 📜 [eng] LocalStack
  17. 📜 [eng] LocalStack Documentation. AWS Service Feature Coverage
  18. 📜 [rus] GitOps approach, its pros and cons
  19. 📜 [eng] Environment variables to configure the AWS CLI - AWS Command Line Interface
  20. 📜 [eng] AWS Reference Platform for Kubernetes + Data Services
  21. 📜 [eng] LocalStack AWS CLI

Microservices

Devspace

  1. 📜 [eng] What is DevSpace?
  2. 📜 [eng] Onboarding Guide
  3. 📜 [eng] Image Building
  4. 📜 [eng] Deployments
  5. 📜 [eng] Development Mode
  6. 📜 [eng] Config Variables
  7. 📜 [eng] Config Profiles

About

A curated list of awesome software engineering resources.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages