mirror of
https://github.com/ByteByteGoHq/system-design-101.git
synced 2026-04-01 16:57:23 -04:00
This PR adds all the guides from [Visual Guides](https://bytebytego.com/guides/) section on bytebytego to the repository with proper links. - [x] Markdown files for guides and categories are placed inside `data/guides` and `data/categories` - [x] Guide links in readme are auto-generated using `scripts/readme.ts`. Everytime you run the script `npm run update-readme`, it reads the categories and guides from the above mentioned folders, generate production links for guides and categories and populate the table of content in the readme. This ensures that any future guides and categories will automatically get added to the readme. - [x] Sorting inside the readme matches the actual category and guides sorting on production
53 lines
2.0 KiB
Markdown
53 lines
2.0 KiB
Markdown
---
|
|
title: "The Ultimate Software Architect Knowledge Map"
|
|
description: "A guide to the essential knowledge for software architects."
|
|
image: "https://assets.bytebytego.com/diagrams/0118-the-ultimate-software-architect-knowledge-map.png"
|
|
createdAt: "2024-03-13"
|
|
draft: false
|
|
categories:
|
|
- software-architecture
|
|
tags:
|
|
- Software Architecture
|
|
- Career Development
|
|
---
|
|
|
|

|
|
|
|
Becoming a Software Architect is a journey where you are always learning. But there are some things you must definitely strive to know.
|
|
|
|
## Essential Skills for Software Architects
|
|
|
|
* **Master a Programming Language**
|
|
|
|
Look to master 1-2 programming languages such as Java, Python, Golang, JavaScript, etc.
|
|
|
|
* **Tools**
|
|
|
|
Build proficiency with key tools such as GitHub, Jenkins, Jira, ELK, Sonar, etc.
|
|
|
|
* **Design Principles**
|
|
|
|
Learn about important design principles such as OOPS, Clean Code, TDD, DDD, CAP Theorem, MVC Pattern, ACID, and GOF.
|
|
|
|
* **Architectural Principles**
|
|
|
|
Become proficient in multiple architectural patterns such as Microservices, Publish-Subscribe, Layered, Event-Driven, Client-Server, Hexagonal, etc.
|
|
|
|
* **Platform Knowledge**
|
|
|
|
Get to know about several platforms such as containers, orchestration, cloud, serverless, CDN, API Gateways, Distributed Systems, and CI/CD
|
|
|
|
* **Data Analytics**
|
|
|
|
Build a solid knowledge of data and analytics components like SQL and NoSQL databases, data streaming solutions with Kafka, object storage, data migration, OLAP, and so on.
|
|
|
|
* **Networking and Security**
|
|
|
|
Learn about networking and security concepts such as DNS, TCP, TLS, HTTPS, Encryption, JWT, OAuth, and Credential Management.
|
|
|
|
* **Supporting Skills**
|
|
|
|
Apart from technical, software architects also need several supporting skills such as decision-making, technology knowledge, stakeholder management, communication, estimation, leadership, etc.
|
|
|
|
Over to you - What else would you add to the roadmap?
|