Search for tag: "beginning"
Implementing Nutrition Education in Harlem (CCE) - Deborah Ogunribido and Jaylyn SeniseDeborah Ogunribido is a senior in the College of Human Ecology majoring in Global and Public Health Sciences on the pre-med track. She is passionate about equitable healthcare access and medical…
From Catherine Wambura
14 plays
|
|
Wellbeing@Work: Developing and Sustaining Healthy Relationships in the WorkplaceAri Mack, Organization Development Consultant, and Michelle Artibee provide some tips and advice on maintaining healthy relationships among co-workers and colleagues. Watch the full Interview here:…
From Gerald Deis
9 plays
|
|
Wellbeing@Work: Prevalence of Domestic ViolenceKristi Taylor, Education Director for the Tompkins County Advocacy Center discusses the prevalence of domestic violence and intimate partner violence. Watch the rest of the conversation here:…
From Gerald Deis
7 plays
|
|
Lesson 30.8 Quicksort PerformanceIt looks like quicksort has solved our performance problems. However, we should not be so hasty. In this video, we look at the real performance for quicksort, and why it is not perfect. We also talk…
From Hannah Lee
36 plays
|
|
Lesson 30.6 The Partition algorithmIn the previous video, we saw that nested loops are causing our sorting algorithms to be slow. To speed things up, we need to get rid of one of these loops. To do that, we will need a special…
From Hannah Lee
38 plays
|
|
Lesson 30.5 Selection SortIn the previous video we saw that insertion sort is not an ideal sorting algorithm. In this video we try our hand at another algorithm: selection sort. This is another simple algorithm that may be…
From Hannah Lee
40 plays
|
|
Lesson 30.1 SearchingIn this video, we look at the different ways we can search a list for an element. In doing so, we see that it helps a lot for our lists to be sorted. Hence that will be our focus for the rest of this…
From Hannah Lee
55 plays
|
|
Lesson 25.3 Error Types and the Call StackAfter the last video, try-except looks less like an if-else statement and more like an if-elif-else statement. As we see in this video, this has profound effects on how errors interact with the call…
From Hannah Lee
72 plays
|
|
Lesson 13.6 Assert HelpersSometimes we absolutely need to enforce all of our preconditions, and we cannot live with the compromises of the previous video. In this video we show how to use top-down design to give us more…
From Hannah Lee
75 plays
|
|
Lesson 13.5 Assert Trade-OffsPreconditions can get really complicated, and sometimes it is unclear how to enforce all of the preconditions. In this video we talk about why it is okay to break up a precondition and…
From Hannah Lee
59 plays
|
|
Lesson 8.3 Test ScriptsA good testing plan has many, many test cases, and it can be really tedious to keep testing a function. That is why it would be ideal if we could automate the process. In this video, we introduce the…
From Hannah Lee
92 plays
|
|
Lesson 7.2 Specification FormatNow that you know why specifications are so important, it is time to write them. We have a very specific format that we want for our specifications, which is detailed in this video.
From Hannah Lee
94 plays
|
|
Lesson 6.2 String SlicingStrings have a fundamental property that is not present in the other types so far. You can cut up a string into smaller bits or substrings. This is know as string slicing, and it is the focus of the…
From Hannah Lee
102 plays
|