knowledge-kitchen / course-notes
+ - 0:00:00
Notes for current slide
Notes for next slide

Course Intro

Software Engineering

1 / 31

Welcome

3 / 31

Welcome

Course description

We learn an engineering approach to the problem of software development.

4 / 31

Welcome

Course description

We learn an engineering approach to the problem of software development.

This course is as much about tools and best-practices as it is about finished products.

4 / 31

Welcome

Course description

We learn an engineering approach to the problem of software development.

This course is as much about tools and best-practices as it is about finished products.

Students work in teams to produce several software products.

4 / 31

Welcome

Me

Foo Barstein

  • discord: @foo.barstein
5 / 31

Who you are

6 / 31

Who you are

Profile

Who are you, really?

7 / 31

Who you are

Profile

Who are you, really?

  • trying to use up college credits
7 / 31

Who you are

Profile

Who are you, really?

  • trying to use up college credits

  • doing what your parents and advisors tell you to do

7 / 31

Who you are

Profile

Who are you, really?

  • trying to use up college credits

  • doing what your parents and advisors tell you to do

  • interested in becoming a software developer

7 / 31

Who you are

Profile

Who are you, really?

  • trying to use up college credits

  • doing what your parents and advisors tell you to do

  • interested in becoming a software developer

  • maybe already are a software developer

7 / 31

Who you are

Profile

Who are you, really?

  • trying to use up college credits

  • doing what your parents and advisors tell you to do

  • interested in becoming a software developer

  • maybe already are a software developer

  • hoping to find a decent-paying job

7 / 31

Who you are

Profile

Who are you, really?

  • trying to use up college credits

  • doing what your parents and advisors tell you to do

  • interested in becoming a software developer

  • maybe already are a software developer

  • hoping to find a decent-paying job

  • already dressing up like Mark Zuckerberg

7 / 31

Who you are

Profile

Who are you, really?

  • trying to use up college credits

  • doing what your parents and advisors tell you to do

  • interested in becoming a software developer

  • maybe already are a software developer

  • hoping to find a decent-paying job

  • already dressing up like Mark Zuckerberg

  • just having fun

7 / 31

Who you are

Profile

Who are you, really?

  • trying to use up college credits

  • doing what your parents and advisors tell you to do

  • interested in becoming a software developer

  • maybe already are a software developer

  • hoping to find a decent-paying job

  • already dressing up like Mark Zuckerberg

  • just having fun

  • here for some other reason.... it doesn't matter!

7 / 31

Who you are

Profile

Who are you, really?

  • trying to use up college credits

  • doing what your parents and advisors tell you to do

  • interested in becoming a software developer

  • maybe already are a software developer

  • hoping to find a decent-paying job

  • already dressing up like Mark Zuckerberg

  • just having fun

  • here for some other reason.... it doesn't matter!

Welcome!

7 / 31

Who you are

What you know

8 / 31

Who you are

What you know

  • computer programming in a reasonably modern language
8 / 31

Who you are

What you know

  • computer programming in a reasonably modern language

  • how to name a file and save it to your hard drive and find it later

8 / 31

Who you are

What you know

8 / 31

Who you are

What you probably don't know

9 / 31

Who you are

What you probably don't know

  • Git
9 / 31

Who you are

What you probably don't know

  • Git

  • Web application development

9 / 31

Who you are

What you probably don't know

  • Git

  • Web application development

  • How to create software from scratch

9 / 31

Who you are

What you probably don't know

  • Git

  • Web application development

  • How to create software from scratch

  • How to work collaboratively and harmoniously in a team over a long time

9 / 31

Who you are

What you probably don't know

  • Git

  • Web application development

  • How to create software from scratch

  • How to work collaboratively and harmoniously in a team over a long time

  • What it's like to have your work continually monitored by a boss

9 / 31

Who you are

What you probably don't know

  • Git

  • Web application development

  • How to create software from scratch

  • How to work collaboratively and harmoniously in a team over a long time

  • What it's like to have your work continually monitored by a boss

  • How to automate away your own job

9 / 31

Topics

10 / 31

Topics

Software development process models

We will learn about the difficulties of building software and a few different approaches to the problem:

11 / 31

Topics

Software development process models

We will learn about the difficulties of building software and a few different approaches to the problem:

  • The advantages and disadvantages of "Big Design Up Front" (BDUP)
11 / 31

Topics

Software development process models

