ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

48 results

Jacob Itegboje
Python for Beginners: How to use a List?

Does your Python code feel brittle? Are you tired of chasing down IndexError or ValueError bugs in your list manipulations?

1:00:37
Python for Beginners: How to use a List?

41 views

4 months ago

Puget Sound Programming Python - PuPPy
Ivan Schneider - TDD in the AI Era: When Goats Meet Robots

AI coding assistants are everywhere, but how do we ensure the code they generate actually works? Drawing inspiration from the ...

23:52
Ivan Schneider - TDD in the AI Era: When Goats Meet Robots

27 views

2 months ago

Jacob Itegboje
Python for Beginners: What Truth Table? (tests only)

If you've been following the truth table series, you know I've been tackling logical operations one by one. In this final video, I'm ...

33:21
Python for Beginners: What Truth Table? (tests only)

43 views

5 months ago

CodeRefinery
6.1 Software Testing - CodeRefinery 2025 Mar

Software testing is a fundamental part of modern software development, and especially important for science since results should ...

1:54:26
6.1 Software Testing - CodeRefinery 2025 Mar

49 views

8 months ago

Jacob Itegboje
Python for Beginners: What is a Property?

Are you struggling with the AttributeError in your Python projects? In this video, I'll walk you through how to not only fix this ...

18:03
Python for Beginners: What is a Property?

45 views

10 months ago

Jacob Itegboje
Python for Beginners: Is it True or False?

Have you ever been stuck trying to debug a stubborn AssertionError in your Python projects? It's a common frustration that can ...

20:50
Python for Beginners: Is it True or False?

33 views

11 months ago

Jacob Itegboje
Python for Beginners: Why do I get TypeError?

Have you ever gotten stuck debugging a TypeError and wished you had a bulletproof strategy to solve it? I'll show you exactly ...

17:05
Python for Beginners: Why do I get TypeError?

40 views

10 months ago

Jacob Itegboje
Python for Beginners: What is True or False?

I'm tackling a problem that has tripped up every Python developer at some point: your if statements are lying to you. Welcome to ...

19:40
Python for Beginners: What is True or False?

40 views

9 months ago

The Debug Zone
How to Use Python Test Fixtures to Run a Single Test Effectively

In this video, we delve into the world of Python testing, focusing specifically on the powerful concept of test fixtures. You'll learn ...

1:37
How to Use Python Test Fixtures to Run a Single Test Effectively

2 views

3 months ago

The Debug Zone
How to Mock os.listdir in Python for Effective Unit Testing

In this video, we delve into the importance of unit testing in Python and how mocking can enhance your testing strategies.

1:34
How to Mock os.listdir in Python for Effective Unit Testing

5 views

8 months ago

Richèl J.C. Bilderbeek
Programming Formalisms, session TDD, exercise 1: `is_zero`

This video shows how to go through exercise 1: `is_zero` of the TDD session of the Programming Formalisms course, following ...

11:48
Programming Formalisms, session TDD, exercise 1: `is_zero`

34 views

10 months ago

Andrew Tropin
Project Refactoring #programming #coding #python #javascript

Do I really program in Python or JavaScript?

0:35
Project Refactoring #programming #coding #python #javascript

718 views

9 months ago

EuroPython Conference
Fixtures meets parameters: Writing efficient, elegant and reusable tests — Anupama Tiruvaipati

EuroPython 2025 — Terrace 2A on 2025-07-17] *Fixtures meets parameters: Writing efficient, elegant and reusable tests by ...

23:50
Fixtures meets parameters: Writing efficient, elegant and reusable tests — Anupama Tiruvaipati

152 views

1 month ago

The Debug Zone
Python Mocking: How to Wrap Methods Without Instantiating Objects

In this video, we delve into the powerful world of Python mocking, a crucial technique for testing and development. Learn how to ...

4:01
Python Mocking: How to Wrap Methods Without Instantiating Objects

12 views

6 months ago

EuroPython Conference
Build and Deploy AI Agents in VS Code — Sharon Xu

EuroPython 2025 — North Hall on 2025-07-16] *Build and Deploy AI Agents in VS Code by Sharon Xu* ...

24:10
Build and Deploy AI Agents in VS Code — Sharon Xu

165 views

2 months ago

The Debug Zone
How to Write Effective Python Unit Tests for Apache Airflow DAGs

In this video, we delve into the essential practice of writing effective unit tests for Apache Airflow Directed Acyclic Graphs (DAGs).

1:32
How to Write Effective Python Unit Tests for Apache Airflow DAGs

6 views

2 months ago

The Debug Zone
Using Pytest to Verify Object Creation: A Step-by-Step Guide

In this video, we dive into the world of testing in Python using Pytest, focusing specifically on verifying object creation. Whether ...

3:53
Using Pytest to Verify Object Creation: A Step-by-Step Guide

2 views

5 months ago

The Debug Zone
How to Mock Method Return Values in Unit Testing: A Step-by-Step Guide

In this video, we dive into the essential practice of mocking method return values in unit testing. Whether you're a beginner or ...

1:31
How to Mock Method Return Values in Unit Testing: A Step-by-Step Guide

3 views

6 months ago

Jacob Itegboje
Python for Beginners: What is Binary Logic? (Part 2)

This is Part 2 of the binary operations series (https://youtu.be/Q_jhE204MoE). I'll walk you through my test-driven development ...

18:19
Python for Beginners: What is Binary Logic? (Part 2)

48 views

7 months ago

The Debug Zone
How to Properly Mock Celery Tasks in Python for Effective Testing

In this video, we dive into the world of testing in Python, focusing specifically on how to effectively mock Celery tasks.

1:31
How to Properly Mock Celery Tasks in Python for Effective Testing

0 views

9 days ago

Jacob Itegboje
Python for Beginners: What is Binary Logic? (Part 1)

If you've ever had to look at something two inputs and wondered how to turn that logic into working Python code, this is the video ...

21:03
Python for Beginners: What is Binary Logic? (Part 1)

70 views

7 months ago

Jacob Itegboje
Python for Beginners: What is Binary Logic? (Part 4)

If you've been following the Truth Table series, you know I've been tackling logical operations. This time, I am going into some of ...

20:08
Python for Beginners: What is Binary Logic? (Part 4)

31 views

6 months ago

The Debug Zone
How to Mock Property Calls Returning MagicMock in Python Testing

In this video, we dive into the world of Python testing, focusing on the powerful capabilities of the `unittest.mock` library.

4:21
How to Mock Property Calls Returning MagicMock in Python Testing

26 views

8 months ago

The Debug Zone
How to Implement TestNG Features in Python Selenium for Multiple Unit Tests

In this video, we dive into the powerful combination of TestNG features and Python Selenium to enhance your unit testing ...

2:41
How to Implement TestNG Features in Python Selenium for Multiple Unit Tests

0 views

2 months ago

The Debug Zone
How to Mock Singleton Class Functions in Python 3 Unit Testing

In this video, we delve into the intricacies of unit testing in Python 3, focusing specifically on how to effectively mock singleton ...

1:37
How to Mock Singleton Class Functions in Python 3 Unit Testing

8 views

7 months ago