Skip to content

imurd/awesome-software-engineering

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 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
🔏 UML & noUML 📜 Software Development Methodologies 🎓OOP
🏁 Debugging 💪 Testing 🤖 IDEs
🧵 Security 🏷️ Programming Languages 🗞️ Databases
📡 Java 🗺️ Python 📥 JavaScript
🐌 Rust 🔬 Julia
🔴 REST API 🧩 GraphQL
📓 Linux ❔ Windows ✨ Proxmox
📊 SSH 🔖 Git 📠 Vim
🎻 LibreOffice 💎 Kdenlive ✒️GIMP
📚 ZFS ⛳ LVM 🎹 tmux
🧮 Ansible [ 🍃 Docker 🌌 Kubernetes
🔐 KeePassXC 🗿 iptables

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

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

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] Debian vs Arch by Chris Titus
  4. 🎞️ [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
  3. 🎞️ [eng] Bash tutorial
  4. 📜 [eng] zsh+OhMyZsh+fzf+powerlevel10k: Your terminal can be much, MUCH more productive by Ivan
  5. 📜 [eng] fzf: Why you should be using fzf, the command line fuzzy finder by Alexey Samoshkin

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

Arch Linux, Manjaro

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

Proxmox

  1. 🎞️ [eng] Virtualize Everything! - Proxmox Install Tutorial by Craft Computing
  2. 🎞️ [eng] Proxmox VE 6.0 Beginner Tutorial - Installing Proxmox & Creating a virtual machine by Proxmox HHS
  3. 🎞️ [eng] Virtualize Windows 10 with Proxmox VE by Techno Tim
  4. 🎞️ [rus] Proxmox tutorial by realmanual

LVM

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

SSH

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

Linux Filesystems

  1. 🎞️ [eng] File Systems | Which One is the Best? ZFS, BTRFS, or EXT4 by Chris Titus

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

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

Containers and Container Orchestration

Docker

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

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

Kubernetes

  1. 🎞️ [eng] Minikube Basics and How to Get Started with Kubernetes by Peter Jausovec
  2. 🎞️ [rus] Kubernetes video tutorial
  3. 📜 [eng] Setting up a Kubernetes cluster with Kubespray
  4. 📜 [eng] Kubernetes exercies by Bregman Arie

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

Networks

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

About

A curated list of awesome software engineering resources.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published