Category Archives: Software Engineering Curriculum

Topic 18 – Linear Algebra

Why do I need to learn about linear algebra?

Linear algebra is a fundamental tool for understanding many modern theories and techniques such as artificial intelligence, machine learning, deep learning, data mining, security, digital imagine processing, and natural language processing.

Linear algebra provides a powerful language that unifies algebra, geometry, and computation. It enables compact representation, allowing many equations to be expressed as a single 2D array. It also facilitates convenient manipulation, as algebraic operations on vectors and matrices naturally correspond to geometric transformations. By linking algebra, geometry, and computation within a single framework, linear algebra serves as a foundation for both geometric interpretation and computational implementation.

What can I do after finishing learning about linear algebra?

You will be prepared to learn modern theories and techniques to create modern security, machine learning, data mining, image processing or natural language processing software.

That sounds useful! What should I do now?

Linear algebra can be difficult if you try to memorize all of its formulas. The best way to study it is to focus on the systems of equations in the problems that interest you, and then look for notations and concepts that make it easier to analyze or solve those systems.

Please read this book to grasp the core concepts of linear algebra: David C. Lay et al. (2022). Linear Algebra and Its Applications. Pearson Education.

Alternatively, please audit the course and do read its lecture notes: MIT 18.06 – Linear Algebra, Spring 2005 (Lecture Notes).

While auditing this course, refer to this book for a better understanding of some complex topics: Gilbert Strang (2016). Introduction to Linear Algebra. Wellesley-Cambridge Press.

Terminology Review:

  • Linear Equations.
  • Row Picture.
  • Column Picture.
  • Triangular matrix is a square matrix where all the values above or below the diagonal are zero.
  • Lower Triangular Matries.
  • Upper Triangular Matries.
  • Diagonal matrix is a matrix in which the entries outside the main diagonal are all zero.
  • Tridiagonal Matries.
  • Identity Matries.
  • Transpose of a Matrix.
  • Symmetric Matries.
  • Pivot Columns.
  • Pivot Variables.
  • Augmented Matrix.
  • Echelon Form.
  • Reduced Row Echelon Form.
  • Elimination Matrices.
  • Inverse Matrix.
  • Factorization into A = LU.
  • Free Columns.
  • Free Variables.
  • Gauss-Jordan Elimination.
  • Vector Spaces.
  • Rank of a Matrix.
  • Permutation Matrices.
  • Subspaces.
  • Column space, C(A) consists of all combinations of the columns of A and is a vector space in ℝᵐ.
  • Nullspace, N(A) consists of all solutions x of the equation Ax = 0 and lies in ℝⁿ.
  • Row space, C(Aᵀ) consists of all combinations of the row vectors of A and form a subspace of ℝⁿ. We equate this with C(Aᵀ), the column space of the transpose of A.
  • The left nullspace of A, N(Aᵀ) is the nullspace of Aᵀ. This is a subspace of ℝᵐ.
  • Linearly Dependent Vectors.
  • Linearly Independent Vectors.
  • Linear Span of Vectors.
  • A basis for a vector space is a sequence of vectors with two properties:
    • They are independent.
    • They span the vector space.
  • Given a space, every basis for that space has the same number of vectors; that number is the dimension of the space.
  • Dimension of a Vector Space.
  • Dot Product.
  • Orthogonal Vectors.
  • Orthogonal Subspaces.
  • Row space of A is orthogonal to  nullspace of A.
  • Matrix Spaces.
  • Rank-One Matrices.
  • Orthogonal Complements.
  • Projection Matrices: P = A(AᵀA)⁻¹Aᵀ. Properties of projection matrix: Pᵀ = P and P² = P. Projection component: Pb = A(AᵀA)⁻¹Aᵀb = (AᵀA)⁻¹(Aᵀb)A.
  • Linear regression, least squares, and normal equations: Instead of solving Ax = b we solve Ax̂ = p or AᵀAx̂ = Aᵀb.
  • Linear Regression.
  • Orthogonal Matrices.
  • Orthogonal Basis.
  • Orthonormal Vectors.
  • Orthonormal Basis.
  • Orthogonal Subspaces.
  • Gram–Schmidt process.
  • Determinant: A number associated with any square matrix letting us know whether the matrix is invertible, the formula for the inverse matrix, the volume of the parallelepiped whose edges are the column vectors of A. The determinant of a triangular matrix is the product of the diagonal entries (pivots).
  • The big formula for computing the determinant.
  • The cofactor formula rewrites the big formula for the determinant of an n by n matrix in terms of the determinants of smaller matrices.
  • Formula for Inverse Matrices.
  • Cramer’s Rule.
  • Eigenvectors are vectors for which Ax is parallel to x: Ax = λx. λ is an eigenvalue of A, det(A − λI)= 0.
  • Diagonalizing a matrix: AS = SΛ 🡲 S⁻¹AS = Λ 🡲 A = SΛS⁻¹. S: matrix of n linearly independent eigenvectors. Λ: matrix of eigenvalues on diagonal.
  • Matrix exponential eᴬᵗ.
  • Markov Matrices: All entries are non-negative and each column adds to 1.
  • Symmetric Matrices: Aᵀ = A.
  • Positive Definite Matrices: all eigenvalues are positive or all pivots are positive or all determinants are positive.
  • Similar Matrices: A and B = M⁻¹AM.
  • Singular Value Decomposition (SVD) of a matrix: A = UΣVᵀ, where U is orthogonal, Σ is diagonal, and V is orthogonal.
  • Linear Transformations: T(v + w) = T(v)+ T(w) and T(cv)= cT(v) . For any linear transformation T we can find a matrix A so that T(v) = Av.
  • Change-of-basis Matrix.
  • Left Inverse Matries: LA=I, Right Inverse Matrices: AR=I.
  • Pseudo Inverse Matrices: A⁺=VΣ⁺Uᵀ.