We will learn about the difficulties of building software and a few different approaches to the problem:

  • The advantages and disadvantages of "Big Design Up Front" (BDUP)

  • The so-called "agile" or iterative approach and where it fails

11 / 31

Topics

Planning

We will write specifications and build clickable prototypes of software applications that meet the needs of their users. This involves:

12 / 31

Topics

Planning

We will write specifications and build clickable prototypes of software applications that meet the needs of their users. This involves:

  • requirements gathering
12 / 31

Topics

Planning

We will write specifications and build clickable prototypes of software applications that meet the needs of their users. This involves:

  • requirements gathering

  • user experience design

12 / 31

Topics

Planning

We will write specifications and build clickable prototypes of software applications that meet the needs of their users. This involves:

  • requirements gathering

  • user experience design

  • rapid prototyping

12 / 31

Topics

Web application development

We will sojourn through full-stack development of web application developments, using a Python-based technology stack:

13 / 31

Topics

Web application development

We will sojourn through full-stack development of web application developments, using a Python-based technology stack:

  • MongoDB as the database.
13 / 31

Topics

Web application development

We will sojourn through full-stack development of web application developments, using a Python-based technology stack:

  • MongoDB as the database.

  • Flask for the back-end.

13 / 31

Topics

Web application development

We will sojourn through full-stack development of web application developments, using a Python-based technology stack:

  • MongoDB as the database.

  • Flask for the back-end.

  • raw HTML & CSS for the front-end.

13 / 31

Topics

Continuous integration

We will learn to write tests that validate our code behaves as expected and automate the boring job of repeatedly running those tests repeatedly with every code change.

14 / 31

Topics

Continuous deployment

We will learn to launch software on the Internet and how to automate the boring job of re-launching it with every code change.

15 / 31

Topics

Skills we will develop

You cannot do contemporary work without some fundamental skills.

16 / 31

Topics

Skills we will develop

You cannot do contemporary work without some fundamental skills.

  • Basic UNIX/Linux commands
16 / 31

Topics

Skills we will develop

You cannot do contemporary work without some fundamental skills.

  • Basic UNIX/Linux commands

  • Version control (i.e. git and GitHub)

16 / 31

Topics

Skills we will develop

You cannot do contemporary work without some fundamental skills.

  • Basic UNIX/Linux commands

  • Version control (i.e. git and GitHub)

  • Teamwork and collaboration

16 / 31

Structure

17 / 31

Structure

Overview

This course involves each of the following:

18 / 31

Structure

Overview

This course involves each of the following:

  • Lectures
18 / 31

Structure

Overview

This course involves each of the following:

  • Lectures

  • Quizzes

18 / 31

Structure

Overview

This course involves each of the following:

  • Lectures

  • Quizzes

  • Team projects

18 / 31

Structure

Grading

Grading is broken down as follows:

19 / 31

Structure

Grading

Grading is broken down as follows:

  • 25%: Quizzes
19 / 31

Structure

Grading

Grading is broken down as follows:

  • 25%: Quizzes

  • 75%: Team projects

19 / 31

Structure

Texts

No single textbook is necessary nor sufficient for this course. We will refer to various online resources where relevant.

20 / 31

Structure

Texts

No single textbook is necessary nor sufficient for this course. We will refer to various online resources where relevant.

  • Our technology stack is very popular, with plenty of good documentation and tutorials.
20 / 31

Software

21 / 31

Software

Install these now

You will need a variety of software tools. Here are a few to set up right now.

22 / 31

Software

Install these now

You will need a variety of software tools. Here are a few to set up right now.

22 / 31

Software

Install these now

You will need a variety of software tools. Here are a few to set up right now.

22 / 31

Software

Install these now

You will need a variety of software tools. Here are a few to set up right now.

22 / 31

Software

Install these now

You will need a variety of software tools. Here are a few to set up right now.

22 / 31

Software

Install these now

You will need a variety of software tools. Here are a few to set up right now.

22 / 31

Software

Setting Up Bash within Visual Studio Code

WINDOWS USERS - you should use Git Bash or Windows Subsystem for Linux (WSL) rather than Windows' default Powershell or other command line shell program. To set Git Bash or WSL as the default terminal shell within Visual Studio Code, you can try to follow the instructions in the second answer here by Mahade Walid and edited by FruityOatyBar (ignore the first answer, which is outdated).

23 / 31

