Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Software Development From A to Z - OOP, UML, Agile, Python, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:02:21
    Introduction
  2. Урок 2. 00:10:18
    The Biggest Misconceptions About Becoming a Developer
  3. Урок 3. 00:06:10
    Common Myths About Software Development
  4. Урок 4. 00:02:51
    Activities Involved in Software Development
  5. Урок 5. 00:01:32
    Software Development Methodologies
  6. Урок 6. 00:04:08
    The Waterfall Model
  7. Урок 7. 00:04:20
    The Waterfall Model - Pros and Cons
  8. Урок 8. 00:04:25
    Agile Software Development
  9. Урок 9. 00:03:17
    Agile Model Pros and Cons
  10. Урок 10. 00:01:50
    Why Waterfall isn't Dead and Agile isn't the only Answer?
  11. Урок 11. 00:06:56
    Agile Frameworks - Scrum
  12. Урок 12. 00:01:14
    The Scrum Sprint Cycle - Overview
  13. Урок 13. 00:03:27
    Sprint Planning
  14. Урок 14. 00:00:56
    The Daily Scrum
  15. Урок 15. 00:03:07
    The Sprint Review and the Retrospective Meeting
  16. Урок 16. 00:02:54
    The Kanban Agile System
  17. Урок 17. 00:01:31
    Kanban Boards
  18. Урок 18. 00:01:30
    Programming Foundations - Overview
  19. Урок 19. 00:02:58
    What's Coding?
  20. Урок 20. 00:02:23
    Programming Languages
  21. Урок 21. 00:02:05
    Why Python?
  22. Урок 22. 00:02:17
    Setting Up Python on Your Computer
  23. Урок 23. 00:02:38
    The Python Command Line
  24. Урок 24. 00:02:33
    Installing and Configuring Visual Studio Code
  25. Урок 25. 00:04:36
    Woo-hoo! Your First Python Program!
  26. Урок 26. 00:03:15
    Asking for User Input
  27. Урок 27. 00:02:37
    Using Comments in Code
  28. Урок 28. 00:05:33
    Declaring Variables
  29. Урок 29. 00:03:24
    Working with Numbers
  30. Урок 30. 00:04:50
    Using Basic Arithmetic Operations
  31. Урок 31. 00:06:42
    Working with Strings
  32. Урок 32. 00:02:32
    Introducing Conditional Code
  33. Урок 33. 00:02:01
    Code Blocks
  34. Урок 34. 00:05:06
    Comparison Operators
  35. Урок 35. 00:02:54
    Going Deeper: Else-If
  36. Урок 36. 00:01:02
    Nested Conditionals
  37. Урок 37. 00:05:10
    Using Logical Operators
  38. Урок 38. 00:03:14
    Why Do We Need Functions?
  39. Урок 39. 00:03:34
    Writing Functions
  40. Урок 40. 00:02:41
    Calling a Function
  41. Урок 41. 00:02:58
    Defining Function Parameter and Return Type
  42. Урок 42. 00:04:30
    Understanding the Scope of Variables
  43. Урок 43. 00:02:06
    Demo: Implementing an Area Calculator
  44. Урок 44. 00:05:07
    Testing our Application
  45. Урок 45. 00:04:34
    Enhancing the Area Calculator App
  46. Урок 46. 00:01:00
    Section Challenge: Calculate Rhombus Area
  47. Урок 47. 00:02:20
    Solution: Calculate Rhombus Area
  48. Урок 48. 00:05:12
    What's Iteration in Programming?
  49. Урок 49. 00:03:47
    Introducing the "while" Statement
  50. Урок 50. 00:04:36
    Avoiding Infinite Loops
  51. Урок 51. 00:03:10
    Writing "for-in" Loops
  52. Урок 52. 00:03:36
    Deeper into Loop Control Statements
  53. Урок 53. 00:03:23
    Rewriting the Login App Using the for Loop
  54. Урок 54. 00:01:49
    Storing Multiple Values
  55. Урок 55. 00:03:42
    Creating Lists
  56. Урок 56. 00:04:13
    Accessing List Items
  57. Урок 57. 00:06:05
    Modifying the Contents of a List
  58. Урок 58. 00:02:53
    Working with Tuples
  59. Урок 59. 00:02:55
    Storing Key-Value Pairs: the Dictionary
  60. Урок 60. 00:03:16
    Modifying the Dictionary
  61. Урок 61. 00:04:21
    Iterating through Containers
  62. Урок 62. 00:02:45
    Iterating through Containers Part 2
  63. Урок 63. 00:05:18
    Demo: Extract Duplicates
  64. Урок 64. 00:03:16
    Getting Ready for Errors
  65. Урок 65. 00:03:38
    The Buggy Equation Solver
  66. Урок 66. 00:04:01
    Handling Errors
  67. Урок 67. 00:02:54
    Raising Exceptions
  68. Урок 68. 00:01:30
    Cleaning Up: the finally Keyword
  69. Урок 69. 00:02:12
    Working with Files
  70. Урок 70. 00:05:51
    Writing Text to a File
  71. Урок 71. 00:03:38
    Reading Text from a File
  72. Урок 72. 00:03:43
    What's Object Orientation?
  73. Урок 73. 00:03:39
    Understanding Objects
  74. Урок 74. 00:05:44
    Introducing the Class
  75. Урок 75. 00:01:25
    Abstraction
  76. Урок 76. 00:04:03
    Encapsulation and Data Hiding
  77. Урок 77. 00:03:57
    Inheritance
  78. Урок 78. 00:02:12
    Method Overriding
  79. Урок 79. 00:01:34
    Polymorphism
  80. Урок 80. 00:01:36
    The Importance of Algorithms
  81. Урок 81. 00:04:31
    The Problem with Naive Implementations
  82. Урок 82. 00:03:31
    Applying a 2000-year-old Formula
  83. Урок 83. 00:03:11
    Introduction, UML Diagram Types
  84. Урок 84. 00:02:23
    Class Diagrams
  85. Урок 85. 00:03:59
    UML Relationships
  86. Урок 86. 00:04:33
    UML Sequence Diagrams
  87. Урок 87. 00:02:51
    Activity Diagrams
  88. Урок 88. 00:01:38
    Statechart Diagrams
  89. Урок 89. 00:01:26
    Overview
  90. Урок 90. 00:02:38
    How Do Websites Work?
  91. Урок 91. 00:03:13
    What's HTML?
  92. Урок 92. 00:02:46
    Use CSS to Style Webpages
  93. Урок 93. 00:04:34
    JavaScript Basics
  94. Урок 94. 00:03:17
    Implementing a Color Theme Picker in JavaScript
  95. Урок 95. 00:04:31
    JavaScript Functions and Event Handlers - Finishing the Color Theme Picker
  96. Урок 96. 00:02:26
    Fixing Software Bugs
  97. Урок 97. 00:06:01
    Free Software for Agile Project Management
  98. Урок 98. 00:04:13
    Final Thoughts & Hints