After finishing linear algebra, please click on Topic 19 – Probability & Statistics to continue.

 

Topic 16 – Advanced Software Design

Why do I need to learn about advanced software design?

Your task now is not just to build a house, it is to build a city. Soon, you will be creating very complex software. You are responsible for designing a system containing around 10,000 classes or functions for 5,000 users to use over the next 15 years. The maximum allowable system downtime must be less than five minutes per year.

Imagine you have to create a system that serves millions of users simultaneously, like Facebook, YouTube, Amazon, Office 365, or Gmail. Are you confident in building one?

Now imagine you are tasked with creating a web framework for developers to extend, such as ASP.NET, Yii, or React. Are you confident you could create one?

If you are unsure how to accomplish these tasks, it is probably wise to study how others have built similar systems and adapt their approaches to your situation. Advanced software design equips you with the knowledge and tools needed to begin building your own complex software.

What can I do after finishing learning advanced software design?

You will learn how to design a complex software system that satisfies not only functional requirements but also security, modifiability, scalability, reusability, extensibility, and reliability requirements..

That sounds interesting! What should I do now?

Nowadays, software can be applied to many fields, each requiring specific advanced software design knowledge. In this topic, we focus only on enterprise software due to its popularity.

Before designing a complex system, you must thoroughly understand its sophisticated requirements. This is a critical step in building any large system.

First, please read this book to learn how to elicit, analyze and document requirements for an enterprise system: David C. Hay (2002). Requirements Analysis: From Business Views to Architecture. Prentice Hall PTR.

After that, please read this book to learn about transactional processing principles and techniques: Philip A. Bernstein and Eric Newcomer (2009). Principles of Transaction Processing. Second Edition. Morgan Kaufmann.

After that, please read the books below to learn how to leverage domain-driven design approach to reduce software complexity.

After that, please read the books below to learn how to design microservices:

After that, please read the books below to learn how to leverage event sourcing and stream processing to design scalable big data software systems:

Terminology Review:

  • Enterprise Applications
  • Enterprise Systems
  • Transaction Processing
  • Microservices
  • Domain-Driven Design
  • Entities
  • Value Objects
  • Aggregates
  • Domain Events
  • Factories
  • Repository Interfaces
  • Repository Implementations
  • Bound Contexts
  • Event Sourcing
  • Command Query Responsibility Segregation (CRQS)
  • Stream Processing
  • Lambda Architecture
  • Kappa Architecture
  • Event-Driven Architecture
  • Serverless

After finishing advanced software design, please click on Topic 17 – Calculus to continue.

 

Topic 17 – Calculus

Why do I need to learn about calculus?

Calculus is a fundamental tool for understanding modern theories and techniques to create software such as artificial intelligence, machine learning, deep learning, data mining, security, digital imagine processing and natural language processing.

What can I do after finishing learning about calculus?

You will then be prepared to be able to learn modern theories and techniques to create security, data mining, image processing or natural language processing software.

What should I do now?

First, please audit the course and read its lecture notes to grasp the core concepts of single-variable calculus: MIT 18.01 – Single Variable Calculus, Fall 2007 (Lecture Notes).

When you audit this course, refer to this book whenever you have difficulty understanding any of the lectures: George F. Simmons (1996). Calculus With Analytic Geometry. McGraw-Hill.

Alternatively, you can read one of the books below:

After that, please audit the course and read its lecture notes to grasp the core concepts of multivariable calculus: MIT 18.02 – Multivariable Calculus, Fall 2007 (Lecture Notes).

You will need some Linear Algebra knowledge (specifically Inverse Matrix and Determinant) to understand Multivariable Calculus. You will need some knowledge of linear algebra (specifically inverse matrices and determinants) to understand multivariable calculus. Therefore, please learn the basics of linear algebra at the same time.

After that, please watch the Highlights of Calculus videos, to review many core concepts of calculus. Most mathematical concepts should be learned several times using different approaches in order to fully understand their problems, solutions, and applications.

After that, please audit the course and read its readings to grasp the core concepts of differential equations: MIT 18.03 – Differential Equations, Spring 2006 (Readings).