What Others Say

24 / 31

What Others Say

The Good

A sample of comments left by former students:

24 / 31

What Others Say

The Good

A sample of comments left by former students:

The course was a required course and was very demanding in terms of challenge but it was the appropriate amount and I learned a lot of valuable things. It was a great class and very helpful.

24 / 31

What Others Say

The Good

A sample of comments left by former students:

The course was a required course and was very demanding in terms of challenge but it was the appropriate amount and I learned a lot of valuable things. It was a great class and very helpful.

The professor was great. Very informative and provided all the necessary channels and resources needed to learn.

24 / 31

What Others Say

The Good

A sample of comments left by former students:

The course was a required course and was very demanding in terms of challenge but it was the appropriate amount and I learned a lot of valuable things. It was a great class and very helpful.

The professor was great. Very informative and provided all the necessary channels and resources needed to learn.

Projects. Hands on. Beats any studying for exams or doing theory based things. It almost felt like an internship of an internship and was very enjoyable while learning more than you realize.

24 / 31

What Others Say

The Good

A sample of comments left by former students:

The course was a required course and was very demanding in terms of challenge but it was the appropriate amount and I learned a lot of valuable things. It was a great class and very helpful.

The professor was great. Very informative and provided all the necessary channels and resources needed to learn.

Projects. Hands on. Beats any studying for exams or doing theory based things. It almost felt like an internship of an internship and was very enjoyable while learning more than you realize.

The majority of the course is based on working in a team (which is expected because of the nature of what Software Engineering looks like as a job), and this was fantastic.

24 / 31

What Others Say

The Bad

A sample of comments left by former students:

25 / 31

What Others Say

The Bad

A sample of comments left by former students:

Quizzes should be rewritten to reduce ambiguity and interpretation. This is because certain questions cannot fully be chalked up to "misunderstanding of the topic" when the question is poorly written for multiple interpretations which would change the outcome of the quiz.

25 / 31

What Others Say

The Bad

A sample of comments left by former students:

Quizzes should be rewritten to reduce ambiguity and interpretation. This is because certain questions cannot fully be chalked up to "misunderstanding of the topic" when the question is poorly written for multiple interpretations which would change the outcome of the quiz.

The quick pace sometimes means that students have barely felt like the last project was completed and start working on assignments later.

25 / 31

What Others Say

The Bad

A sample of comments left by former students:

Quizzes should be rewritten to reduce ambiguity and interpretation. This is because certain questions cannot fully be chalked up to "misunderstanding of the topic" when the question is poorly written for multiple interpretations which would change the outcome of the quiz.

The quick pace sometimes means that students have barely felt like the last project was completed and start working on assignments later.

I believe there shouldn't be any strict restriction on using a specific technology stack as this is a "software development" course, students should be allowed to use any technology stack they are comfortable with, as long as it provides acceptable performance and solves the problem.

25 / 31

What Others Say

The Ugly

26 / 31

What Others Say

The Ugly

Structure was pretty strong in the first half of the semester. Got a bit lost on the structure in the second half.

26 / 31

What Others Say

The Ugly

Structure was pretty strong in the first half of the semester. Got a bit lost on the structure in the second half.

I would have liked more direction on the later projects, and in working with groups, there always is a dynamic of some people doing more work than others, which I definitely experienced in half of the projects.

26 / 31

What Others Say

The Ugly

Structure was pretty strong in the first half of the semester. Got a bit lost on the structure in the second half.

I would have liked more direction on the later projects, and in working with groups, there always is a dynamic of some people doing more work than others, which I definitely experienced in half of the projects.

The 4th project practically required an extension as it was incredibly time–consuming.

26 / 31

What Others Say

The Ugly

Structure was pretty strong in the first half of the semester. Got a bit lost on the structure in the second half.

I would have liked more direction on the later projects, and in working with groups, there always is a dynamic of some people doing more work than others, which I definitely experienced in half of the projects.

The 4th project practically required an extension as it was incredibly time–consuming.

There are sometimes people in your group that won't uphold their weight which in my opinion is kind of unavoidable.

26 / 31

What Others Say

Time commitment

Time commitment

27 / 31

What Others Say

Openness

Openness

28 / 31

What Others Say

Challenge

Challenge

29 / 31

What Others Say

Knowledge increase

Knowledge increase

30 / 31

Conclusions

Thank you. Bye.

31 / 31
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow