Dr. Servos
Dr. Servos
  • 118
  • 63 040
CS2212: GitLab Wiki Tutoiral
Resources & Links:
* GitLab Documentation on Wikis: docs.gitlab.com/ee/user/project/wiki/
* GitLab Flavored Markdown (GLFM): docs.gitlab.com/ee/user/markdown.html
Chapters:
* 00:00 Introduction
* 00:30 What is a Wiki?
* 02:15 GitLab Wiki Tutorial
* 03:38 Creating Your Home Page
* 04:29 Formatting Your Wiki Page
* 12:33 Linking to Another Wiki Page
* 14:05 Commit Message
* 15:18 Editing a Wiki Page
* 15:58 Viewing Page History
* 16:59 Printing/Saving a Wiki Page as a PDF
* 17:31 Adding a New Page
* 19:06 Making a Child Page (and Meeting Minutes Example)
* 22:09 Linking to a Child Page
* 23:00 Creating a Template (for Meeting Minutes)
* 25:31 Second Example of Linking to a Child Page
* 26:30 Useful Resources
* 27:01 Outro
มุมมอง: 10

วีดีโอ

CS1026: Randomness
มุมมอง 26 ชั่วโมงที่ผ่านมา
Resources & Links: * The Lava Lamps That Help Keep The Internet Secure: th-cam.com/video/1cUUfMeOijg/w-d-xo.html * The three-dimensional dynamics of the die throw: doi.org/10.1063/1.4746038 * How to Generate Pseudorandom Numbers: th-cam.com/video/C82JyCmtKWg/w-d-xo.html * Python random Module Documentation: docs.python.org/3/library/random.html Chapters: * 00:00 Introduction * 00:24 What is Ran...
CS1026: PyCharm Debugging
มุมมอง 47 ชั่วโมงที่ผ่านมา
Resources & Links: * Debugging Python Code: www.jetbrains.com/help/pycharm/part-1-debugging-python-code.html * Debug your first Python Application: www.jetbrains.com/help/pycharm/debugging-your-first-python-application.html * Basic code debugging in PyCharm: th-cam.com/video/j0Wz_uBaDmo/w-d-xo.html * Advanced Debugging in PyCharm: th-cam.com/video/k6j1NkVAsuU/w-d-xo.html Chapters: * 00:00 Int...
CS1026: Debugging
มุมมอง 437 ชั่วโมงที่ผ่านมา
Resources & Links: * Built-In Error Types in Python: docs.python.org/3/library/exceptions.html * Python Debugging Handbook: www.freecodecamp.org/news/python-debugging-handbook/ * Python Debugging With Pdb: realpython.com/python-debugging-pdb/#:~:text=In this hands-on tutorial, you'll learn * pdb Documentation: docs.python.org/3/library/pdb.html Chapters: * 00:00 Introduction * 00:30 What is a B...
CS1026: While Loops (Corrected Version)
มุมมอง 997 ชั่วโมงที่ผ่านมา
Note: My pronunciation of 'while' in this video sounds more like 'whell' or 'well.' This is not intentional, and you can find a far more accurate pronunciation here: th-cam.com/video/CGFvUqQlA6o/w-d-xo.html This version corrects a small error in the flowchart. Chapters: * 00:00 Introduction * 00:30 Loop Basics * 05:32 while Loop * 06:57 Example 3.0: Simple Counting Examples * 15:28 Infinite Loo...
CS1026: Nested Loops
มุมมอง 4116 ชั่วโมงที่ผ่านมา
Chapters: * 00:00 Introduction * 00:20 Nested Loops * 06:05 Example 3.11a: Creating a Multiplication Table * 11:39 Example 3.11b: Adding Row and Column Headers * 14:48 Example 3.12: Long Example: 1337 Speak Converter * 34:32 Outro
CS1026: For Loops
มุมมอง 5716 ชั่วโมงที่ผ่านมา
Chapters: * 00:00 Introduction * 00:20 Processing Strings With Loops * 04:28 Example 3.7a: Count Vowels Anywhere in a String * 09:18 for Loops * 11:12 for Loop vs. while Loop * 13:16 Example 3.7b: Count Vowels Using a for Loop * 17:10 Example 3.8: Cleaning a String * 22:49 Example 3.9a: Find the First Occurrence of a Digit in a String * 23:21 None Keyword * 23:42 is Operation * 24:52 Example 3....
AI Music: Python Countdown
มุมมอง 3416 ชั่วโมงที่ผ่านมา
Created using Suno.com.
CS1026: String Formatting & Advanced print()
มุมมอง 5816 ชั่วโมงที่ผ่านมา
Resources: * Python f-string Guide: fstring.help/ * Python f-string Cheat Sheet: fstring.help/cheat/ * Format Specification Mini-Language: docs.python.org/3/library/string.html#formatspec Chapters: 00:00 Introduction 00:24 Advanced print() 09:54 f-string Basics 15:15 % String Interpolation 17:38 String format() Method 22:31 Comparison of String Formatting Methods 25:18 Outro Credits: * Video, s...
CS1026: String Comparison Operators and Methods
มุมมอง 8114 วันที่ผ่านมา
Resources: * Python String Methods: docs.python.org/3/library/stdtypes.html#string-methods Chapters: * 00:00 Introduction * 0:29 String Comparison Operators * 04:24 Dealing With Capitalization * 06:26 String Comparison Example (Example 2.10a/b) * 11:10 Membership Operators (in and not in) * 13:54 String Membership Example (Example 2.11) * 17:15 String Methods for Comparisons (endswith, startswi...
CS1026: Branching & The if Statement
มุมมอง 6414 วันที่ผ่านมา
Chapters: * 00:00 Introduction * 00:31 Branching * 03:02 The if Statement * 05:55 Example: Checking if a Number is Even or Odd * 10:00 if Statement Example (Example 2.5: Applying a Discount) * 19:24 The if ... else Statement * 20:35 if ... else Statement Example (Example 2.6: Car Rental) * 29:54 The if ... elif ... else Statement * 31:38 if ... elif ... else Statement Example (Example 2.7: Rich...
CS1026: Logical Operators & Boolean Logic
มุมมอง 9114 วันที่ผ่านมา
Chapters: * 00:00 Introduction * 00:22 Comparison Operators * 02:59 Trying out Comparison Operators in the Console * 06:39 Comparison Operators Example 2.0 * 10:49 Logical Operators (and, or, not) * 11:50 Logical Operator Truth Tables * 13:16 Trying out Logical Operators in the Console * 18:04 Check if a Number is a Range (Example 2.2) * 27:48 Check if a Number is NOT in a Range (Example 2.3) *...
CS1026: Strings
มุมมอง 12721 วันที่ผ่านมา
Chapters: * 00:00 Intro * 00:32 String Basics * 02:14 Escape Sequences * 06:08 String Length * 06:59 String Indexing * 10:16 String Indexing Example * 15:01 String Operations * 17:12 String Methods * 20:23 String Methods Example * 25:43 Where to Find a List of String Methods * 26:02 Docstrings * 27:49 Outro Examples: * This video uses examples 1.8 to 1.10, you can find a copy of these files on ...
CS1026: Operators & Arithmetic
มุมมอง 9421 วันที่ผ่านมา
Errata: * In this video on slide 7 I state that integer division truncates the decimal places, in fact it is the floor of the number. For positive numbers this is the same, but for negative numbers the result is different. Chapters: * 00:00 Intro * 00:29 Operators * 01:08 Assignment Operator * 07:21 Arithmetic Operators * 15:07 The Math Module * 15:37 Built-in Math Functions * 16:18 Modules * 1...
CS1026: Variables and Data Types
มุมมอง 15721 วันที่ผ่านมา
Chapters: * 00:00 Introduction * 00:32 Variables * 04:01 Identifiers * 08:21 Style Guidelines * 13:18 Constants * 14:23 Data Types * 16:07 Common Built-In Types * 18:59 Type() Function * 20:39 Type Casting * 29:14 Outro Examples: * This video uses examples 1.0 to 1.4, they can be found on OWL. Credits: * Video, slides, editing, etc. by Dr. Servos. * Intro/Outro Song: Code with Python 2 created ...
AI Music: Rewind Time
มุมมอง 1821 วันที่ผ่านมา
AI Music: Rewind Time
AI Music: Fast Forward Dreams
มุมมอง 3521 วันที่ผ่านมา
AI Music: Fast Forward Dreams
AI Song: Code with Python 2
มุมมอง 3321 วันที่ผ่านมา
AI Song: Code with Python 2
CS1026: Fall 2024 Section 650 Course Syllabus
มุมมอง 19621 วันที่ผ่านมา
CS1026: Fall 2024 Section 650 Course Syllabus
CS1026: Using OWL Brightspace
มุมมอง 5821 วันที่ผ่านมา
CS1026: Using OWL Brightspace
CS1026: Registering for Your Textbook
มุมมอง 10721 วันที่ผ่านมา
CS1026: Registering for Your Textbook
CS1026: Introduction to Algorithms
มุมมอง 22921 วันที่ผ่านมา
CS1026: Introduction to Algorithms
CS1026: Introduction to Python
มุมมอง 17621 วันที่ผ่านมา
CS1026: Introduction to Python
CS2212A: Fall 2024 Course Syllabus
มุมมอง 30021 วันที่ผ่านมา
CS2212A: Fall 2024 Course Syllabus
CS1026: Installing PyCharm
มุมมอง 1.1K21 วันที่ผ่านมา
CS1026: Installing PyCharm
CS1032: Final Exam Overview (Summer 2024)
มุมมอง 792 หลายเดือนก่อน
CS1032: Final Exam Overview (Summer 2024)
Proctortrack & The Onboarding Process
มุมมอง 2782 หลายเดือนก่อน
Proctortrack & The Onboarding Process
CS1032: Introduction to Week 10 (Summer 2024)
มุมมอง 962 หลายเดือนก่อน
CS1032: Introduction to Week 10 (Summer 2024)
CS1032: Chapter 7 Organizations and Information Systems
มุมมอง 953 หลายเดือนก่อน
CS1032: Chapter 7 Organizations and Information Systems
CS1032: Introduction to Week 6
มุมมอง 1583 หลายเดือนก่อน
CS1032: Introduction to Week 6

ความคิดเห็น

  • @theycallmemuzz7394
    @theycallmemuzz7394 9 หลายเดือนก่อน

    The first non-indian teacher I found that taught this topic well