When you audit this course, refer to this book whenever you have difficulty understanding any of the lectures: C. Henry Edwards and David E. Penney (2013). Elementary Differential Equations with Boundary Value Problems. Pearson Education.

What is the difference between calculus and analysis?

Calculus means a method of calculation. Calculus is about differentiation and integration.

Real analysis includes calculus, and other topics that may not be of interest to engineers but of interest to pure mathematicians such as measure theory, lebesgue integral, topology, functional analysis, complex analysis, PDE, ODE, proofs of theorems.

What does early transcendentals mean?

Transcendentals in this context refers to functions like the exponential, logarithmic, and trigonometric functions.

The early transcendentals approach means that the book introduces polynomial, rational functions, exponential, logarithmic, and trigonometric functions at the beginning, then use them as examples when developing differential calculus. This approach is good for students who do not need to take much rigorous math.

The classical approach is the late transcendentals. It means that the book develops differential calculus using only polynomials and rational functions as examples, then introduces the other functions afterwards. This approach is good for students who need to understand more rigorous definitions of the transcendental functions.

Single Variable Calculus Terminology Review:

  • Slope.
  • Derivative.
  • Rate of Change.
  • Limit.
  • Continuity.
  • Chain Rule.
  • Implicit Differentiation.
  • Linear Approximations.
  • Quadratic Approximations.
  • Critical Point.
  • Newton’s Method.
  • Mean Value Theorem.
  • Differentials.
  • Antiderivatives.
  • Differential Equations.
  • Separation of Variables.
  • First Fundamental Theorem of Calculus.
  • Indeterminate Forms.
  • L’Hospital’s Rule.
  • Improper Integrals.
  • Infinite Series.
  • Taylor’s Series.
  • Taylor’s Formula.
  • Power Series.
  • Geometric Series.
  • Euler’s Formula.

Multivariable Calculus Terminology Review:

  • Vectors.
  • Dot Product.
  • Cross Product.
  • Inverse Matrix.
  • Determinant.
  • Equations of Planes: ax + by + cz = d
  • Parametric Equations = as trajectory of a moving point.
  • Velocity Vector.
  • Acceleration Vector.
  • Level Curve.
  • Tangent Plane.
  • Saddle Point.
  • Functions of Several Variables.
  • Partial Derivatives.
  • Second Derivatives.
  • Second Derivative Test.
  • Differentials.
  • Gradients.
  • Directional Derivatives.
  • Lagrange Multipliers.

Differential Equation Terminology Review:

  • Isocline (equal slope): a line which joins neighboring points with the same gradient.
  • Direction Fields.
  • Integral Curve: The graph of a particular solution of a differential equation.
  • IVP: Initial Value Problem.
  • Euler’s Numerical Method.
  • Linear First Order ODE Standard Form: y′ + p(x)y = q(x)
  • Integrating Factor or Euler Multiplier: The method is based on (ux)’ = ux’ + u’x.
  • Substitution: to change variables to end up with a simpler equation to solve.
  • Bernoulli Equations: y′ + p(x)y = q(x)yⁿ.
  • Homogeneous Equations: y′ = F (y/x)
  • Autonomous Equations: dx/dt = f(x). If we think of as time, the naming comes from the fact that the equation is independent of time.

Matrix Calculus Terminology Review:

  • Matrix Derivatives.

After finishing calculus, please click on Topic 18 – Linear Algebra to continue.

Topic 15 – Advanced Database Management Systems

Why do I need to learn about advanced database management systems?

Learning about advanced database management systems is important because modern applications deal with huge, complex, and diverse data. Learning to build a database management system equips you with the skills to design scalable, distributed, and high-performance data systems, making you a better problem solver and innovator in data management.

What can I do after finishing learning about advanced database management systems?

You will understand how data is stored, indexed, and retrieved efficiently, providing deep insight into the foundations of all database systems. You will also learn how queries are processed, transactions are managed, and consistency is maintained, which is essential for reliable, multi-user applications.

With this knowledge, you will be able to design and optimize high-performance databases tailored to specific applications. You can also develop custom or specialized data systems, such as vector, time-series, graph, or embedded databases.

Additionally, you gain the skills to build distributed, scalable, and fault-tolerant systems or improve existing database platforms for reliability and efficiency.

You can also contribute to database research, develop new query languages, design novel storage engines, or create data-intensive products in AI, analytics, or fintech.

That sounds useful! What should I do now?

First, please read this book to learn about database system concepts: Abraham Silberschatz et al. (2019). Database System Concepts. McGraw-Hill Education.

Alternatively, if you want to follow the concepts with interactive explanations, you can audit this course: CMU 15-445 – Introduction to Database Systems (UC Berkeley).

After that, please read the books below to learn how to design distributed databases and understand how they work:

Terminology Review:

  • Database’s Files.
  • Storage Manager.
  • Database’s Pages vs. Hardware Pages vs. OS Pages.
  • Page Storage Architecture: Heap Files, Tree Files, Sequential / Sorted File Organization (ISAM), Hashing Files.
  • Page Directory.
  • Page Header.
  • Slotted Pages.
  • Tuple Layout.
  • Tuple Header.
  • Tuple Data.
  • Record Identifiers.
  • Log-Structured Storage: MemTable, SSTables, Compaction.
  • Index-Organized Storage.
  • Tuple Storage.
  • Word-Aligned Tuples.
  • Data Representation: Variable-Precision Numeric Type, Null Data Type, Large Values, Overflow Pages.
  • System Catalogs.
  • N-ary Storage Model (NSM).
  • Decomposition Storage Model (DSM).
  • Partition Attributes Across (PAX) Storage Model.
  • Columnar Compression: Run-Length Encoding (RLE), Bit-Packing Encoding, Bitmap Encoding, Delta Encoding, Dictionary Encoding.
  • Data-Intensive Applications.
  • Graph Databases.
  • Distributed Databases.
  • Distributed Relational Databases.

After finishing advanced database management systems, please click on Topic 16 – Advanced Software Design to continue.

 

Topic 14 – Software Project Management

Why do I need to learn about software project management?

Knowing how to create software does not mean that you will create software SUCCESSFULLY. Creating software successfully means that you satisfy all customer’s REQUIREMENTS ON TIME, ON BUDGET with HIGH QUALITY while making both the customer and yourself HAPPY. Especially, your software must create REVENUE for the customer.

Have you ever wondered why many software projects failed; why Microsoft, Oracle, Google, Apple, Amazon and IBM abandoned many projects? Software project management will provide you knowledge so that you could improve the success probability of your software projects and mitigate all the project risks.

What can I do after finishing learning about software project management?

You will know how to plan a project, including scoping, estimating time and resources, creating a schedule or an adaptive release plan, identifying and responding to risks.

You will know how to create software using the mindset of a specific methodology (i.e. Waterfall, Rational Unified Process, Iterative and Incremental Development, Agile Methods, Scrum, Extreme Programming, Kanban, PMI, PRINCE2).

You will know how to perform project configuration management, how to combine development and operations to release software faster, how to control project changes, how to report project status, how to control product and process quality.

You will know how to collaborate with others to create software, how to motivate your team members.

Uh-oh! I am a developer. I do not want to be a project manager. Do I really need to know about project management?

If you have a doubt about the usefulness of project management knowledge then just review the situations below. If you can overcome all of them then congratulation, you already have enough project management knowledge that a developer needs.

– You are asked by your manager when you can finish your tasks. Unfortunately, the tasks are new to you. The requirements are vague. It is even worse that you have not found technical solutions for them.

– You are required to finish a task requiring a collaboration with other team members. Conflicts arise frequently. You do not want to work with them anymore but you still have to complete the task.

– You cannot complete a task on time due to many incidents.

– You are given only a project idea and asked to create a product. The difficulty is that you do not know where to start.

– Most of your projects cannot be complete on time and on budget and you do not know what are the root cases.

– Most of your customers do not want to partner with your team again although their projects were finished on time with high quality by your team.

Alright! What should I do now?

First,  please read this book to get familiar with software project management concepts: Jennifer Greene and Andrew Stellman (2005). Applied Software Project Management. O’Reilly.

After that, please read this book to learn how to estimate effort, time and cost for a software project: Steve McConnell (2006). Software Estimation: Demystifying the Black Art. Microsoft Press.

After that, please read this book to learn the principles of software project management: Frederick P. Brooks, Jr. (1995). The Mythical Man-Month: Essays on Software Engineering. Addison-Wesley Professional.

After that, please read the two books below to learn how to deal with the human side of a software project:

After that, please read this book to learn how to deal with software project risks: Tom DeMarco and Timothy Lister (2003). Waltzing with Bears: Managing Risks On Software Projects. Dorset House.

After that, please read the books below to learn how to manage software project activities using the Unified Process:

After that, please read the books below to learn how to manage software project activities using the Scrum process:

After that, please read this book to learn how to manage requirements in an Agile project: Dean Leffingwell (2011). Agile Software Requirements. Lean Requirements Practices for Teams, Programs, and the Enterprise. Addison-Wesley Professional.

After that, please read this book to learn how to estimate cost, effort, and duration, and how to create and manage a plan for an Agile project: Mike Cohn (2005). Agile Estimating and Planning. Pearson Education.

After that, please read this book to learn how to apply Extreme Programming techniques in an Agile project:  Kent Beck and Cynthia Andres (2004). Extreme Programming Explained: Embrace Change. 2nd Edition. Pearson Education.

After that, please read the books below to learn how to carry out software project management activities with an Agile mindset:

After that, please read the books below to learn how to manage software project activities using the Kanban method:

After that, please read this book to learn how to perform software configuration management activities: Jessica Keyes (2004). Software Configuration Management. Auerbach Publications.

After that, please read this book to learn how to release software continously: Len Bass, Ingo Weber and Liming Zhu (2015). DevOps: A Software Architect’s Perspective. Pearson Education.

After that, please read the books below to become familiar with the knowledge areas and techniques developed by the Project Management Institute (PMI):

After that, lease read the two books below if you are interested in obtaining a PMP certificate:

After that, please read this book to review classical methods and techniques of software development: Steve McConnell (1996). Rapid Development: Taming Wild Software Schedules. Microsoft Press. The information in this book may help you address specific problems, such as unrealistic deadlines, frequent delays, and unclear or changing requirements.

After that, please read this book to review approaches to software project management, especially when organizational-level processes and practices establish the platform on which a software project is managed: Murali K. Chemuturi and Thomas M. Cagley Jr. (2010). Mastering Software Project Management: Best Practices, Tools and Techniques. J. Ross Publishing.

Terminology Review:

  • Project Initiation
  • Scope Management
  • Agile Requirements
  • Waterfall
  • Rational Unified Process (RUP)
  • Enterprise Unified Process
  • Agile Methods
  • Extreme Programming (XP)
  • Scrum
  • Kanban
  • Work-in-Progress (WIP)
  • Software Estimation
  • Agile Estimating
  • Project Planning
  • Gantt Chart
  • Cost Management
  • Agile Planning
  • Configuration Management
  • CI/CD/DevOps
  • Project Monitoring and Control
  • Time Management
  • Peopleware
  • Team Management
  • Team Motivation
  • Software Quality
  • Agile Retrospectives
  • Quality Management
  • Risk Management
  • Software Project Management
  • Software Process
  • Project Management Professional (PMP)
  • CMMI

After finishing software project management, please click on Topic 15 – Advanced Database Management Systems to continue.

Topic 13 – Introduction to Software Design

Why do I need to learn about software design?

What will you do if you are asked to build a house?
You will need to sketch its first and build the house based upon the sketch. Otherwise you may build a house that may collapse in a few weeks or cannot be decorated due to errors.

The situation is similar when you create software. You need to plan how you will build it first by deciding how many components and objects will be used for constructing to solve at least a core problem, what are their responsibility, how they work together, how data will be organized, how data will be flowed within these components, how users will interact with your application, how these components will be deployed.

Software design knowledge will guide you how to do these tasks.

What can I do after finishing learning software design?

You will know how to create a design for an application including static and dynamic structure, data organization, business processing workflows.

Is is really useful? I feel that you can write the code right after having requirements and I am able to refactor my code when needed.

That’s great if you can do it like that. You only need to learn about software design when

(i) you do not know how to write code for a feature or

(ii) you cannot refactor your code because only a small change breaks the whole application or

(iii) you need to write a software system together with 20 other developers and you do NOT know where to begin and how you will integrate results of all the developers into one solution or

(iv) you have a software system that could  serve 20 users simultaneously very well but it stops responding when serving 2,000 users simultaneously and you do not know how to fix it.

Alright! What should I do now?

Each application type, such as enterprise systems, games, or intelligent systems, requires specific design knowledge. In this topic, we focus only on the core concepts of software design related to enterprise systems.

First, please read the books below to learn the core concepts and activities of software design as illustrated using the UML language:

After that, please read this book to learn about object-oriented design patterns: Erich Gamma et al (1994). Design Patterns Elements Of Reusable Object Oriented Software. Addison-Wesley Professional. When reading this book, focus first on the Motivation section of each pattern, and feel free to skip any pattern if the problem presented in the Motivation section is not relevant to your situation or does not interest you.

After that, please read the books below to learn about classic design patterns and architectural patterns widely used in enterprise systems:

After that, please read the books below to learn about the core concepts and activities applicable to structured design (i.e., top-down decomposition):

After that, please read the books below to learn about the core concepts and activities applicable to object-oriented design (i.e., bottom-up composition):

After that, please read this book to learn how to design software systematically and how to evaluate a design: David Budgen (2020). Software Design. CRC Press.

After that, please read this book to learn how to create a clean, modular design for an enterprise system: Robert C. Martin (2017). Clean Architecture: A Craftsman’s Guide to Software Structure and Design. Pearson Education.

After that, please read this book to learn about the core concepts of software architecture: Len Bass, Paul Clements and Rick Kazman (2021). Software Architecture in Practice. Addison-Wesley.

After that, please read this book to learn how to document an architecture so that it can be used for communication, software construction and maintenance: Paul Clements et al. (2010). Documenting Software Architectures: Views and Beyond. Pearson.

After that, please read the books below to learn how to create an architecture systematically:

After that, please read this book to learn how to document an architecture for agile projects: Simon Brown (2019). Software Architecture for Developers – Volume 2. 2 – Visualise, Document and Explore Your Software Architecture. Leanpub.

Terminology Review:

  • Software Design.
  • Design Inputs and Outputs.
  • Design Notations.
  • User Interface Design.
  • Database Design.
  • Data Structure Design.
  • Algorithm Design.
  • Object-Oriented Design.
  • Architectures.
  • Architecture Design.
  • Architectural Styles.
  • Architectural Patterns.
  • Design Patterns.
  • Modeling vs. Designing.
  • Analysis Models vs. Design Models.
  • Design Phases.
  • Design Timing.
  • Design Methods.
  • “Good” Design: Modularity, Information Hiding, Data Encapsulation, Low Coupling, High Cohesion.
  • UML.
  • Use Case Diagrams.
  • Class Diagrams.
  • System Sequence Diagrams.
  • Sequence Diagrams.
  • Communication Diagrams.
  • Activity Diagrams.
  • State Diagrams.
  • Static Structure.
  • Dynamic Structure.
  • Design Principles.
  • SOLID Principles.
  • Cohesion.
  • Coupling.
  • Design Patterns.
  • Software Architecture.
  • Architecture Qualities.
  • Package Diagrams.
  • Component Diagrams.
  • Deployment Diagrams.
  • Architectural View.
  • Architectural Viewpoint.
  • The C4 Model.
  • Architecture Patterns.
  • Enterprise Patterns.
  • Row Data Gateway.
  • Active Record.
  • Data Mapper.
  • Table Data Gateway.
  • Table Module.
  • Transaction Script.
  • Domain Models.
  • Structured Design.

After finishing software design, please click on Topic 14 – Software Project Management to continue.

Topic 12 – Software Testing

Why do I need to learn about software testing?

Just image that a user installs your application, opens it and “BOOM!”, it crashes. Is it good? In the worst case scenario, your software operating an airplane suddenly hangs up while the airplane is still flying in the sky. Can you image what may happen? How do you ensure that your application solves your customer’s problems? How do you know if your software meets its users’ requirements? How do you give your users’ confidence about the correctness, reliability and security of your software? In order to answer these questions adequately you need to learn about software testing.

What can I do after finishing learning software testing?

You will know how to design and write a test case, how to prepare test data, how to test software structurally and correctly, how to automate testing tasks, how to report bugs.

I am a programmer. I am not a tester. Do I really need to know how to test software?

Many application capabilities must be tested by a programmer. Many software testing tasks can only be done by a programmer. Therefore you have to master software testing knowledge.

Alright! What should I do now?

First, please read the two books below to learn the core concepts of software testing:

After that, please read the two books below to learn how to automate software testing tasks:

Terminology Review:

  • Test Cases.
  • Test Coverage.
  • Test Reports.
  • Bug Tracking Systems.
  • Black Box Testing.
  • White Box Testing.
  • Performance Testing.
  • Acceptance Testing.
  • Inspection.
  • Automated Testing.
  • Test Automation.

After finishing software testing, please click on Topic 13 – Introduction to Software Design to continue.

 

Topic 11 – Software Construction

Why do I need to learn about software construction?

Knowing how to write code does not mean that you know how to create real-world software.

In real world projects, you will need to know how to manage your code, how to read the existing code, how to write code following standard styles, how to ensure that your code is working, how to automate your the process of building, testing and deploying your code, how to handle errors in your application, how to optimize your code for better speed, how to write secure code, how to avoid code duplication, how to create readable code, how to create code faster.

That’s why you need to learn about software construction.

What can I do after finishing learning software construction?

You will know how to create real world software with a team.

Hmm! Is it really useful?

If you doubt its usefulness then you can delay learning it until you are tasked to create a software system and you complete a half of it and are stuck there because when you add one more feature you will get tons of bugs due to the new code, or when you finish fixing 1 bug, you get 3 other bugs due to the code modification.

An other scenario is when it takes another person 2 weeks to read 1000 lines of the code that you wrote in order to fix a bug or to add a new feature because your code is unstructured.

Another scenario is when you are asked to improve some existing code for better performance or to refactor some code for clarity before adding a new feature but you do not know how to accomplish the task.

Alright! What should I do now?

First, please read this book to get familar with the core software construction activities: Steve McConnell (2004). Code Complete. Microsoft Press.

After that, please read this book to gain hands-on experience with using Git for managing source code versions: Jon Loeliger and Matthew McCullough (2012). Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development. O’Reilly Media.

Alternatively, you can read this book to gain hands-on experience with using Subversion for managing source code versions: Ben Collins-Sussman et al. (2011). Version Control with Subversion.

After that, please read this book to learn about continuous code integration: Paul M. Duvall et al. (2007). Continuous Integration Improving Software Quality and Reducing Risk. Addison-Wesley.

After that, please read this book to learn how to write readable, maintainable code: Robert C. Martin (2009). Clean Code: A Handbook of Agile Software Craftsmanship. Pearson Education.

After that, please read the two books below to learn how to write and run unit tests:

After that, After that, please read the two books below to learn how to convert existing unstructured, hard-to-test code into readable and maintainable code:

If you have to work with legacy code, please read the two books below to learn how to read and maintain it in a structured way:

After that, you will need to learn:

If you are not familiar with .NET, please find equivalent books to complete the tasks using other technologies or frameworks.

After that, please read the two books below to learn how to use Docker and Kubernetes or deploying and operating software:

You can learn the basic concepts of Kubernetes with the book, and then try exploring the tool using the official documentation if you encounter any issues with the example code in the book.

After that, please read this book to learn how to use Terraform to provision resources for deploying and operating software: Yevgeniy Brikman (2022). Terraform – Up and Running. O’Reilly Media.

