blast off mission control
  • Helpful Links
  • Video Recordings
    • Programming Fundamentals
      • Week 1
      Web Fundamentals
      • Week 2
      • Week 3
      SQL Fundamentals
      • Week 4
      Intro to React
      • Week 5
      • Week 6
      .NET Web Development
      • Week 7
      • Week 8
      • Week 9
      • Week 10
      • Week 11
      • Week 12
      Intro to Data Engineering
      • Week 13
      • Week 14
Mission Control

WOS Can Code: Mission Control
Built by Narciso Lobo of Ciso Codes

Videos
Programming FundamentalsWeb FundamentalsSQL FundamentalsIntro to React.NET Web DevelopmentIntro to Data Engineering
Resources
Helpful Links
  • Helpful Links
  • Videos

    • Programming Fundamentals
      • Week 1
      Web Fundamentals
      • Week 2
      • Week 3
      SQL Fundamentals
      • Week 4
      Intro to React
      • Week 5
      • Week 6
      .NET Web Development
      • Week 7
      • Week 8
      • Week 9
      • Week 10
      • Week 11
      • Week 12
      Intro to Data Engineering
      • Week 13
      • Week 14

.NET Web Development, Week 7

Monday

Singly Linked Lists - 1

Singly Linked Lists - 1

Meeting Purpose

Review and implement methods for a singly linked list class in a coding session.

Key Takeaways

  • Successfully implemented and tested methods: insertAtFront(), removeHead(), and average()
  • Discussed potential pitfalls in method implementation, such as pointer management in insertAtFront()
  • Emphasized the importance of handling edge cases (e.g., empty lists) in method design

week 7, day 1

August 18 at 2025 at 2:00 PM

Watch Video
Intro to .NET

Intro to .NET

Meeting Purpose

Outline the upcoming .NET module and introduce C# basics to students.

Key Takeaways

  • 6-week .NET module covering C# fundamentals, MVC, LINQ, API development, and full-stack applications
  • C# is a compiled language using Common Intermediate Language (CIL) and Common Language Runtime (CLR)
  • VS Code with C# Dev Kit provides powerful tools for .NET development
  • Emphasis on reading documentation and problem-solving independently

week 7, day 1

August 18 at 2025 at 3:00 PM

Watch Video

Tuesday

Singly Linked Lists 2

Singly Linked Lists 2

Meeting Purpose

Review and discuss three algorithms for singly linked lists: remove back, contains, and recursive contains.

Key Takeaways

  • Three algorithms covered: remove back (return removed data), contains (iterative), and contains (recursive)
  • Students implemented and demonstrated each algorithm, with debugging and optimization discussions
  • Emphasis on understanding different traversal approaches: stopping at last node vs. jumping off edge

week 7, day 2

August 19 at 2025 at 2:00 PM

Watch Video
Lists, Methods, and the Random Class

Lists, Methods, and the Random Class

Meeting Purpose

To cover lists, methods, and the Random class in C# for a coding course.

Key Takeaways

  • Lists in C# are flexible, generic collections that can hold any data type
  • Methods in C# are blocks of code that perform specific tasks, with static methods belonging to the class itself
  • The Random class provides easy-to-use methods for generating random numbers in C#

week 7, day 2

August 19 at 2025 at 3:00 PM

Watch Video