Terminology Review:

  • Version Control.
  • Coding Standards.
  • Unit Tests.
  • Continuous Integration.
  • Refactoring.
  • Legacy Code.
  • Code Reading.
  • Data Providers.
  • Object/Relational Mapping (ORM).
  • Reporting Services.
  • Authentication.
  • Authorization.
  • OAuth 2.
  • Proof Key for Code Exchange (PKCE).
  • JSON Web Token (JWT).
  • OpenID Connect (OIDC).
  • The Backend for Frontend Pattern.
  • Performance.
  • Containers.
  • Container Images.
  • Container Image Layers.
  • Docker.
  • Docker CLI.
  • Dockerfiles.
  • Docker Volumes.
  • Bind Mounts.
  • Docker Compose.
  • Container Orchestrator.
  • Swarm.
  • Kubernetes.
  • Deployments.
  • ReplicaSets.
  • Pods.
  • Deployment Manifest.
  • ClusterIP Services.
  • LoadBalancer Services.
  • NodePort Services.
  • ExternalName Services.
  • headless Services.
  • Namespaces.

After finishing software construction, please click on Topic 12 – Software Testing to continue.

 

Topic 10 – Software Requirements

Why do I need to learn about software requirements?

Your software can only be successful if it helps people do their work better, faster, with lower cost. In order to achieve this objective, it must fulfill the need of various users. In order to fulfill users’ needs you need to be able to identify their context, problems and needs, then propose software solutions for their issues.

Your software solutions must be built based on its users’ requirements that help them solve their problems. So you need to be able to collect, document, manage and validate their requirements. Software requirements engineering will provide you knowledge for completing these tasks.

Do not waste your time to create software that NO ONE will use. Your software will only become useful if its requirements are correctly engineered.

What can I do after finishing learning software requirements engineering?

You will know how to elicit, document, manage and validate software requirements so that they can be used for creating your software.

Hmm! Is it really useful?

If you still have a doubt about its usefulness then you can delay learning about software requirements until you are tasked to create a software system but you do not know where to begin or what are the inputs for your coding.

Another scenario that may suggest that you should come back to this topic is when you create a software system but unfortunately you find that no one wants to use it.

Alright! What should I do now?

First, please read this book to learn how to develop enterprise software requirements step by step: Suzanne Robertson and James Robertson (2012). Mastering the Requirements Process. Addison Wesley Professional.

After that, please read this book to learn about techniques for engineering software requirements: Karl Wiegers and Joy Beatty (2013). Software Requirements. Microsoft Press.

After that, please read this book to learn how to use models for representing software requirements: Joy Beatty and Anthony Chen (2012). Visual Models for Software Requirements. Microsoft Press.

After that, please read this book to learn how to write use cases effectively: Alistair Cockburn (2001). Writing Effective Use Cases. Addison-Wesley.

After that, please review this standard so that you could create a quality software requirements specification for projects require high formal specification: ISO/IEC/IEEE 29148:2011(E).

After that, please read this book to learn how to use user stories for documenting and communicating requirements: Mike Cohn (2004). User Stories Applied: For Agile Software Development. Addison-Wesley Professional.

After that, please read this book to learn how to discover the real problems that need to be solved: Jeff Patton and Peter Economy (2014). User Story Mapping. O’Reilly Media.

After that, please read this book to learn how to manage and communicate requirements across large teams: Dean Leffingwell (2011). Agile Software Requirements. Lean Requirements Practices for Teams, Programs, and the Enterprise. Addison-Wesley Professional.

After that, please read this book to review the core concepts and gain insightful advice when facing challenges in discovering requirements: Karl Wiegers and Candase Hokanson (2023). Software Requirements Essentials. Addison-Wesley Professional.

After that, please read this book to learn how to manage requirements for large government projects: George Koelsch (2023). Hardware and Software Projects Troubleshooting – How Effective Requirements Writing Can Save the Day. Apress.

After that, please read this book if you want to obtain a PMI-PBA certificate: Project Management Institute (2015). Business Analysis for Practitioners – A Practice Guide. Project Management Institute.

Terminology Review:

  • Elicitation Techniques: Interviews, Questionnaires, Group Meetings, Personas, Brainstorming, Document Analysis, Apprenticing, Observations, User Interface Analysis, System Interface Analysis, Reverse Engineering.
  • Business Requirements.
  • Stakeholders.
  • Sponsors.
  • Customers.
  • Users.
  • Business Analysts.
  • Terminologies, Terms.
  • Problems.
  • Business Goals.
  • Evaluator Pitch.
  • Work Context Diagrams.
  • Executive Summary.
  • User Requirements.
  • Glossary.
  • Business Rules.
  • Business Use Cases.
  • Scenarios, Business Workflows, Business Processes.
  • Storyboards.
  • Process Flows.
  • Activity Diagrams.
  • Swimlane Diagrams.
  • The Brown Cow Model.
  • Business Rules.
  • Domain Models.
  • Business Data.
  • Entity Relationship Diagrams.
  • Data Flow Diagrams.
  • State Models.
  • Features.
  • Feature Model.
  • Feature Tree.
  • Project Vision.
  • Software Requirements.
  • Functional Requirements.
  • Use Cases.
  • Non-Functional Requirements.
  • Software Requirements Specification.
  • User Stories.
  • Business Values.
  • Story Map.
  • Product Backlog.
  • User-Interface Prototypes.
  • User Interface Flow Diagrams.
  • ISO/IEC/IEEE 29148:2011(E).

After finishing software requirements, please click on Topic 11 – Software Construction to continue.

 

 

Topic 8 – Introduction to Web Application Development

Why do I need to learn about web application development?

Desktop applications are very powerful and convenient but their development, deployment and maintenance are daunting.

The reason is that the platform dependency makes it very expensive to create a desktop application working on different versions of different operating systems, such as Windows, Linux and Mac OSX.

Deployment and updates of desktop application typically require high privileges access to a computer machine, causing a problem for companies requiring high security.

Fortunately, you can overcome these limitations by creating a web application running on a browser. To create a web application you need to learn about web application development.

What can I do after finishing learning web application development?

You will be able to create web applications like The BBC News, The WordPress Blog or The White House Website.

This is exactly what I want to learn! What should I do now?

Web application development requires a lot of reading. You have to master networking concepts, HTML, CSS, JavaScript, a programming language and a database management system for web.

First, please read the two books below to get familiar with web application development concepts, and gain hands-on experience with HTML and CSS.

After that,  please read the two books below to learn in-depth about HTML and CSS.

JavaScript is the language for web development because it is implemented in most of the web browsers. Strong knowledge of JavaScript will ease your web development learning very much. Please read the books below to learn about JavaScript.

Single page application is the default front-end choice for most of new web development projects.
Please read the books below to learn how to create a single page application (SPA).

After that, please read the books below to learn how to create micro-frontends.

After that you will have 4 main options. You can choose one of them. We STRONGLY recommend that you choose only ONE option.

You should NOT learn all of them at the beginning. You could save your time by digging into only one option. After mastering the selected technology, you will realize that all of them are very similar in the sense of use.

One note is that although their concepts are similar to one another but it still takes us much time to learn how to apply an approach to real world web application.

When developing a real world web application, you often use only one or two of these 4 approaches. If you cannot make your own selection then we recommend you
– a combination of the first and second option, or
– a combination of the first and third option, or
– a combination of the first and fourth option.

The first option is PHP world.  Please read one of the following books to learn how to create web applications using PHP:

After that, After that, if your projects use WordPress, you may read this book: Brad Williams et al. (2015). Professional WordPress: Design and Development. Wrox.

The second option is ASP.NET. Please read the two books below to learn how to create web applications using ASP.NET:

A complementary part for this option is ASP.NET Web Forms that is a technology that you need to master if you are maintaining a legacy project. Please read this book to learn about ASP.NET Web Forms: Imar Spaanjaars (2014). Beginning ASP.NET 4.5.1 in C# and VB. Wrox.

The third option is Java world. If you are not familiar with Java language then please read the two books below first:

After that, please read one of the following books to learn how to create web applications using Java.

After that, please read this book to learn how to speed up Java web application development using Spring Boot framework: Mark Heckler (2021). Spring Boot – Up and Running – Building Cloud Native Java and Kotlin Applications. O’Reilly Media.

The 4th option is Node.js world. Please read the two books below to learn how to create web applications using Node.js:

There are also several other options that you may consider if you are required to learn them for maintening a project.
These options include:
Ruby on Rails, please read this book: Michael Hartl (2020). The Ruby on Rails Tutorial. Addison-Wesley Professional,
Flask, please read this book: Miguel Grinberg (2018). Flask Web Development: Developing Web Applications with Python. O’Reilly Media,
Django
.

IIf you need to convert a web application from one platform to another or create a web application framework, please read the two books below to learn about the architecture of web applications:

It seems that there are many topics to learn. I am completely new to web programming. What essential knowledge should I focus on to reduce my learning time?

You could focus on these topics first:

  • How to install necessary tools and create a Hello World application.
  • What is the physical structure of a project and how to build it using both IDE and command line?
  • How to deploy an application to a cloud virtual machine and access it via an URL.
  • How to create UIs, transfer data between UIs, compose new UI using existing UIs using frameworks and libraries.
  • How to use built-in or 3rd party libraries to interact with external databases and external services.
  • How to integrate with other web services using standards.

Terminology Review:

  • Networking
  • HTTP
  • HTML
  • Cascading Style Sheets (CSS)
  • CGI
  • Web Applications
  • Multiple Page Application
  • Single-Page Application (SPA)
  • RESTful APIs
  • gRPC APIs
  • GraphQL APIs
  • XML
  • SOAP APIs
  • Web Application Frameworks
  • Portal Frameworks
  • Content Management System (CMS)
  • Payment Gateways

After finishing web application development, please click on Topic 9 – Introduction to Mobile Application Development to continue.