<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" version="2.0">
    <channel>
        
        <title>
            <![CDATA[ tech  - freeCodeCamp.org ]]>
        </title>
        <description>
            <![CDATA[ Browse thousands of programming tutorials written by experts. Learn Web Development, Data Science, DevOps, Security, and get developer career advice. ]]>
        </description>
        <link>https://www.freecodecamp.org/news/</link>
        <image>
            <url>https://cdn.freecodecamp.org/universal/favicons/favicon.png</url>
            <title>
                <![CDATA[ tech  - freeCodeCamp.org ]]>
            </title>
            <link>https://www.freecodecamp.org/news/</link>
        </image>
        <generator>Eleventy</generator>
        <lastBuildDate>Sat, 23 May 2026 08:50:46 +0000</lastBuildDate>
        <atom:link href="https://www.freecodecamp.org/news/tag/tech/rss.xml" rel="self" type="application/rss+xml" />
        <ttl>60</ttl>
        
            <item>
                <title>
                    <![CDATA[ What is Technical Debt and How Do You Manage it? ]]>
                </title>
                <description>
                    <![CDATA[ You’ve probably heard someone say, “We’ll fix it later.” Maybe you’ve said it yourself. In the rush to launch a feature, meet a deadline, or impress a client, you take a shortcut. The code works – for now. The design passes – for now. But over time, ... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/what-is-technical-debt-and-how-do-you-manage-it/</link>
                <guid isPermaLink="false">681e31e668aa6f9f0c37bb12</guid>
                
                    <category>
                        <![CDATA[ engineering ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Product Management ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Manish Shivanandhan ]]>
                </dc:creator>
                <pubDate>Fri, 09 May 2025 16:48:38 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1746809303458/b4635ddc-d909-427a-9cc1-9b9f56ae1d41.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>You’ve probably heard someone say, “We’ll fix it later.”</p>
<p>Maybe you’ve said it yourself.</p>
<p>In the rush to launch a feature, meet a deadline, or impress a client, you take a shortcut. The code works – for now. The design passes – for now.</p>
<p>But over time, these choices pile up. They slow you down. They make every change harder. That’s technical debt.</p>
<p>Technical debt is a quiet, creeping cost. It doesn’t show up in metrics like churn or conversion rate. But it eats away at your product’s quality, your team’s velocity, and your ability to innovate.</p>
<p>You don’t notice it right away. Then, suddenly, everything feels slower. Nothing is simple anymore.</p>
<p>One bug fix breaks two new things. Engineers groan when they touch certain parts of the code. That’s when you realize you’re in debt.</p>
<p>Let’s talk about what technical debt really is, how it forms, and how you can deal with it before it kills your product.</p>
<h2 id="heading-what-is-technical-debt"><strong>What Is Technical Debt?</strong></h2>
<p>Think of technical debt like financial debt. When you borrow money, you get something now – at the cost of interest later.</p>
<p>In software, it’s the same. You make a quick decision to save time now, knowing it might cost you more effort down the line.</p>
<p>There’s nothing inherently wrong with that. Sometimes, taking on debt is smart. You might need to ship fast to test an idea or respond to the market.</p>
<p>But if you keep borrowing and never repay, the interest builds. And technical debt doesn’t just grow – it compounds. The longer you leave it, the worse it gets.</p>
<p>You don’t just end up paying more later. You slow down your whole team.</p>
<p>Every new feature takes longer. Bugs multiply. Morale drops. And eventually, your product feels fragile. That’s when the real damage begins.</p>
<h3 id="heading-types-of-technical-debt"><strong>Types of Technical Debt</strong></h3>
<p>Not all debt is the same. Some is like a short-term loan – you know you’re taking it and why. Other debt is like a bad mortgage – no one even knows it’s there until things break.</p>
<p>Here are the most common types:</p>
<ul>
<li><p><strong>Intentional debt</strong> — You cut corners to hit a deadline but log it and plan to fix it. This can be healthy if managed well.</p>
</li>
<li><p><strong>Unintentional debt</strong> — You didn’t realise the shortcut was harmful. Often happens with new tech or unclear requirements.</p>
</li>
<li><p><strong>Environmental debt</strong> — Your tools, libraries, or frameworks get outdated. Even if your code is clean, it sits on crumbling infrastructure.</p>
</li>
<li><p><strong>Process debt</strong> — The way you build software becomes inefficient. Poor handoffs, unclear documentation, or weak testing pipelines all contribute.</p>
</li>
</ul>
<p>Recognising which type you’re dealing with helps you prioritise. Not all debt needs immediate repayment. But all of it needs attention.</p>
<h2 id="heading-how-technical-debt-happens"><strong>How Technical Debt Happens</strong></h2>
<p>As you can probably imagine, technical debt shows up in many ways.</p>
<p>Sometimes it’s deliberate. You make a tradeoff. You know it’s a shortcut, and you plan to clean it up later. That’s manageable – if you actually clean it up.</p>
<p>But most technical debt isn’t planned. It sneaks in through decisions that feel small in the moment. A rushed feature. A new hire not trained on the codebase. A spec that changes mid-sprint. Over time, these small cracks become deep fractures.</p>
<p>Here’s a simple example:</p>
<pre><code class="lang-plaintext">// Temporary workaround for product discounts
function applyDiscount(price, productType) {
  if (productType === 'electronics') {
    return price * 0.9; // 10% off
  } else if (productType === 'clothing') {
    return price * 0.8; // 20% off
  } else if (productType === 'books') {
    return price * 0.95; // 5% off
  } else {
    return price;
  }
}
</code></pre>
<p>This started as a quick fix. But over time, new product types get added with more exceptions.</p>
<p>Soon, you will have twenty <code>if-else</code> branches. It’s fragile. Every change risks breaking something. That’s technical debt.</p>
<p>The worst part? You might not even notice until a year later, when a bug in that logic takes hours to trace. You wonder, “How did this get so messy?” The answer: <strong>one shortcut at a time.</strong></p>
<p>A better long-term approach in the above example would be a configuration-driven system or a discount rules engine.</p>
<pre><code class="lang-plaintext">// Config-driven discount logic
const discountRates = {
  electronics: 0.10,
  clothing: 0.20,
  books: 0.05
};
</code></pre>
<pre><code class="lang-plaintext">function applyDiscount(price, productType) {
  const discount = discountRates[productType] || 0;
  return price * (1 - discount);
}
</code></pre>
<h2 id="heading-why-technical-debt-can-be-dangerous"><strong>Why Technical Debt Can Be Dangerous</strong></h2>
<p>Technical debt slows you down. That’s its most visible cost.</p>
<p>A feature that should take a day now takes a week. Simple changes break unrelated things. Your team spends more time fixing than building.</p>
<p>But the real danger goes deeper. Technical debt makes you afraid to touch your code.</p>
<p>Engineers stop refactoring because “it’s too risky.” You start saying no to new ideas because the system can’t handle them. The product becomes rigid. You stop innovating.</p>
<p>It also hurts your team. Developers don’t like working in messy codebases. It leads to burnout. New hires struggle to onboard.</p>
<p>Your best engineers spend their time firefighting instead of creating. Eventually, people leave. And your debt remains.</p>
<h2 id="heading-how-to-manage-technical-debt"><strong>How to Manage Technical Debt</strong></h2>
<p>You can’t eliminate all technical debt. But you can manage it.</p>
<p>First, treat it like real debt. Track it. Prioritize it. Make regular payments.</p>
<p>Start by writing it down. Every time someone takes a shortcut, log it. You don’t need a fancy tool – a shared doc or Jira tag works fine. Just make it visible.</p>
<p>Next, build time into your workflow to pay it off. Use 10–20% of each sprint to refactor or improve the codebase. Don’t wait for a rewrite. Small, steady work adds up.</p>
<p>Code reviews help too. Encourage your team to ask: “Is this a shortcut?” If yes, make a conscious choice. Leave a clear comment. Note the tradeoff. Now it’s not a hidden cost – it’s a known one.</p>
<p>And when you do pay off debt, celebrate it. Make it part of your culture. The same way you’d celebrate shipping a feature, acknowledge when your team makes the codebase better. That builds pride and ownership.</p>
<h3 id="heading-knowing-when-to-refactor"><strong>Knowing When to Refactor</strong></h3>
<p>You can’t fix all the debt at once. So how do you choose?</p>
<p>Look for signs of pain. If a file breaks every sprint, fix it. If one part of the system takes days to test, improve it. If new hires always get stuck in one module, clean it up.</p>
<p>Focus on the code you touch often. There’s no point polishing a dead feature. But if something is part of your core flow, invest in it.</p>
<p>Also, listen to your team. Engineers know where the pain lives. If someone says, “This part scares me,” take that seriously. Fear in the codebase is a red flag.</p>
<h2 id="heading-when-debt-becomes-fatal"><strong>When Debt Becomes Fatal</strong></h2>
<p>Sometimes, the debt gets so bad that small fixes won’t save you. The system collapses under its own weight. Everything feels slow. Nothing is safe to change. That’s when teams start talking about rewrites.</p>
<p>But rewrites are risky. They take time. They often miss hidden business logic. And they can carry old debt into new code if not done carefully.</p>
<p>If you must rewrite, do it incrementally. Replace modules one at a time. Add tests. Migrate data with care.</p>
<p>And don’t forget why the old system failed. If you don’t fix the culture, the new system will rot too.</p>
<h2 id="heading-final-thoughts"><strong>Final Thoughts</strong></h2>
<p>Technical debt isn’t evil. It’s part of building software. But like financial debt, it needs discipline. You can’t just ignore it and hope it goes away.</p>
<p>Great products aren’t just well-designed. They’re well-maintained. The teams behind them care about quality — not just in what users see, but in what engineers live with every day.</p>
<p>So the next time you say, “We’ll fix it later,” ask yourself: will you? Or are you just borrowing against the future?</p>
<p>Hope you enjoyed this article. <a target="_blank" href="https://blog.manishshivanandhan.com/"><strong>Join my newsletter</strong></a> for similar articles and <a target="_blank" href="https://www.linkedin.com/in/manishmshiva/"><strong>connect with me on Linkedin</strong>.</a></p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Here Are 850+ Ivy League Courses You Can Take Right Now for Free ]]>
                </title>
                <description>
                    <![CDATA[ By Dhawal Shah The 8 Ivy League schools - Harvard, Yale, Princeton, Columbia, Cornell, Dartmouth, Brown, and the University of Pennsylvania - are among the most prestigious universities in the world.  ]]>
                </description>
                <link>https://www.freecodecamp.org/news/ivy-league-free-online-courses-a0d7ae675869/</link>
                <guid isPermaLink="false">66d45eb473634435aafcef96</guid>
                
                    <category>
                        <![CDATA[ Life lessons ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ self-improvement  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ startup ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ freeCodeCamp ]]>
                </dc:creator>
                <pubDate>Tue, 14 Jan 2025 06:00:00 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2022/01/collection-ivy-league-moocs-social-2.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>By Dhawal Shah</p>
<p>The 8 Ivy League schools - Harvard, Yale, Princeton, Columbia, Cornell, Dartmouth, Brown, and the University of Pennsylvania - are among the most prestigious universities in the world. In 2025, all 8 Ivy League schools are ranked in the top-20 of the <a href="https://www.usnews.com/best-colleges/rankings/national-universities"><strong>U.S. News &amp; World Report national university ranking</strong></a>. While these institutions are highly selective and difficult to get into, they offer many of their courses online for free.</p>
<p>Using <a href="https://www.classcentral.com/"><strong>Class Central's database</strong></a>, I've compiled these courses for you. In total, Ivy League schools currently offer over 1,850 courses that have attracted 60 million enrollments and 1.7 million bookmarks. Looking at the data:</p>
<ul>
<li><p>Brown University (81 courses)</p>
</li>
<li><p>Columbia University (56 courses)</p>
</li>
<li><p>Cornell University (14 courses)</p>
</li>
<li><p>Dartmouth College (231 courses)</p>
</li>
<li><p>Harvard University (357 courses)</p>
</li>
<li><p>Wharton School of the University of Pennsylvania (3 courses)</p>
</li>
<li><p>University of Pennsylvania (21 courses)</p>
</li>
<li><p>Princeton University (8 courses)</p>
</li>
<li><p>Yale University (1096 courses)</p>
</li>
</ul>
<img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1736548892842/25a4660a-3947-437a-8781-c7932f6f2c86.png" alt="25a4660a-3947-437a-8781-c7932f6f2c86" style="display:block;margin:0 auto" width="1726" height="996" loading="lazy">

<p><em>The</em> <a href="https://www.classcentral.com/"><em><strong>Class Central</strong></em></a> <em>database has over 250,000 online courses.</em></p>
<p>For those interested in staying updated on new Ivy League course offerings, you can "Follow" our dedicated <a href="https://www.classcentral.com/collection/ivy-league-moocs"><strong>collection on Class Central</strong></a>.</p>
<p>Note that figuring out how to audit a course for free on platforms such as Coursera can be a bit confusing. So my colleague <a href="https://www.classcentral.com/@pat"><strong>Pat</strong></a> and I have written a dedicated guide: <a href="https://www.classcentral.com/report/coursera-signup-for-free/"><strong>How to Sign up for Coursera Courses for Free</strong></a>.</p>
<p>In this guide, Harvard's CS50 courses clearly stands out - the first CS50 course has attracted over 6 million learners on edX alone. For that reason, we created a dedicated guide: <a href="https://www.classcentral.com/report/harvard-cs50-guide/"><strong>Harvard CS50 Guide: How to Pick the Right Course (with Free Certificate)</strong></a> where my colleague <a href="https://www.classcentral.com/@manoel"><strong>Manoel</strong></a> reviews the complete lineup of 14 courses, including 10 that offer free certificates of completion.</p>
<p>Also, recently we published a <a href="https://www.freecodecamp.org/news/free-certificates/"><strong>free developer certificates article</strong></a> with thousand of courses, including several from freeCodeCamp, Google, Microsoft, and Harvard.</p>
<hr>
<h2 id="heading-more-free-certificates"><strong>More Free Certificates</strong></h2>
<img src="https://www.classcentral.com/report/wp-content/uploads/2021/12/free-certificates-banner.png" alt="free-certificates-banner" style="display:block;margin:0 auto" width="1024" height="512" loading="lazy">

<p>If you don’t find what you need here, browse <a href="https://www.classcentral.com/"><strong>Class Central’s</strong></a> catalog of <a href="https://www.classcentral.com/subjects"><strong>over 250K courses</strong></a> or visit our thematic collections:</p>
<ul>
<li><p><a href="https://www.classcentral.com/report/free-developer-it-certifications/"><strong>2,000+ Free Developer and IT Certifications</strong></a></p>
</li>
<li><p><a href="https://www.classcentral.com/report/wolfram-u-free-certificates/"><strong>40+ Free Certificates from Wolfram U</strong></a></p>
</li>
<li><p><a href="https://www.classcentral.com/report/big-tech-free-courses/"><strong>10,000+ Free Courses from Tech Giants: Learn from Google, Microsoft, Amazon, and More</strong></a></p>
</li>
<li><p><a href="https://www.classcentral.com/report/ocw-courses/"><strong>8000+ OpenCourseWare Courses from Top Institutions</strong></a>.</p>
</li>
</ul>
<hr>
<p>Without further ado, here are all the free online courses offered by Ivy League institutions.</p>
<h2 id="heading-brown-university-81-courses"><strong>Brown University (81 courses)</strong></h2>
<ul>
<li><p><a href="https://www.classcentral.com/course/udacity-reinforcement-learning-1849?ref=freecodecamp"><strong>Reinforcement Learning</strong></a> from <em>Brown University</em> ★★★☆☆(8)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-machine-learning-1020?ref=freecodecamp"><strong>Machine Learning</strong></a> from <em>Georgia Institute of Technology</em> ★★★★☆(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-machine-learning-unsupervised-learning-1848?ref=freecodecamp"><strong>Machine Learning: Unsupervised Learning</strong></a> from <em>Brown University</em> ★★★☆☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-session-4-the-habit-of-judging-ourselves-and-others-107740?ref=freecodecamp"><strong>Session 4: The habit of judging ourselves and others</strong></a> from <em>Brown University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/literature-brown-university-fantastic-places-unhu-10255?ref=freecodecamp"><strong>Fantastic Places, Unhuman Humans: Exploring Humanity Through Literature</strong></a> from <em>Brown University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-creating-an-inclusive-environment-for-sexual-and-gender-minority-patients-and-trainees-in-academic-clinical-settings-107696?ref=freecodecamp"><strong>Creating an Inclusive Environment for Sexual and Gender Minority Patients and Trainees in Academic Clinical Settings</strong></a> from <em>Brown University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-best-practices-for-treatment-of-acute-pain-express-interest-and-pre-survey-107752?ref=freecodecamp"><strong>Best Practices for Treatment of Acute Pain: Express Interest and Pre-Survey</strong></a> from <em>Brown University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-socio-cognitive-behavioral-therapy-for-latinx-youth-with-suicidal-thoughts-and-behaviors-107682?ref=freecodecamp"><strong>Socio-Cognitive Behavioral Therapy for Latinx Youth with Suicidal Thoughts and Behaviors</strong></a> from <em>Brown University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-the-future-of-lung-cancer-screening-for-all-communities-in-ri-where-we-are-and-where-we-need-to-be-107701?ref=freecodecamp"><strong>On Demand: The Future of Lung Cancer Screening for All Communities in RI: Where We Are and Where We Need to Be</strong></a> from <em>Brown University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/ethics-brown-university-the-ethics-of-memory-8538?ref=freecodecamp"><strong>The Ethics of Memory</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/engineering-brown-university-introduction-to-engi-12329?ref=freecodecamp"><strong>Introduction to Engineering and Design</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-brown-university-artful-medicine-arts-po-8541?ref=freecodecamp"><strong>Artful Medicine: Art’s Power to Enrich Patient Care</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-brown-university-beyond-medical-historie-11762?ref=freecodecamp"><strong>Beyond Medical Histories: Gaining Insight from Patient Stories</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-2022-2023-department-of-psychiatry-and-human-behavior-academic-grand-rounds-107751?ref=freecodecamp"><strong>2022-2023 Department of Psychiatry and Human Behavior Academic Grand Rounds</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-session-5-working-with-stress-and-anxiety-107741?ref=freecodecamp"><strong>Session 5: Working with stress and anxiety</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-csci-1730-introduction-to-programming-languages-458?ref=freecodecamp"><strong>CSCI 1730 - Introduction to Programming Languages</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-identification-and-management-of-adhd-and-impulse-control-in-tourette-syndrome-107699?ref=freecodecamp"><strong>On-Demand - Identification and Management of ADHD and Impulse Control in Tourette Syndrome</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-2022-2023-child-and-adolescent-psychiatry-grand-rounds-107747?ref=freecodecamp"><strong>2022 - 2023 Child and Adolescent Psychiatry Grand Rounds</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-translating-understanding-of-neural-network-dysfunction-into-novel-mood-disorder-risk-markers-and-brain-based-treatments-for-bipolar-disorder-107680?ref=freecodecamp"><strong>Translating understanding of neural network dysfunction into novel, mood disorder risk markers and brain-based treatments for Bipolar Disorder</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-social-in-justice-and-mental-health-107731?ref=freecodecamp"><strong>Social (In)Justice and Mental Health</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-parent-based-treatment-for-childhood-anxiety-and-ocd-107681?ref=freecodecamp"><strong>Parent-Based Treatment for Childhood Anxiety and OCD</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-demystifying-palliative-care-107736?ref=freecodecamp"><strong>On Demand | Demystifying Palliative Care</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-social-in-justice-and-children-s-mental-health-107676?ref=freecodecamp"><strong>Social (In)justice and Children’s Mental Health</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-9-21-22-5-ways-to-work-through-conflict-107746?ref=freecodecamp"><strong>9.21.22 5 Ways to Work Through Conflict</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-school-mental-health-suicide-prevention-and-wellbeing-promotion-lessons-from-the-last-10-years-wisdom-for-the-next-10-107678?ref=freecodecamp"><strong>School Mental Health, Suicide Prevention, and Wellbeing Promotion: Lessons from the last 10 years &amp; Wisdom for the next 10</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-racism-in-academic-psychiatry-hiding-beneath-the-cloak-of-our-benevolence-107670?ref=freecodecamp"><strong>Racism in Academic Psychiatry: Hiding Beneath the Cloak of Our Benevolence</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-tiktoktherapist-understanding-the-role-of-social-media-in-adolescent-mental-health-107728?ref=freecodecamp"><strong>TikTokTherapist: Understanding the Role of Social Media in Adolescent Mental Health</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-adolescent-substance-use-and-treatment-translating-science-into-clinical-practice-107669?ref=freecodecamp"><strong>Adolescent Substance Use and Treatment: Translating Science into Clinical Practice</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-medical-evaluation-of-the-sexual-assault-survivor-a-virtual-educational-curriculum-107737?ref=freecodecamp"><strong>Medical Evaluation of the Sexual Assault Survivor: A Virtual Educational Curriculum</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-docs-for-health-considering-social-and-structural-determinants-in-medical-care-107704?ref=freecodecamp"><strong>Docs for Health: Considering Social and Structural Determinants in Medical Care</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-emergency-care-for-opioid-use-disorder-107685?ref=freecodecamp"><strong>Emergency Care for Opioid Use Disorder</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-yoga-intervention-research-focus-on-people-with-depression-107675?ref=freecodecamp"><strong>Yoga Intervention Research: Focus on People with Depression</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-micro-interventions-to-support-those-escaping-emotional-pain-addressing-overlapping-substance-use-and-suicide-risk-107729?ref=freecodecamp"><strong>On-demand | Micro-interventions to Support Those Escaping Emotional Pain: Addressing Overlapping Substance Use and Suicide Risk</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-session-3-how-life-gets-in-the-way-107739?ref=freecodecamp"><strong>Session 3: How life gets in the way</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-trauma-and-oud-session-iv-107716?ref=freecodecamp"><strong>Trauma and OUD: Session IV</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-building-a-better-suicide-risk-assessment-the-nuts-and-bolts-of-the-columbia-protocol-107713?ref=freecodecamp"><strong>On-Demand | Building a Better Suicide Risk Assessment: The Nuts and Bolts of the Columbia Protocol</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-addressing-microaggressions-in-the-clinical-environment-107695?ref=freecodecamp"><strong>Addressing Microaggressions in the Clinical Environment</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-session-2-compassion-the-new-empathy-taking-the-me-out-of-empathy-107738?ref=freecodecamp"><strong>Session 2: Compassion the new empathy? Taking the me out of empathy</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-improving-the-care-of-patients-with-sickle-cell-disease-107694?ref=freecodecamp"><strong>On Demand | Improving the Care of Patients with Sickle Cell Disease</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-rapid-acting-treatments-for-pediatric-depression-and-suicidality-where-are-we-now-107672?ref=freecodecamp"><strong>Rapid-acting Treatments for Pediatric Depression and Suicidality: Where are We Now?</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-evidence-based-emergency-care-for-opioid-use-disorder-107684?ref=freecodecamp"><strong>Evidence-based Emergency Care for Opioid Use Disorder</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-leveraging-sleep-and-circadian-science-to-devise-and-disseminate-novel-transdiagnostic-treatments-to-improve-sleep-health-107677?ref=freecodecamp"><strong>Leveraging Sleep and Circadian Science to Devise and Disseminate Novel Transdiagnostic Treatments to Improve Sleep Health</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-screen-media-social-interaction-and-asd-connecting-theory-and-research-107725?ref=freecodecamp"><strong>Screen Media, Social Interaction and ASD: Connecting Theory and Research</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-fears-bias-and-discrimination-substance-use-disorder-patient-care-107686?ref=freecodecamp"><strong>Fears, Bias and Discrimination - Substance Use Disorder Patient Care</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-advances-in-the-treatment-of-tics-107687?ref=freecodecamp"><strong>On-Demand - Advances in the Treatment of Tics</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-lethal-means-counseling-collaboration-at-the-patient-and-community-level-107730?ref=freecodecamp"><strong>On-Demand | Lethal Means Counseling: Collaboration at the Patient- and Community-Level</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-reducing-physician-burnout-107748?ref=freecodecamp"><strong>Reducing Physician Burnout</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-session-1-feeling-the-pain-empathy-and-action-107749?ref=freecodecamp"><strong>Session 1: Feeling the Pain: Empathy and Action</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-psychological-flexibility-building-a-pragmatic-model-and-method-of-intentional-change-107727?ref=freecodecamp"><strong>Psychological Flexibility: Building a Pragmatic Model and Method of Intentional Change</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-session-6-spreading-curiosity-don-t-just-do-something-sit-there-107742?ref=freecodecamp"><strong>Session 6: Spreading Curiosity: Don’t just do something, sit there</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-implementation-science-driving-health-policy-change-in-learning-health-systems-107673?ref=freecodecamp"><strong>Implementation Science: Driving Health Policy Change in Learning Health Systems</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-efd-on-demand-strategic-cv-creation-and-maintenance-107720?ref=freecodecamp"><strong>EFD On-Demand: Strategic CV Creation and Maintenance</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-efd-on-demand-improving-instruction-with-spaced-and-retrieval-practice-107719?ref=freecodecamp"><strong>EFD On-Demand: Improving Instruction with Spaced and Retrieval Practice</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-may-7-2021-working-with-governments-institutions-stakeholders-to-support-healing-relationships-human-capital-ethical-stewardship-of-shared-data-107712?ref=freecodecamp"><strong>On-Demand: May 7, 2021: Working with Governments, Institutions, &amp; Stakeholders to Support Healing Relationships &amp; Human Capital; Ethical Stewardship of Shared Data</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-transitioning-to-adult-care-time-is-ticcing-away-107700?ref=freecodecamp"><strong>On-Demand - Transitioning to Adult Care: Time is Ticcing Away</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-january-8-2021-designing-human-centered-health-information-technology-hit-advancing-the-adoption-of-patient-empowering-technology-107692?ref=freecodecamp"><strong>On-Demand: January 8, 2021: Designing Human-Centered Health Information Technology (HIT) &amp; Advancing the Adoption of Patient- Empowering Technology</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-efd-on-demand-from-abstract-to-poster-to-case-report-a-guide-for-clinicians-107733?ref=freecodecamp"><strong>EFD On-Demand: From Abstract to Poster to Case Report: A Guide for Clinicians</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-efd-on-demand-practical-approaches-to-applying-conceptual-theoretical-frameworks-to-medical-education-research-107735?ref=freecodecamp"><strong>EFD On-Demand: Practical Approaches to Applying Conceptual &amp; Theoretical Frameworks to Medical Education Research</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-catatonia-evaluation-treatment-and-consideration-in-a-pediatric-population-107671?ref=freecodecamp"><strong>Catatonia, Evaluation, Treatment and Consideration in a Pediatric Population</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-no-longer-speechless-a-practical-workshop-on-responding-to-microaggressions-in-biomedical-settings-107683?ref=freecodecamp"><strong>On Demand | No Longer Speechless - A Practical Workshop on Responding to Microaggressions in Biomedical Settings</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-the-top-8-important-facts-for-providers-to-know-about-their-patients-with-inflammatory-bowel-disease-in-2021-107710?ref=freecodecamp"><strong>The Top “8” Important Facts for Providers to Know About Their Patients with Inflammatory Bowel Disease in 2021</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-efd-on-demand-engaging-the-learner-active-learning-in-didactic-medical-education-107722?ref=freecodecamp"><strong>EFD On-Demand: Engaging the Learner - Active Learning in Didactic Medical Education</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-providence-sleep-research-interest-group-seminar-series-107679?ref=freecodecamp"><strong>Providence Sleep Research Interest Group Seminar Series</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-finding-the-ehr-data-to-tell-your-clinical-story-early-experiences-with-lifespan-pediatric-behavioral-health-emergency-services-107732?ref=freecodecamp"><strong>Finding the EHR Data to Tell Your Clinical Story: Early Experiences with Lifespan Pediatric Behavioral Health Emergency Services</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-academic-detailing-best-practices-for-treatment-of-acute-pain-107753?ref=freecodecamp"><strong>Academic Detailing: Best Practices for Treatment of Acute Pain</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-session-7-the-obstacle-is-the-way-107745?ref=freecodecamp"><strong>Session 7: The obstacle is the way</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-session-8-a-summary-of-all-that-we-ve-explored-107743?ref=freecodecamp"><strong>Session 8: A Summary of all that we’ve explored</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-tom-f-anders-seminar-series-107750?ref=freecodecamp"><strong>Tom F. Anders Seminar Series</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-refractory-tourette-syndrome-107698?ref=freecodecamp"><strong>On-Demand - Refractory Tourette Syndrome</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-program-in-educational-faculty-development-on-demand-courses-107724?ref=freecodecamp"><strong>Program in Educational Faculty Development On-Demand Courses</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-2022-the-patient-and-the-practitioner-in-the-age-of-technology-promoting-healing-relationships-107755?ref=freecodecamp"><strong>2022 The Patient and The Practitioner in the Age of Technology: Promoting Healing Relationships</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-dcyf-and-legal-considerations-session-vi-107714?ref=freecodecamp"><strong>DCYF and Legal Considerations: Session VI</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-efd-on-demand-getting-your-scholarly-projects-unstuck-a-reference-management-workshop-107734?ref=freecodecamp"><strong>EFD On-Demand: Getting Your Scholarly Projects “Unstuck”- A Reference Management Workshop</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-efd-on-demand-critical-junctures-creating-high-impact-advising-conversations-107726?ref=freecodecamp"><strong>EFD On-Demand: Critical Junctures: Creating High Impact Advising Conversations</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-academic-detailing-group-presentation-best-practices-for-treatment-of-acute-pain-post-activity-107754?ref=freecodecamp"><strong>Academic Detailing Group Presentation: Best Practices for Treatment of Acute Pain - Post Activity</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-10-06-22-owims-book-club-session-i-live-in-person-option-crucial-conversations-107757?ref=freecodecamp"><strong>10.06.22 OWIMS Book Club (Session I- Live in-person option): Crucial Conversations</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-on-demand-march-5-2021-teaching-the-use-of-hit-to-support-relationship-based-care-promoting-wellness-in-clinical-care-107697?ref=freecodecamp"><strong>On-Demand: March 5, 2021: Teaching the Use of HIT to Support Relationship-based Care &amp; Promoting Wellness in Clinical Care</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-10-06-22-owims-book-club-session-ii-zoom-option-crucial-conversations-107756?ref=freecodecamp"><strong>10.06.22 OWIMS Book Club (Session II- Zoom option): Crucial Conversations</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-retaining-patients-in-office-based-buprenorphine-treatment-107706?ref=freecodecamp"><strong>Retaining Patients in Office-based Buprenorphine Treatment</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-efd-on-demand-you-ve-been-served-now-what-107723?ref=freecodecamp"><strong>EFD On-Demand: You've Been Served: Now What?</strong></a> from <em>Brown University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-efd-on-demand-meeting-the-acgme-requirement-cqi-education-programs-for-residents-107693?ref=freecodecamp"><strong>EFD On-Demand: Meeting the ACGME Requirement: CQI Education Programs for Residents</strong></a> from <em>Brown University</em></p>
</li>
</ul>
<h2 id="heading-columbia-university-56-courses"><strong>Columbia University (56 courses)</strong></h2>
<ul>
<li><p><a href="https://www.classcentral.com/course/crisis-resource-management-columbia-university-cr-21613?ref=freecodecamp"><strong>Crisis Resource Management</strong></a> from <em>Columbia University</em> ★★★★★(50)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/climate-change-columbia-university-frontiers-of-s-114651?ref=freecodecamp"><strong>Frontiers of Science: Climate &amp; Us</strong></a> from <em>Columbia University</em> ★★★★★(22)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-navigating-hot-moments-in-the-classroom-columbia-ctl-381153?ref=freecodecamp"><strong>Navigating HOT Moments in the Classroom - Teaching Strategies and Response Framework</strong></a> from <em>Columbia University</em> ★★★★☆(15)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/us-history-columbia-university-the-civil-war-and--2439?ref=freecodecamp"><strong>The Civil War and Reconstruction – 1865-1890: The Unfinished Revolution</strong></a> from <em>Columbia University</em> ★★★★★(8)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/history-columbia-university-the-civil-war-and-rec-2297?ref=freecodecamp"><strong>The Civil War and Reconstruction - 1861 - 1865: A New Birth of Freedom</strong></a> from <em>Columbia University</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/world-science-u-space-time-and-einstein-3407?ref=freecodecamp"><strong>Space, Time and Einstein</strong></a> from <em>Columbia University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/politics-columbia-university-the-civil-war-and-re-2172?ref=freecodecamp"><strong>The Civil War and Reconstruction - 1850-1861: A&nbsp;House Divided</strong></a> from <em>Columbia University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/world-science-u-special-relativity-3406?ref=freecodecamp"><strong>Special Relativity</strong></a> from <em>Columbia University</em> ★★★★☆(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-columbia-university-pediatric-hiv-nursin-11350?ref=freecodecamp"><strong>Pediatric HIV</strong></a> from <em>Columbia University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/corporate-finance-columbia-university-introductio-9060?ref=freecodecamp"><strong>Introduction to Corporate Finance</strong></a> from <em>Columbia University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/womens-rights-columbia-university-seeking-womens--13127?ref=freecodecamp"><strong>Seeking Women’s Rights: Colonial Period to the Civil War</strong></a> from <em>Columbia University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/business-administration-columbia-university-risk--9062?ref=freecodecamp"><strong>Risk &amp; Return</strong></a> from <em>Columbia University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/journalism-columbia-university-global-muckraking--8029?ref=freecodecamp"><strong>Global Muckraking: Investigative Journalism and Global Media</strong></a> from <em>Columbia University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/buddhism-columbia-university-indian-tibetan-river-13686?ref=freecodecamp"><strong>Indian &amp; Tibetan River of Buddhism</strong></a> from <em>Columbia University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/history-columbia-university-wage-work-for-women-c-13128?ref=freecodecamp"><strong>Wage Work for Women Citizens: 1870-1920</strong></a> from <em>Columbia University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/career-development-columbia-university-find-your--12258?ref=freecodecamp"><strong>Find Your Calling: Career Transition Principles for Returning Veterans</strong></a> from <em>Columbia University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-columbia-university-fighting-hiv-with-an-11351?ref=freecodecamp"><strong>Fighting HIV with Antiretroviral Therapy: Implementing the Treat-All Approach</strong></a> from <em>Columbia University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/cash-flow-analysis-columbia-university-free-cash--9061?ref=freecodecamp"><strong>Free Cash Flow Analysis</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/inequality-columbia-university-fighting-for-equal-13130?ref=freecodecamp"><strong>Fighting for Equality: 1950–2018</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/childrens-rights-columbia-university-protecting-c-14482?ref=freecodecamp"><strong>Protecting Children in Humanitarian Settings</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/international-law-columbia-university-freedom-of--15198?ref=freecodecamp"><strong>Freedom of Expression and Information in the Time of Globalization: Foundational Course</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/education-columbia-university-learning-success-21907?ref=freecodecamp"><strong>Learning Success</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/education-columbia-university-inclusive-teaching--13690?ref=freecodecamp"><strong>Inclusive Teaching: Supporting All Students in the College Classroom</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/negotiations-columbia-university-negotiating-a-ch-13129?ref=freecodecamp"><strong>Negotiating a Changing World: 1920-1950</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/globalization-columbia-university-freedom-of-expr-15199?ref=freecodecamp"><strong>Freedom of Expression and Information in the Time of Globalization: Advanced Course</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-columbia-university-programming--295555?ref=freecodecamp"><strong>Programming &amp; Data Structures</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/education-columbia-university-attaining-higher-ed-13336?ref=freecodecamp"><strong>Attaining Higher Education</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/human-rights-columbia-university-indigenous-peopl-22010?ref=freecodecamp"><strong>Indigenous Peoples' Rights</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/education-columbia-university-blended-learning-to-207526?ref=freecodecamp"><strong>Blended Learning Toolkit</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-columbia-university-essential-ma-295554?ref=freecodecamp"><strong>Essential Math for AI</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/world-science-u-rewriting-the-code-of-life-with-crispr-58218?ref=freecodecamp"><strong>Rewriting the Code of Life with CRISPR</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/childrens-rights-columbia-university-inspire-seve-96663?ref=freecodecamp"><strong>INSPIRE: Seven Strategies for Ending Violence Against Children</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/public-health-columbia-university-public-health-a-272872?ref=freecodecamp"><strong>Public Health Advocacy Academy</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/higher-education-columbia-university-university-s-9129?ref=freecodecamp"><strong>University Studies for Student Veterans</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/healthcare-columbia-university-menstruation-in-a--57799?ref=freecodecamp"><strong>Menstruation in a Global Context: Addressing Policy and Practice</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/education-columbia-university-digital-case-method-207527?ref=freecodecamp"><strong>Digital Case Method</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/education-columbia-university-supporting-veteran--62878?ref=freecodecamp"><strong>Supporting Veteran Success in Higher Education</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-columbia-university-soins-infirmiers-en--13333?ref=freecodecamp"><strong>Soins infirmiers en VIH pédiatrique</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-columbia-university-traitement-antiretro-13312?ref=freecodecamp"><strong>Traitement antirétroviral pour lutter contre le VIH : mise en œuvre de l'approche « traiter tout le monde »</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mooc-perry-mehrling-economics-of-money-and-banking-511942?ref=freecodecamp"><strong>Economics of Money and Banking</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mooc-edsci1x-4-effective-teaching-strategies-science-of-learning-511940?ref=freecodecamp"><strong>Effective Teaching Strategies - Science of Learning</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mooc-ussv101x-how-to-study-for-technical-courses-511941?ref=freecodecamp"><strong>How to Study for Technical Courses</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mooc-virology-1-how-viruses-work-with-vincent-racaniello-511943?ref=freecodecamp"><strong>Virology 1 - How Viruses Work</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-crmx-crisis-resource-management-mooc-511937?ref=freecodecamp"><strong>Crisis Resource Management - Non-Technical Skills for Effective Healthcare Teamwork</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-crmx-crisis-resource-management-section-2-preparation-511938?ref=freecodecamp"><strong>Crisis Resource Management - Section 2: Preparation</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ways-of-making-glassmaking-full-process-431733?ref=freecodecamp"><strong>Glassmaking Techniques and Processes - From Blowing to Fusing</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-fos4-5-3-foreshadowing-section-5-future-climate-488922?ref=freecodecamp"><strong>FOS4 - Foreshadowing - Section 5: Future Climate</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-fos4-5-4-debunking-myths-section-5-future-climate-488923?ref=freecodecamp"><strong>Debunking Climate Myths - Section 5: Future Climate</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-fos4-2-2-greenhouse-gasses-section-2-global-warming-the-earth-s-surface-488924?ref=freecodecamp"><strong>Greenhouse Gases - Global Warming: The Earth's Surface</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mooc-edsci1x-1-memory-and-learning-science-of-learning-511939?ref=freecodecamp"><strong>Memory and Learning - Science of Learning</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-new-courseworks-tutorials-511944?ref=freecodecamp"><strong>New CourseWorks Tutorials for Columbia Faculty and Teaching Assistants</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ways-of-making-plastic-full-length-522699?ref=freecodecamp"><strong>Ways of Making - Plastic Techniques and Applications</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ways-of-making-glassmaking-glass-chain-431731?ref=freecodecamp"><strong>Creating a Glass Chain Using Flameworking Techniques</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ways-of-making-glassmaking-glass-flower-431732?ref=freecodecamp"><strong>Creating Glass Flowers Through Flameworking Techniques</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ways-of-making-plastic-rubber-molds-522700?ref=freecodecamp"><strong>Ways of Making - Plastic - Rubber Molds</strong></a> from <em>Columbia University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ways-of-making-plastic-bioplastic-522701?ref=freecodecamp"><strong>Ways of Making - Plastic - Bioplastic</strong></a> from <em>Columbia University</em></p>
</li>
</ul>
<h2 id="heading-cornell-university-14-courses"><strong>Cornell University (14 courses)</strong></h2>
<ul>
<li><p><a href="https://www.classcentral.com/course/freecodecamp-database-systems-cornell-university-course-sql-nosql-large-scale-data-analysis-57068?ref=freecodecamp"><strong>Database Systems - Cornell University Course (SQL, NoSQL, Large-Scale Data Analysis)</strong></a> from <em>Cornell University</em> ★★★★★(40)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-programming-cornell-university-the-compu-2809?ref=freecodecamp"><strong>The Computing Technology Inside Your Smartphone</strong></a> from <em>Cornell University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/biology-cornell-university-sharks-5865?ref=freecodecamp"><strong>Sharks!</strong></a> from <em>Cornell University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/biotechnology-cornell-university-the-science-and--6501?ref=freecodecamp"><strong>The Science and Politics of the GMO</strong></a> from <em>Cornell University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-programming-cornell-university-networks--1565?ref=freecodecamp"><strong>Networks, Crowds and Markets</strong></a> from <em>Cornell University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/big-data-cornell-university-wiretaps-to-big-data--1492?ref=freecodecamp"><strong>Wiretaps to Big Data: Privacy and Surveillance in the Age of Interconnection</strong></a> from <em>Cornell University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/business-administration-cornell-university-struct-8285?ref=freecodecamp"><strong>Structuring Business Agreements for Success</strong></a> from <em>Cornell University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/education-cornell-university-teaching-learning-in-15171?ref=freecodecamp"><strong>Teaching &amp; Learning in the Diverse Classroom</strong></a> from <em>Cornell University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/nature-cornell-university-reclaiming-broken-place-2811?ref=freecodecamp"><strong>Reclaiming Broken Places: Introduction to Civic Ecology</strong></a> from <em>Cornell University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/world-science-u-foundations-of-understanding-and-combating-cancer-58165?ref=freecodecamp"><strong>Foundations of Understanding and Combating Cancer</strong></a> from <em>Cornell University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/stem-cornell-university-advancing-learning-throug-6327?ref=freecodecamp"><strong>Advancing Learning Through Evidence-Based STEM Teaching</strong></a> from <em>Cornell University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/biology-life-sciences-cornell-university-applicat-296811?ref=freecodecamp"><strong>Applications of Machine Learning in Plant Science</strong></a> from <em>Cornell University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/teacher-training-cornell-university-an-introducti-6994?ref=freecodecamp"><strong>An Introduction to Evidence-Based Undergraduate STEM Teaching</strong></a> from <em>Cornell University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-nonlinear-dynamics-and-chaos-steven-strogatz-cornell-university-53089?ref=freecodecamp"><strong>Nonlinear Dynamics and Chaos</strong></a> from <em>Cornell University</em></p>
</li>
</ul>
<h2 id="heading-dartmouth-college-231-courses"><strong>Dartmouth College (231 courses)</strong></h2>
<ul>
<li><p><a href="https://www.classcentral.com/course/environmental-science-dartmouth-college-introduct-2637?ref=freecodecamp"><strong>Introduction to Environmental Science</strong></a> from <em>Dartmouth College</em> ★★★★☆(8)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/engineering-dartmouth-college-the-engineering-of--3208?ref=freecodecamp"><strong>The Engineering of Structures Around Us</strong></a> from <em>Dartmouth College</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/philosophy-dartmouth-college-question-reality-sci-6851?ref=freecodecamp"><strong>Question Reality! Science, philosophy, and the search for meaning</strong></a> from <em>Dartmouth College</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/leadership-lessons-legends-106495?ref=freecodecamp"><strong>Leadership Lessons from Legends</strong></a> from <em>Dartmouth College</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/c-programming-dartmouth-college-c-programming-mod-11666?ref=freecodecamp"><strong>C Programming: Modular Programming and Memory Management</strong></a> from <em>Dartmouth College</em> ★★★☆☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/c-programming-dartmouth-college-c-programming-lan-11535?ref=freecodecamp"><strong>C Programming: Language Foundations</strong></a> from <em>Dartmouth College</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/linux-dartmouth-college-linux-basics-the-command--11537?ref=freecodecamp"><strong>Linux Basics: The Command Line Interface</strong></a> from <em>Dartmouth College</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/c-programming-dartmouth-college-c-programming-poi-11533?ref=freecodecamp"><strong>C Programming: Pointers and Memory Management</strong></a> from <em>Dartmouth College</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/c-programming-dartmouth-college-c-programming-usi-11538?ref=freecodecamp"><strong>C Programming: Using Linux Tools and Libraries</strong></a> from <em>Dartmouth College</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/retail-dartmouth-college-retail-fundamentals-8513?ref=freecodecamp"><strong>Retail Fundamentals</strong></a> from <em>Dartmouth College</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/italian-opera-dartmouth-college-introduction-to-i-3840?ref=freecodecamp"><strong>Introduction to Italian Opera</strong></a> from <em>Dartmouth College</em> ★★★☆☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/calming-de-escalation-106418?ref=freecodecamp"><strong>Calming and De-Escalation</strong></a> from <em>Dartmouth College</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/literature-dartmouth-college-the-american-renaiss-4916?ref=freecodecamp"><strong>The American Renaissance: Classic Literature of the 19th Century</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/literature-dartmouth-college-john-milton-paradise-11575?ref=freecodecamp"><strong>John Milton: Paradise Lost</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/retail-dartmouth-college-omnichannel-strategy-and-8519?ref=freecodecamp"><strong>Omnichannel Strategy and Management</strong></a> from <em>Dartmouth College</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/developing-trauma-informed-practice-part-series-106533?ref=freecodecamp"><strong>Developing a Trauma-Informed Practice: Four Part Series</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/holistic-care-webinar-introduction-clinical-hypno-106504?ref=freecodecamp"><strong>Holistic Care Webinar: Introduction to Clinical Hypnosis - Strategies and Skills for Stress Reduction and Improved Communication</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/psychiatry-grand-rounds-social-justice-mental-hea-106460?ref=freecodecamp"><strong>Psychiatry Grand Rounds - Social (In)justice and Mental Health</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/holistic-care-webinar-essential-oil-therapy-nursi-106456?ref=freecodecamp"><strong>Holistic Care Webinar: Essential Oil Therapy for Nursing Practice</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/secondary-traumatic-stress-burnout-106437?ref=freecodecamp"><strong>Secondary Traumatic Stress and Burnout</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/pediatric-lecture-series-baron-munchausen-medical-106529?ref=freecodecamp"><strong>Pediatric Lecture Series - Baron Munchausen to Medical Child Abuse</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/internal-medicine-education-conference-2020-manag-106566?ref=freecodecamp"><strong>General Internal Medicine Education Conference 2020 - Management of Hepatitis C in Primary Care 6/25/2020</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/innovation-nursing-transforming-care-nurse-time-106496?ref=freecodecamp"><strong>Innovation in Nursing: Transforming Care One Nurse at a Time!</strong></a> from <em>Dartmouth College</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-part-4-changing-culture-surr-106509?ref=freecodecamp"><strong>Nursing Grand Rounds Part 4 - Changing the Culture Surrounding Mental Illness: It's Way Past Time</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/internal-medicine-education-conference-primary-ca-106457?ref=freecodecamp"><strong>General Internal Medicine Education Conference - Primary Care Education - Integrated Mental Health: Evidence, Policy, and Implementation</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/leadership-evolving-journey-mission-values-leadin-106494?ref=freecodecamp"><strong>Leadership as an Evolving Journey: Mission and Values in Leading Others</strong></a> from <em>Dartmouth College</em> ★☆☆☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-department-medicine-reports-106556?ref=freecodecamp"><strong>Medicine Grand Rounds - Department of Medicine Case Reports</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-intersection-human-trafficki-106543?ref=freecodecamp"><strong>Nursing Grand Rounds The Intersection of Human Trafficking and Domestic Violence: Is it DV or Could It Be Trafficking?</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-pressure-hyperbaric-oxygen--106559?ref=freecodecamp"><strong>Medicine Grand Rounds - Under Pressure: Should We Give Hyperbaric Oxygen to COVID-19 Patients?</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-department-medicine-scholar-106569?ref=freecodecamp"><strong>Medicine Grand Rounds - Department of Medicine Scholarship Enhancement in Academic Medicine (SEAM) Project Reports</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-senior-resident-internal-me-106572?ref=freecodecamp"><strong>Medicine Grand Rounds - Senior Resident in Internal Medicine Research Presentations</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/tell-healthcare-providers-106394?ref=freecodecamp"><strong>Know &amp; Tell for Healthcare Providers</strong></a> from <em>Dartmouth College</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/c-programming-dartmouth-college-c-programming-get-11534?ref=freecodecamp"><strong>C Programming: Getting Started</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/innovation-dartmouth-college-developing-breakthro-11328?ref=freecodecamp"><strong>Developing Breakthrough Innovations with the Three Box Solution</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/ethics-dartmouth-college-libertarian-free-will-ne-12605?ref=freecodecamp"><strong>Libertarian Free Will: Neuroscientific and Philosophical Evidence</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/innovation-dartmouth-college-executing-breakthrou-11329?ref=freecodecamp"><strong>Executing Breakthrough Innovations with the Three Box Solution</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/art-dartmouth-college-introduction-to-german-oper-7474?ref=freecodecamp"><strong>Introduction to German Opera</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/c-programming-dartmouth-college-c-programming-adv-11536?ref=freecodecamp"><strong>C Programming: Advanced Data Types</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/communication-dartmouth-college-communicating-str-303653?ref=freecodecamp"><strong>Communicating Strategically</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/human-anatomy-dartmouth-college-bipedalism-the-sc-8493?ref=freecodecamp"><strong>Bipedalism: The Science of Upright Walking</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/communication-dartmouth-college-crisis-communicat-303655?ref=freecodecamp"><strong>Crisis Communication and Management</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/psychiatry-grand-rounds-physician-training-prospe-106507?ref=freecodecamp"><strong>Psychiatry Grand Rounds - Physician Training: A Prospective Model to Understand How Stress Leads to Depression</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/communication-dartmouth-college-corporate-respons-303656?ref=freecodecamp"><strong>Corporate Responsibility</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/communication-dartmouth-college-corporate-brand-a-303654?ref=freecodecamp"><strong>Corporate Brand and Reputation</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/laying-groundwork-adverse-childhood-experiences-a-106438?ref=freecodecamp"><strong>Laying the Groundwork: Adverse Childhood Experiences (ACEs) and their Impact</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/psychiatry-grand-rounds-understanding-addressing--106455?ref=freecodecamp"><strong>Psychiatry Grand Rounds - Understanding and Addressing the Psychosocial Needs of Trans and Non-Binary Patients: An Affirming, Effective, and Research-Based Approach</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/becoming-106493?ref=freecodecamp"><strong>Who are you BECOMING?</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-statistics-dartmouth-college-fundam-432145?ref=freecodecamp"><strong>Fundamentals of Digital Transformation</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/psychiatry-grand-rounds-treatment-people-inject-d-106484?ref=freecodecamp"><strong>Psychiatry Grand Rounds - Treatment of People Who Inject Drugs Hospitalized for Serious Infection</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/help-helpers-building-foundation-trauma-informed--106420?ref=freecodecamp"><strong>Help for the Helpers: Building a Foundation for Trauma Informed Care</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/trauma-informed-primary-care-106415?ref=freecodecamp"><strong>Trauma-Informed Primary Care</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-statistics-dartmouth-college-simula-434300?ref=freecodecamp"><strong>Simulation for Digital Transformation</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/treatment-complex-chronic-pain-opioids-helping-hu-106384?ref=freecodecamp"><strong>Treatment of Complex Chronic Pain: Are Opioids Helping or Hurting?</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-statistics-dartmouth-college-predic-434299?ref=freecodecamp"><strong>Predictive Analytics</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-anti-racism-healthcare-heal-106528?ref=freecodecamp"><strong>Medicine Grand Rounds - Anti-Racism, Healthcare, and Health Policy: How far can we go?</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/link-trauma-substance-misuse-strategies-address-m-106417?ref=freecodecamp"><strong>The Link Between Trauma and Substance Misuse: Strategies to Address This in Medical Practice</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-trauma-informed-care-106453?ref=freecodecamp"><strong>Nursing Grand Rounds Trauma Informed Care</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/lwww-talk-self-care-practical-care-ourselves-106568?ref=freecodecamp"><strong>LWWW Well Talk Self-Care: Practical Ways We Can Take Care of Ourselves and Each Other</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/interprofessional-grand-rounds-webinar-series-add-106400?ref=freecodecamp"><strong>Interprofessional Grand Rounds Webinar Series Addressing Sexual Violence: Working Together to Support Survivors (SANE &amp; Law Enforcement) Session 2 of 4</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/chad-pediatric-lecture-series-our-student-s-emoti-106416?ref=freecodecamp"><strong>CHaD Pediatric Lecture Series - Our Student's Emotional and Behavioral Health: Improving Collaboration Between Schools, Families, and Physicians by Focusing on the Child</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-cardiovascular-disease-canc-106446?ref=freecodecamp"><strong>Medicine Grand Rounds - Cardiovascular Disease and Cancer: Cross-Disease Communication</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/internal-medicine-primary-care-education-conferen-106434?ref=freecodecamp"><strong>General Internal Medicine and Primary Care Education Conference - Treating Unhealthy Alcohol Use: What's Our Disorder?</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/perianesthesia-procedural-topics-operating-room-a-106523?ref=freecodecamp"><strong>Perianesthesia and Procedural Topics Non-Operating Room Anesthesia</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-aging-dying-prison-integrat-106515?ref=freecodecamp"><strong>Medicine Grand Rounds - Aging and Dying in Prison: Integrating Geriatrics and Palliative Care into Criminal Justice Reform</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-covid-19-immunology-boot-ca-106564?ref=freecodecamp"><strong>Medicine Grand Rounds - COVID-19 as Immunology Boot Camp: Cytokine Release Syndrome &amp; Prospects for Therapy</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-statistics-dartmouth-college-prescr-434301?ref=freecodecamp"><strong>Prescriptive Analytics</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106473?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative: Co-occurring Mental Illness and Substance Use</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-structural-heart-disease-in-106477?ref=freecodecamp"><strong>Medicine Grand Rounds - Structural Heart Disease: Innovation, Implementation &amp; Interdisciplinary Care</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/pediatric-lecture-series-caring-adolescents-eatin-106522?ref=freecodecamp"><strong>Pediatric Lecture Series - Caring for Adolescents with Eating Disorders in Northern New England</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-cardiovascular-safety-urate-106429?ref=freecodecamp"><strong>Medicine Grand Rounds - Cardiovascular Safety of Urate-Lowering Drugs in Gout</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-part-2-changing-culture-surr-106542?ref=freecodecamp"><strong>Nursing Grand Rounds Part 2 Changing the Culture Surrounding Mental Illness: It's Way Past Time</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-heart-failure-preserved-eje-106521?ref=freecodecamp"><strong>Medicine Grand Rounds - Heart Failure with Preserved Ejection Fraction - A Misunderstood Disease in Search of a Therapy</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nonalcoholic-fatty-liver-disease-106396?ref=freecodecamp"><strong>Nonalcoholic Fatty Liver Disease</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/vaccine-anxiety-children-106512?ref=freecodecamp"><strong>Vaccine Anxiety in Children</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/interprofessional-grand-rounds-webinar-series-add-106395?ref=freecodecamp"><strong>Interprofessional Grand Rounds Webinar Series Addressing Sexual Violence: Working Together to Support Survivors (Child Advocacy Model in Child Abuse Case) Session 4 of 4</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-healing-intention-106444?ref=freecodecamp"><strong>Medicine Grand Rounds - Healing with Intention</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-immune-related-toxicities-i-106425?ref=freecodecamp"><strong>Medicine Grand Rounds - Immune-Related Toxicities with Immune Checkpoint Inhibitors</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/internal-medicine-education-conference-primary-ca-106421?ref=freecodecamp"><strong>General Internal Medicine Education Conference - Primary Care Education - Osteoporosis related fractures;Deadly but Ignored.....A way forward</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/putting-trauma-informed-care-practice-perinatal-s-106461?ref=freecodecamp"><strong>Putting Trauma-Informed Care into Practice in the Perinatal Setting (Part 1 of 3) - Foundations for Trauma Informed Care</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106465?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative MAT and Telemedicine</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-2021-ada-standards-care-over-106435?ref=freecodecamp"><strong>Nursing Grand Rounds The 2021 ADA Standards of Care: An Overview of Diabetes Classifications and the Use of Technology in Diabetes Management</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/dh-ambulatory-nursing-presents-art-nursing-creati-106483?ref=freecodecamp"><strong>DH Ambulatory Nursing Presents The Art of Nursing: Creativity, Growth and Innovation</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/chad-pediatric-lecture-series-teen-brain-decision-106392?ref=freecodecamp"><strong>CHaD Pediatric Lecture Series - The Teen Brain: Decision making, assent, and confidentiality</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-implementing-telemedicine-c-106571?ref=freecodecamp"><strong>Medicine Grand Rounds - Implementing Telemedicine in a Chronic Care Model</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-heart-failure-education-guid-106581?ref=freecodecamp"><strong>Nursing Grand Rounds Heart Failure Education: A Guide for Nurses</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/interprofessional-grand-rounds-s-wrong-s-trauma-106383?ref=freecodecamp"><strong>Interprofessional Grand Rounds Nothing's wrong with them! It's Trauma</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-questions-colorectal-cancer-106436?ref=freecodecamp"><strong>Medicine Grand Rounds - Open Questions in Colorectal Cancer Screening</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-part-6-changing-culture-surr-106450?ref=freecodecamp"><strong>Nursing Grand Rounds Part 6 - Changing the Culture Surrounding Mental Illness: It's Way Past Time</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-sex-differences-obstructive-106573?ref=freecodecamp"><strong>Medicine Grand Rounds - Sex Differences in Obstructive Sleep Apnea Why it Matters, May 8, 2020</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-virtually-science-practice--106519?ref=freecodecamp"><strong>Medicine Grand Rounds - Virtually Better: The Science and Practice of Therapeutic Virtual Reality</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/putting-trauma-informed-care-practice-perinatal-s-106458?ref=freecodecamp"><strong>Putting Trauma-Informed Care into Practice in the Perinatal Setting (Part 2 of 3) - Caring with Compassion Building Skills for Trauma-Responsive Care</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/surgery-grand-rounds-june-19-2020-perioperative-m-106567?ref=freecodecamp"><strong>Surgery Grand Rounds June 19, 2020 - Perioperative Management of Pain and Addiction in Patients with Opioid Use Disorder</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-changing-culture-surrounding-106555?ref=freecodecamp"><strong>Nursing Grand Rounds Changing the Culture Surrounding Mental Illness: It's Way Past Time</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/echo-climate-health-towards-climate-informed-care-106385?ref=freecodecamp"><strong>ECHO Climate &amp; Health: Towards Climate-Informed Care &amp; Advocacy</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-shattering-silence-rape-trau-106511?ref=freecodecamp"><strong>Nursing Grand Rounds Shattering Silence: Rape Trauma Circa 2021</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-structural-inequity-racial--106561?ref=freecodecamp"><strong>Medicine Grand Rounds - Structural Inequity, Racial and Ethnic Disparities and Infectious Diseases: Are There Sustainable Solutions?</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-gut-microbiome-lessons-reim-106580?ref=freecodecamp"><strong>Medicine Grand Rounds - Gut Microbiome: Lessons from the REIMAGINE Study, Mark Pimentel, MD, FRCP(C)</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-emerging-science-transform--106541?ref=freecodecamp"><strong>Medicine Grand Rounds - How Emerging Science Can Transform Obesity Care</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/department-surgery-grand-rounds-responsible-opioi-106478?ref=freecodecamp"><strong>Department of Surgery Grand Rounds - Responsible Opioid Prescribing After Surgery</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/dh-ambulatory-nursing-presents-professional-teleh-106488?ref=freecodecamp"><strong>DH Ambulatory Nursing Presents - Professional Telehealth Nursing: More than a Question, Click, and Conclusion</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-bob-cimis-memorial-lecture--106452?ref=freecodecamp"><strong>Medicine Grand Rounds - The Bob Cimis Memorial Lecture - Challenges and Progress Towards the Prevention of Pancreatic Cancer</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-opioids-pain-management-pre-106539?ref=freecodecamp"><strong>Medicine Grand Rounds - Opioids and Pain Management: Preventing Harm and Maximizing Benefit</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/putting-trauma-informed-care-practice-perinatal-s-106454?ref=freecodecamp"><strong>Putting Trauma-Informed Care into Practice in the Perinatal Setting (Part 3 of 3) - Birth Trauma Mitigation and Use of the Plan of Safe Care in Supportive Communication</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-enduring-material-toxicology-testing-risk-str-106474?ref=freecodecamp"><strong>AXL Enduring Material - Toxicology Testing and Risk Stratification Considerations</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-minimal-trauma-fractures-os-106479?ref=freecodecamp"><strong>Medicine Grand Rounds - Minimal trauma fractures and osteoporosis, deadly but ignored...how do we solve this?</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-part-3-changing-culture-surr-106532?ref=freecodecamp"><strong>Nursing Grand Rounds Part 3 - Changing the Culture Surrounding Mental Illness: It's Way Past Time</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-caring-victims-fatal-strangu-106447?ref=freecodecamp"><strong>Nursing Grand Rounds Caring for Victims of Non-fatal Strangulation</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-found-holy-grail-blood-thin-106475?ref=freecodecamp"><strong>Medicine Grand Rounds - Have We Found the Holy Grail of Blood Thinners?</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-neuro-axis-fire-checkpoint--106534?ref=freecodecamp"><strong>Medicine Grand Rounds - Neuro-Axis on Fire: Checkpoint Inhibitor Neuritis / Encephalitis and CAR-T Neurotoxicity. How fast can it burn?</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-night-violence-brain-injurie-106513?ref=freecodecamp"><strong>Nursing Grand Rounds Just Another Night of Violence: Brain Injuries from Intimate Partner Violence in New Hampshire</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106469?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative - Intersections of Intimate Partner Violence, Opioids, and Trauma: Theory to Practice</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-serrated-pathway-colorectal-106517?ref=freecodecamp"><strong>Medicine Grand Rounds - The Serrated Pathway and Colorectal Cancer Screening</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/chad-pediatric-lecture-series-female-athlete-tria-106399?ref=freecodecamp"><strong>CHaD Pediatric Lecture Series - Female Athlete Triad 2022: Optimizing Bone Health in Active Female Adolescents</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-part-5-changing-culture-surr-106480?ref=freecodecamp"><strong>Nursing Grand Rounds Part 5 - Changing the Culture Surrounding Mental Illness: It's Way Past Time</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/lung-cancer-screening-update-call-action-106445?ref=freecodecamp"><strong>Lung Cancer Screening: An Update and Call to Action</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/interprofessional-grand-rounds-webinar-series-add-106403?ref=freecodecamp"><strong>Interprofessional Grand Rounds Webinar Series Addressing Sexual Violence: Working Together to Support Survivors (Advocacy) Session 1 of 4</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-medical-consequences-climat-106439?ref=freecodecamp"><strong>Medicine Grand Rounds - Medical Consequences of Climate Change</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-team-based-learning-enginee-106530?ref=freecodecamp"><strong>Medicine Grand Rounds - Team-Based Learning: Engineering Human Performance through Collaboration</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-finding-oasis-food-deserts-f-106448?ref=freecodecamp"><strong>Nursing Grand Rounds Finding the Oasis in Food Deserts: Food Access Awareness and Budget Conscious Nutrition</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/2022-holistic-care-webinar-combustion-avoidance-c-106393?ref=freecodecamp"><strong>The 2022 Holistic Care Webinar Combustion Avoidance: Communication Strategies to Prevent Interpersonal Conflict</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-nurses-critical-role-enhanci-106414?ref=freecodecamp"><strong>Nursing Grand Rounds Nurses Critical Role in Enhancing Health Literacy</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-department-medicine-scholar-106514?ref=freecodecamp"><strong>Medicine Grand Rounds - Department of Medicine Scholarship Enhancement in Academic Medicine (SEAM) Project Reports</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/surgery-grand-rounds-bias-assessment-treatment-pa-106520?ref=freecodecamp"><strong>Surgery Grand Rounds - Bias in the Assessment and Treatment of Pain</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-embedding-clinical-trials-c-106503?ref=freecodecamp"><strong>Medicine Grand Rounds - Embedding Clinical Trials within Clinical Care: The Future of Learning Healthcare Systems</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/interprofessional-grand-rounds-webinar-series-add-106397?ref=freecodecamp"><strong>Interprofessional Grand Rounds Webinar Series Addressing Sexual Violence: Working Together to Support Survivors (Title IX &amp; College Advocacy) Session 3 of 4</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-frail-adults-106560?ref=freecodecamp"><strong>Medicine Grand Rounds - Frail Older Adults and How to Find Them</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/chad-pediatric-lecture-series-communication-adver-106411?ref=freecodecamp"><strong>CHaD Pediatric Lecture Series - Communication after Adverse Events</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-insulin-100-historical-pers-106430?ref=freecodecamp"><strong>Medicine Grand Rounds - Insulin @ 100: A Historical Perspective</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/51st-meeting-nh-vt-ethics-committees-navigating-d-106443?ref=freecodecamp"><strong>The 51st Meeting of the NH/VT Ethics Committees: Navigating Decision-Making Capacity amid Mental Illness Uncomfortable Ethical Quandaries Inherent When Psychiatrically Ill Children are Boarded on Non-psychiatric Pediatric Floors Part 3 of 4</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-nicotine-addiction-101-106546?ref=freecodecamp"><strong>Nursing Grand Rounds Nicotine Addiction 101: What is it and why is it important to you?</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/2022-trauma-webinar-series-part-geriatric-trauma--106386?ref=freecodecamp"><strong>The 2022 Trauma Webinar Series Part Four: Geriatric Trauma The Rising Tide</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/2022-trauma-webinar-series-part-kinematics-trauma-106412?ref=freecodecamp"><strong>The 2022 Trauma Webinar Series - Part One: Kinematics of Trauma</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-post-acute-sequelae-covid-1-106482?ref=freecodecamp"><strong>Medicine Grand Rounds - Post-Acute Sequelae of COVID-19: Lessons in Clinical Care and Health Care Delivery Science</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/51st-meeting-nh-vt-ethics-committees-navigating-d-106440?ref=freecodecamp"><strong>The 51st Meeting of the NH/VT Ethics Committees: Navigating Decision-Making Capacity amid Mental Illness Capacity Assessment Part 1 of 4</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-nursing-burnout-coping-strat-106485?ref=freecodecamp"><strong>Nursing Grand Rounds Nursing Burnout and Coping Strategies</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/51st-meeting-nh-vt-ethics-committees-navigating-d-106441?ref=freecodecamp"><strong>The 51st Meeting of the NH/VT Ethics Committees: Navigating Decision-Making Capacity amid Mental Illness Eating Disorders Part 2 of 4</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/2022-trauma-webinar-series-part-acute-burn-care-2-106388?ref=freecodecamp"><strong>The 2022 Trauma Webinar Series Part Three: Acute Burn Care - The First 24 Hours</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/pediatric-grand-rounds-tackling-nation-s-overdose-106390?ref=freecodecamp"><strong>Pediatric Grand Rounds - Tackling the Nation's Overdose Crisis: The Role of Pediatric Providers, 5/18/22</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/2022-nursing-leadership-webinar-series-nurse-lead-106391?ref=freecodecamp"><strong>The 2022 Nursing Leadership Webinar Series: When Nurse Leaders Speak, Legislators Listen</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-hope-design-thinking-nurse-i-106404?ref=freecodecamp"><strong>Nursing Grand Rounds: HOPE Design Thinking for Nurse Innovators</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/interprofessional-grand-rounds-webinar-human-traf-106419?ref=freecodecamp"><strong>Interprofessional Grand Rounds Webinar - Human Trafficking Awareness with Homeland Security: NH Updates</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-personalized-therapeutics-m-106497?ref=freecodecamp"><strong>Medicine Grand Rounds - Personalized Therapeutics Moving Beyond Precision Medicine</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-updates-polycystic-kidney-d-106516?ref=freecodecamp"><strong>Medicine Grand Rounds - Updates in Polycystic Kidney Disease</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-resident-research-presentat-106492?ref=freecodecamp"><strong>Medicine Grand Rounds - Resident Research Presentations</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/interprofessional-grand-rounds-art-human-lived-ex-106535?ref=freecodecamp"><strong>Interprofessional Grand Rounds The Art of Being Human:The Lived Experience of People with Disabilities</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/virtual-conversations-justice-equity-bioethics-pa-106538?ref=freecodecamp"><strong>Virtual Conversations in Justice and Equity in Bioethics Part 3 of 3: Racism and Health Equity: Why Does it Matter in Bioethics?</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-pulmonary-fibrosis-epitheli-106547?ref=freecodecamp"><strong>Medicine Grand Rounds - Pulmonary Fibrosis - How Epithelial Cells and Fibroblasts Use the Same Language to Drive Each Other Mad</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-endocrine-complications-ano-106562?ref=freecodecamp"><strong>Medicine Grand Rounds - Endocrine Complications of Anorexia Nervosa</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-action-plan-gender-equity-d-106432?ref=freecodecamp"><strong>Medicine Grand Rounds - An Action Plan toward Gender Equity in a Department of Medicine</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/51st-meeting-nh-vt-ethics-committees-navigating-d-106442?ref=freecodecamp"><strong>The 51st Meeting of the NH/VT Ethics Committees: Navigating Decision-Making Capacity amid Mental Illness Ulysses Clause Part 4 of 4</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106462?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative Medication Assisted Treatment in Vermont Correctional Facilities</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106464?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative Providing Care Coordination and Medication to Treat Pregnant and Post-pregnant People for OUD</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/interprofessional-grand-rounds-unconscious-bias-106558?ref=freecodecamp"><strong>Interprofessional Grand Rounds Unconscious Bias</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-ve-thunderstruck-106563?ref=freecodecamp"><strong>Medicine Grand Rounds - Youve Been Thunderstruck!</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106471?ref=freecodecamp"><strong>AXL - Advanced Opioid Use Disorder X-waiver Team Learning Collaborative: Opioid Use Disorders Co-morbid with Alcohol, Sedative, Stimulant, or Tobacco Use Disorders: A Person Centered Approach</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-excessive-alcohol-nurse-s-ro-106501?ref=freecodecamp"><strong>Nursing Grand Rounds Excessive Alcohol Use: Nurse's Role in Screening, Brief Intervention (Advice) &amp; Referral for Treatment</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-suddenly-meatless-tick-bite-106565?ref=freecodecamp"><strong>Medicine Grand Rounds - Suddenly Meatless: How Tick Bites and Reactions to Red Meat are Changing the Paradigm of Food Allergy</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-unconscious-bias-106552?ref=freecodecamp"><strong>Medicine Grand Rounds - Unconscious Bias: Where are We Now?</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106468?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative - Impact of Opioid Use Disorders on Children and Families</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106466?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative - Treating Alcohol Use Disorder in Patients Receiving Medication for OUD</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106470?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative - Health Disparities &amp; Partner Agencies</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/geriatric-education-series-appropriate-prescribin-106526?ref=freecodecamp"><strong>Geriatric Education Series - Appropriate Prescribing Practices for Opioids for Pain Management in Older Adults</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-education-practice-partnersh-106428?ref=freecodecamp"><strong>Nursing Grand Rounds Education and Practice Partnerships in Nursing Education: The Capstone Experience in the RNBS Program at CSC</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-getting-basics-caring-stroke-106451?ref=freecodecamp"><strong>Nursing Grand Rounds Getting Back to the Basics: Caring for Stroke Patients at Dartmouth-Hitchcock</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-myths-evidence-future-tobac-106550?ref=freecodecamp"><strong>Medicine Grand Rounds - Myths, Evidence, and the Future of Tobacco Treatment</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/virtual-conversations-justice-equity-bioethics-pa-106545?ref=freecodecamp"><strong>Virtual Conversations in Justice and Equity in Bioethics Part 2 of 3: Equity in the COVID-19 Pandemic</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/virtual-conversations-justice-equity-bioethics-pa-106551?ref=freecodecamp"><strong>Virtual Conversations in Justice and Equity in Bioethics Part 1 of 3: Challenging Patient Encounters: Psychologically Informed Patient and Family Centered Care</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-detection-pulmonary-fibrosi-106449?ref=freecodecamp"><strong>Medicine Grand Rounds - Early Detection of Pulmonary Fibrosis</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/shared-decision-youth-treated-psychotropic-medica-106487?ref=freecodecamp"><strong>Shared Decision Making for Youth Treated with Psychotropic Medications</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-single-payer-106544?ref=freecodecamp"><strong>Medicine Grand Rounds - Why We Need Single Payer</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/wicked-pissah-update-management-male-voiding-symp-106426?ref=freecodecamp"><strong>Wicked Pissah Update on Management of Male Voiding Symptoms</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-consult-conflict-medicine-106537?ref=freecodecamp"><strong>Medicine Grand Rounds - Consult Conflict in Medicine</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/chad-pediatric-lecture-series-pediatric-covid-upd-106387?ref=freecodecamp"><strong>CHaD Pediatric Lecture Series - Pediatric COVID Update</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-critical-thinking-bedside-i-106575?ref=freecodecamp"><strong>Medicine Grand Rounds - Critical Thinking at the Bedside: Incorporating Uncertainty into your Practice and Teaching - April 24, 2020</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/2022-trauma-webinar-series-part-five-organ-donati-106382?ref=freecodecamp"><strong>The 2022 Trauma Webinar Series: Part Five Organ Donation</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/16th-ethics-committee-training-day-section-six-si-106405?ref=freecodecamp"><strong>The 16th Ethics Committee Training Day Section Six of Six - Ethics Simulation: A Collaborative Practice of an Ethics Consultation (Must complete sessions 1 5 before registering for this session)</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/chad-pediatric-lecture-series-gerd-guidelines-con-106427?ref=freecodecamp"><strong>CHaD Pediatric Lecture Series - GERD: Latest Guidelines and Controversies</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-happy-100th-anniversary-insu-106505?ref=freecodecamp"><strong>Nursing Grand Rounds Happy 100th Anniversary to Insulin! Diabetes Update 2021</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/perioperative-patient-care-leadership-106554?ref=freecodecamp"><strong>Perioperative Patient Care: Leadership in the OR</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-metoo-addressing-gender-ine-106570?ref=freecodecamp"><strong>Medicine Grand Rounds - #MeToo: Addressing Gender Inequity in Academic Medicine</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106463?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative - Long-Term OUD Medication Management</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-education-practice-partnersh-106518?ref=freecodecamp"><strong>Nursing Grand Rounds Education and Practice Partnerships in Nursing Education: The Capstone Experience in the RNBS Program at CSC</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-decision-colonoscopy-adults-106548?ref=freecodecamp"><strong>Medicine Grand Rounds - When is Enough, Enough? Decision Making Around Colonoscopy in Older Adults</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-leveraging-education-techno-106557?ref=freecodecamp"><strong>Medicine Grand Rounds - Leveraging Education Technology in our Brave New Medical Education World</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-innovation-translation-pract-106413?ref=freecodecamp"><strong>Nursing Grand Rounds - Innovation: Translation into Practice</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-opioid-disorder-waiver-team-learning-collabor-106424?ref=freecodecamp"><strong>AXL - Opioid Use Disorder X-waiver Team Learning Collaborative - Pain Treatment in Substance Use Disorders</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-covid-19-mission-operation-g-106553?ref=freecodecamp"><strong>Nursing Grand Rounds COVID-19 Mission: Operation Gotham</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/virtual-conversations-justice-equity-bioethics-co-106502?ref=freecodecamp"><strong>Virtual Conversations in Justice and Equity in Bioethics: Controversies Around COVID-19 Vaccines</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-nursing-advocacy-difference-106579?ref=freecodecamp"><strong>Nursing Grand Rounds Nursing Advocacy: How YOU Can Make a Difference</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/perianesthesia-procedural-topics-team-nursing-106525?ref=freecodecamp"><strong>Perianesthesia and Procedural Topics Team Nursing</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/16th-ethics-committee-training-day-section-six-he-106409?ref=freecodecamp"><strong>The 16th Ethics Committee Training Day Section Two of Six - What is a Healthcare Ethics Committee</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-nursing-research-self-effica-106431?ref=freecodecamp"><strong>Nursing Grand Rounds Nursing Research Self-Efficacy at an Academic Medical Center</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-thriving-life-quake-106433?ref=freecodecamp"><strong>Nursing Grand Rounds - Thriving After a Life-Quake</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-equity-efficiency-icu-triag-106489?ref=freecodecamp"><strong>Medicine Grand Rounds - Equity, Efficiency, and ICU Triage during the COVID-19 Pandemic</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/dh-ambulatory-nursing-presents-ambulatory-nurses--106490?ref=freecodecamp"><strong>DH Ambulatory Nursing Presents - Ambulatory Nurses and Innovation: How Nurses Can Shape Healthcare</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-team-based-learning-engineer-106531?ref=freecodecamp"><strong>Nursing Grand Rounds Team-Based Learning: Engineering Human Performance Through Collaboration (Combined with Medicine Grand Rounds)</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/2022-trauma-webinar-series-part-massive-transfusi-106402?ref=freecodecamp"><strong>The 2022 Trauma Webinar Series Part Two: Massive Transfusion in Traumatically Injured Adults and Children</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106472?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative: Managing Injection Behaviors: The Partial Responder to MAT</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-discovering-vexas-science-t-106481?ref=freecodecamp"><strong>Medicine Grand Rounds - Discovering VEXAS: the Science of Team Science</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-cultivating-empathy-medicin-106540?ref=freecodecamp"><strong>Medicine Grand Rounds - Cultivating Empathy in Medicine: What Would Dr. Matthews Say? The Louis B. Matthews Visiting Professorship</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-nurse-leadership-advocacy-ac-106549?ref=freecodecamp"><strong>Nursing Grand Rounds Year of the Nurse: A Year of Leadership, Advocacy and Activism</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/2022-nursing-leadership-webinar-series-part-learn-106389?ref=freecodecamp"><strong>The 2022 Nursing Leadership Webinar Series - Part Three: What I Learned about Moving a Medical Center (and How it Impacted the Rest of My Nursing Career)</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/16th-ethics-committee-training-day-section-six-in-106407?ref=freecodecamp"><strong>The 16th Ethics Committee Training Day Section Four of Six - Informed Consent</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/16th-ethics-committee-training-day-section-six-ex-106408?ref=freecodecamp"><strong>The 16th Ethics Committee Training Day - Section Three of Six Exploring the Ethical Foundation for Ethics Committees</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/fourth-annual-dartmouth-hitchcock-nursing-researc-106500?ref=freecodecamp"><strong>The Fourth Annual Dartmouth-Hitchcock Nursing Research Symposium - Tackling a problem: Panel on Research, Evidence-Based Practice, and Quality Improvement (Part 2 of 3)</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106467?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative - Developing a Stress Resilient Workforce</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-exam-table-106506?ref=freecodecamp"><strong>Medicine Grand Rounds - From the Other Side of the Exam Table</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-education-practice-partnersh-106536?ref=freecodecamp"><strong>Nursing Grand Rounds Education and Practice Partnerships in Nursing Education: The Capstone Experience in the RNBS Program at CSC</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/interprofessional-grand-rounds-webinar-creating-t-106476?ref=freecodecamp"><strong>Interprofessional Grand Rounds Webinar - Creating a Trans Affirming Environment: Use of Gender Appropriate Language at Dartmouth-Hitchcock</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-limited-english-proficient-p-106491?ref=freecodecamp"><strong>Nursing Grand Rounds Working with Limited English Proficient Patients and Interpreter Services at Dartmouth-Hitchcock</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-improving-event-reporting-am-106582?ref=freecodecamp"><strong>Nursing Grand Rounds More is Better: Improving Event Reporting in Ambulatory Care</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-severe-acute-respiratory-sy-106576?ref=freecodecamp"><strong>Medicine Grand Rounds - Severe Acute Respiratory Syndrome Coronavirus 2 COVID-19: Science Update, March 20, 2020</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/dh-ambulatory-nursing-presents-pandemic-help-driv-106486?ref=freecodecamp"><strong>DH Ambulatory Nursing Presents - How the Pandemic can Help us Drive the Implementation of Team-Based Care at DH-H</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-recent-advances-treatment-s-106577?ref=freecodecamp"><strong>Medicine Grand Rounds - Recent Advances in the Treatment of Scleroderma, March 13, 2020</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/16th-ethics-committee-training-day-section-six-co-106410?ref=freecodecamp"><strong>The 16th Ethics Committee Training Day - Section One of Six - Common Presentations of Ethical Concerns brought to a Clinical Ethics Committee</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-interpreter-services-dartmou-106459?ref=freecodecamp"><strong>Nursing Grand Rounds Interpreter Services at Dartmouth-Hitchcock: A Deeper Dive</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-covid-19-lessons-learned-ov-106508?ref=freecodecamp"><strong>Medicine Grand Rounds - COVID-19: Lessons Learned Over the Past Year. Can We Do Better?</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-empathy-physician-covid-res-106510?ref=freecodecamp"><strong>Medicine Grand Rounds - Empathy for the Physician: How COVID Has Reshaped Our Relationships and Lives</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/health-safety-dartmouth-college-epidemiology-of-m-511025?ref=freecodecamp"><strong>Foundations of Epidemiology of Medical Care</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/52nd-meeting-vt-nh-ethics-committees-ethics-ratio-106401?ref=freecodecamp"><strong>The 52nd Meeting of the VT and NH Ethics Committees The Ethics of Rationing</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106423?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative - Buprenorphine &amp; Diversion: The Vermont Regulatory Environment.</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/16th-ethics-committee-training-day-section-five-s-106406?ref=freecodecamp"><strong>The 16th Ethics Committee Training Day Section Five of Six - Surrogate Decision Making</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/axl-advanced-opioid-disorder-waiver-team-learning-106422?ref=freecodecamp"><strong>AXL: Advanced Opioid Use Disorder X-waiver Team Learning Collaborative - Treating HCV in Spokes</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/perianesthesia-procedural-topics-duty-patient-ali-106524?ref=freecodecamp"><strong>Perianesthesia and Procedural Topics Duty to Patient: Aligns Standards with Clinical Case Scenarios</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nursing-grand-rounds-force-nursing-innovation-dh--106574?ref=freecodecamp"><strong>Nursing Grand Rounds The Force Within: Nursing Innovation and DH's First Nursing Micro Hackathon</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/fourth-annual-dartmouth-hitchcock-nursing-researc-106498?ref=freecodecamp"><strong>The Fourth Annual Dartmouth-Hitchcock Nursing Research Symposium - Keynote: Bedside to Bench to Bedside: Nursing Research to Inform Practice (Part 1 of 3)</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/app-precepting-workshop-4-14-2022-106398?ref=freecodecamp"><strong>APP Precepting Workshop - 4-14-2022</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/fourth-annual-dartmouth-hitchcock-nursing-researc-106499?ref=freecodecamp"><strong>The Fourth Annual Dartmouth-Hitchcock Nursing Research Symposium - What Can We Do By Next Tuesday? Bringing It All Together and Not Losing Steam (Part 3 of 3)</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/health-safety-dartmouth-college-medical-care-epid-511024?ref=freecodecamp"><strong>Medical Care Epidemiology: Patterns, Performance, and Variation</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/health-safety-dartmouth-college-epidemiology-and--511026?ref=freecodecamp"><strong>Epidemiology and the Science of Health Care Variation</strong></a> from <em>Dartmouth College</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/medicine-grand-rounds-haiti-earthquake-reflection-106578?ref=freecodecamp"><strong>Medicine Grand Rounds - Haiti after the Earthquake: A Reflection 10 Years, March 6, 2020</strong></a> from <em>Dartmouth College</em></p>
</li>
</ul>
<h2 id="heading-harvard-university-357-courses"><strong>Harvard University (357 courses)</strong></h2>
<ul>
<li><p><a href="https://www.classcentral.com/course/freecodecamp-harvard-cs50-full-computer-science-university-course-119762?ref=freecodecamp"><strong>Harvard CS50 – Full Computer Science University Course</strong></a> from <em>Harvard University</em> ★★★★★(1353)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/ap-harvard-university-cs50-s-ap-r-computer-scienc-532554?ref=freecodecamp"><strong>CS50's AP® Computer Science Principles</strong></a> from <em>Harvard University</em> ★★★★★(227)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-next-in-data-visualization-michelle-borkin-radcliffe-institute-179693?ref=freecodecamp"><strong>Next in Data Visualization - Michelle Borkin - Radcliffe Institute</strong></a> from <em>Harvard University</em> ★★★★☆(100)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/justice-harvard-university-justice-610?ref=freecodecamp"><strong>Justice</strong></a> from <em>Harvard University</em> ★★★★★(60)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-leadership-in-effectively-communicating-for-causes-or-issues-179755?ref=freecodecamp"><strong>Leadership in Effectively Communicating for Causes and Crises</strong></a> from <em>Harvard University</em> ★★★★★(47)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/web-development-harvard-university-cs50-s-web-pro-11506?ref=freecodecamp"><strong>CS50's Web Programming with Python and JavaScript</strong></a> from <em>Harvard University</em> ★★★★★(45)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-advanced-algorithms-compsci-224-48051?ref=freecodecamp"><strong>Advanced Algorithms - COMPSCI 224</strong></a> from <em>Harvard University</em> ★★★★★(43)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/artificial-intelligence-harvard-university-cs50-s-18122?ref=freecodecamp"><strong>CS50's Introduction to Artificial Intelligence with Python</strong></a> from <em>Harvard University</em> ★★★★★(38)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-covering-immigration-a-resource-for-journalists-91507?ref=freecodecamp"><strong>Covering Immigration: A Resource for Journalists</strong></a> from <em>Harvard University</em> ★★★★★(37)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/leadership-harvard-university-exercising-leadersh-20796?ref=freecodecamp"><strong>Exercising Leadership: Foundational Principles</strong></a> from <em>Harvard University</em> ★★★★★(36)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/healthcare-harvard-university-mechanical-ventilat-19347?ref=freecodecamp"><strong>Mechanical Ventilation for COVID-19</strong></a> from <em>Harvard University</em> ★★★★★(27)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-harvard-university-cs50-s-comput-10143?ref=freecodecamp"><strong>CS50’s Computer Science for Business</strong></a> from <em>Harvard University</em> ★★★★★(25)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/leadership-harvard-university-leaders-of-learning-2027?ref=freecodecamp"><strong>Leaders of Learning</strong></a> from <em>Harvard University</em> ★★★★★(23)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/neuroscience-harvard-university-fundamentals-of-n-942?ref=freecodecamp"><strong>Fundamentals of Neuroscience, Part 1: The Electrical Properties of the Neuron</strong></a> from <em>Harvard University</em> ★★★★★(22)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/r-programming-harvard-university-statistics-and-r-2960?ref=freecodecamp"><strong>Statistics and R</strong></a> from <em>Harvard University</em> ★★★★☆(20)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/architecture-harvard-university-the-architectural-7836?ref=freecodecamp"><strong>The Architectural Imagination</strong></a> from <em>Harvard University</em> ★★★★☆(17)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/business-law-harvard-university-contract-law-from-2633?ref=freecodecamp"><strong>Contract Law: From Trust to Promise to Contract.</strong></a> from <em>Harvard University</em> ★★★★☆(16)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hilt-2019-conference-making-peer-learning-effective-179674?ref=freecodecamp"><strong>HILT Conference - Making Peer Learning Effective</strong></a> from <em>Harvard University</em> ★★★★★(16)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-justice-with-michael-sandel-91448?ref=freecodecamp"><strong>Justice with Michael Sandel</strong></a> from <em>Harvard University</em> ★★★★★(15)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-should-law-foster-forgiveness-martha-minow-radcliffe-institute-179747?ref=freecodecamp"><strong>Should Law Foster Forgiveness? Child Soldiers, Sovereign Debt, and Alternatives to Punishment</strong></a> from <em>Harvard University</em> ★★★★☆(15)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/food-science-harvard-university-science-cooking-f-811?ref=freecodecamp"><strong>Science &amp; Cooking: From Haute Cuisine to Soft Matter Science (chemistry)</strong></a> from <em>Harvard University</em> ★★★★★(14)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/human-anatomy-harvard-university-human-anatomy-mu-2024?ref=freecodecamp"><strong>Human Anatomy: Musculoskeletal Cases</strong></a> from <em>Harvard University</em> ★★★★★(14)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/biochemistry-harvard-university-principles-of-bio-3462?ref=freecodecamp"><strong>Principles of Biochemistry</strong></a> from <em>Harvard University</em> ★★★★★(13)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/python-harvard-university-cs50-s-introduction-to--58275?ref=freecodecamp"><strong>CS50's Introduction to Programming with Python</strong></a> from <em>Harvard University</em> ★★★★★(13)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/entrepreneurship-harvard-university-entrepreneurs-2104?ref=freecodecamp"><strong>Entrepreneurship in Emerging Economies</strong></a> from <em>Harvard University</em> ★★★★★(12)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/r-programming-harvard-university-data-science-r-b-9253?ref=freecodecamp"><strong>Data Science: R Basics</strong></a> from <em>Harvard University</em> ★★★★★(12)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/linear-algebra-harvard-university-introduction-to-2963?ref=freecodecamp"><strong>Introduction to Linear Models and Matrix Algebra</strong></a> from <em>Harvard University</em> ★★★★☆(12)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/python-harvard-university-using-python-for-resear-7204?ref=freecodecamp"><strong>Using Python for Research</strong></a> from <em>Harvard University</em> ★★★★☆(12)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/chinese-history-harvard-university-chinas-politic-941?ref=freecodecamp"><strong>China’s Political and Intellectual Foundations: From Sage Kings to Confucius</strong></a> from <em>Harvard University</em> ★★★★★(11)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-artscience-talks-at-le-lab-seeing-is-believing-therapeutic-cancer-vaccines-179766?ref=freecodecamp"><strong>Therapeutic Cancer Vaccines: Engaging the Immune System Through Science and Art</strong></a> from <em>Harvard University</em> ★★★★★(11)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-gun-violence-a-public-health-crisis-the-forum-at-hsph-179836?ref=freecodecamp"><strong>Gun Violence: A Public Health Crisis</strong></a> from <em>Harvard University</em> ★★★★★(11)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/humanitarianism-harvard-university-humanitarian-r-6569?ref=freecodecamp"><strong>Humanitarian Response to Conflict and Disaster</strong></a> from <em>Harvard University</em> ★★★★★(10)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/religion-harvard-university-religion-conflict-and-9452?ref=freecodecamp"><strong>Religion, Conflict and Peace</strong></a> from <em>Harvard University</em> ★★★★☆(10)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/religion-harvard-university-religious-literacy-tr-5844?ref=freecodecamp"><strong>Religious Literacy: Traditions and Scriptures.</strong></a> from <em>Harvard University</em> ★★★★★(10)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/healthcare-harvard-university-improving-global-he-1950?ref=freecodecamp"><strong>Improving Global Health: Focusing on Quality and Safety</strong></a> from <em>Harvard University</em> ★★★★☆(10)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/cybersecurity-harvard-university-cs50-s-introduct-152356?ref=freecodecamp"><strong>CS50's Introduction to Cybersecurity</strong></a> from <em>Harvard University</em> ★★★★★(10)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-algorithms-for-big-data-compsci-229r-48050?ref=freecodecamp"><strong>Algorithms for Big Data</strong></a> from <em>Harvard University</em> ★★★★★(10)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/climate-change-harvard-university-the-health-effe-12106?ref=freecodecamp"><strong>The Health Effects of Climate Change</strong></a> from <em>Harvard University</em> ★★★★★(9)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/healthcare-harvard-university-improving-your-busi-11363?ref=freecodecamp"><strong>Business Transformation through a Culture of Health</strong></a> from <em>Harvard University</em> ★★★★★(9)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/art-history-harvard-university-tangible-things-di-1870?ref=freecodecamp"><strong>Tangible Things: Discovering History Through Artworks, Artifacts, Scientific Specimens, and the Stuff Around You</strong></a> from <em>Harvard University</em> ★★★★☆(9)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-harvard-university-cs50-s-comput-16857?ref=freecodecamp"><strong>CS50's Computer Science for Lawyers</strong></a> from <em>Harvard University</em> ★★★★★(9)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/teacher-training-harvard-university-introduction--6513?ref=freecodecamp"><strong>Introduction to Family Engagement in Education</strong></a> from <em>Harvard University</em> ★★★★★(9)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/chinese-history-harvard-university-modern-chinas--1986?ref=freecodecamp"><strong>Modern China’s Foundations: The Manchus and the Qing</strong></a> from <em>Harvard University</em> ★★★★★(8)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-filmmaker-steven-spielberg-speech-harvard-commencement-2016-179783?ref=freecodecamp"><strong>Steven Spielberg's Harvard Commencement Speech on Character, Intuition, and Courage</strong></a> from <em>Harvard University</em> ★★★★★(8)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-disaster-response-a-decade-of-lessons-learned-post-9-11-the-forum-at-hsph-179853?ref=freecodecamp"><strong>Disaster Response - A Decade of Lessons Learned Post-9/11 - The Forum at HSPH</strong></a> from <em>Harvard University</em> ★★★★★(8)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/neuroscience-harvard-university-fundamentals-of-n-2430?ref=freecodecamp"><strong>Fundamentals of Neuroscience, Part 2: Neurons and Networks.</strong></a> from <em>Harvard University</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/neuroscience-harvard-university-fundamentals-of-n-3927?ref=freecodecamp"><strong>Fundamentals of Neuroscience, Part 3: The Brain</strong></a> from <em>Harvard University</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/archaeology-harvard-university-pyramids-of-giza-a-10385?ref=freecodecamp"><strong>Pyramids of Giza: Ancient Egyptian Art and Archaeology</strong></a> from <em>Harvard University</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/christianity-harvard-university-christianity-thro-5858?ref=freecodecamp"><strong>Christianity Through Its Scriptures</strong></a> from <em>Harvard University</em> ★★★★☆(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/chinese-history-harvard-university-creating-moder-2468?ref=freecodecamp"><strong>Creating Modern China: The Republican Period to the Present</strong></a> from <em>Harvard University</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/probability-harvard-university-fat-chance-probabi-10159?ref=freecodecamp"><strong>Data Analysis: Basic Probability and Statistics</strong></a> from <em>Harvard University</em> ★★★★☆(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/history-harvard-university-predictionx-john-snow--7159?ref=freecodecamp"><strong>PredictionX: John Snow and the Cholera Epidemic of 1854</strong></a> from <em>Harvard University</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/scratch-programming-harvard-university-cs50-s-int-39309?ref=freecodecamp"><strong>CS50's Introduction to Programming with Scratch</strong></a> from <em>Harvard University</em> ★★★★☆(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-birth-and-the-nation-a-fictional-history-of-immigration-stephanie-degooyer-radcliffe-institute-179704?ref=freecodecamp"><strong>Birth and the Nation - A Fictional History of Immigration - Stephanie DeGooyer - Radcliffe Institute</strong></a> from <em>Harvard University</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-econ-2450a-public-economics-raj-chetty-91484?ref=freecodecamp"><strong>Public Economics - Raj Chetty</strong></a> from <em>Harvard University</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-basic-course-in-hiv-hiv-resistance-and-antiretroviral-therapy-center-for-aids-research-179833?ref=freecodecamp"><strong>Basic Course in HIV - Resistance and Antiretroviral Therapy</strong></a> from <em>Harvard University</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-visualization-harvard-university-data-scienc-10347?ref=freecodecamp"><strong>Data Science: Visualization</strong></a> from <em>Harvard University</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/buddhism-harvard-university-buddhism-through-its--5857?ref=freecodecamp"><strong>Buddhism Through Its Scriptures.</strong></a> from <em>Harvard University</em> ★★★★☆(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/environmental-science-harvard-university-energy-w-6021?ref=freecodecamp"><strong>Energy Within Environmental Constraints</strong></a> from <em>Harvard University</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/chinese-history-harvard-university-chinas-first-e-1617?ref=freecodecamp"><strong>China’s First Empires and the Rise of Buddhism</strong></a> from <em>Harvard University</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/childrens-rights-harvard-university-child-protect-12686?ref=freecodecamp"><strong>Child Protection: Children's Rights in Theory and Practice</strong></a> from <em>Harvard University</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/imperial-china-harvard-university-literati-china--1845?ref=freecodecamp"><strong>Literati China: Examinations, Neo-Confucianism, and Later Imperial China</strong></a> from <em>Harvard University</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-adrienne-germain-president-emerita-of-the-international-women-s-health-coalition-179837?ref=freecodecamp"><strong>Women's Health and Human Rights - A Lifetime of Advocacy</strong></a> from <em>Harvard University</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-from-sea-to-changing-sea-marine-life-radcliffe-institute-179771?ref=freecodecamp"><strong>From Sea to Changing Sea - Marine Life and Ocean Conservation</strong></a> from <em>Harvard University</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/rhetoric-harvard-university-rhetoric-the-art-of-p-16993?ref=freecodecamp"><strong>Rhetoric: The Art of Persuasive Writing and Public Speaking</strong></a> from <em>Harvard University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/shakespeare-harvard-university-shakespeare-s-haml-7016?ref=freecodecamp"><strong>Shakespeare's Hamlet: The Ghost</strong></a> from <em>Harvard University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/astronomy-harvard-university-super-earths-and-lif-1874?ref=freecodecamp"><strong>Super-Earths and Life</strong></a> from <em>Harvard University</em> ★★★★☆(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/communist-china-harvard-university-china-and-comm-2469?ref=freecodecamp"><strong>China and Communism</strong></a> from <em>Harvard University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/chinese-history-harvard-university-invasions-rebe-2467?ref=freecodecamp"><strong>Invasions, Rebellions, and the Fall of Imperial China</strong></a> from <em>Harvard University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/remote-work-harvard-university-remote-work-revolu-37070?ref=freecodecamp"><strong>Remote Work Revolution for Everyone</strong></a> from <em>Harvard University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-john-tasioulas-human-rights-radcliffe-institute-179802?ref=freecodecamp"><strong>Human Rights - Philosophical Inquiries into Nature and Basis</strong></a> from <em>Harvard University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-harvard-it-summit-2017-morning-welcome-and-keynote-by-nicco-mele-179760?ref=freecodecamp"><strong>Where Do We Go From Here? Media, Politics, and Power in the Digital Age</strong></a> from <em>Harvard University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-clinical-trial-lightning-round-179728?ref=freecodecamp"><strong>Clinical Trial Lightning Round: HIV Cure Research Studies at Harvard</strong></a> from <em>Harvard University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-robin-w-cotton-forensic-dna-testing-radcliffe-institute-179789?ref=freecodecamp"><strong>Forensic DNA Testing - Current State and Challenges</strong></a> from <em>Harvard University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/literature-harvard-university-masterpieces-of-wor-6844?ref=freecodecamp"><strong>Masterpieces of World Literature</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/cellular-biology-harvard-university-cell-biology--6022?ref=freecodecamp"><strong>Cell Biology: Mitochondria</strong></a> from <em>Harvard University</em> ★★★★☆(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/statistics-harvard-university-statistical-inferen-2967?ref=freecodecamp"><strong>Statistical Inference and Modeling for High-throughput Experiments</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/chinese-history-harvard-university-contemporary-c-2470?ref=freecodecamp"><strong>Contemporary China: The People's Republic, Taiwan, and Hong Kong</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/music-arts-harvard-university-first-nights-beetho-5383?ref=freecodecamp"><strong>First Nights - Beethoven's 9th&nbsp;Symphony and the 19th Century Orchestra</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/music-theory-harvard-university-18th-century-oper-12061?ref=freecodecamp"><strong>18th-Century Opera: Handel &amp; Mozart</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/chinese-history-harvard-university-global-china-f-1988?ref=freecodecamp"><strong>Global China: From the Mongols to the Ming</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/music-arts-harvard-university-first-nights-handel-4548?ref=freecodecamp"><strong>First Nights - Handel's Messiah&nbsp;and Baroque Oratorio</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/chinese-history-harvard-university-cosmopolitan-t-1773?ref=freecodecamp"><strong>Cosmopolitan Tang: Aristocratic Culture in China</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/sql-harvard-university-cs50-s-introduction-to-dat-152357?ref=freecodecamp"><strong>CS50's Introduction to Databases with SQL</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-learn-ancient-greek-with-prof-leonard-muellner-53386?ref=freecodecamp"><strong>Learn Ancient Greek</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-leading-change-the-convergence-of-politics-policy-elaine-kamarck-voices-in-leadership-179822?ref=freecodecamp"><strong>Leading Change: The Convergence of Politics and Policy</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stat115-2020-97494?ref=freecodecamp"><strong>STAT115 2020</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-understanding-the-progression-of-neurodegenerative-diseases-chiara-zurzolo-radcliffe-institute-179686?ref=freecodecamp"><strong>Understanding the Progression of Neurodegenerative Diseases - Chiara Zurzolo - Radcliffe Institute</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-talking-about-teaching-fall-2014-srikant-datar-179797?ref=freecodecamp"><strong>Design Thinking and Innovation - Talking About Teaching Fall 2014</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-toward-a-new-global-architecture-america-s-role-in-a-changing-world-radcliffe-day-2018-179731?ref=freecodecamp"><strong>Toward a New Global Architecture - America's Role in a Changing World</strong></a> from <em>Harvard University</em> ★★★★☆(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-encontro-das-aguas-meeting-of-waters-clarissa-tossin-radcliffe-institute-179737?ref=freecodecamp"><strong>Encontro das Águas - Circulation and Displacement in Art</strong></a> from <em>Harvard University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-harvard-university-causal-diagrams--9097?ref=freecodecamp"><strong>Causal Diagrams: Draw Your Assumptions Before Your Conclusions</strong></a> from <em>Harvard University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/hinduism-harvard-university-hinduism-through-its--5819?ref=freecodecamp"><strong>Hinduism Through Its Scriptures.</strong></a> from <em>Harvard University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/machine-learning-harvard-university-data-science--10353?ref=freecodecamp"><strong>Data Science: Building Machine Learning Models</strong></a> from <em>Harvard University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/shakespeare-harvard-university-shakespeares-othel-11951?ref=freecodecamp"><strong>Shakespeare’s Othello: The Moor</strong></a> from <em>Harvard University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/music-arts-harvard-university-first-nights-montev-6365?ref=freecodecamp"><strong>First Nights - Monteverdi’s L’Orfeo and the Birth of Opera</strong></a> from <em>Harvard University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/natural-sciences-harvard-university-backyard-mete-12108?ref=freecodecamp"><strong>Backyard Meteorology: The Science of Weather</strong></a> from <em>Harvard University</em> ★★★☆☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-harvard-university-high-dimensional-2949?ref=freecodecamp"><strong>High-Dimensional Data Analysis</strong></a> from <em>Harvard University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-science-harvard-university-data-science-line-10352?ref=freecodecamp"><strong>Data Science: Linear Regression</strong></a> from <em>Harvard University</em> ★★☆☆☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-science-harvard-university-introduction-to-d-110417?ref=freecodecamp"><strong>Introduction to Data Science with Python</strong></a> from <em>Harvard University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/world-science-u-from-chemistry-to-life-5213?ref=freecodecamp"><strong>From Chemistry to Life</strong></a> from <em>Harvard University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-sari-nusseibeh-in-conversation-with-homi-bhabha-on-jerusalem-what-sharing-a-city-means-179703?ref=freecodecamp"><strong>Jerusalem: What Sharing a City Means</strong></a> from <em>Harvard University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-bird-flu-research-dangerous-information-on-a-deadly-virus-hsph-forum-179854?ref=freecodecamp"><strong>Bird Flu Research: Dangerous Information on a Deadly Virus</strong></a> from <em>Harvard University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-it-s-complicated-375-years-of-women-at-harvard-radcliffe-institute-for-advanced-study-179849?ref=freecodecamp"><strong>It's Complicated - 375 Years of Women at Harvard</strong></a> from <em>Harvard University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-race-technology-and-algorithmic-bias-vision-justice-radcliffe-institute-179689?ref=freecodecamp"><strong>Race, Technology, and Algorithmic Bias - Vision and Justice</strong></a> from <em>Harvard University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/islam-harvard-university-islam-through-its-script-5818?ref=freecodecamp"><strong>Islam Through Its Scriptures.</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/drugs-harvard-university-the-opioid-crisis-in-ame-7830?ref=freecodecamp"><strong>The Opioid Crisis in America</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/leadership-harvard-university-leadership-creating-56463?ref=freecodecamp"><strong>Leadership for Purposeful Change: Creating Public Value</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/healthcare-harvard-university-united-states-healt-1616?ref=freecodecamp"><strong>United States Health Policy</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/public-health-harvard-university-readings-in-glob-5178?ref=freecodecamp"><strong>Readings in Global Health (2017)</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/public-policy-harvard-university-u-s-public-polic-11696?ref=freecodecamp"><strong>U.S. Public Policy: Social, Economic, and Foreign Policies</strong></a> from <em>Harvard University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/world-science-u-the-edges-of-the-universe-5206?ref=freecodecamp"><strong>The Edges of the Universe</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/drugs-harvard-university-prescription-drug-regula-13246?ref=freecodecamp"><strong>Prescription Drug Regulation, Cost, and Access: Current Controversies in Context</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/ethics-harvard-university-bioethics-the-law-medic-6649?ref=freecodecamp"><strong>Bioethics: The Law, Medicine, and Ethics of Reproductive Technologies and Genetics</strong></a> from <em>Harvard University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/greek-heroes-harvard-university-the-ancient-greek-609?ref=freecodecamp"><strong>The Ancient Greek Hero</strong></a> from <em>Harvard University</em> ★★★☆☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/technology-harvard-university-technology-entrepre-13334?ref=freecodecamp"><strong>Technology Entrepreneurship: Lab to Market</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/government-harvard-university-american-government-11664?ref=freecodecamp"><strong>American Government: Constitutional Foundations</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/react-native-harvard-university-cs50-s-mobile-app-11505?ref=freecodecamp"><strong>CS50's Mobile App Development with React Native</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/calculus-harvard-university-calculus-applied-8778?ref=freecodecamp"><strong>Calculus Applied!</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/music-arts-harvard-university-first-nights-berlio-6612?ref=freecodecamp"><strong>First Nights - Berlioz’s Symphonie Fantastique and Program Music in the 19th Century</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/politics-harvard-university-juryx-deliberations-f-3188?ref=freecodecamp"><strong>JuryX: Deliberations for Social Change</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/probability-harvard-university-data-science-proba-10348?ref=freecodecamp"><strong>Data Science: Probability</strong></a> from <em>Harvard University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/social-science-harvard-university-predictionx-ome-8717?ref=freecodecamp"><strong>PredictionX: Omens, Oracles &amp; Prophecies</strong></a> from <em>Harvard University</em> ★★★☆☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-science-harvard-university-data-science-wran-10351?ref=freecodecamp"><strong>Data Science: Wrangling</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-science-harvard-university-introduction-to-b-2970?ref=freecodecamp"><strong>Introduction to Bioconductor</strong></a> from <em>Harvard University</em> ★★★☆☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/humanities-harvard-university-the-einstein-revolu-2910?ref=freecodecamp"><strong>The Einstein Revolution</strong></a> from <em>Harvard University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/r-programming-harvard-university-cs50-s-introduct-274066?ref=freecodecamp"><strong>CS50's Introduction to Programming with R</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-abdul-el-sayed-the-epidemic-of-poverty-the-government-imperative-radcliffe-institute-179741?ref=freecodecamp"><strong>The Epidemic of Poverty - The Government Imperative</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-security-paradox-a-public-address-by-general-martin-e-dempsey-institute-of-politics-179850?ref=freecodecamp"><strong>Security Paradox - Addressing Modern Security Challenges</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-sandro-galea-epidemiology-counts-radcliffe-institute-179752?ref=freecodecamp"><strong>Epidemiology Counts: On Causes, Consequences, and Healthy Populations</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-daniel-eisenstein-dark-energy-and-cosmic-sound-179781?ref=freecodecamp"><strong>Dark Energy and Cosmic Sound - Exploring the Universe Through Acoustic Waves</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-health-and-economic-concerns-of-rural-americans-179718?ref=freecodecamp"><strong>The Health and Economic Concerns of Rural Americans - Forum on Public Health and Policy</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-feminisms-now-a-schlesinger-library-75th-anniversary-event-radcliffe-institute-179724?ref=freecodecamp"><strong>Feminisms Now - Visions of Gender Equality for the 21st Century</strong></a> from <em>Harvard University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-i-want-to-prepare-to-learn-something-i-don-t-know-gala-porras-kim-radcliffe-institute-179678?ref=freecodecamp"><strong>I Want to Prepare to Learn Something I Don't Know - Gala Porras-Kim - Radcliffe Institute</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mastering-style-the-learning-and-teaching-of-writing-179805?ref=freecodecamp"><strong>Mastering Style: The Learning and Teaching of Writing</strong></a> from <em>Harvard University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-jennifer-a-lewis-3d-printing-making-the-future-179780?ref=freecodecamp"><strong>3D Printing: Making the Future - From Fundamentals to Advanced Applications</strong></a> from <em>Harvard University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-corey-lee-a-menu-at-benu-a-look-at-texture-and-mouthfeel-179744?ref=freecodecamp"><strong>Texture and Mouthfeel in Fine Dining - A Menu at Benu</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-universities-and-slavery-4-of-5-slavery-and-harvard-radcliffe-institute-179767?ref=freecodecamp"><strong>Slavery and Harvard - Universities and Slavery Series, Part 4</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-joanne-chang-the-science-of-sugar-179803?ref=freecodecamp"><strong>The Science of Sugar in Cooking and Baking</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hiv-cure-research-overview-with-dr-raj-gandhi-179729?ref=freecodecamp"><strong>HIV Cure Research Overview - Current Strategies and Future Directions</strong></a> from <em>Harvard University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/literature-harvard-university-ancient-masterpiece-9423?ref=freecodecamp"><strong>Ancient Masterpieces of World Literature</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/healthcare-harvard-university-global-health-case--1619?ref=freecodecamp"><strong>Global Health Case Studies from a Biosocial Perspective</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/judaism-harvard-university-judaism-through-its-sc-5820?ref=freecodecamp"><strong>Judaism Through Its Scriptures.</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-science-harvard-university-data-science-prod-10350?ref=freecodecamp"><strong>Data Science:&nbsp;Productivity Tools</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/food-science-harvard-university-science-cooking-f-8383?ref=freecodecamp"><strong>Science &amp; Cooking: From Haute Cuisine to Soft Matter Science (physics)</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/history-harvard-university-women-making-history-t-12269?ref=freecodecamp"><strong>Women Making History: Ten Objects, Many Stories</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/probability-harvard-university-introduction-to-pr-11423?ref=freecodecamp"><strong>Introduction to Probability</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/poetry-harvard-university-poetry-in-america-moder-5346?ref=freecodecamp"><strong>Poetry in America: Modernism</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/political-science-harvard-university-u-s-politica-11694?ref=freecodecamp"><strong>U.S. Political Institutions: Congress, Presidency, Courts, and Bureaucracy</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/shakespeare-harvard-university-shakespeare-s-life-15184?ref=freecodecamp"><strong>Shakespeare's Life and Work</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/ebola-harvard-university-lessons-from-ebola-preve-4879?ref=freecodecamp"><strong>Lessons from Ebola: Preventing the Next Pandemic</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/humanities-harvard-university-introduction-to-dig-13557?ref=freecodecamp"><strong>Introduction to Digital Humanities</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-science-harvard-university-data-science-infe-10349?ref=freecodecamp"><strong>Data Science: Inference and Modeling</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/poetry-harvard-university-poetry-in-america-the-c-3355?ref=freecodecamp"><strong>Poetry in America: The Civil War and Its Aftermath</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/teacher-training-harvard-university-introduction--3395?ref=freecodecamp"><strong>Introduction to Data Wise: A Collaborative Process to Improve Learning &amp; Teaching</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/urban-planning-harvard-university-citiesx-the-pas-9738?ref=freecodecamp"><strong>CitiesX: The Past, Present and Future of Urban Life</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/shakespeare-harvard-university-shakespeare-s-the--8536?ref=freecodecamp"><strong>Shakespeare's The Merchant of Venice: Shylock</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/poetry-harvard-university-poetry-in-america-whitm-2816?ref=freecodecamp"><strong>Poetry in America: Whitman</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/education-harvard-university-saving-schools-refor-8616?ref=freecodecamp"><strong>Saving Schools: Reforming the U.S. Education System</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/japanese-harvard-university-japanese-books-from-m-19157?ref=freecodecamp"><strong>Japanese Books: From Manuscript to Print</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/music-arts-harvard-university-first-nights-stravi-7319?ref=freecodecamp"><strong>First Nights - Stravinsky’s Rite of Spring: Modernism, Ballet, and Riots</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/cooking-harvard-university-food-fermentation-the--32763?ref=freecodecamp"><strong>Food Fermentation: The Science of Cooking with Microbes</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/happiness-harvard-university-the-path-to-happines-20046?ref=freecodecamp"><strong>The Path to Happiness: What Chinese Philosophy Teaches us about the Good Life</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/disease-harvard-university-malariax-defeating-mal-8413?ref=freecodecamp"><strong>MalariaX: Defeating Malaria from the Genes to the Globe</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/music-theory-harvard-university-19th-century-oper-12384?ref=freecodecamp"><strong>19th-Century Opera: Meyerbeer, Wagner, &amp; Verdi</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-harvard-university-advanced-biocond-2976?ref=freecodecamp"><strong>Advanced Bioconductor</strong></a> from <em>Harvard University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/astronomy-harvard-university-predictionx-lost-wit-11693?ref=freecodecamp"><strong>PredictionX: Lost Without Longitude</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/philosophy-ethics-harvard-university-structure-an-353078?ref=freecodecamp"><strong>Structure and Function of Argument: Introduction to Critical Thinking</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/chemistry-harvard-university-energy-and-thermodyn-61435?ref=freecodecamp"><strong>Energy and Thermodynamics</strong></a> from <em>Harvard University</em> ★☆☆☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/american-studies-harvard-university-introduction--20365?ref=freecodecamp"><strong>Introduction to American Civics: Presented by Zero-L</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/machine-learning-harvard-university-machine-learn-270681?ref=freecodecamp"><strong>Machine Learning and AI with Python</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/world-science-u-fundamental-lessons-from-string-theory-5208?ref=freecodecamp"><strong>Fundamental Lessons From String Theory</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/chemistry-harvard-university-entropy-and-equilibr-61437?ref=freecodecamp"><strong>Entropy and Equilibria</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/democracy-harvard-university-we-the-people-civic--33440?ref=freecodecamp"><strong>We the People: Civic Engagement in a Constitutional Democracy</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-quantitative-social-science-methods-i-gov2001-at-harvard-university-53190?ref=freecodecamp"><strong>Quantitative Social Science Methods</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/tinyml-harvard-university-deploying-tinyml-21643?ref=freecodecamp"><strong>Deploying TinyML</strong></a> from <em>Harvard University</em> ★★☆☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-statistics-110-probability-91487?ref=freecodecamp"><strong>Statistics 110 - Probability</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-living-long-living-well-aging-with-flourish-longwood-seminar-179861?ref=freecodecamp"><strong>Living Long, Living Well: Aging with Flourish</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stat115-2018-97492?ref=freecodecamp"><strong>STAT115 2018</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-massimo-bottura-cooking-is-a-call-to-act-science-cooking-public-lecture-series-2018-179706?ref=freecodecamp"><strong>Cooking as a Call to Act - Science and Cooking Public Lecture Series 2018</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-getting-your-voice-into-popular-media-179825?ref=freecodecamp"><strong>Getting Your Voice into Popular Media - Strategies for Faculty</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-who-decides-defining-health-radcliffe-institute-179821?ref=freecodecamp"><strong>Defining Health - How Health and Disease Are Defined in Societies</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-tarun-khanna-on-trust-creating-the-foundation-for-entrepreneurship-in-developing-countrie-179708?ref=freecodecamp"><strong>Trust: Creating the Foundation for Entrepreneurship in Developing Countries</strong></a> from <em>Harvard University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-contagion-1-of-5-infectious-disease-radcliffe-institute-179751?ref=freecodecamp"><strong>Contagion - Exploring Modern Epidemics: Infectious Disease - Part 1</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-dan-barouch-prospects-for-a-vaccine-and-a-cure-for-hiv-radcliffe-institute-179791?ref=freecodecamp"><strong>Prospects for an HIV Vaccine and Cure</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-jeff-lichtman-connectomics-mapping-the-brain-harvard-department-of-physics-179831?ref=freecodecamp"><strong>Connectomics: Mapping the Brain's Wiring Diagram</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hilt-2019-conference-learning-from-each-other-learning-online-179673?ref=freecodecamp"><strong>HILT Conference: Learning from Each Other, Learning Online</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-political-geometry-the-mathematics-of-redistricting-moon-duchin-radcliffe-institute-179717?ref=freecodecamp"><strong>Political Geometry - The Mathematics of Redistricting</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-a-political-poetry-reading-and-conversation-with-solmaz-sharif-radcliffe-institute-179721?ref=freecodecamp"><strong>A Political Poetry: Reading and Conversation with Solmaz Sharif</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-dna-mammoths-neanderthals-and-your-ancestors-radcliffe-institute-179795?ref=freecodecamp"><strong>DNA - Mammoths, Neanderthals, and Your Ancestors</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-plastic-in-our-blood-that-s-a-problem-355556?ref=freecodecamp"><strong>Plastic in Our Blood: Understanding Health Impacts of Microplastic Exposure</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mary-brinton-gender-equity-and-low-fertility-in-postindustrial-societies-radcliffe-institute-179818?ref=freecodecamp"><strong>Gender Equity and Low Fertility in Postindustrial Societies</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-thinking-like-a-magician-joshua-jay-radcliffe-institute-179679?ref=freecodecamp"><strong>Thinking Like a Magician - Joshua Jay - Radcliffe Institute</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-it-depends-what-state-you-re-in-policies-and-politics-of-the-us-health-care-system-part-1-179757?ref=freecodecamp"><strong>Policies and Politics of the US Health Care System - Part 1</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-evolution-of-gene-expression-thomas-lenormand-radcliffe-institute-179743?ref=freecodecamp"><strong>The Evolution of Gene Expression - From Microevolution to Major Transitions</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-toxic-stress-of-early-childhood-adversity-179855?ref=freecodecamp"><strong>The Toxic Stress of Early Childhood Adversity - Impact and Interventions</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-from-sea-to-changing-sea-the-role-of-oceans-in-climate-radcliffe-institute-179772?ref=freecodecamp"><strong>From Sea to Changing Sea - The Role of Oceans in Climate</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-native-law-and-legal-strategy-native-peoples-native-politics-radcliffe-institute-179784?ref=freecodecamp"><strong>Native Law and Legal Strategy - Native Peoples, Native Politics</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-open-v-closed-media-government-and-social-organization-in-the-information-age-179843?ref=freecodecamp"><strong>Open vs. Closed: Media, Government and Social Organization in the Information Age</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-malcolm-wiener-lecture-in-international-political-economy-delivered-by-jean-claude-trichet-179852?ref=freecodecamp"><strong>Economic Crises and Recovery Strategies - The Malcolm Wiener Lecture by Jean-Claude Trichet</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-from-sea-to-changing-sea-early-life-in-the-oceans-radcliffe-institute-179773?ref=freecodecamp"><strong>Early Life in the Oceans - From Sea to Changing Sea</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-developing-trust-and-ethically-healthy-organizations-through-humanistic-management-ieco-rcc-179800?ref=freecodecamp"><strong>Developing Trust and Ethically Healthy Organizations Through Humanistic Management</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-janice-wong-your-world-your-imagination-art-and-texture-with-chocolate-science-cooking-2019-179676?ref=freecodecamp"><strong>Janice Wong: Your World, Your Imagination - Art and Texture with Chocolate; Science &amp; Cooking 2019</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-why-brain-science-needs-an-edit-mu-ming-poo-radcliffe-institute-179684?ref=freecodecamp"><strong>Why Brain Science Needs an Edit - Mu-ming Poo - Radcliffe Institute</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-leading-as-a-surgeon-by-day-writer-by-night-atul-gawande-voices-in-leadership-179801?ref=freecodecamp"><strong>Leading as a Surgeon and Writer - Atul Gawande on Leadership in Healthcare</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-chris-frith-how-the-brain-creates-culture-mind-brain-behavior-distinguished-lecture-179830?ref=freecodecamp"><strong>How the Brain Creates Culture - Mind Brain Behavior Distinguished Lecture</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-avoiding-the-oil-curse-the-case-of-norway-institute-of-politics-179828?ref=freecodecamp"><strong>Avoiding the Oil Curse: The Case of Norway</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-gorgeous-nothings-emily-dickinson-s-envelope-poems-woodberry-poetry-room-179842?ref=freecodecamp"><strong>The Gorgeous Nothings: Emily Dickinson's Envelope-Poems</strong></a> from <em>Harvard University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-intersections-3-of-4-beyond-the-nature-technology-divide-radcliffe-institute-179764?ref=freecodecamp"><strong>Beyond the Nature/Technology Divide - Intersections in Urban Design - Lecture 3</strong></a> from <em>Harvard University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-next-in-data-visualization-arvind-satyanarayan-radcliffe-institute-179690?ref=freecodecamp"><strong>Next in Data Visualization - Interactive Systems for Intelligence Augmentation</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-trust-based-management-practical-ways-of-humanizing-business-ieco-rcc-aai-harvard-179733?ref=freecodecamp"><strong>Trust-Based Management - Practical Ways of Humanizing Business</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-finding-fairness-cynthia-dwork-radcliffe-institute-179716?ref=freecodecamp"><strong>Finding Fairness - Incorporating Societal Values in Computer Algorithms</strong></a> from <em>Harvard University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-next-in-evolution-james-s-santangelo-radcliffe-institute-179710?ref=freecodecamp"><strong>Evolution of Life in the City - Next in Science Series</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-crafty-crows-christian-rutz-radcliffe-institute-179666?ref=freecodecamp"><strong>Crafty Crows - Christian Rutz - Radcliffe Institute</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-who-belongs-1-of-4-rights-duties-and-responsibilities-radcliffe-institute-179735?ref=freecodecamp"><strong>Rights, Duties, and Responsibilities in Citizenship - Part 1 of 4</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hilt-2019-conference-making-peer-learning-accessible-179675?ref=freecodecamp"><strong>HILT 2019 Conference - Making Peer Learning Accessible</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-reproducibility-crisis-in-historical-perspective-nicole-c-nelson-radcliffe-institute-179700?ref=freecodecamp"><strong>The Reproducibility Crisis in Historical Perspective</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-next-in-evolution-sriram-sankararaman-radcliffe-institute-179712?ref=freecodecamp"><strong>Archaic Admixture in Human History - Next in Evolution</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-harvard-thinking-cancer-is-rising-among-younger-people-why-490926?ref=freecodecamp"><strong>Cancer is Rising Among Younger People - Why?</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-a-conversation-with-john-wilson-about-inclusive-excellence-at-and-beyond-harvard-179720?ref=freecodecamp"><strong>Inclusive Excellence at Harvard and Beyond - A Conversation with John Wilson</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-why-school-cellphone-bans-are-spreading-330730?ref=freecodecamp"><strong>Why School Cellphone Bans Are Spreading</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-harvard-university-new-ladder-faculty-institute-2018-179715?ref=freecodecamp"><strong>Navigating Life and Professional Path as a Scholar at Harvard - Faculty Panel 2018</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-prasenjit-duara-on-spiritual-ecologies-sustainability-and-transcendence-in-contemporary-asia-179730?ref=freecodecamp"><strong>Spiritual Ecologies: Sustainability and Transcendence in Contemporary Asia</strong></a> from <em>Harvard University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2014-harvard-horizons-symposium-179816?ref=freecodecamp"><strong>Harvard Horizons Symposium 2014 - Innovative PhD Research Presentations</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-talking-about-teaching-fall-2014-kelly-o-neill-179798?ref=freecodecamp"><strong>Image-Based Learning: From Narrative to New Knowledge - Fall 2014</strong></a> from <em>Harvard University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/literature-harvard-university-modern-masterpieces-9424?ref=freecodecamp"><strong>Modern Masterpieces of World Literature</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/healthcare-harvard-university-innovating-in-healt-1614?ref=freecodecamp"><strong>Innovating in Health Care</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/politics-harvard-university-citizen-politics-in-a-11695?ref=freecodecamp"><strong>Citizen Politics in America: Public Opinion, Elections, Interest Groups, and the Media</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mental-health-harvard-university-building-persona-120495?ref=freecodecamp"><strong>Building Personal Resilience: Managing Anxiety and Mental Health</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/sikhism-harvard-university-sikhism-through-its-sc-11388?ref=freecodecamp"><strong>Sikhism Through Its Scriptures.</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/happiness-harvard-university-managing-happiness-65624?ref=freecodecamp"><strong>Managing Happiness</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/chinese-history-harvard-university-china-humaniti-9256?ref=freecodecamp"><strong>China Humanities: The Individual in Chinese Culture</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/healthcare-harvard-university-strengthening-commu-13318?ref=freecodecamp"><strong>Strengthening Community Health Worker Programs</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-science-harvard-university-principles-statis-9489?ref=freecodecamp"><strong>Principles, Statistical and Computational Tools for Reproducible Data Science</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-science-harvard-university-data-science-caps-10354?ref=freecodecamp"><strong>Data Science: Capstone</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/healthcare-harvard-university-practical-improveme-5003?ref=freecodecamp"><strong>Practical Improvement Science in Health Care: A Roadmap for Getting Results</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/justice-harvard-university-justice-today-money-ma-21573?ref=freecodecamp"><strong>Justice Today: Money, Markets, and Morals</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-harvard-university-case-studies-in--2973?ref=freecodecamp"><strong>Case Studies in Functional Genomics</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/biology-harvard-university-quantitative-methods-f-17849?ref=freecodecamp"><strong>Quantitative Methods for Biology</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/child-development-harvard-university-early-childh-27971?ref=freecodecamp"><strong>Early Childhood Development: Global Strategies for Implementation</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/chemistry-harvard-university-electrochemistry-61436?ref=freecodecamp"><strong>Electrochemistry</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/chinese-history-harvard-university-chinax-book-cl-19466?ref=freecodecamp"><strong>ChinaX Book Club: Five Authors, Five Books, Five Views of China</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/history-harvard-university-the-jewish-bible-its-h-120115?ref=freecodecamp"><strong>The Jewish Bible: Its History As A Physical Artifact</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/business-management-harvard-university-social-ent-447132?ref=freecodecamp"><strong>Social Entrepreneurship and Systems Change</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/machine-learning-harvard-university-fundamentals--21641?ref=freecodecamp"><strong>Fundamentals of TinyML</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/metadata-harvard-university-digital-humanities-in-108432?ref=freecodecamp"><strong>Digital Humanities in Practice: From Research Questions to Results</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/tinyml-harvard-university-mlops-for-scaling-tinym-66338?ref=freecodecamp"><strong>MLOps for Scaling TinyML</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/chemistry-harvard-university-energy-to-electroche-61438?ref=freecodecamp"><strong>Energy to Electrochemistry Final Exam</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/tinyml-harvard-university-applications-of-tinyml-21642?ref=freecodecamp"><strong>Applications of TinyML</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/education-teacher-training-harvard-university-har-424547?ref=freecodecamp"><strong>Family Engagement in Education: The Dual Capacity-Building Framework</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stat115-2019-97493?ref=freecodecamp"><strong>STAT115</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-a-conversation-with-scott-mccloud-radcliffe-institute-179723?ref=freecodecamp"><strong>Visual Storytelling and Comic Communication - A Conversation with Scott McCloud</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/coronavirus-harvard-university-ventilacion-mecani-22806?ref=freecodecamp"><strong>Ventilación mecánica para pacientes con COVID-19</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-gsas-writer-s-night-with-professor-duncan-white-10-27-16-179774?ref=freecodecamp"><strong>Writing for Academic and Public Audiences - Professor Duncan White</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/humanities-harvard-university-the-return-of-china-424546?ref=freecodecamp"><strong>The Return of China</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-publish-your-book-or-how-to-meet-the-challenges-of-the-new-publishing-environment-179840?ref=freecodecamp"><strong>Publish Your Book - Challenges and Solutions in the New Publishing Environment</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-jon-stewart-the-crisis-of-religion-and-the-logic-of-the-gods-radcliffe-institute-179770?ref=freecodecamp"><strong>The Crisis of Religion and the Logic of the Gods - Hegel's Philosophy of Religion</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hits-and-misses-sports-marketing-gender-and-society-radcliffe-institute-179769?ref=freecodecamp"><strong>Hits and Misses: Sports Marketing, Gender, and Society</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hidden-in-plain-sight-family-secrets-and-american-history-radcliffe-institute-179745?ref=freecodecamp"><strong>Hidden in Plain Sight - Family Secrets and American History</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-beyond-belief-longwood-seminar-179832?ref=freecodecamp"><strong>Beyond Belief - Exploring the Connection Between Personal Beliefs and Physical Health</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-writer-and-the-critic-marilynne-robinson-and-james-wood-in-conversation-radcliffe-institute-179736?ref=freecodecamp"><strong>The Writer and the Critic - Marilynne Robinson and James Wood in Conversation</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-where-is-the-acid-science-and-cooking-public-lecture-series-2014-179804?ref=freecodecamp"><strong>Where is the Acid? The Science of Flavor in Cooking - Science and Cooking Lecture 2014</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-harvard-thinking-how-to-tell-a-story-493896?ref=freecodecamp"><strong>How to Tell a Story</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-social-justice-and-the-new-food-activism-julie-guthman-radcliffe-institute-179754?ref=freecodecamp"><strong>Social Justice and the New Food Activism</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-a-public-address-by-daw-aung-san-suu-kyi-institute-of-politics-179844?ref=freecodecamp"><strong>A Public Address on Democratic Activism and Rule of Law - Daw Aung San Suu Kyi</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-unquiet-meals-make-ill-digestions-179846?ref=freecodecamp"><strong>Unquiet Meals Make Ill Digestions - Science and Cooking Lecture Series</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-adoption-of-effective-practices-in-schools-todd-rogers-radcliffe-institute-179665?ref=freecodecamp"><strong>Adoption of Effective Practices in Schools - Todd Rogers - Radcliffe Institute</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-jacob-s-hacker-plutocrats-with-pitchforks-radcliffe-institute-179705?ref=freecodecamp"><strong>Plutocrats with Pitchforks - Understanding American Right-Wing Populism</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-edward-ball-life-of-a-klansman-radcliffe-institute-179763?ref=freecodecamp"><strong>Life of a Klansman - Investigating Race Terror in Reconstruction-Era South</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-next-in-evolution-alicia-r-martin-radcliffe-institute-179709?ref=freecodecamp"><strong>Genetic Prediction of Traits and Diseases Across Diverse Populations - Next in Evolution</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-feeling-the-way-to-truth-christia-mercer-radcliffe-institute-179725?ref=freecodecamp"><strong>Feeling the Way to Truth - Rethinking Modern Philosophy's Development</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-does-the-left-have-a-future-michael-kazin-radcliffe-institute-179748?ref=freecodecamp"><strong>Does the Left Have a Future? - 2017-2018 Dean's Lecture in Social Sciences</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-kerry-a-emanuel-predicting-and-adapting-to-increased-hurricane-risk-radcliffe-institute-179775?ref=freecodecamp"><strong>Predicting and Adapting to Increased Hurricane Risk</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lost-person-behavior-radcliffe-institute-179806?ref=freecodecamp"><strong>Lost Person Behavior - Search and Rescue Strategies</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-animal-navigation-radcliffe-institute-179807?ref=freecodecamp"><strong>Animal Navigation - Exploring Migratory Patterns and Mechanisms</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-science-and-application-of-wearable-technology-radcliffe-institute-179826?ref=freecodecamp"><strong>Science and Application of Wearable Technology</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-women-rights-and-power-women-making-democracy-radcliffe-institute-179848?ref=freecodecamp"><strong>Women, Rights, and Power - Making Democracy</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-boosting-vitamin-d-not-enough-or-too-much-harvard-school-of-public-health-179857?ref=freecodecamp"><strong>Boosting Vitamin D: Not Enough or Too Much? - Current Science Controversies</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/r-programming-harvard-university-ciencia-de-datos-223229?ref=freecodecamp"><strong>Ciencia de Datos: Fundamentos de R</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-feeding-10-billion-by-2050-creating-a-sustainable-and-healthy-food-future-179699?ref=freecodecamp"><strong>Feeding 10 Billion by 2050 - Creating a Sustainable and Healthy Food Future</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-socialite-activists-and-the-black-freedom-struggle-tanisha-c-ford-radcliffe-institute-179702?ref=freecodecamp"><strong>Socialite-Activists and the Black Freedom Struggle - The Glamorous Life</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-universal-health-care-thailand-s-road-to-sustainability-179759?ref=freecodecamp"><strong>Universal Health Care - Thailand's Road to Sustainability</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-case-for-a-liberal-arts-education-350256?ref=freecodecamp"><strong>The Case for a Liberal Arts Education: Is It Worth the Investment?</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-harvard-university-cs50-s-introd-533696?ref=freecodecamp"><strong>CS50's Introduction to Computer Science</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-gidon-eshel-rethinking-the-american-diet-radcliffe-institute-179768?ref=freecodecamp"><strong>Rethinking the American Diet - Environmental and Health Impacts</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-in-extremis-on-poetry-subversion-violence-woodberry-poetry-room-179809?ref=freecodecamp"><strong>In Extremis - Poetry, Subversion and Violence</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-bathsheba-demuth-do-whales-judge-us-interspecies-history-and-ethics-179664?ref=freecodecamp"><strong>Bathsheba Demuth - Do Whales Judge Us? Interspecies History and Ethics</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-alex-gourevitch-the-political-ethics-of-the-strike-radcliffe-institute-179765?ref=freecodecamp"><strong>The Political Ethics of the Strike</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-harvard-it-summit-2016-afternoon-keynote-179782?ref=freecodecamp"><strong>Keeping Up With the Weather - The Future of Data and Forecasting</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-women-in-biotech-defining-and-analyzing-the-problem-radcliffe-institute-179796?ref=freecodecamp"><strong>Women in Biotech - Defining and Analyzing the Problem</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-from-civil-war-to-civil-rights-the-unending-battle-to-vote-radcliffe-institute-179814?ref=freecodecamp"><strong>From Civil War to Civil Rights - The Unending Battle to Vote</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-selassie-atadika-the-science-of-new-african-cuisine-science-cooking-2019-179663?ref=freecodecamp"><strong>Selassie Atadika - The Science of New African Cuisine; Science &amp; Cooking 2019</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-contagion-3-of-5-big-data-radcliffe-institute-179749?ref=freecodecamp"><strong>Contagion - Exploring Modern Epidemics: Big Data in Epidemiology - Part 3</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ways-with-words-plays-with-words-radcliffe-institute-179787?ref=freecodecamp"><strong>Plays with Words - Language and Gender in Comedy</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-dna-the-future-utility-of-dna-radcliffe-institute-179793?ref=freecodecamp"><strong>The Future Utility of DNA Science</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-morris-gray-reading-robert-pinsky-woodberry-poetry-room-179824?ref=freecodecamp"><strong>Robert Pinsky Poetry Reading - Selected Poems and New Works</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-integrating-my-online-course-to-improve-the-classroom-experience-179742?ref=freecodecamp"><strong>Integrating Online Courses to Improve Classroom Experience</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-contagion-2-of-5-kevin-m-esvelt-radcliffe-institute-179750?ref=freecodecamp"><strong>Contagion: Exploring Modern Epidemics - Part 2 of 5</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ask-what-you-can-do-inspiring-public-service-institute-of-politics-179845?ref=freecodecamp"><strong>Ask What You Can Do - Inspiring Public Service</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-undiscovery-of-cosmic-deceleration-robert-p-kirshner-radcliffe-institute-179687?ref=freecodecamp"><strong>The Undiscovery of Cosmic Deceleration - Robert P. Kirshner - Radcliffe Institute</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-citizen-indigenous-radcliffe-institute-179738?ref=freecodecamp"><strong>Defining Indigenous Citizenship - Tribal Perspectives and Challenges</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-it-depends-what-state-you-re-in-policies-and-politics-of-the-us-health-care-system-part-2-179756?ref=freecodecamp"><strong>Policies and Politics of the US Health Care System - Part 2</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-a-public-address-on-financial-regulation-by-gary-gensler-institute-of-politics-179827?ref=freecodecamp"><strong>Financial Regulation and the CFTC - Gary Gensler's Public Address</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-modernist-cuisine-at-home-lecture-11-2012-179838?ref=freecodecamp"><strong>Modernist Cuisine at Home - Lecture 11 (2012)</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-reporting-from-a-transformed-america-echoes-of-9-11-the-institute-of-politics-179862?ref=freecodecamp"><strong>Reporting from a Transformed America: Echoes of 9/11</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-an-energy-plan-the-earth-can-live-with-daniel-m-kammen-radcliffe-institute-179698?ref=freecodecamp"><strong>An Energy Plan the Earth Can Live With - Climate Protection and Sustainable Innovation</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-why-would-we-help-them-hernan-del-valle-radcliffe-institute-179719?ref=freecodecamp"><strong>Why Would We Help Them? - Humanitarian Aid in the Mediterranean Refugee Crisis</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-jal-mehta-learning-deeply-at-scale-the-challenge-of-our-times-radcliffe-institute-179761?ref=freecodecamp"><strong>Learning Deeply at Scale: The Challenge of Our Times</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-gender-and-the-business-of-fiction-radcliffe-institute-179815?ref=freecodecamp"><strong>Gender and the Business of Fiction - Influence on Literature and Reception</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lisa-randall-knocking-on-heaven-s-door-great-teachers-179851?ref=freecodecamp"><strong>Knocking on Heaven's Door - Exploring Fundamental Physics and Cosmology</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-unsettled-citizens-economic-citizenship-radcliffe-institute-179697?ref=freecodecamp"><strong>Economic Citizenship - Debates on Wealth and Citizenship - Lecture 1</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-opening-discussion-for-measure-anna-von-mertens-radcliffe-institute-179713?ref=freecodecamp"><strong>Opening Discussion for Measure - Exploring Henrietta Swan Leavitt's Work</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-algorithmic-accountability-designing-for-safety-ben-shneiderman-radcliffe-institute-179732?ref=freecodecamp"><strong>Algorithmic Accountability - Designing for Safety</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-new-approaches-to-vaccine-development-and-tb-hiv-darrell-irvine-mit-179812?ref=freecodecamp"><strong>New Approaches to Vaccine Development for TB and HIV</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-werner-sollors-on-his-new-book-the-temptation-of-despair-tales-of-the-1940s-179819?ref=freecodecamp"><strong>The Temptation of Despair: Tales of the 1940s - Book Discussion</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-bbc-radio-s-the-public-philosopher-with-michael-sandel-institute-of-politics-179841?ref=freecodecamp"><strong>The Public Philosopher - Healthcare Policy and the American Dream</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-where-we-stand-in-earthquake-prediction-marine-a-denolle-radcliffe-institute-179707?ref=freecodecamp"><strong>Where We Stand in Earthquake Prediction</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-conflicts-over-science-and-policy-at-the-epa-where-are-we-headed-179722?ref=freecodecamp"><strong>Conflicts Over Science and Policy at the EPA - Environmental Challenges and Future Directions</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-eugene-wang-what-was-the-terracotta-army-for-radcliffe-institute-179762?ref=freecodecamp"><strong>What Was the Terracotta Army For? - Challenging Common Theories</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-tania-bruguera-the-role-of-ethics-in-political-art-radcliffe-institute-179777?ref=freecodecamp"><strong>The Role of Ethics in Political Art - Changing Political Discussions Through Artistic Integration</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-alexander-sasha-wait-zaranek-tiling-the-genome-radcliffe-institute-179785?ref=freecodecamp"><strong>Tiling the Genome - Naming the Parts of Your Genome That Make You You</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-molecules-movement-and-motors-steven-m-block-and-closing-remarks-radcliffe-institute-179856?ref=freecodecamp"><strong>Molecules, Movement, and Motors - Shedding Light on Motor Function</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hilt-curriculum-mapping-179726?ref=freecodecamp"><strong>HILT Curriculum Mapping Projects: Improving Curricular Infrastructure at Harvard</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-who-belongs-4-of-4-the-gendered-politics-of-new-nationalisms-radcliffe-institute-179734?ref=freecodecamp"><strong>The Gendered Politics of New Nationalisms - Lecture 4</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-mad-cartoonists-of-cairo-jonathan-guyer-radcliffe-institute-179758?ref=freecodecamp"><strong>The Mad Cartoonists of Cairo - Redrawing the Lines of Acceptable Speech</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-sarah-stewart-the-violent-origin-of-the-earth-and-moon-179778?ref=freecodecamp"><strong>The Violent Origin of the Earth and Moon</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs50-2012-week-3-continued-179835?ref=freecodecamp"><strong>CS50 2012 - Week 3 Continued: Search Algorithms and Sorting Techniques</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-rebuild-the-dream-the-next-american-economy-a-public-address-by-van-jones-179859?ref=freecodecamp"><strong>Rebuild the Dream: The Next American Economy - A Public Address</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-road-to-rescue-evie-shockley-radcliffe-institute-179695?ref=freecodecamp"><strong>The Road to Rescue - Evie Shockley - Radcliffe Institute</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-fruit-fly-as-human-disease-research-tool-179727?ref=freecodecamp"><strong>The Fruit Fly as a Research Tool for Human Disease</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-difficult-miracle-the-living-legacy-of-june-jordan-radcliffe-institute-179740?ref=freecodecamp"><strong>The Difficult Miracle: The Living Legacy of June Jordan</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-evolution-speciation-and-adaptation-of-cichlid-fish-axel-meyer-radcliffe-institute-179753?ref=freecodecamp"><strong>Evolution, Speciation, and Adaptation of Cichlid Fish</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-update-on-cryptococcal-disease-in-patients-w-hiv-infection-graeme-meintjes-u-of-cape-town-179813?ref=freecodecamp"><strong>Update on Cryptococcal Disease in HIV-Infected Patients - Lecture 7</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-supercommittee-collapse-and-america-s-healthcare-future-the-forum-at-hsph-179858?ref=freecodecamp"><strong>The Supercommittee Collapse and America's Healthcare Future</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-next-in-evolution-catherine-e-wagner-radcliffe-institute-179711?ref=freecodecamp"><strong>Next in Evolution - The Evolution of Diversity in East African Cichlid Fishes</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-structure-in-motion-ciprian-s-borcea-and-ileana-streinu-radcliffe-institute-179714?ref=freecodecamp"><strong>Structure in Motion - Geometric Insights in Protein Folding, Robot Kinematics, and Auxetic Materials</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-reel-time-christopher-ricks-on-eliot-s-auditory-imagination-woodberry-poetry-room-179811?ref=freecodecamp"><strong>T.S. Eliot's Auditory Imagination - Christopher Ricks Lecture</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-president-drew-gilpin-faust-s-remarks-the-harvard-campaign-launch-179829?ref=freecodecamp"><strong>The Harvard Campaign Launch - President's Remarks on Shaping the University's Future</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-arcadia-project-a-poetry-reading-woodberry-poetry-room-179834?ref=freecodecamp"><strong>The Arcadia Project - Postmodern Pastoral Poetry Reading</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-reflections-on-leading-india-s-national-health-organizations-harvard-school-of-public-health-179847?ref=freecodecamp"><strong>Reflections on Leading India's National Health Organizations</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-rare-cancers-charting-a-faster-route-to-treatment-179701?ref=freecodecamp"><strong>Rare Cancers: Charting a Faster Route to Treatment</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-pardis-sabeti-evolutionary-forces-in-humans-and-pathogens-179779?ref=freecodecamp"><strong>Evolutionary Forces in Humans and Pathogens - Natural Selection and Genomic Studies</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-boston-originals-bouchard-colby-lepson-garcia-roberts-woodberry-poetry-room-179790?ref=freecodecamp"><strong>Boston Originals - Poetry Readings by Bouchard, Colby, Lepson and Garcia Roberts</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-abraham-avi-loeb-new-search-methods-for-primitive-and-intelligent-life-far-from-earth-179810?ref=freecodecamp"><strong>New Search Methods for Primitive and Intelligent Life Beyond Earth</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-harvard-thinking-why-should-you-try-the-mediterranean-diet-504231?ref=freecodecamp"><strong>Harvard Thinking - Why Should You Try the Mediterranean Diet?</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-tracking-shots-migrant-itineraries-a-conversation-about-art-migration-and-citizenship-179746?ref=freecodecamp"><strong>Tracking Shots - Art, Migration, and Citizenship Conversation</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-new-faculty-institute-2016-rema-n-hanna-andrew-ho-rebecca-lemov-179776?ref=freecodecamp"><strong>New Faculty Institute 2016 - Perspectives from Recently Tenured Faculty: Navigating Your Professional Path as a Scholar</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-state-of-the-nation-s-housing-2015-harvard-joint-center-for-housing-studies-179799?ref=freecodecamp"><strong>The State of the Nation's Housing 2015 - Key Findings and Trends</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-great-animal-orchestra-a-performance-dialogue-in-soundscape-and-poetry-179839?ref=freecodecamp"><strong>The Great Animal Orchestra - Soundscape and Poetry Performance</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-new-frontiers-in-cancer-care-381352?ref=freecodecamp"><strong>New Frontiers in Cancer Care: Advances in Genomics, AI, and Personalized Treatment</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-abraham-verghese-delivers-the-commencement-address-harvard-commencement-2025-456320?ref=freecodecamp"><strong>Harvard Commencement Address 2025</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-harvard-thinking-preserving-learning-in-the-age-of-ai-shortcuts-530627?ref=freecodecamp"><strong>Harvard Thinking - Preserving Learning in the Age of AI Shortcuts</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-extreme-hurricanes-the-challenges-for-puerto-rico-and-beyond-179739?ref=freecodecamp"><strong>Extreme Hurricanes: Challenges and Recovery in Puerto Rico and Beyond</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-rosalind-w-picard-your-future-smart-wristband-radcliffe-institute-179823?ref=freecodecamp"><strong>Your Future Smart Wristband - Wearable Technology for Health and Emotion Monitoring</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-harvard-thinking-are-you-getting-enough-sleep-probably-not-499156?ref=freecodecamp"><strong>Are You Getting Enough Sleep? Probably Not</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-harvard-thinking-how-does-memory-work-and-not-work-509902?ref=freecodecamp"><strong>How Does Memory Work and Not Work?</strong></a> from <em>Harvard University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-harvard-thinking-why-are-u-s-literacy-rates-declining-485877?ref=freecodecamp"><strong>Why Are U.S. Literacy Rates Declining?</strong></a> from <em>Harvard University</em></p>
</li>
</ul>
<h2 id="heading-wharton-school-of-the-university-of-pennsylvania-3-courses"><strong>Wharton School of the University of Pennsylvania (3 courses)</strong></h2>
<ul>
<li><p><a href="https://www.classcentral.com/course/strategic-management-the-wharton-school-of-the-un-15197?ref=freecodecamp"><strong>Strategic Management Capstone</strong></a> from <em>Wharton School of the University of Pennsylvania</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/business-strategy-the-wharton-school-of-the-unive-6829?ref=freecodecamp"><strong>Business Strategy from Wharton: Competitive Advantage</strong></a> from <em>Wharton School of the University of Pennsylvania</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/business-strategy-the-wharton-school-of-the-unive-15196?ref=freecodecamp"><strong>Introduction to Connected Strategy</strong></a> from <em>Wharton School of the University of Pennsylvania</em></p>
</li>
</ul>
<h2 id="heading-university-of-pennsylvania-21-courses"><strong>University of Pennsylvania (21 courses)</strong></h2>
<ul>
<li><p><a href="https://www.classcentral.com/course/intellectual-property-university-of-pennsylvania--5001?ref=freecodecamp"><strong>Intellectual Property Law and Policy: Part 1</strong></a> from <em>University of Pennsylvania</em> ★★★★☆(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/corporate-culture-university-of-pennsylvania-corp-9510?ref=freecodecamp"><strong>Corporate Social Responsibility (CSR): A Strategic Approach</strong></a> from <em>University of Pennsylvania</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/education-university-of-pennsylvania-introduction-8856?ref=freecodecamp"><strong>Introduction to Online and Blended Teaching</strong></a> from <em>University of Pennsylvania</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/research-in-global-settings-106377?ref=freecodecamp"><strong>Research in Global Settings</strong></a> from <em>University of Pennsylvania</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/intellectual-property-university-of-pennsylvania--6490?ref=freecodecamp"><strong>Intellectual Property Law and Policy: Part 2</strong></a> from <em>University of Pennsylvania</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/vaccines-university-of-pennsylvania-the-covid-19--43715?ref=freecodecamp"><strong>The COVID-19 Pandemic and the Use of mRNA Vaccines</strong></a> from <em>University of Pennsylvania</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/world-science-u-new-ideas-about-dark-matter-8893?ref=freecodecamp"><strong>New Ideas About Dark Matter</strong></a> from <em>University of Pennsylvania</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/ethics-and-trial-design-106361?ref=freecodecamp"><strong>Ethics and Trial Design</strong></a> from <em>University of Pennsylvania</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/re-imagining-emergency-department-care-for-substa-106376?ref=freecodecamp"><strong>Re-Imagining Emergency Department Care for Substance Use Disorders</strong></a> from <em>University of Pennsylvania</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/teacher-training-university-of-pennsylvania-under-7198?ref=freecodecamp"><strong>Understanding Classroom Interaction</strong></a> from <em>University of Pennsylvania</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/social-science-university-of-pennsylvania-top-10--7586?ref=freecodecamp"><strong>Top 10 Social Issues for the President’s First 100 Days</strong></a> from <em>University of Pennsylvania</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/humanities-university-of-pennsylvania-the-science-48153?ref=freecodecamp"><strong>The Science of Generosity: Do Good…Feel Good</strong></a> from <em>University of Pennsylvania</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/focus-on-opioid-use-disorder-and-treatment-the-ge-106365?ref=freecodecamp"><strong>Focus on Opioid Use Disorder and Treatment: The Genetics of Addiction-How Discovery Is Informing the Path Forward for Opioid Use Disorder Treatment, Intervention, and Prevention</strong></a> from <em>University of Pennsylvania</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/conflicts-of-interest-in-biomedical-research-106357?ref=freecodecamp"><strong>Conflicts of Interest in Biomedical Research</strong></a> from <em>University of Pennsylvania</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/urban-planning-university-of-pennsylvania-urban-t-23259?ref=freecodecamp"><strong>Urban Transit for Livable Cities</strong></a> from <em>University of Pennsylvania</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/rationing-care-106375?ref=freecodecamp"><strong>Rationing Care</strong></a> from <em>University of Pennsylvania</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/evidence-based-prescribing-an-online-course-with--106364?ref=freecodecamp"><strong>Evidence-based Prescribing: An Online Course with Tools You Can Use to Fight the Opioid Epidemic</strong></a> from <em>University of Pennsylvania</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/penn-medicine-opioid-stewardship-2022-comprehensi-106374?ref=freecodecamp"><strong>Penn Medicine Opioid Stewardship 2022: Comprehensive Pain Management: Opioids and Beyond</strong></a> from <em>University of Pennsylvania</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/opioid-use-disorder-for-hospitalists-in-the-fenta-106373?ref=freecodecamp"><strong>Opioid Use Disorder for Hospitalists in the Fentanyl Era</strong></a> from <em>University of Pennsylvania</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-university-of-pennsylvania-knowledg-9288?ref=freecodecamp"><strong>Knowledge Inference and Structure Discovery for Education</strong></a> from <em>University of Pennsylvania</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-haskell-lecture-notes-and-assignments-110550?ref=freecodecamp"><strong>Haskell: Lecture notes and assignments</strong></a> from <em>University of Pennsylvania</em></p>
</li>
</ul>
<h2 id="heading-princeton-university-8-courses"><strong>Princeton University (8 courses)</strong></h2>
<ul>
<li><p><a href="https://www.classcentral.com/course/law-princeton-university-constitutional-interpret-13427?ref=freecodecamp"><strong>Constitutional Interpretation</strong></a> from <em>Princeton University</em> ★★★★★(46)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/structural-engineering-princeton-university-the-a-12040?ref=freecodecamp"><strong>The Art of Structural Engineering: Vaults</strong></a> from <em>Princeton University</em> ★★★★★(22)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/structural-engineering-princeton-university-the-a-4561?ref=freecodecamp"><strong>The Art of Structural Engineering: Bridges</strong></a> from <em>Princeton University</em> ★★★★★(8)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/civil-liberties-princeton-university-civil-libert-11764?ref=freecodecamp"><strong>Civil Liberties</strong></a> from <em>Princeton University</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/kadenze-reinventing-the-piano-3778?ref=freecodecamp"><strong>Reinventing the Piano</strong></a> from <em>Princeton University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/political-economy-princeton-university-making-gov-4562?ref=freecodecamp"><strong>Making Government Work in Hard Places</strong></a> from <em>Princeton University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/writing-princeton-university-writing-case-studies-4908?ref=freecodecamp"><strong>Writing Case Studies: Science of Delivery</strong></a> from <em>Princeton University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/world-science-u-endless-universe-beyond-the-big-bang-3404?ref=freecodecamp"><strong>Endless Universe: Beyond the Big Bang</strong></a> from <em>Princeton University</em></p>
</li>
</ul>
<h2 id="heading-yale-university-1096-courses"><strong>Yale University (1096 courses)</strong></h2>
<ul>
<li><p><a href="https://www.classcentral.com/course/youtube-fundamentals-of-qualitative-research-methods-64206?ref=freecodecamp"><strong>Fundamentals of Qualitative Research Methods</strong></a> from <em>Yale University</em> ★★★★★(210)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-series-on-introduction-to-radiology-53061?ref=freecodecamp"><strong>Introduction to Radiology</strong></a> from <em>Yale University</em> ★★★★★(141)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-how-i-do-it-ultrasound-of-the-abdomen-180545?ref=freecodecamp"><strong>Ultrasound of the Abdomen</strong></a> from <em>Yale University</em> ★★★★★(86)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-introduction-to-psychology-with-paul-bloom-54701?ref=freecodecamp"><strong>Introduction to Psychology</strong></a> from <em>Yale University</em> ★★★★★(34)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-behavioral-finance-the-role-of-psychology-109482?ref=freecodecamp"><strong>Behavioral Finance - The Role of Psychology in Financial Decision-Making</strong></a> from <em>Yale University</em> ★★★★★(18)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-biomedical-engineers-and-cancer-109893?ref=freecodecamp"><strong>Biomedical Engineering Applications in Cancer Diagnosis and Treatment - Lecture 24</strong></a> from <em>Yale University</em> ★★★★☆(12)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-yale-anthropology-92463?ref=freecodecamp"><strong>Anthropology</strong></a> from <em>Yale University</em> ★★★★★(9)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-insurance-the-archetypal-risk-management-institution-its-opportunities-and-vulnerabilities-109276?ref=freecodecamp"><strong>Insurance: Opportunities and Vulnerabilities in Risk Management</strong></a> from <em>Yale University</em> ★★★★★(9)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-fundamentals-of-physics-with-ramamurti-shankar-53087?ref=freecodecamp"><strong>Fundamentals of Physics</strong></a> from <em>Yale University</em> ★★★★★(8)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-the-good-life-happiness-109915?ref=freecodecamp"><strong>The Good Life - Happiness and Positive Psychology</strong></a> from <em>Yale University</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-what-is-biomedical-engineering-109898?ref=freecodecamp"><strong>Introduction to Biomedical Engineering - Concepts and Applications</strong></a> from <em>Yale University</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-introduction-to-musculoskeletal-radiology-180547?ref=freecodecamp"><strong>Introduction to Musculoskeletal Radiology</strong></a> from <em>Yale University</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-introduction-to-radiology-conventional-radiography-180549?ref=freecodecamp"><strong>Introduction to Radiology - Conventional Radiography</strong></a> from <em>Yale University</em> ★★★★☆(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-introduction-to-ancient-greek-history-with-donald-kagan-53043?ref=freecodecamp"><strong>Introduction to Ancient Greek History</strong></a> from <em>Yale University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-what-happens-when-things-go-wrong-mental-illness-part-i-109498?ref=freecodecamp"><strong>Mental Illness: Understanding Mood Disorders - Part 1</strong></a> from <em>Yale University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-deep-learning-guided-reconstruction-and-processing-for-pet-spect-and-ct-182530?ref=freecodecamp"><strong>Deep Learning Guided Reconstruction and Processing for PET, SPECT, and CT</strong></a> from <em>Yale University</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-philosophy-and-the-science-of-human-nature-w-tamar-gendler-54702?ref=freecodecamp"><strong>Philosophy and the Science of Human Nature</strong></a> from <em>Yale University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-a-person-in-the-world-of-people-self-and-other-part-i-109918?ref=freecodecamp"><strong>Introduction to Social Psychology - Self and Other, Part I</strong></a> from <em>Yale University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-investment-banking-and-secondary-markets-109881?ref=freecodecamp"><strong>Investment Banking and Secondary Markets - Financial Markets</strong></a> from <em>Yale University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-introduction-to-the-old-testament-with-christine-hayes-53024?ref=freecodecamp"><strong>Introduction to the Old Testament</strong></a> from <em>Yale University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-cell-culture-engineering-cont-109903?ref=freecodecamp"><strong>Cell Culture Engineering: Fertilization, Embryogenesis, and Stem Cells - Lecture 6</strong></a> from <em>Yale University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-abdominal-x-rays-180546?ref=freecodecamp"><strong>Abdominal X-Rays</strong></a> from <em>Yale University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introduction-why-study-the-new-testament-109749?ref=freecodecamp"><strong>Introduction to New Testament Studies - Why Study the New Testament?</strong></a> from <em>Yale University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-crime-and-the-law-109346?ref=freecodecamp"><strong>Crime and Law in Early Modern England - Politics, Religion, and Society under the Tudors and Stuarts</strong></a> from <em>Yale University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-quantum-mechanics-i-the-key-experiments-and-wave-particle-duality-109319?ref=freecodecamp"><strong>Quantum Mechanics - Key Experiments and Wave-Particle Duality</strong></a> from <em>Yale University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introduction-109925?ref=freecodecamp"><strong>Frontiers and Controversies in Astrophysics - Introduction to Exoplanets, Black Holes, and Cosmology</strong></a> from <em>Yale University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-3-solid-liquid-chemical-rockets-rocket-science-for-everyone-with-yale-s-marla-geha-479838?ref=freecodecamp"><strong>Solid and Liquid Chemical Rockets - 3.3</strong></a> from <em>Yale University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/on-demand-yale-s-review-of-advances-in-oncology-h-106175?ref=freecodecamp"><strong>ON DEMAND: Yale’s Review of Advances in Oncology Highlights from the ASCO® Annual Meeting 2021</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-learning-from-and-responding-to-financial-crisis-i-lawrence-summers-109884?ref=freecodecamp"><strong>Learning from and Responding to Financial Crisis - Lecture 1</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-genetic-engineering-109896?ref=freecodecamp"><strong>Genetic Engineering - From DNA Structure to Protein Synthesis</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-foundations-freud-109499?ref=freecodecamp"><strong>Foundations of Psychology - Sigmund Freud's Theories and Contributions</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-biomechanics-and-orthopedics-109906?ref=freecodecamp"><strong>Biomechanics and Orthopedics - Material Properties of Elasticity and Viscosity</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-real-estate-finance-and-its-vulnerability-to-crisis-109873?ref=freecodecamp"><strong>Real Estate Finance and Its Vulnerability to Crisis</strong></a> from <em>Yale University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-creating-a-constitution-109637?ref=freecodecamp"><strong>Creating a Constitution - The American Revolution</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-biomedical-engineers-and-artificial-organs-109891?ref=freecodecamp"><strong>Biomedical Engineers and Artificial Organs - Frontiers of Biomedical Engineering</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-4-reconstruction-continued-109203?ref=freecodecamp"><strong>American History: From Emancipation to the Present - Reconstruction and the Rise of Redemption - Lecture 4</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-biomolecular-engineering-engineering-of-immunity-109894?ref=freecodecamp"><strong>Biomolecular Engineering - Engineering of Immunity and Vaccine Development</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ai-in-molecular-imaging-182537?ref=freecodecamp"><strong>AI in Molecular Imaging</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-renal-physiology-109905?ref=freecodecamp"><strong>Renal Physiology - Introduction to Kidney Function and Filtration</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-the-greek-renaissance-colonization-and-tyranny-109452?ref=freecodecamp"><strong>The Greek Renaissance - Colonization and Tyranny - Hoplite Warfare and the Phalanx</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-abdominal-anatomy-on-computed-tomography-180548?ref=freecodecamp"><strong>Abdominal Anatomy on Computed Tomography</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-bioimaging-cont-109908?ref=freecodecamp"><strong>Biomedical Imaging Technologies - MRI, fMRI, Ultrasound, and Nuclear Imaging</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-10-biblical-law-the-three-legal-corpora-of-je-exodus-p-leviticus-and-numbers-and-d-109222?ref=freecodecamp"><strong>Biblical Law: The Three Legal Corpora of JE, P, and D - Lecture 10</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-bioimaging-109909?ref=freecodecamp"><strong>Bioimaging - X-Ray and CT Imaging Techniques - Lecture 20</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-yale-radiology-meet-the-sections-body-imaging-part-1-ultrasound-180539?ref=freecodecamp"><strong>Yale Radiology Body Imaging: Ultrasound - Part 1</strong></a> from <em>Yale University</em> ★★★☆☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-the-boltzmann-constant-and-first-law-of-thermodynamics-109936?ref=freecodecamp"><strong>The Boltzmann Constant and First Law of Thermodynamics - Lecture 22</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-cardiovascular-physiology-cont-109900?ref=freecodecamp"><strong>Cardiovascular Physiology - Electrical Conductivity in the Heart - Lecture 15</strong></a> from <em>Yale University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-scrotal-emergencies-180551?ref=freecodecamp"><strong>Scrotal Emergencies</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-ground-upon-which-you-stand-unmasking-dismantling-impostor-syndrome-182594?ref=freecodecamp"><strong>The Ground Upon Which You Stand: Unmasking &amp; Dismantling Impostor Syndrome</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-regulatory-evaluation-of-image-processing-software-devices-182529?ref=freecodecamp"><strong>Regulatory Evaluation of Image Processing Software Devices</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-6-how-do-other-countries-approach-addiction-treatment-addiction-treatment-course-474273?ref=freecodecamp"><strong>How Do Other Countries Approach Addiction Treatment - Addiction Treatment Course 6.6</strong></a> from <em>Yale University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-essentials-of-global-health-with-richard-skolnik-425415?ref=freecodecamp"><strong>Essentials of Global Health</strong></a> from <em>Yale University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-stocks-109879?ref=freecodecamp"><strong>Understanding Stocks and Corporate Finance - Lecture 11</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-foundations-this-is-your-brain-109917?ref=freecodecamp"><strong>Foundations of Psychology - This Is Your Brain</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/on-demand-the-gi-hospitalist-model-addressing-the-106168?ref=freecodecamp"><strong>ON DEMAND: The GI Hospitalist Model: Addressing the Needs of Hospital-Based Care</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-26-learning-from-and-responding-to-financial-crisis-ii-lawrence-summers-109876?ref=freecodecamp"><strong>Learning from and Responding to Financial Crisis - Lecture 2</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lesson-7b-how-does-a-child-make-progress-305598?ref=freecodecamp"><strong>Child Development: How Does a Child Make Progress? - Lesson 7b</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-civil-war-and-reconstruction-with-david-blight-53046?ref=freecodecamp"><strong>The Civil War and Reconstruction</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-17-2b-ian-gotlib-on-depression-and-emotion-in-adolescents-109525?ref=freecodecamp"><strong>Depression and Emotion in Adolescents - Experts in Emotion Series with Ian Gotlib</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-banks-109581?ref=freecodecamp"><strong>Banks - History, Theory, and Regulation</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-learning-and-memory-180526?ref=freecodecamp"><strong>Learning and Memory</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-real-estate-109270?ref=freecodecamp"><strong>Real Estate Finance: History, Institutions, and Modern Markets - Lecture 10</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-what-motivates-us-sex-109494?ref=freecodecamp"><strong>What Motivates Us - Sex and Gender Differences in Psychology</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-what-is-it-like-to-be-a-baby-the-development-of-thought-109501?ref=freecodecamp"><strong>What Is It Like to Be a Baby - The Development of Thought</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-evolution-emotion-and-reason-love-guest-lecture-by-109492?ref=freecodecamp"><strong>Evolution, Emotion, and Reason: Love - Guest Lecture</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-guest-speaker-david-swensen-109582?ref=freecodecamp"><strong>Financial Markets - Asset Allocation and Endowment Management</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-aids-i-109659?ref=freecodecamp"><strong>AIDS: Global Impact and Public Health Strategies - Lecture 1</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-guest-lecture-by-stephen-schwarzman-109880?ref=freecodecamp"><strong>Financial Markets - Insights from Private Equity and Global Finance</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-11-1a-jonathan-haidt-on-morality-and-emotion-109527?ref=freecodecamp"><strong>Morality and Emotion - Experts in Emotion Series with Jonathan Haidt - Lecture 11.1a</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-why-so-many-species-the-factors-affecting-biodiversity-109793?ref=freecodecamp"><strong>Why So Many Species? The Factors Affecting Biodiversity</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-cell-culture-engineering-109901?ref=freecodecamp"><strong>Cell Culture Engineering - Gene Therapy and Cell Physiology</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-01-introduction-to-atmospheres-109260?ref=freecodecamp"><strong>Introduction to Atmospheres - Earth's Climate System</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-basic-transmission-genetics-109412?ref=freecodecamp"><strong>Basic Transmission Genetics - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mri-in-lung-cancer-current-status-and-experience-180525?ref=freecodecamp"><strong>MRI in Lung Cancer - Current Status and Experience</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-03-constantine-and-the-early-church-109242?ref=freecodecamp"><strong>Constantine and the Early Church - The Rise of Christianity in the Roman Empire</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-the-gospel-of-matthew-109750?ref=freecodecamp"><strong>The Gospel of Matthew - Introduction to New Testament</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-human-foibles-fraud-manipulation-and-regulation-109878?ref=freecodecamp"><strong>Human Foibles, Fraud, Manipulation, and Regulation in Financial Markets - Lecture 8</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-a-person-in-the-world-of-people-self-and-other-part-ii-109495?ref=freecodecamp"><strong>Social Psychology, Sleep, and Laughter - Forming Impressions and Exploring Mysteries</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-biomolecular-engineering-general-concepts-109897?ref=freecodecamp"><strong>Biomolecular Engineering: Introduction to Pharmacokinetics and Drug Delivery</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-paradise-xviii-xix-xxi-xxii-109698?ref=freecodecamp"><strong>Dante's Paradise: Justice, Contemplation, and Vision - Cantos XVIII, XIX, XXI, XXII</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-06-transformation-of-the-roman-empire-109240?ref=freecodecamp"><strong>Transformation of the Roman Empire - The Early Middle Ages, 284-1000</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-04-the-christian-roman-empire-109243?ref=freecodecamp"><strong>The Christian Roman Empire - Constantine's Conversion and Religious Conflicts</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-aids-ii-109658?ref=freecodecamp"><strong>AIDS: A Clinician's Perspective on the Modern Epidemic - Lecture 23</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-the-rise-of-athens-109476?ref=freecodecamp"><strong>The Rise of Athens - Ancient Greek History Lecture</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-paradise-xxvii-xxviii-xxix-109733?ref=freecodecamp"><strong>Dante's Paradise XXVII-XXIX - Cosmology, Creation, and Theological Themes</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-supermassive-black-holes-109920?ref=freecodecamp"><strong>Supermassive Black Holes and Strong-Field Relativity - Lecture 15</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-assessing-drug-development-risk-using-big-data-and-machine-learning-192361?ref=freecodecamp"><strong>Assessing Drug Development Risk Using Big Data and Machine Learning</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-the-rise-of-the-polis-cont-109475?ref=freecodecamp"><strong>The Rise of the Polis - Ancient Greek History Lecture 5</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-deep-learning-powered-faster-and-low-dose-imaging-mr-pet-and-beyond-182540?ref=freecodecamp"><strong>Deep Learning Powered Faster and Low-Dose Imaging, MR, PET and Beyond</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-23-visions-of-the-end-daniel-and-apocalyptic-literature-109555?ref=freecodecamp"><strong>Visions of the End: Daniel and Apocalyptic Literature in the Old Testament - Lecture 23</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-the-origins-of-world-war-i-109839?ref=freecodecamp"><strong>The Origins of World War I - France Since 1871 - Lecture 13</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-guest-lecture-by-david-swensen-109872?ref=freecodecamp"><strong>Institutional Portfolio Management and Investment Strategies - Guest Lecture</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-the-early-middle-ages-284-1000-the-crucial-seventh-century-109557?ref=freecodecamp"><strong>The Early Middle Ages, 284-1000 - The Crucial Seventh Century</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-15-hebrew-prophecy-the-non-literary-prophets-109223?ref=freecodecamp"><strong>Hebrew Prophecy: The Non-Literary Prophets - Lecture 15</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-interpreting-scripture-hebrews-109408?ref=freecodecamp"><strong>Interpreting Scripture - The Letter to the Hebrews</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-principles-strategies-in-environmental-law-109340?ref=freecodecamp"><strong>Principles and Strategies in Environmental Law - Introduction to US Environmental Regulation</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-30-esomeprazole-as-an-example-of-drug-testing-and-usage-109713?ref=freecodecamp"><strong>Esomeprazole - Drug Testing, Usage, and Clinical Trials</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-vikings-the-european-prospect-1000-109234?ref=freecodecamp"><strong>Vikings and the European Prospect in 1000 CE - Lecture 22</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-the-early-middle-ages-284-1000-the-splendor-of-byzantium-109556?ref=freecodecamp"><strong>The Early Middle Ages, 284-1000 - The Splendor of Byzantium</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-34-renewable-energy-109564?ref=freecodecamp"><strong>Renewable Energy Sources: Wind, Solar, Biomass, and Geothermal</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-freud-and-fiction-109811?ref=freecodecamp"><strong>Freud and Fiction - Psychoanalysis in Literary Theory</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-8-the-civil-war-and-its-legacies-at-yale-338778?ref=freecodecamp"><strong>The Civil War and its Legacies at Yale - Class 8</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-civic-life-interrupted-nightmare-and-destiny-on-august-24-a-d-79-109396?ref=freecodecamp"><strong>Civic Life Interrupted: Pompeii's Architecture and Fate on August 24, A.D. 79</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-athenian-democracy-109473?ref=freecodecamp"><strong>Athenian Democracy and the Rise of the Athenian Empire - Lecture 15</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-islamic-conquests-and-civil-war-109558?ref=freecodecamp"><strong>Islamic Conquests and Civil War - Early Middle Ages, 284-1000</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-the-athenian-empire-109455?ref=freecodecamp"><strong>The Athenian Empire and the Persian Wars - Lecture 13</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-the-logic-of-science-109770?ref=freecodecamp"><strong>The Logic of Science - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-27-global-warming-109245?ref=freecodecamp"><strong>Global Warming - Understanding Climate Change and the Carbon Cycle</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-monasticism-109237?ref=freecodecamp"><strong>Monasticism in the Early Middle Ages - Paradoxes and Evolution</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-02-the-crisis-of-the-third-century-and-the-diocletianic-reforms-109244?ref=freecodecamp"><strong>The Crisis of the Third Century and the Diocletianic Reforms</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-the-greco-roman-world-109745?ref=freecodecamp"><strong>The Greco-Roman World - Historical Context for the New Testament</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lesson-1-what-is-reading-with-rafe-and-molly-305592?ref=freecodecamp"><strong>What is Reading? - Lesson 1</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-nuclear-experiments-109339?ref=freecodecamp"><strong>Nuclear Experiments and Environmental Impact - Environmental Politics and Law</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-war-in-the-trenches-109411?ref=freecodecamp"><strong>War in the Trenches - World War I Stalemate and Its Cultural Impact</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-rome-redux-the-tetrarchic-renaissance-109394?ref=freecodecamp"><strong>Rome Redux: The Tetrarchic Renaissance - Roman Architecture</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-7-israel-in-egypt-moses-and-the-beginning-of-yahwism-genesis-37-exodus-4-109219?ref=freecodecamp"><strong>Israel in Egypt: Moses and the Beginning of Yahwism - Lecture 7</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-4-doublets-and-contradictions-seams-and-sources-109231?ref=freecodecamp"><strong>Introduction to the Old Testament: Doublets, Contradictions, and Biblical Authorship - Lecture 4</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-19-348777?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 19</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-the-dark-ages-109459?ref=freecodecamp"><strong>The Dark Ages - Ancient Greek History from Minoan Crete to Mycenaean Collapse</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-2-2-greg-siegle-on-emotion-elicitation-109528?ref=freecodecamp"><strong>Emotion Elicitation: Research and Future Directions - Experts in Emotion Series</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lesson-6-1-diagnosing-dyslexia-part-1-305590?ref=freecodecamp"><strong>Diagnosing Dyslexia - Part 1</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-rome-and-a-villa-hadrian-s-pantheon-and-tivoli-retreat-109391?ref=freecodecamp"><strong>Rome and a Villa - Hadrian's Pantheon and Tivoli Retreat</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-notorious-nero-and-his-amazing-architectural-legacy-109398?ref=freecodecamp"><strong>Notorious Nero and His Amazing Architectural Legacy - Roman Architecture</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-the-roman-way-of-life-and-death-at-ostia-the-port-of-rome-109403?ref=freecodecamp"><strong>The Roman Way of Life and Death at Ostia - The Port of Rome</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introduction-109803?ref=freecodecamp"><strong>Introduction to Theory of Literature - Lecture 1</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-the-universal-principle-of-risk-management-pooling-and-the-hedging-of-risks-109479?ref=freecodecamp"><strong>The Universal Principle of Risk Management - Pooling and Hedging Risks</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-land-use-law-and-property-rights-109671?ref=freecodecamp"><strong>Land Use Law and Property Rights - Lecture 19</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-clovis-and-the-franks-109560?ref=freecodecamp"><strong>Clovis and the Franks - Gregory of Tours' Account of Early Medieval History</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-03-the-perfect-gas-law-109577?ref=freecodecamp"><strong>The Perfect Gas Law - Atmospheric Pressure, Density, and Temperature</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-it-takes-a-city-the-founding-of-rome-and-the-beginnings-of-urbanism-in-italy-109724?ref=freecodecamp"><strong>The Founding of Rome and the Beginnings of Urbanism in Italy - Roman Architecture</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-napoleon-109759?ref=freecodecamp"><strong>Napoleon Bonaparte: From Corsican Origins to French Emperor</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-tissue-engineering-cont-109910?ref=freecodecamp"><strong>Tissue Engineering Applications in Biomedical Engineering - Lecture 23</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-the-postmodern-psyche-109420?ref=freecodecamp"><strong>The Postmodern Psyche - Exploring Deleuze, Guattari, and Žižek</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-2-3-iris-mauss-on-measuring-emotion-109531?ref=freecodecamp"><strong>Measuring Emotion - Experts in Emotion Series with Iris Mauss - Lecture 2.3</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-exploring-special-subjects-on-pompeian-walls-109725?ref=freecodecamp"><strong>Exploring Special Subjects in Roman Wall Painting - Pompeian Mysteries and Beyond</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-creating-a-nation-109321?ref=freecodecamp"><strong>Creating a Nation - The American Revolution and Constitutional Debates</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-demographic-transition-in-europe-109377?ref=freecodecamp"><strong>Demographic Transition in Europe - Global Problems of Population Growth</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-the-athenian-empire-cont-109456?ref=freecodecamp"><strong>The Athenian Empire and the Formation of the Delian League - Lecture 14</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-democracy-and-majority-rule-ii-109616?ref=freecodecamp"><strong>Democracy and Majority Rule - Moral Foundations of Politics Lecture 2</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-19-literary-prophecy-perspectives-on-the-exile-jeremiah-ezekiel-and-2nd-isaiah-109224?ref=freecodecamp"><strong>Literary Prophecy: Perspectives on the Exile - Jeremiah, Ezekiel and Second Isaiah - Lecture 19</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-teen-sexuality-and-teen-pregnancy-109705?ref=freecodecamp"><strong>Teen Sexuality and Teen Pregnancy - Global Problems of Population Growth</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-brain-stress-test-180517?ref=freecodecamp"><strong>The Brain Stress Test</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-09-the-reign-of-justinian-109239?ref=freecodecamp"><strong>The Reign of Justinian - Early Middle Ages - Lecture 9</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-reformation-and-division-1530-1558-109679?ref=freecodecamp"><strong>Reformation and Division in England, 1530-1558 - Lecture 8</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-introductory-lecture-109619?ref=freecodecamp"><strong>Moral Foundations of Politics - The Trial of Adolf Eichmann and Government Legitimacy</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-locke-equality-freedom-property-and-the-right-to-dissent-109367?ref=freecodecamp"><strong>John Locke's Political Theory - Equality, Freedom, Property, and Dissent</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-technology-and-revolution-in-roman-architecture-109722?ref=freecodecamp"><strong>Technology and Revolution in Roman Architecture</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-johannine-christianity-the-letters-109752?ref=freecodecamp"><strong>Johannine Christianity - The Letters - Lecture 12</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-an-unsettled-settlement-the-restoration-era-1660-1688-109341?ref=freecodecamp"><strong>The Restoration Era in England - 1660-1688</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stem-cells-for-preventing-vascular-injury-180521?ref=freecodecamp"><strong>Stem Cells for Preventing Vascular Injury</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-capitalism-success-crisis-entrepreneurship-in-business-information-10-348781?ref=freecodecamp"><strong>Capitalism: Success, Crisis, and Entrepreneurship in Business Information</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-from-brick-to-marble-augustus-assembles-rome-109404?ref=freecodecamp"><strong>From Brick to Marble: Augustus Assembles Rome</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-the-collapse-of-communism-and-global-challenges-109754?ref=freecodecamp"><strong>The Collapse of Communism and Global Challenges - Lecture 24</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-semiotics-and-structuralism-109804?ref=freecodecamp"><strong>Introduction to Semiotics and Structuralism - Lecture 8</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-yale-radiology-meet-the-sections-pediatric-imaging-180540?ref=freecodecamp"><strong>Yale Radiology - Meet the Sections: Pediatric Imaging</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-08-survival-in-the-east-109241?ref=freecodecamp"><strong>Survival of the Eastern Roman Empire - Early Middle Ages</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-rousseau-on-state-of-nature-and-education-109364?ref=freecodecamp"><strong>Rousseau on State of Nature and Education - Foundations of Modern Social Thought</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-hobbes-authority-human-rights-and-social-order-109368?ref=freecodecamp"><strong>Hobbes - Authority, Human Rights and Social Order in Modern Social Thought</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-nineteenth-century-cities-109762?ref=freecodecamp"><strong>Nineteenth-Century Cities - Urban Growth and Social Change in Europe and America</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-day-in-the-life-of-a-yale-radiology-resident-180537?ref=freecodecamp"><strong>Day in the Life of a Yale Radiology Resident</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-utilitarianism-and-liberty-john-stuart-mill-109363?ref=freecodecamp"><strong>Utilitarianism and Liberty - John Stuart Mill's Philosophy - Lecture 7</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-21-biblical-poetry-psalms-and-song-of-songs-109541?ref=freecodecamp"><strong>Biblical Poetry: Psalms and Song of Songs - Lecture 21</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-immigration-109822?ref=freecodecamp"><strong>Immigration in Modern France - Challenges and Consequences</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-sparta-cont-109870?ref=freecodecamp"><strong>Sparta: Development and Character - Lecture 9</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-long-term-opioid-use-a-cautious-approach-interprofessional-panel-addiction-treatment-course-473819?ref=freecodecamp"><strong>Long-Term Opioid Use - A Cautious Approach - Interprofessional Panel - Addiction Treatment Course</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-6-biblical-narrative-the-stories-of-the-patriarchs-genesis-12-36-109218?ref=freecodecamp"><strong>Biblical Narrative: The Stories of the Patriarchs in Genesis 12-36 - Lecture 6</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-the-early-middle-ages-284-1000-charlemagne-109236?ref=freecodecamp"><strong>The Early Middle Ages, 284-1000 - Charlemagne and the Carolingian Dynasty - Lecture 19</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-the-anti-household-paul-thecla-109409?ref=freecodecamp"><strong>The Acts of Paul and Thecla: Asceticism and Female Heroism in Early Christianity - Lecture 20</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-the-peloponnesian-war-part-ii-109472?ref=freecodecamp"><strong>The Peloponnesian War - Causes and Thucydides' Perspective - Part 2</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-7-2-wendy-berry-mendes-on-psychophysiology-measurement-and-health-109529?ref=freecodecamp"><strong>Psychophysiology Measurement and Health in Emotion Research - Wendy Berry Mendes Interview</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-paradise-xxx-xxxi-xxxii-xxxiii-109692?ref=freecodecamp"><strong>Dante's Paradise: The Final Cantos and Beatific Vision - Lecture 23</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-mohammed-and-the-arab-conquests-109559?ref=freecodecamp"><strong>Mohammed and the Arab Conquests - Early Middle Ages</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-the-division-of-powers-montesquieu-109366?ref=freecodecamp"><strong>The Division of Powers - Montesquieu's Theory of Separation of Powers</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-07-barbarian-kingdoms-109561?ref=freecodecamp"><strong>Barbarian Kingdoms in the Early Middle Ages - Lecture 7</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-gilding-the-lily-painting-palaces-and-villas-in-the-first-century-a-d-109727?ref=freecodecamp"><strong>Gilding the Lily - Painting Palaces and Villas in First Century A.D. Rome</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-19-romantic-opera-verdi-s-la-traviata-bocelli-pavarotti-and-domingo-109206?ref=freecodecamp"><strong>Romantic Opera: Verdi's La Traviata and Vocal Performance - Lecture 19</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-broensted-acidity-and-the-generality-of-nucleophilic-substitution-109285?ref=freecodecamp"><strong>Brønsted Acidity and the Generality of Nucleophilic Substitution</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-the-road-to-a-constitutional-convention-109638?ref=freecodecamp"><strong>The Road to a Constitutional Convention - American Revolution</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lowering-the-field-and-raising-the-bar-advances-in-lung-mri-284113?ref=freecodecamp"><strong>Lowering the Field and Raising the Bar - Advances in Lung MRI</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-2-what-are-common-self-help-and-mutual-support-approaches-addiction-treatment-course-473833?ref=freecodecamp"><strong>What Are Common Self-Help and Mutual-Support Approaches? - Addiction Treatment Course</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-frankish-society-109238?ref=freecodecamp"><strong>Frankish Society in the Early Middle Ages - Merovingian Kingship and Power</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-making-mini-romes-on-the-western-frontier-109399?ref=freecodecamp"><strong>Roman Architecture: Making Mini Romes on the Western Frontier - Lecture 21</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-the-peloponnesian-war-part-ii-cont-109474?ref=freecodecamp"><strong>The Peloponnesian War - Pericles' Strategy and Criticism - Lecture 20</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-higher-order-effects-dynamics-and-the-nmr-time-scale-109593?ref=freecodecamp"><strong>Higher-Order Effects, Dynamics, and the NMR Time Scale - Lecture 24</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-sex-allocation-109790?ref=freecodecamp"><strong>Sex Allocation in Evolutionary Biology - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-the-persian-wars-109867?ref=freecodecamp"><strong>The Persian Wars - Lecture 12: The Development of Athenian Democracy</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-7-3-robert-levenson-on-psychophysiology-and-emotion-109532?ref=freecodecamp"><strong>Psychophysiology and Emotion - Experts in Emotion Series with Robert Levenson - Lecture 7.3</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-bigger-is-better-the-baths-of-caracalla-and-other-second-and-third-century-buildings-in-rome-109393?ref=freecodecamp"><strong>Bigger Is Better - The Baths of Caracalla and Roman Architecture in the 2nd-3rd Centuries</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-the-creation-of-an-icon-the-colosseum-and-contemporary-architecture-in-rome-109397?ref=freecodecamp"><strong>The Creation of an Icon: The Colosseum and Contemporary Architecture in Rome</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-game-theory-with-ben-polak-512871?ref=freecodecamp"><strong>Game Theory and Strategic Thinking</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-the-sovereign-state-hobbes-leviathan-109955?ref=freecodecamp"><strong>The Sovereign State - Hobbes' Leviathan and the State of Nature</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-global-demography-of-abortion-109386?ref=freecodecamp"><strong>Global Demography of Abortion - Lecture 21</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-accessing-afterlife-tombs-of-roman-aristocrats-freedmen-and-slaves-109405?ref=freecodecamp"><strong>Accessing Afterlife: Tombs of Roman Aristocrats, Freedmen, and Slaves - Roman Architecture</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-lifestyles-of-the-rich-and-famous-houses-and-villas-at-pompeii-109395?ref=freecodecamp"><strong>Lifestyles of the Rich and Famous - Houses and Villas at Pompeii</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-hometown-boy-honoring-an-emperor-s-roots-in-roman-north-africa-109401?ref=freecodecamp"><strong>Roman Architecture: Timgad and Leptis Magna in North Africa - Lecture 18</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-roman-wine-in-greek-bottles-the-rebirth-of-athens-109723?ref=freecodecamp"><strong>Roman Wine in Greek Bottles: The Rebirth of Athens</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-baroque-extravaganzas-rock-tombs-fountains-and-sanctuaries-in-jordan-lebanon-and-libya-109729?ref=freecodecamp"><strong>Baroque Extravaganzas: Rock Tombs, Fountains, and Sanctuaries in Jordan, Lebanon, and Libya - Roman Architecture</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-4-stop-user-errors-mastering-usability-engineering-in-medical-software-course-476287?ref=freecodecamp"><strong>Stop User Errors - Mastering Usability Engineering in Medical Software Course</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-frontiers-and-controversies-in-astrophysics-update-04-348786?ref=freecodecamp"><strong>Frontiers and Controversies in Astrophysics - Update 04</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-using-the-riptear-framework-case-study-addiction-treatment-course-473823?ref=freecodecamp"><strong>Using the RIPTEAR Framework - Case Study - Addiction Treatment Course</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-4-demystifying-medical-device-regulations-fda-approval-for-software-medical-software-course-476300?ref=freecodecamp"><strong>Demystifying Medical Device Regulations and FDA Approval for Software - 1.4</strong></a> from <em>Yale University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-introduction-to-green-chemistry-module-3-512861?ref=freecodecamp"><strong>Introduction to Green Chemistry - Toxicology - Module 3</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-4-leo-meo-geo-comparing-earth-s-orbits-rocket-science-for-everyone-with-yale-s-marla-geha-479839?ref=freecodecamp"><strong>LEO, MEO, GEO - Comparing Earth's Orbits - Lesson 2.4</strong></a> from <em>Yale University</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-rome-of-constantine-and-a-new-rome-109402?ref=freecodecamp"><strong>Rome of Constantine and the Founding of Constantinople</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-habitats-at-herculaneum-and-early-roman-interior-decoration-109726?ref=freecodecamp"><strong>Habitats at Herculaneum and Early Roman Interior Decoration</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-the-prince-and-the-palace-human-made-divine-on-the-palatine-hill-109730?ref=freecodecamp"><strong>The Prince and the Palace: Domitian's Architectural Legacy on the Palatine Hill</strong></a> from <em>Yale University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/world-science-u-how-black-holes-became-real-58214?ref=freecodecamp"><strong>How Black Holes Became Real</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/on-demand-digestive-health-virtual-cme-series-202-106167?ref=freecodecamp"><strong>ON DEMAND: Digestive Health Virtual CME Series 2022: Third Thursdays Trust your Gut</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/on-demand-webinar-series-annual-clinical-intersec-106173?ref=freecodecamp"><strong>ON DEMAND WEBINAR SERIES: Annual Clinical Intersection of HIV/AIDS: A Practical Discussion of Connecticut's Course Mandates</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/on-demand-yale-epilepsy-virtual-cme-series-a-mont-106171?ref=freecodecamp"><strong>ON DEMAND: Yale Epilepsy Virtual CME Series: A Monthly Live Case-Based Webinar</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-what-happens-when-things-go-wrong-mental-illness-part-ii-109916?ref=freecodecamp"><strong>Mental Illness - Understanding Psychopathology and Clinical Diagnoses - Part 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-death-with-shelly-kagan-53041?ref=freecodecamp"><strong>Death with Shelly Kagan</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-how-do-we-communicate-language-in-the-brain-mouth-109503?ref=freecodecamp"><strong>Language in the Brain and Mouth - How We Communicate</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-finance-and-insurance-as-powerful-forces-in-our-economy-and-society-109890?ref=freecodecamp"><strong>Finance and Insurance as Powerful Forces in Our Economy and Society</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-module-10-caroline-tanbee-smith-on-pitching-communications-social-entrepreneurship-interview-475143?ref=freecodecamp"><strong>Pitching and Communications for Social Entrepreneurs - Module 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-investment-banks-109263?ref=freecodecamp"><strong>Investment Banking: Principles, Regulation, and Career Paths - Lecture 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introduction-109233?ref=freecodecamp"><strong>Philosophy and the Science of Human Nature - Introduction</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-conscious-of-the-present-conscious-of-the-past-language-109497?ref=freecodecamp"><strong>Language, Perception, Attention, and Memory in Psychology - Lecture 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-linguistics-and-literature-109813?ref=freecodecamp"><strong>Introduction to Theory of Literature - Linguistics and Literature</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-module-11-sally-abi-khalil-on-policy-and-advocacy-social-entrepreneurship-interview-475142?ref=freecodecamp"><strong>Policy and Advocacy in Social Entrepreneurship - Sally Abi Khalil Interview - Module 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-12-1-gerald-clore-on-emotion-and-cognition-109522?ref=freecodecamp"><strong>Emotion and Cognition - Experts in Emotion Series with Gerald Clore</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-course-introduction-109919?ref=freecodecamp"><strong>Introduction to Philosophy of Death - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-why-are-people-different-differences-109914?ref=freecodecamp"><strong>Why Are People Different? Understanding Personality and Intelligence - Lecture 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-flourishing-and-attachment-109232?ref=freecodecamp"><strong>Flourishing and Attachment in Human Nature - Philosophy and Science</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-evolution-emotion-and-reason-emotions-part-i-109500?ref=freecodecamp"><strong>Evolution, Emotion, and Reason - Emotions, Part I</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-conscious-of-the-present-conscious-of-the-past-109502?ref=freecodecamp"><strong>Memory Types, Limitations, and Social Implications - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-foundations-skinner-109912?ref=freecodecamp"><strong>Foundations of Behaviorism - B.F. Skinner and Learning Theories - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lesson-14a-anxiety-with-jonathan-shaywitz-305593?ref=freecodecamp"><strong>Anxiety - Lesson 14a</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-behavioral-finance-and-the-role-of-psychology-109271?ref=freecodecamp"><strong>Behavioral Finance and the Role of Psychology in Financial Markets - Lecture 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introduction-and-what-this-course-will-do-for-you-and-your-purposes-109279?ref=freecodecamp"><strong>Introduction to Financial Markets - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-arguments-for-the-existence-of-the-soul-part-iii-free-will-and-near-death-experiences-109509?ref=freecodecamp"><strong>Arguments for the Existence of the Soul - Free Will and Near-Death Experiences</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-what-is-biomedical-engineering-cont-109899?ref=freecodecamp"><strong>Introduction to Biomedical Engineering - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-14-2-kevin-ochsner-on-emotion-regulation-and-the-brain-109530?ref=freecodecamp"><strong>Emotion Regulation and the Brain - Experts in Emotion Series with Kevin Ochsner</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-cell-communication-and-immunology-cont-109902?ref=freecodecamp"><strong>Cell Communication and Immunology in Biomedical Engineering - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lesson-14b-adhd-with-jonathan-shaywitz-part-2-305589?ref=freecodecamp"><strong>ADHD with Jonathan Shaywitz - Lesson 14b</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-public-and-non-profit-finance-109265?ref=freecodecamp"><strong>Public and Non-Profit Finance - Introduction to Financial Structures and Social Purpose</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-evolution-emotion-and-reason-evolution-and-rationality-109493?ref=freecodecamp"><strong>Evolution and Rationality: An Evolutionary Perspective on Psychology</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-14-3-james-coan-on-social-regulation-of-emotion-109524?ref=freecodecamp"><strong>Social Regulation of Emotion - Dr. James Coan Interview - Lecture 14.3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introduction-109539?ref=freecodecamp"><strong>Introduction to Listening to Music - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-biomechanics-and-orthopedics-cont-109892?ref=freecodecamp"><strong>Biomechanics and Locomotion in Biomedical Engineering - Lecture 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-corporate-stocks-109273?ref=freecodecamp"><strong>Corporate Stocks - Understanding Structure, Financing, and Global Importance</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-marx-s-theory-of-history-109358?ref=freecodecamp"><strong>Marx's Theory of History - Foundations of Modern Social Thought</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-1-2-lisa-feldman-barrett-on-what-is-an-emotion-109521?ref=freecodecamp"><strong>What is an Emotion - Interview with Lisa Feldman Barrett - Lecture 1.2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-19-2-daniel-gilbert-on-happiness-109526?ref=freecodecamp"><strong>Happiness and Emotional Well-being - Insights from Dr. Daniel Gilbert - Lecture 19.2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-information-and-housekeeping-109620?ref=freecodecamp"><strong>Moral Foundations of Politics - Introduction and Course Overview</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-guest-lecture-by-andrew-redleaf-109875?ref=freecodecamp"><strong>Market Inefficiency and Risk Management in Financial Markets</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-evolution-emotion-and-reason-emotions-part-ii-109913?ref=freecodecamp"><strong>Evolution, Emotion, and Reason: Emotions - Part II</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-freud-on-sexuality-and-civilization-109357?ref=freecodecamp"><strong>Freud on Sexuality and Civilization - Foundations of Modern Social Thought</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-arguments-for-the-existence-of-the-soul-part-i-109486?ref=freecodecamp"><strong>Arguments for the Existence of the Soul - Part I</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-4-2-paul-ekman-on-universality-of-emotion-109520?ref=freecodecamp"><strong>Universality of Emotion - Experts in Emotion Series with Paul Ekman</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-05-st-augustine-s-confessions-109562?ref=freecodecamp"><strong>St. Augustine's Confessions - Early Christianity and Roman Empire</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-26-the-afterlife-of-the-new-testament-and-postmodern-interpretation-109747?ref=freecodecamp"><strong>The Rise of Christianity - From Apocalyptic Movement to World Religion</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-genetic-engineering-cont-109895?ref=freecodecamp"><strong>Genetic Engineering: DNA Technology and Gene Expression Control - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-personal-identity-part-ii-the-body-theory-and-the-personality-theory-109496?ref=freecodecamp"><strong>Personal Identity: Body Theory and Personality Theory - Part II</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-podcast-episode-8-the-progressive-era-and-the-new-deal-504298?ref=freecodecamp"><strong>America at 250 - The Progressive Era and The New Deal - Episode 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-7-harmony-chords-and-how-to-build-them-109215?ref=freecodecamp"><strong>Harmony: Chords and How to Build Them - Lecture 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introductions-why-does-the-civil-war-era-have-a-hold-on-american-historical-109441?ref=freecodecamp"><strong>Introductions - Why Does the Civil War Era Have a Hold on American History?</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-personal-finance-for-the-early-to-mid-career-professional-practical-tools-to-reduce-burnout-447577?ref=freecodecamp"><strong>Personal Finance for the Early to Mid-Career Professional - Practical Tools to Reduce Burnout</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-personal-identity-part-iv-what-matters-109508?ref=freecodecamp"><strong>Personal Identity and What Matters in Survival - Lecture 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-professional-money-managers-and-their-influence-109579?ref=freecodecamp"><strong>Professional Money Managers and Their Influence in Financial Markets</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-inferno-xxx-xxxi-xxxii-xxxiii-xxxiv-109697?ref=freecodecamp"><strong>Dante's Inferno - Final Cantos and the Triumph of Comedy over Tragedy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-coriolis-force-and-storms-109254?ref=freecodecamp"><strong>Coriolis Force and Storms - Atmospheric Dynamics and Weather Patterns</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-exchanges-brokers-dealers-clearinghouses-109264?ref=freecodecamp"><strong>Exchanges, Brokers, Dealers, and Clearinghouses in Financial Markets</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-options-markets-109480?ref=freecodecamp"><strong>Options Markets - Introduction to Pricing, Exchanges, and Applications</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-robert-frost-109542?ref=freecodecamp"><strong>Robert Frost - Modern Poetry and Poetic Techniques</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-clouds-and-precipitation-cloud-chamber-experiment-109573?ref=freecodecamp"><strong>Clouds and Precipitation - Cloud Formation and Precipitation Mechanisms</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-property-rights-and-public-lands-management-109672?ref=freecodecamp"><strong>Property Rights and Public Lands Management in Environmental Politics and Law - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-athenian-democracy-cont-109868?ref=freecodecamp"><strong>Athenian Democracy - Judicial System, Women's Roles, and Slavery</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-in-defense-of-politics-109954?ref=freecodecamp"><strong>In Defense of Politics - Introduction to Political Philosophy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-yale-radiology-meet-the-sections-neuroradiology-part-1-180541?ref=freecodecamp"><strong>Yale Radiology - Meet the Sections: Neuroradiology - Part 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lesson-3-2-who-is-affected-by-dyslexia-part-2-305596?ref=freecodecamp"><strong>Lesson 3.2: Who is Affected by Dyslexia? Part 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-class-20-a-new-deal-for-america-504299?ref=freecodecamp"><strong>A New Deal for America - Class 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-global-climate-and-the-coriolis-force-109259?ref=freecodecamp"><strong>Global Climate and the Coriolis Force - Lecture 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-options-markets-109267?ref=freecodecamp"><strong>Options Markets - Pricing, Purposes, and Applications</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-38-review-synthesis-of-cortisone-109281?ref=freecodecamp"><strong>Review: Synthesis of Cortisone - Organic Chemistry II</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-marx-s-theory-of-alienation-109361?ref=freecodecamp"><strong>Marx's Theory of Alienation - Foundations of Modern Social Thought</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-plato-part-iv-arguments-for-the-immortality-of-the-soul-cont-109489?ref=freecodecamp"><strong>Plato's Arguments for the Immortality of the Soul - Part 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-the-nature-of-death-cont-believing-you-will-die-109512?ref=freecodecamp"><strong>The Nature of Death and Believing in One's Mortality - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-general-review-109693?ref=freecodecamp"><strong>Dante in Translation - General Review and Q&amp;A - Lecture 24</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-learning-from-what-you-have-182536?ref=freecodecamp"><strong>Learning from What You Have</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-ocean-currents-and-productivity-109249?ref=freecodecamp"><strong>Ocean Currents and Productivity - The Atmosphere, the Ocean and Environmental Change</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-from-ape-to-human-109383?ref=freecodecamp"><strong>From Ape to Human - Evolution of Violence and Fertility</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-russian-formalism-109418?ref=freecodecamp"><strong>Russian Formalism - Introduction to Theory of Literature</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-experts-in-emotion-4-1-leda-cosmides-john-tooby-on-evolution-and-emotion-109523?ref=freecodecamp"><strong>Evolution and Emotion - Experts in Emotion Series with Leda Cosmides and John Tooby</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-robert-frost-cont-109543?ref=freecodecamp"><strong>Robert Frost's Poetry: Meter, Rural Themes, and Imagination - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-marx-s-theory-of-capitalism-109617?ref=freecodecamp"><strong>Marx's Theory of Capitalism - Foundations and Labor Theory of Value</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-paradise-iv-vi-x-109743?ref=freecodecamp"><strong>Dante's Paradise - Cantos IV, VI, and X Analysis</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-from-stories-to-canon-109746?ref=freecodecamp"><strong>From Stories to Canon - The Formation of the New Testament</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-the-frankfurt-school-of-critical-theory-109810?ref=freecodecamp"><strong>The Frankfurt School of Critical Theory - Introduction to Theory of Literature</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-philosophers-and-kings-plato-s-republic-i-ii-109959?ref=freecodecamp"><strong>Philosophers and Kings - Plato's Republic, Books I-II</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-frontal-cyclones-109253?ref=freecodecamp"><strong>Mid-latitude Frontal Cyclones - Formation, Development, and Forecasting</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-the-political-and-judicial-elements-of-american-capitalism-109313?ref=freecodecamp"><strong>The Political and Judicial Elements of American Capitalism</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-chemically-dependent-agriculture-109336?ref=freecodecamp"><strong>Chemically Dependent Agriculture - Environmental Politics and Law</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-marx-s-theory-of-historical-materialism-1-109360?ref=freecodecamp"><strong>Marx's Theory of Historical Materialism - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-how-do-you-know-109389?ref=freecodecamp"><strong>Introduction to Freshman Organic Chemistry - How Do You Know?</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-introduction-to-plato-s-phaedo-arguments-for-the-existence-of-the-soul-part-ii-109488?ref=freecodecamp"><strong>Introduction to Plato's Phaedo - Arguments for the Existence of the Soul, Part II</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-biology-and-history-of-abortion-109707?ref=freecodecamp"><strong>Biology and History of Abortion - Global Problems of Population Growth</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-when-humans-were-scarce-109710?ref=freecodecamp"><strong>When Humans Were Scarce - Population Growth in Hunter-Gatherer and Early Agricultural Societies</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-paradise-i-ii-109739?ref=freecodecamp"><strong>Introduction to Dante's Paradise - Cantos I and II</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-socratic-citizenship-plato-s-crito-109960?ref=freecodecamp"><strong>Socratic Citizenship: Plato's Crito - Lecture 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-yale-radiology-meet-the-sections-neuroradiology-part-2-180542?ref=freecodecamp"><strong>Yale Radiology - Meet the Sections: Neuroradiology - Part 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-18-piano-music-of-mozart-and-beethoven-109209?ref=freecodecamp"><strong>Piano Music of Mozart and Beethoven - Evolution of the Instrument - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-4-rhythm-jazz-pop-and-classical-109216?ref=freecodecamp"><strong>Rhythm in Jazz, Pop, and Classical Music - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-william-butler-yeats-cont-109229?ref=freecodecamp"><strong>William Butler Yeats: Nationalism, Violence, and Vision in Poetry - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-misbehavior-crises-regulation-and-self-regulation-109272?ref=freecodecamp"><strong>Misbehavior, Crises, Regulation and Self-Regulation in Financial Markets - Lecture 12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-metals-and-catalysis-in-alkene-oxidation-hydrogenation-metathesis-and-polymerization-109284?ref=freecodecamp"><strong>Metals and Catalysis in Alkene Reactions - Oxidation, Hydrogenation, Metathesis, and Polymerization</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-why-finance-109312?ref=freecodecamp"><strong>Introduction to Financial Theory - Why Study Finance?</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-karl-marx-joseph-schumpeter-and-an-economic-system-incapable-of-coming-to-rest-109316?ref=freecodecamp"><strong>Marx and Schumpeter on Capitalism's Dynamic Nature - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-renewable-energy-policies-109333?ref=freecodecamp"><strong>Renewable Energy Policies and Challenges - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-marx-s-theory-of-historical-materialism-cont-109359?ref=freecodecamp"><strong>Marx's Theory of Historical Materialism - Lecture 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-smith-the-invisible-hand-109362?ref=freecodecamp"><strong>John Stuart Mill's Utilitarianism and Social Thought - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-fear-of-death-109513?ref=freecodecamp"><strong>Fear of Death - Emotional Responses and Philosophical Perspectives</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-certification-design-and-green-architecture-109669?ref=freecodecamp"><strong>Critiquing LEED Certification: Design and Green Architecture - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-land-use-and-conservation-law-the-adirondack-history-109673?ref=freecodecamp"><strong>Land Use and Conservation Law - The Adirondack History</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-purgatory-x-xi-xii-xvi-xvii-109696?ref=freecodecamp"><strong>Dante's Divine Comedy: Purgatory Cantos X-XII and XVI-XVII - Lecture 12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-inferno-i-ii-iii-iv-109731?ref=freecodecamp"><strong>Dante's Divine Comedy: Inferno Cantos I-IV - Analysis and Interpretation</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-inferno-xxvi-xxvii-xxviii-109732?ref=freecodecamp"><strong>Dante's Inferno: Cantos XXVI-XXVIII - Rhetoric, Politics, and Divine Justice</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-queer-theory-and-gender-performativity-109799?ref=freecodecamp"><strong>Queer Theory and Gender Performativity - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-introduction-to-black-holes-109927?ref=freecodecamp"><strong>Introduction to Black Holes - Frontiers in Astrophysics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-the-mixed-regime-and-the-rule-of-law-aristotle-s-politics-iv-109931?ref=freecodecamp"><strong>The Mixed Regime and the Rule of Law: Aristotle's Politics IV - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-socratic-citizenship-plato-s-apology-109961?ref=freecodecamp"><strong>Socratic Citizenship: Plato's Apology - Introduction to Political Philosophy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-future-of-radiology-key-drivers-for-the-next-5-years-180527?ref=freecodecamp"><strong>The Future of Radiology - Key Drivers for the Next 5 Years</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lesson-7a-should-my-child-be-evaluated-for-dyslexia-305595?ref=freecodecamp"><strong>Dyslexia Evaluation for Children - Lesson 7a</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-20-responses-to-suffering-and-evil-lamentations-and-wisdom-literature-109227?ref=freecodecamp"><strong>Responses to Suffering and Evil - Lamentations and Wisdom Literature - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-convective-storms-109255?ref=freecodecamp"><strong>Convective Storms: Types, Formation, and Characteristics - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-water-in-the-atmosphere-ii-109257?ref=freecodecamp"><strong>Water in the Atmosphere - Cloud Formation and Types - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-risk-return-and-social-security-109304?ref=freecodecamp"><strong>Risk, Return, and Social Security - Applying CAPM to Fund Management and Social Security Reform</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-education-and-literacy-109344?ref=freecodecamp"><strong>Education and Literacy in Early Modern England - Lecture 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-paradise-xxiv-xxv-xxvi-109406?ref=freecodecamp"><strong>Paradise XXIV-XXVI: Dante's Examination on Theological Virtues</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introduction-five-first-lessons-109462?ref=freecodecamp"><strong>Introduction to Game Theory - Strategies, Payoffs, and Strategic Thinking</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-the-badness-of-death-part-iii-immortality-part-i-109504?ref=freecodecamp"><strong>The Badness of Death and Immortality - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-plato-part-iii-arguments-for-the-immortality-of-the-soul-cont-109510?ref=freecodecamp"><strong>Plato's Arguments for the Immortality of the Soul - Part 3 - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-personal-identity-part-i-identity-across-space-and-time-and-the-soul-theory-109511?ref=freecodecamp"><strong>Personal Identity Across Space and Time - The Soul Theory - Lecture 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-plato-part-ii-arguments-for-the-immortality-of-the-soul-109517?ref=freecodecamp"><strong>Plato's Arguments for the Immortality of the Soul - Part II</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-william-butler-yeats-109544?ref=freecodecamp"><strong>William Butler Yeats - Early Poetry and Irish Identity</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-world-war-i-poetry-in-england-109546?ref=freecodecamp"><strong>World War I Poetry in England - Modern Poetry</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-33-energy-resources-renewable-energy-109565?ref=freecodecamp"><strong>Energy Resources and Renewable Energy - Lecture 33</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-29-global-warming-continued-109569?ref=freecodecamp"><strong>Global Warming: Emissions Scenarios and Climate Impacts - Lecture 29</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-06-greenhouse-effect-habitability-109576?ref=freecodecamp"><strong>Greenhouse Effect and Earth's Energy Balance - Lecture 6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-guest-lecture-by-paolo-zanonni-part-i-109633?ref=freecodecamp"><strong>Goldman Sachs: Transition from Partnership to Hybrid Corporation - Part 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-philosophers-and-kings-plato-s-republic-v-109958?ref=freecodecamp"><strong>Philosophers and Kings - Plato's Republic, Book V</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-a-history-class-21-a-new-deal-for-the-world-505322?ref=freecodecamp"><strong>America at 250 - A History - A New Deal for the World - Class 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-15-gregorian-chant-and-music-in-the-sistine-chapel-109208?ref=freecodecamp"><strong>Gregorian Chant and Music in the Sistine Chapel - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-8-bass-patterns-blues-and-rock-109212?ref=freecodecamp"><strong>Bass Patterns in Blues and Rock - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-2-introduction-to-instruments-and-musical-genres-109217?ref=freecodecamp"><strong>Introduction to Instruments and Musical Genres - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-ocean-bathymetry-and-water-properties-109251?ref=freecodecamp"><strong>Ocean Bathymetry and Water Properties - The Atmosphere, the Ocean and Environmental Change</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-forward-and-futures-markets-109268?ref=freecodecamp"><strong>Forward and Futures Markets in Financial Markets - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-efficient-markets-109275?ref=freecodecamp"><strong>Efficient Markets Hypothesis and Its Limitations - Financial Markets Lecture 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introduction-109297?ref=freecodecamp"><strong>Hemingway, Fitzgerald, Faulkner - American Modernism and World War I - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-and-the-war-came-1861-the-sumter-crisis-comparative-strategies-109436?ref=freecodecamp"><strong>The Sumter Crisis and the Outbreak of the Civil War - 1861</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-the-peloponnesian-war-part-i-109477?ref=freecodecamp"><strong>The Peloponnesian War - Origins and Lead-up to Conflict - Lecture 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-dying-alone-the-badness-of-death-part-i-109491?ref=freecodecamp"><strong>The Badness of Death - Dying Alone and Value Theory - Lecture 16</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-w-h-auden-cont-109553?ref=freecodecamp"><strong>W.H. Auden's Poetry: Art, Suffering, and Society - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-elizabeth-bishop-cont-109554?ref=freecodecamp"><strong>Modern Poetry - Elizabeth Bishop and Modernist Perspectives - Lecture 25</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-07-hydrostatic-balance-109575?ref=freecodecamp"><strong>Hydrostatic Balance in Atmosphere and Ocean - Lecture 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-malaria-i-the-case-of-italy-109661?ref=freecodecamp"><strong>Malaria - The Case of Italy and Its Global Impact</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-the-mother-of-all-forums-civic-architecture-in-rome-under-trajan-109728?ref=freecodecamp"><strong>Civic Architecture in Rome under Trajan - The Mother of All Forums</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-the-fossil-record-and-life-s-history-109791?ref=freecodecamp"><strong>The Fossil Record and Life's History - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-how-ai-is-turning-your-smartphone-into-the-swiss-army-knife-of-clinical-diagnostics-184802?ref=freecodecamp"><strong>How AI Is Turning Your Smartphone Into the Swiss Army Knife of Clinical Diagnostics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-adolescents-behavior-change-tools-that-actually-work-on-teens-with-dr-alan-kazdin-474269?ref=freecodecamp"><strong>Adolescents - Behavior Change Tools That Actually Work on Teens - 16</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-11-form-rondo-sonata-allegro-and-theme-and-variations-cont-109210?ref=freecodecamp"><strong>Form in Classical Music - Rondo, Sonata-Allegro, and Theme and Variations - Lecture 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-9-the-priestly-legacy-cult-and-sacrifice-purity-and-holiness-in-leviticus-and-numbers-109220?ref=freecodecamp"><strong>The Priestly Legacy: Cult and Sacrifice, Purity and Holiness in Leviticus and Numbers - Lecture 9</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-ocean-water-density-and-atmospheric-forcing-109250?ref=freecodecamp"><strong>Ocean Water Density and Atmospheric Forcing - The Atmosphere, the Ocean and Environmental Change</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-faulkner-as-i-lay-dying-109293?ref=freecodecamp"><strong>As I Lay Dying - Genre Analysis and American Literary Tradition - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-suicide-part-i-the-rationality-of-suicide-109515?ref=freecodecamp"><strong>The Rationality of Suicide - Part 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-william-butler-yeats-cont-109545?ref=freecodecamp"><strong>William Butler Yeats's Late Poetry - Analysis and Interpretation - Lecture 6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-langston-hughes-109548?ref=freecodecamp"><strong>Langston Hughes and African-American Experience in Modern Poetry - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-finding-your-purpose-in-a-world-of-financial-capitalism-109578?ref=freecodecamp"><strong>Finding Your Purpose in a World of Financial Capitalism - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-guest-speaker-laura-cha-109580?ref=freecodecamp"><strong>Financial Markets: Regulation and Opportunities in China and Emerging Markets</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-reflection-and-lessons-109668?ref=freecodecamp"><strong>Environmental Politics and Law: Reflection and Lessons - Lecture 24</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-managing-coastal-resources-in-an-era-of-climate-change-109670?ref=freecodecamp"><strong>Managing Coastal Resources in an Era of Climate Change - Environmental Politics and Law</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-don-quixote-part-i-chapters-xxi-xxvi-109691?ref=freecodecamp"><strong>Don Quixote - Literature, Reality, and Narrative Techniques in Chapters XXI-XXVI</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-paradise-xv-xvi-xvii-109740?ref=freecodecamp"><strong>Dante's Divine Comedy: Paradise Cantos XV-XVII - Cacciaguida and Exile - Lecture 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-the-evolution-and-perfection-of-monetary-policy-109885?ref=freecodecamp"><strong>The Evolution and Perfection of Monetary Policy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-renal-physiology-cont-109907?ref=freecodecamp"><strong>Renal Physiology: Nephron Function and Homeostasis - Lecture 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-biomedical-informatics-strategies-to-enhance-individualized-predictive-models-182520?ref=freecodecamp"><strong>Biomedical Informatics Strategies to Enhance Individualized Predictive Models</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mr-guided-focused-ultrasound-next-frontier-in-minimally-invasive-neurosurgery-284115?ref=freecodecamp"><strong>MR Guided Focused Ultrasound - Next Frontier in Minimally Invasive Neurosurgery</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-16-348773?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 16</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-02-348793?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-01-348794?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-20-the-colossal-symphony-beethoven-berlioz-mahler-and-shostakovich-109205?ref=freecodecamp"><strong>The Evolution of the Symphony and Orchestra - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introduction-109369?ref=freecodecamp"><strong>Foundations of Modern Social Thought - Introduction to Key Thinkers</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-slavery-and-state-rights-economies-and-ways-of-life-what-caused-the-civil-war-109443?ref=freecodecamp"><strong>Slavery and State Rights - What Caused the Civil War?</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introduction-milton-power-and-the-power-of-milton-109446?ref=freecodecamp"><strong>Introduction to John Milton: Man, Poet, and Legend - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-the-struggle-for-hegemony-in-fourth-century-greece-109461?ref=freecodecamp"><strong>The Struggle for Hegemony in Fourth-Century Greece - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-william-carlos-williams-109549?ref=freecodecamp"><strong>William Carlos Williams - Modernist Poetry and Visual Representation</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-hemingway-to-have-and-have-not-109609?ref=freecodecamp"><strong>Hemingway's To Have and Have Not - Analysis of Social and Economic Themes</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-29-island-biogeography-and-invasive-species-109789?ref=freecodecamp"><strong>Island Biogeography and Invasive Species - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-banking-successes-and-failures-109883?ref=freecodecamp"><strong>Banking: Successes and Failures - From Goldsmiths to Modern Regulation</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-cell-communication-and-immunology-109904?ref=freecodecamp"><strong>Cell Communication and Immunology - Frontiers of Biomedical Engineering</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-big-data-approaches-to-advance-colorectal-cancer-prevention-treatment-and-biology-180523?ref=freecodecamp"><strong>Big Data Approaches to Advance Colorectal Cancer Prevention, Treatment, and Biology</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-future-of-radiology-thriving-at-the-epicenter-of-health-care-285238?ref=freecodecamp"><strong>The Future of Radiology - Thriving at the Epicenter of Health Care</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-09-348797?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 9</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-understanding-punishment-and-its-limited-effect-on-behavior-with-dr-alan-kazdin-474282?ref=freecodecamp"><strong>Understanding Punishment and Its Limited Effect on Behavior - 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-09-water-in-the-atmosphere-i-109256?ref=freecodecamp"><strong>Water in the Atmosphere - Lapse Rates and Atmospheric Stability - Lecture 9</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-02-retaining-an-atmosphere-109261?ref=freecodecamp"><strong>Retaining an Atmosphere - Planetary Conditions and Atmospheric Dynamics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-fitzgerald-tender-is-the-night-109288?ref=freecodecamp"><strong>F. Scott Fitzgerald's Tender Is the Night: Cinematic Techniques and Narrative Structure</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-faulkner-as-i-lay-dying-109291?ref=freecodecamp"><strong>As I Lay Dying by William Faulkner - Analysis of Narrative Techniques and Social Context</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-maxwell-s-equations-and-electromagnetic-waves-ii-109318?ref=freecodecamp"><strong>Maxwell's Equations and Electromagnetic Waves - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-plague-ii-responses-and-measures-109332?ref=freecodecamp"><strong>Plague Responses and Public Health Measures in Western Society - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-past-and-future-of-nuclear-power-109334?ref=freecodecamp"><strong>Past and Future of Nuclear Power - Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-rousseau-popular-sovereignty-and-general-will-109365?ref=freecodecamp"><strong>Rousseau - Popular Sovereignty and General Will - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-population-and-the-environment-109382?ref=freecodecamp"><strong>Population and the Environment - Global Problems of Population Growth</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-god-and-mammon-the-wealth-of-literary-memory-109425?ref=freecodecamp"><strong>Paradise Lost - Hell and Its Inhabitants in Books I and II - Lecture 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-paradise-lost-book-i-109448?ref=freecodecamp"><strong>Paradise Lost, Book I - Analysis and Context</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-putting-yourselves-into-other-people-s-shoes-109453?ref=freecodecamp"><strong>Game Theory: Understanding Others' Perspectives and Strategic Decision-Making - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-the-struggle-for-hegemony-in-fourth-century-greece-cont-109471?ref=freecodecamp"><strong>The Struggle for Hegemony in Fourth-Century Greece - Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-stock-index-oil-and-other-futures-markets-109484?ref=freecodecamp"><strong>Stock Index, Oil and Other Futures Markets - Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-immortality-part-ii-the-value-of-life-part-i-109490?ref=freecodecamp"><strong>The Value of Life and Immortality - Part 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-how-to-live-given-the-certainty-of-death-109506?ref=freecodecamp"><strong>How to Live Given the Certainty of Death - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-28-global-warming-continued-109570?ref=freecodecamp"><strong>Global Warming and Climate Change in the Holocene - Lecture 28</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-modeling-mortgage-prepayments-and-valuing-mortgages-109624?ref=freecodecamp"><strong>Modeling Mortgage Prepayments and Valuing Mortgages</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-don-quixote-part-i-chapters-xxvii-xxxv-109690?ref=freecodecamp"><strong>Don Quixote, Part I: Chapters XXVII-XXXV - Narrative Mastery and Character Development</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-purgatory-v-vi-ix-x-109741?ref=freecodecamp"><strong>Dante's Divine Comedy - Purgatory Cantos V, VI, IX, and X Analysis</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-middle-classes-109761?ref=freecodecamp"><strong>The Rise of the European Middle Classes in the 19th Century - Lecture 9</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-major-events-in-the-geological-theatre-109796?ref=freecodecamp"><strong>Major Events in the Geological Theatre - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-introduction-cont-109802?ref=freecodecamp"><strong>Introduction to Theory of Literature - Lecture 2: Skepticism and Determinism</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-resistance-109838?ref=freecodecamp"><strong>French Resistance Movements During World War II - Lecture 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-paradise-lost-books-xi-xii-cont-109851?ref=freecodecamp"><strong>Paradise Lost: Books XI-XII - Justification, Providence, and Free Will</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-toni-morrison-the-bluest-eye-109858?ref=freecodecamp"><strong>Toni Morrison's The Bluest Eye - Analysis of Language, Narrative, and Social Critique</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-sparta-109865?ref=freecodecamp"><strong>The Rise and Significance of Tyrannies in Ancient Greek Polis - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-kepler-s-laws-109944?ref=freecodecamp"><strong>Kepler's Laws and Planetary Motion - Fundamentals of Physics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-nuts-and-bolts-of-ceus-180532?ref=freecodecamp"><strong>Nuts and Bolts of Contrast-Enhanced Ultrasound (CEUS)</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-image-quality-evaluation-of-deep-learning-image-reconstruction-and-denoising-in-clinical-ct-182519?ref=freecodecamp"><strong>Image Quality Evaluation of Deep Learning Image Reconstruction and Denoising in Clinical CT</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-rethinking-the-radiology-report-interactive-multimedia-reporting-284112?ref=freecodecamp"><strong>Rethinking the Radiology Report - Interactive Multimedia Reporting</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lesson-7c-how-to-screen-for-dyslexia-with-gavin-newsom-305591?ref=freecodecamp"><strong>How to Screen for Dyslexia - Lesson 7c</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lesson-4-2-understanding-the-why-part-2-305594?ref=freecodecamp"><strong>Understanding The Why Part 2 - Lesson 4.2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-12-the-deuteronomistic-history-life-in-the-land-joshua-and-judges-109221?ref=freecodecamp"><strong>The Deuteronomistic History: Life in the Land - Joshua and Judges - Lecture 12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-17-literary-prophecy-hosea-and-isaiah-109225?ref=freecodecamp"><strong>Literary Prophecy: Hosea and Isaiah - Lecture 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-el-nino-109248?ref=freecodecamp"><strong>El Niño and La Niña - Understanding the ENSO Phenomenon</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-functional-groups-and-fingerprints-in-ir-spectroscopy-precession-of-magnetic-nuclei-109283?ref=freecodecamp"><strong>Functional Groups and Fingerprints in IR Spectroscopy - Precession of Magnetic Nuclei</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-faulkner-light-in-august-continued-109286?ref=freecodecamp"><strong>Light in August by William Faulkner - Analysis of Characters and Themes - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-fitzgerald-s-the-great-gatsby-109295?ref=freecodecamp"><strong>The Great Gatsby - Experimental Counter-Realism and Animated Objects</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-the-leverage-cycle-and-the-subprime-mortgage-crisis-109303?ref=freecodecamp"><strong>The Leverage Cycle and the Subprime Mortgage Crisis - Financial Theory</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-smallpox-ii-jenner-vaccination-and-eradication-109330?ref=freecodecamp"><strong>Smallpox - From Endemic Disease to Eradication - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-weber-s-theory-of-class-109352?ref=freecodecamp"><strong>Weber's Theory of Class - Foundations of Modern Social Thought</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-weber-on-protestantism-and-capitalism-109356?ref=freecodecamp"><strong>Weber on Protestantism and Capitalism - Foundations of Modern Social Thought</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-don-quixote-part-i-chapters-xxxvi-lii-109372?ref=freecodecamp"><strong>Don Quixote Part I - Chapters XXXVI-LII Analysis - Lecture 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introduction-109376?ref=freecodecamp"><strong>Introduction to Cervantes' Don Quixote - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-sex-and-violence-among-the-apes-109379?ref=freecodecamp"><strong>Sex and Violence Among the Apes - Global Problems of Population Growth</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-terrible-swift-sword-the-period-of-confederate-ascendency-1861-1862-109439?ref=freecodecamp"><strong>Terrible Swift Sword: The Period of Confederate Ascendency, 1861-1862 - Civil War and Reconstruction</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-lincoln-leadership-and-race-emancipation-as-policy-109445?ref=freecodecamp"><strong>Lincoln, Leadership, and Race - Emancipation as Policy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-paradise-lost-books-ix-x-109447?ref=freecodecamp"><strong>Paradise Lost: The Fall and Its Consequences - Books IX-X</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-the-badness-of-death-part-ii-the-deprivation-account-109505?ref=freecodecamp"><strong>The Badness of Death - The Deprivation Account - Part II</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-22-public-policy-and-presidential-politics-109534?ref=freecodecamp"><strong>Public Policy and Presidential Politics from Emancipation to the Present - Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-marianne-moore-cont-109550?ref=freecodecamp"><strong>Marianne Moore's Poetry: Quotation, Restraint, and Modernist Relationships - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-ice-in-the-climate-system-109571?ref=freecodecamp"><strong>Ice in the Climate System - Types and Formation</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-hemingway-to-have-and-have-not-109610?ref=freecodecamp"><strong>Hemingway's To Have and Have Not - Analysis of Types and Narrative Perspectives</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-hemingway-s-in-our-time-part-ii-109615?ref=freecodecamp"><strong>Hemingway's In Our Time: Analysis of Expressivity and Emotional Resilience - Part 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-26-the-leverage-cycle-and-crashes-109621?ref=freecodecamp"><strong>The Leverage Cycle and Crashes - Financial Theory Lecture 26</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-refashioning-the-state-1688-1714-109677?ref=freecodecamp"><strong>Refashioning the State in England, 1688-1714 - Lecture 24</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-paradise-xi-xii-109694?ref=freecodecamp"><strong>Paradise XI and XII - Franciscan and Dominican Saints in Dante's Divine Comedy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-interpreting-scripture-medieval-interpretations-109748?ref=freecodecamp"><strong>Interpreting Scripture - Medieval Interpretations and Historical Critical Method</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-the-impact-of-evolutionary-thought-on-the-social-sciences-109785?ref=freecodecamp"><strong>The Impact of Evolutionary Thought on the Social Sciences - Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-the-social-permeability-of-reader-and-text-109809?ref=freecodecamp"><strong>The Social Permeability of Reader and Text - Introduction to Theory of Literature</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-cafes-and-the-culture-of-drink-109830?ref=freecodecamp"><strong>Cafés and the Culture of Drink in France Since 1871</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-the-rise-of-athens-cont-109869?ref=freecodecamp"><strong>The Rise of Athens - From Draco to Peisistratus - Lecture 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-other-constraints-the-cosmic-microwave-background-109921?ref=freecodecamp"><strong>The Cosmic Microwave Background and Dark Energy - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-tests-of-relativity-109924?ref=freecodecamp"><strong>Tests of Relativity - Frontiers in Astrophysics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-philosophers-and-kings-plato-s-republic-iii-iv-109932?ref=freecodecamp"><strong>Philosophers and Kings - Plato's Republic, Books III-IV - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-the-mixed-regime-and-the-rule-of-law-aristotle-s-politics-vii-109957?ref=freecodecamp"><strong>The Mixed Regime and the Rule of Law - Aristotle's Politics VII - Lecture 9</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-40-years-of-yale-radiology-orthopedics-180522?ref=freecodecamp"><strong>40 Years of Yale Radiology and Orthopedics - A Historical Overview</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-functional-ct-imaging-of-coronary-heart-disease-180533?ref=freecodecamp"><strong>Functional CT Imaging of Coronary Heart Disease</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lymphatic-imaging-and-interventions-current-status-and-future-180536?ref=freecodecamp"><strong>Lymphatic Imaging and Interventions- Current Status and Future</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-23-348776?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-18-348779?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-lecture-class-6-republican-precedents-and-presidents-the-placement-of-power-487359?ref=freecodecamp"><strong>Republican Precedents and Presidents - The Placement of Power - Class 6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-23-public-policy-and-presidential-politics-continued-109195?ref=freecodecamp"><strong>Public Policy and Presidential Politics: Race and Media in Late 1980s-1990s America - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-2-dawn-of-freedom-continued-109204?ref=freecodecamp"><strong>American History: From Emancipation to the Present - Lecture 2 - Dawn of Freedom</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-18-literary-prophecy-micah-zephaniah-nahum-and-habbakuk-109226?ref=freecodecamp"><strong>Literary Prophecy: Micah, Zephaniah, Nahum, Habakkuk, and Jeremiah - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-22-the-restoration-1-and-2-chronicles-ezra-and-nehemiah-109228?ref=freecodecamp"><strong>The Restoration: Chronicles, Ezra and Nehemiah - Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-theory-of-debt-its-proper-role-leverage-cycles-109274?ref=freecodecamp"><strong>Theory of Debt, Its Proper Role, and Leverage Cycles - Financial Markets Lecture</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-fitzgerald-tender-is-the-night-continued-109287?ref=freecodecamp"><strong>Fitzgerald's Tender is the Night - Film Techniques and Character Analysis - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-hemingway-for-whom-the-bell-tolls-continued-109289?ref=freecodecamp"><strong>Hemingway's For Whom the Bell Tolls - Dispossession and Redemption - Lecture 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-faulkner-s-the-sound-and-the-fury-part-ii-109296?ref=freecodecamp"><strong>Faulkner's The Sound and the Fury - Quentin's Narrative and Themes - Lecture 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-distributive-justice-and-the-welfare-state-109299?ref=freecodecamp"><strong>Distributive Justice and the Welfare State - Moral Foundations of Politics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-the-burkean-outlook-109300?ref=freecodecamp"><strong>The Burkean Outlook - Edmund Burke's Anti-Enlightenment Philosophy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-institutions-and-incentives-in-mortgages-and-mortgage-backed-securities-109314?ref=freecodecamp"><strong>Institutions and Incentives in Mortgages and Mortgage-Backed Securities</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-deconstruction-i-109417?ref=freecodecamp"><strong>Introduction to Deconstruction - Derrida's Critique of Structuralism</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-influence-109421?ref=freecodecamp"><strong>Influence in Literary Theory - Tradition and Individualism</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-the-classical-feminist-tradition-109423?ref=freecodecamp"><strong>The Classical Feminist Tradition in Literature - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-wartime-reconstruction-imagining-the-aftermath-and-a-second-american-republic-109428?ref=freecodecamp"><strong>Wartime Reconstruction - Imagining the Aftermath and a Second American Republic</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-the-election-of-1860-and-the-secession-crisis-109433?ref=freecodecamp"><strong>The Election of 1860 and the Secession Crisis - Civil War and Reconstruction</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-mixed-strategies-in-baseball-dating-and-paying-your-taxes-109457?ref=freecodecamp"><strong>Mixed Strategies in Game Theory - Applications in Sports, Dating, and Taxation</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-debt-markets-term-structure-109481?ref=freecodecamp"><strong>Debt Markets: Term Structure and Interest Rate Theories</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-portfolio-diversification-and-supporting-financial-institutions-capm-model-109485?ref=freecodecamp"><strong>Portfolio Diversification and Supporting Financial Institutions - CAPM Model</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-the-value-of-life-part-ii-other-bad-aspects-of-death-part-i-109487?ref=freecodecamp"><strong>The Value of Life and Bad Aspects of Death - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-other-bad-aspects-of-death-part-ii-109514?ref=freecodecamp"><strong>Other Bad Aspects of Death - Part II</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-19-black-power-continued-109536?ref=freecodecamp"><strong>Black Power Movement and Civil Rights in the Late 1960s - Lecture 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-solvent-leaving-group-bridgehead-substitution-and-pentavalent-carbon-109601?ref=freecodecamp"><strong>Organic Chemistry II - Nucleophiles, Leaving Groups, and SN2 Reactions - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-hemingway-for-whom-the-bell-tolls-109608?ref=freecodecamp"><strong>Hemingway's For Whom the Bell Tolls - Distant Homes and On-Site Environments - Lecture 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-present-value-prices-and-the-real-rate-of-interest-109630?ref=freecodecamp"><strong>Present Value Prices and the Real Rate of Interest - Financial Theory</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-nuclear-secrecy-and-ecology-109676?ref=freecodecamp"><strong>Nuclear Secrecy and Ecology in Environmental Politics and Law - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-malthusian-times-109700?ref=freecodecamp"><strong>Malthusian Times - Population Growth and Cultural Dynamics in Africa and Europe</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-purgatory-xxx-xxxi-xxxiii-109744?ref=freecodecamp"><strong>Dante's Divine Comedy: Purgatory Cantos XXX, XXXI, XXXIII - Earthly Paradise and Beatrice's Arrival</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-collaboration-and-resistance-in-world-war-ii-109765?ref=freecodecamp"><strong>Collaboration and Resistance in World War II Europe - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-climate-and-the-distribution-of-life-on-earth-109772?ref=freecodecamp"><strong>Climate and the Distribution of Life on Earth - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-36-selfishness-and-altruism-109776?ref=freecodecamp"><strong>Selfishness and Altruism in Evolution, Ecology, and Behavior - Lecture 36</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-phylogeny-and-systematics-109797?ref=freecodecamp"><strong>Phylogeny and Systematics - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-ways-in-and-out-of-the-hermeneutic-circle-109812?ref=freecodecamp"><strong>Ways In and Out of the Hermeneutic Circle - Introduction to Theory of Literature</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-paris-and-the-belle-epoque-109820?ref=freecodecamp"><strong>Paris and the Belle Époque - Rebuilding and Class Division in Modern Paris</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-french-imperialism-guest-lecture-by-charles-keith-109827?ref=freecodecamp"><strong>French Imperialism: From Expansion to Decline - Lecture 12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-j-d-salinger-franny-and-zooey-109863?ref=freecodecamp"><strong>J.D. Salinger's Franny and Zooey - Religious Themes and Literary Analysis - Lecture 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-brokerage-ecns-etc-109887?ref=freecodecamp"><strong>Brokerage, ECNs, and Stock Exchanges - Lecture 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-hubble-s-law-and-the-big-bang-109922?ref=freecodecamp"><strong>Hubble's Law, the Big Bang, and Measuring Cosmic Distances</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-new-modes-and-orders-machiavelli-s-the-prince-chaps-13-26-109952?ref=freecodecamp"><strong>New Modes and Orders - Machiavelli's The Prince (Chapters 13-26)</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-yale-radiology-global-outreach-interventional-radiology-in-tanzania-180550?ref=freecodecamp"><strong>Yale Radiology Global Outreach - Interventional Radiology in Tanzania</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-20-348792?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-07-348799?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-debunking-common-misconceptions-about-effective-parenting-strategies-with-dr-alan-kazdin-474268?ref=freecodecamp"><strong>Debunking Common Misconceptions about Effective Parenting Strategies - 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-adolescents-negotiation-compromise-and-problem-solving-with-teens-with-dr-alan-kazdin-474277?ref=freecodecamp"><strong>Adolescents - Negotiation, Compromise, and Problem-Solving with Teens - 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-11-depression-and-double-v-109199?ref=freecodecamp"><strong>Depression and the New Deal: African American Experiences in the 1930s - Lecture 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-3-reconstruction-109202?ref=freecodecamp"><strong>Reconstruction in American History - Lecture 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-10-sonata-allegro-and-theme-and-variations-109213?ref=freecodecamp"><strong>Sonata-Allegro Form and Theme and Variations - Lecture 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-the-early-middle-ages-284-1000-crisis-of-the-carolingians-109235?ref=freecodecamp"><strong>Crisis of the Carolingians - The Early Middle Ages, 284-1000</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-ice-and-climate-change-109247?ref=freecodecamp"><strong>Ice and Climate Change - The Atmosphere, the Ocean and Environmental Change</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-hemingway-for-whom-the-bell-tolls-109290?ref=freecodecamp"><strong>Hemingway's For Whom the Bell Tolls - Historical Context and Themes - Lecture 16</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-faulkner-as-i-lay-dying-part-ii-109292?ref=freecodecamp"><strong>Faulkner's As I Lay Dying - Epic Conventions and Character Analysis - Part 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-limits-of-the-neoclassical-synthesis-109302?ref=freecodecamp"><strong>Limits of the Neoclassical Synthesis - Moral Foundations of Politics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-dynamic-hedging-and-average-life-109305?ref=freecodecamp"><strong>Dynamic Hedging and Average Life in Financial Theory - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-efficiency-assets-and-time-109309?ref=freecodecamp"><strong>Efficiency, Assets, and Time in Financial Theory</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-ever-at-variance-and-foolishly-jealous-intercolonial-relations-109325?ref=freecodecamp"><strong>Intercolonial Relations in Pre-Revolutionary America - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-popular-protest-109345?ref=freecodecamp"><strong>Popular Protest in Early Modern England - Politics, Religion, and Society</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-don-quixote-part-i-chapters-i-x-cont-109374?ref=freecodecamp"><strong>Don Quixote - Innovative Features and Literary Techniques - Lecture 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-demographic-transition-in-developing-countries-109381?ref=freecodecamp"><strong>Demographic Transition in Developing Countries - Global Problems of Population Growth</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-human-and-environmental-impacts-109384?ref=freecodecamp"><strong>Human and Environmental Impacts of Population Growth</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-27-legacies-of-the-civil-war-109435?ref=freecodecamp"><strong>Legacies of the Civil War - Lecture 27</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-nash-equilibrium-location-segregation-and-randomization-109464?ref=freecodecamp"><strong>Nash Equilibrium - Location, Segregation and Randomization in Game Theory</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-what-matters-cont-the-nature-of-death-part-i-109507?ref=freecodecamp"><strong>The Nature of Death: What Matters in Survival and Defining Death - Part I</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-13-the-deuteronomistic-history-prophets-and-kings-1-and-2-samuel-109540?ref=freecodecamp"><strong>The Deuteronomistic History: Prophets and Kings in 1 and 2 Samuel - Lecture 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-35-review-and-overview-109563?ref=freecodecamp"><strong>The Atmosphere, the Ocean and Environmental Change - Review and Overview</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-32-the-ozone-layer-109566?ref=freecodecamp"><strong>The Ozone Layer - Stratospheric Protection and Environmental Impact</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-faulkner-s-the-sound-and-the-fury-109613?ref=freecodecamp"><strong>Faulkner's The Sound and the Fury - Experimental Subjectivity and Benjy's Narrative</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-fitzgerald-s-the-great-gatsby-part-ii-109614?ref=freecodecamp"><strong>The Great Gatsby: Auditory and Visual Fields in Character Relationships - Part 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-from-classical-to-neoclassical-utilitarianism-109618?ref=freecodecamp"><strong>From Classical to Neoclassical Utilitarianism - Moral Foundations of Politics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-risk-aversion-and-the-capital-asset-pricing-theorem-109623?ref=freecodecamp"><strong>Risk Aversion and the Capital Asset Pricing Model - Financial Theory</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-capitalist-enterprise-and-clean-water-for-a-bolivian-city-109631?ref=freecodecamp"><strong>Capitalist Enterprise and Clean Water in Bolivia - Capitalism: Success, Crisis and Reform</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-can-you-sell-a-scheme-for-operating-on-beating-hearts-and-make-a-business-of-it-109635?ref=freecodecamp"><strong>CardioThoracic Systems: A Business Case Study in Medical Innovation</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-war-and-society-109641?ref=freecodecamp"><strong>War and Society in the American Revolution</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introduction-freeman-s-top-five-tips-for-studying-the-revolution-109655?ref=freecodecamp"><strong>Freeman's Top Five Tips for Studying the American Revolution</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-england-britain-and-the-world-economic-development-1660-1720-109678?ref=freecodecamp"><strong>England, Britain, and the World - Economic Development 1660-1720</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-don-quixote-part-ii-chapters-xxii-xxxv-cont-109686?ref=freecodecamp"><strong>Don Quixote Part II: Political and Social Commentary - Chapters 22-35</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-don-quixote-introduction-to-part-ii-109689?ref=freecodecamp"><strong>Don Quixote - Introduction to Part II - Lecture 12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-economic-impact-of-population-growth-109702?ref=freecodecamp"><strong>Economic Impact of Population Growth - China and Global Perspectives</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-low-fertility-in-developed-countries-guest-lecture-by-michael-teitelbaum-109703?ref=freecodecamp"><strong>Low Fertility in Developed Countries - Global Problems of Population Growth</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-female-disadvantage-109706?ref=freecodecamp"><strong>Female Disadvantage in Global Population Growth - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-inferno-v-vi-vii-109734?ref=freecodecamp"><strong>Dante's Inferno: Cantos IV-VII - Lust, Gluttony, and Avarice</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-vita-nuova-109735?ref=freecodecamp"><strong>Dante's Vita Nuova: Love, Poetry, and the Divine Comedy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-inferno-xix-xxi-xxv-xxvi-109738?ref=freecodecamp"><strong>Dante's Inferno: Cantos XIX, XXI, XXV, and XXVI - Prophecy, Sacrilege, and Poetic Hubris</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-radicals-109763?ref=freecodecamp"><strong>Radicals: Revolutionary Socialism, Syndicalism, and Anarchism in 19th Century Europe</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-30-energy-and-matter-in-ecosystems-109769?ref=freecodecamp"><strong>Energy and Matter Flow in Ecosystems - Lecture 30</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-john-brown-s-holy-war-terrorist-or-heroic-revolutionary-109834?ref=freecodecamp"><strong>John Brown's Holy War - Terrorist or Heroic Revolutionary?</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-jack-kerouac-on-the-road-109853?ref=freecodecamp"><strong>Jack Kerouac's On the Road - Analysis of Language, Desire, and American Culture</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-introductions-109856?ref=freecodecamp"><strong>The American Novel Since 1945 - Introduction and Major Themes</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-richard-wright-black-boy-109861?ref=freecodecamp"><strong>Richard Wright's Black Boy - Analysis and Literary Context</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-the-peloponnesian-war-part-i-cont-109866?ref=freecodecamp"><strong>The Peloponnesian War - Aftermath of the Thirty Years Peace - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-work-energy-theorem-and-law-of-conservation-of-energy-109949?ref=freecodecamp"><strong>Work-Energy Theorem and Law of Conservation of Energy - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-improved-ultrasound-image-formation-domain-adaptation-with-no-data-182522?ref=freecodecamp"><strong>Improved Ultrasound Image Formation - Domain Adaptation With No Data</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-deep-learning-for-ct-reconstruction-image-denoising-and-beyond-182533?ref=freecodecamp"><strong>Deep Learning for CT Reconstruction – Image Denoising and Beyond</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-quantitative-imaging-and-ct-abdominal-applications-284705?ref=freecodecamp"><strong>Quantitative Imaging and CT - Abdominal Applications</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lesson-12a-how-do-dyslexic-people-succeed-in-life-part-1-with-diane-swonk-305599?ref=freecodecamp"><strong>How Dyslexic People Succeed in Life - Part 1 with Diane Swonk</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-12-348790?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-13-irrepressible-or-needless-slavery-or-states-rights-what-caused-the-civil-war-354984?ref=freecodecamp"><strong>Causes of the American Civil War: Slavery, States' Rights, and the Irrepressible Conflict - Class 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-busting-myths-about-addiction-interprofessional-panel-addiction-treatment-course-473822?ref=freecodecamp"><strong>Busting Myths About Addiction - Interprofessional Panel - Addiction Treatment Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-3-which-psychotherapies-are-available-addiction-treatment-course-473830?ref=freecodecamp"><strong>Which Psychotherapies Are Available for Addiction Treatment</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-following-the-five-steps-to-effective-time-out-with-dr-alan-kazdin-474270?ref=freecodecamp"><strong>Following the Five Steps to Effective Time Out</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-the-science-behind-spanking-and-why-it-doesn-t-work-with-dr-alan-kazdin-474278?ref=freecodecamp"><strong>The Science Behind Spanking and Why it Doesn't Work</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-when-to-seek-professional-help-for-extreme-child-behavior-with-dr-alan-kazdin-474279?ref=freecodecamp"><strong>When to Seek Professional Help for Extreme Child Behavior - 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1006-a-yale-mba-s-social-enterprise-pitch-act-to-change-social-entrepreneurship-course-475153?ref=freecodecamp"><strong>A Yale MBA's Social Enterprise Pitch - Act to Change - Social Entrepreneurship Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1004-master-your-message-why-you-need-a-communications-plan-social-entrepreneurship-course-475154?ref=freecodecamp"><strong>Master Your Message - Why You Need a Communications Plan</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-21-the-politics-of-gender-and-culture-continued-109196?ref=freecodecamp"><strong>The Politics of Gender and Culture in American History - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-12-guest-conductor-saybrook-orchestra-109211?ref=freecodecamp"><strong>Preparing for a Concert Review - Guest Conductor and Orchestra Insights - Lecture 12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-9-sonata-allegro-form-mozart-and-beethoven-109214?ref=freecodecamp"><strong>Sonata-Allegro Form in Mozart and Beethoven - Lecture 9</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-t-s-eliot-cont-109230?ref=freecodecamp"><strong>T.S. Eliot's The Waste Land: Psycho-Sexual Analysis and Structure - Lecture 12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-seasons-and-climate-classification-109252?ref=freecodecamp"><strong>Seasons and Climate Classification - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-guest-speaker-maurice-hank-greenberg-109269?ref=freecodecamp"><strong>Guest Lecture: Maurice Greenberg on AIG and the Financial Crisis</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-portfolio-diversification-and-supporting-financial-institutions-109277?ref=freecodecamp"><strong>Portfolio Diversification and Supporting Financial Institutions - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-risk-and-financial-crises-109280?ref=freecodecamp"><strong>Risk and Financial Crises - Probability Theory in Financial Markets</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-contemporary-communitarianism-i-109301?ref=freecodecamp"><strong>Contemporary Communitarianism - Moral Foundations of Politics - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-computing-equilibrium-109310?ref=freecodecamp"><strong>Computing Equilibrium in Financial Theory - Lecture 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-mortal-life-cycle-of-a-great-technology-109315?ref=freecodecamp"><strong>Mortal Life Cycle of a Great Technology - The Rise and Fall of Polaroid</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-the-logic-of-a-campaign-or-how-in-the-world-did-we-win-109322?ref=freecodecamp"><strong>The Logic of a Campaign in the American Revolution - Lecture 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-the-sanitary-movement-and-the-filth-theory-of-disease-109328?ref=freecodecamp"><strong>The Sanitary Movement and the 'Filth Theory of Disease' - Epidemics in Western Society Since 1600</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-asiatic-cholera-ii-five-pandemics-109329?ref=freecodecamp"><strong>Asiatic Cholera: Five Pandemics and Their Impact on 19th Century Society - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-marine-food-chains-mercury-109337?ref=freecodecamp"><strong>Marine Food-Chains - Mercury in Environmental Politics and Law</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-households-structures-priorities-strategies-roles-109350?ref=freecodecamp"><strong>Households in Early Modern England: Structures, Priorities, and Roles</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-durkheim-and-social-facts-109351?ref=freecodecamp"><strong>Durkheim and Social Facts - Foundations of Modern Social Thought</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-don-quixote-part-ii-front-matter-and-chapters-i-xi-cont-109371?ref=freecodecamp"><strong>Don Quixote Part II - Front Matter and Chapters I-XI Analysis</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-don-quixote-part-i-front-matter-and-chapters-i-x-109375?ref=freecodecamp"><strong>Don Quixote - Front Matter and Chapters I-X Analysis</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-paul-s-disciples-109407?ref=freecodecamp"><strong>Paul's Disciples - Pseudepigraphic Letters to Colossians and Ephesians</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-expansion-and-slavery-legacies-of-the-mexican-war-and-the-compromise-of-1850-109431?ref=freecodecamp"><strong>Expansion and Slavery: Legacies of the Mexican War and the Compromise of 1850</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-andrew-johnson-and-the-radicals-a-contest-over-the-meaning-of-reconstruction-109440?ref=freecodecamp"><strong>Andrew Johnson and the Radicals - A Contest over the Meaning of Reconstruction</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-cormac-mccarthy-blood-meridian-109449?ref=freecodecamp"><strong>Blood Meridian by Cormac McCarthy - Literary Influences and Historical Context - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-best-responses-in-soccer-and-business-partnerships-109468?ref=freecodecamp"><strong>Best Responses in Game Theory - Soccer Penalties and Business Partnerships</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-26-suicide-part-iii-the-morality-of-suicide-and-course-conclusion-109516?ref=freecodecamp"><strong>The Morality of Suicide and Course Conclusion - Lecture 26</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-our-solar-system-and-the-pluto-problem-109518?ref=freecodecamp"><strong>Our Solar System and the Pluto Problem - Frontiers in Astrophysics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-20-the-politics-of-gender-and-culture-109535?ref=freecodecamp"><strong>The Politics of Gender and Culture in 1970s America - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-16-from-voting-rights-to-watts-109537?ref=freecodecamp"><strong>From Voting Rights to Watts - Malcolm X and Civil Rights Movement Events - Lecture 16</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-wallace-stevens-cont-109551?ref=freecodecamp"><strong>Wallace Stevens's Late Poetry Analysis - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-w-h-auden-109552?ref=freecodecamp"><strong>W. H. Auden's Early Poetry and Political Works - Modern Poetry Lecture</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-faulkner-light-in-august-continued-109605?ref=freecodecamp"><strong>Faulkner's Light in August - Race and Language Analysis - Lecture 24</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-faulkner-light-in-august-109606?ref=freecodecamp"><strong>Faulkner's Light in August - Lena's Journey and Narrative Techniques</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-hemingway-for-whom-the-bell-tolls-continued-109607?ref=freecodecamp"><strong>Hemingway's For Whom the Bell Tolls - Themes of Dying and Not Dying - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-being-an-american-the-legacy-of-the-revolution-109636?ref=freecodecamp"><strong>Being an American: The Legacy of the Revolution - Lecture 25</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-oxygen-and-the-chemical-revolution-beginning-to-1789-109715?ref=freecodecamp"><strong>Oxygen and the Chemical Revolution - From Alchemy to Lavoisier (1789)</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-inferno-xii-xiii-xv-xvi-109736?ref=freecodecamp"><strong>Dante's Inferno: Violence, Suicide, and Sodomy - Cantos XII-XVI</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-purgatory-xxiv-xxv-xxvi-109737?ref=freecodecamp"><strong>Dante's Divine Comedy - Purgatory XXIV-XXVI: Poetics and the Italian Love Lyric</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-the-origin-and-maintenance-of-genetic-variation-109774?ref=freecodecamp"><strong>The Origin and Maintenance of Genetic Variation - Lecture 6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-27-interspecific-competition-109775?ref=freecodecamp"><strong>Interspecific Competition in Ecology and Evolution - Lecture 27</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-neutral-evolution-genetic-drift-109777?ref=freecodecamp"><strong>Neutral Evolution - Genetic Drift and Molecular Clocks</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-genomic-conflict-109779?ref=freecodecamp"><strong>Genomic Conflict in Evolution, Ecology and Behavior - Lecture 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-species-and-speciation-109783?ref=freecodecamp"><strong>Species and Speciation - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-32-economic-decisions-for-the-foraging-individual-109787?ref=freecodecamp"><strong>Economic Decisions for the Foraging Individual - Lecture 32</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-african-american-criticism-109800?ref=freecodecamp"><strong>African-American Criticism in Literary Theory - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-26-reflections-who-doesn-t-hate-theory-now-109805?ref=freecodecamp"><strong>Reflections on Literary Theory - Who Doesn't Hate Theory Now?</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-deconstruction-ii-109806?ref=freecodecamp"><strong>Deconstruction in Literary Theory - Lecture 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-the-infant-cry-of-god-109847?ref=freecodecamp"><strong>Milton's "On the Morning of Christ's Nativity" - Analysis and Context</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-students-choice-novel-jonathan-safran-foer-everything-is-illuminated-cont-109857?ref=freecodecamp"><strong>Everything is Illuminated by Jonathan Safran Foer - American Holocaust Literature - Lecture 25</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-flannery-o-connor-wise-blood-cont-109862?ref=freecodecamp"><strong>Flannery O'Connor's Wise Blood - Social Context and Literary Analysis - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-efficient-markets-vs-excess-volatility-109877?ref=freecodecamp"><strong>Efficient Markets vs. Excess Volatility - Financial Markets</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-professional-money-managers-and-their-influence-109882?ref=freecodecamp"><strong>Professional Money Managers and Their Influence in Financial Markets - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-lorentz-transformation-109939?ref=freecodecamp"><strong>Lorentz Transformation in Special Relativity - Lecture 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-newton-s-laws-of-motion-109942?ref=freecodecamp"><strong>Newton's Laws of Motion - Fundamentals of Physics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-introduction-to-relativity-109951?ref=freecodecamp"><strong>Introduction to Relativity - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-new-modes-and-orders-machiavelli-s-the-prince-chaps-1-12-109956?ref=freecodecamp"><strong>New Modes and Orders - Machiavelli's The Prince Chapters 1-12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-endovascular-therapy-for-deep-vein-thrombosis-evidence-observation-and-truth-180520?ref=freecodecamp"><strong>Endovascular Therapy for Deep Vein Thrombosis: Evidence, Observation, and Truth</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lessons-from-the-deep-biology-of-seeing-182521?ref=freecodecamp"><strong>Lessons from the Deep Biology of Seeing</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mentorship-programs-value-feasibility-obstacles-pitfalls-295468?ref=freecodecamp"><strong>Mentorship Programs - Value, Feasibility, Obstacles and Pitfalls</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-5-yale-slavery-and-the-american-revolutionary-era-312526?ref=freecodecamp"><strong>Yale, Slavery, and the American Revolutionary Era - Class 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-frontiers-and-controversies-in-astrophysics-update-03-348774?ref=freecodecamp"><strong>Frontiers and Controversies in Astrophysics - Update 03</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-22-348780?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-21-348782?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-11-348784?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-15-348785?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-13-348788?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-17-348789?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-14-348791?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 14</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-05-348796?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-10-348800?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class14-terrible-swift-sword-confederate-ascendency-and-ultimate-defeat-364855?ref=freecodecamp"><strong>Terrible Swift Sword: Confederate Ascendency and Ultimate Defeat - Class 14</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-17-who-freed-the-slaves-lincoln-leadership-and-emancipation-policy-378048?ref=freecodecamp"><strong>Who Freed the Slaves: Lincoln, Leadership and Emancipation Policy - Class 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-5-master-the-art-of-fundraising-how-to-raise-capital-for-your-startup-medical-software-course-478133?ref=freecodecamp"><strong>Master the Art of Fundraising - How to Raise Capital for Your Startup - Medical Software Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-4-the-rocket-equation-why-95-fuel-won-t-cut-it-rocket-science-with-yale-s-marla-geha-479837?ref=freecodecamp"><strong>The Rocket Equation - Why 95% Fuel Won't Cut It - 3.4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-define-your-dream-job-triangles-yearning-octopus-for-your-pitch-job-searching-with-purpose-488233?ref=freecodecamp"><strong>Define Your Dream Job - Triangles and Yearning Octopus for Your Pitch - Lesson 12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-lectures-america-at-250-podcast-episode-3-what-is-a-republic-491043?ref=freecodecamp"><strong>What is a Republic? - America at 250 Podcast Episode 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-financial-markets-2011-with-robert-shiller-512864?ref=freecodecamp"><strong>Financial Markets - Introduction to Risk Management and Behavioral Finance Principles</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-frontiers-of-biomedical-engineering-with-w-mark-saltzman-512872?ref=freecodecamp"><strong>Frontiers of Biomedical Engineering</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-technology-and-invention-in-finance-109278?ref=freecodecamp"><strong>Technology and Invention in Finance - Financial Markets</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-hemingway-s-in-our-time-109298?ref=freecodecamp"><strong>Hemingway's In Our Time - Analysis of Pain and Violence in Vignettes</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-history-of-the-mortgage-market-a-personal-narrative-109307?ref=freecodecamp"><strong>History of the Mortgage Market - A Personal Narrative</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-utilities-endowments-and-equilibrium-109311?ref=freecodecamp"><strong>Utilities, Endowments, and Equilibrium in Financial Theory - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-preparing-for-war-nepa-109338?ref=freecodecamp"><strong>Preparing for War: Environmental Impacts of Nuclear Experimentation - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-constitutional-revolution-and-civil-war-1640-1646-109343?ref=freecodecamp"><strong>Constitutional Revolution and Civil War in England, 1640-1646</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-a-polarizing-society-1560-1640-109347?ref=freecodecamp"><strong>A Polarizing Society in Early Modern England, 1560-1640</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-weber-on-charismatic-authority-109353?ref=freecodecamp"><strong>Weber's Theory of Charismatic Authority - Lecture 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-weber-on-traditional-authority-109354?ref=freecodecamp"><strong>Weber on Traditional Authority - Foundations of Modern Social Thought</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-don-quixote-part-ii-chapters-xii-xxi-109370?ref=freecodecamp"><strong>Don Quixote, Part II - Chapters XII-XXI: Engaño, Desengaño, and the Cervantean Style</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-don-quixote-part-i-chapters-xi-xx-cont-109373?ref=freecodecamp"><strong>Don Quixote Analysis - Chapters XI-XX and Juan Palomeque's Inn - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-demographic-transition-in-europe-fertility-decline-109385?ref=freecodecamp"><strong>Demographic Transition in Europe - Fertility Decline and Population Growth</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-37-potential-energy-surfaces-transition-state-theory-and-reaction-mechanism-109390?ref=freecodecamp"><strong>Potential Energy Surfaces, Transition State Theory and Reaction Mechanism - Lecture 37</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-33-conformational-energy-and-molecular-mechanics-109392?ref=freecodecamp"><strong>Conformational Energy and Molecular Mechanics - Lecture 33</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-adaptive-evolution-natural-selection-109413?ref=freecodecamp"><strong>Adaptive Evolution - Natural Selection in Evolutionary Biology</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-homefronts-and-battlefronts-hard-war-and-the-social-impact-of-the-civil-war-109434?ref=freecodecamp"><strong>Homefronts and Battlefronts - The Social Impact of the Civil War</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-southern-society-slavery-king-cotton-and-antebellum-america-s-peculiar-region-109438?ref=freecodecamp"><strong>Southern Society: Slavery, King Cotton, and Antebellum America's Peculiar Region - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-26-review-for-final-exam-109450?ref=freecodecamp"><strong>The American Novel Since 1945 - Final Exam Review</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-marilynne-robinson-housekeeping-cont-109451?ref=freecodecamp"><strong>The American Novel Since 1945 - Marilynne Robinson's Housekeeping and Student Novel Pitches - Lecture 16</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-backward-induction-chess-strategies-and-credible-threats-109458?ref=freecodecamp"><strong>Backward Induction: Chess, Strategies, and Credible Threats in Game Theory - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-15-from-sit-ins-to-civil-rights-continued-109538?ref=freecodecamp"><strong>From Sit-Ins to Civil Rights - Martin Luther King Jr. and the Civil Rights Movement - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-imagism-109547?ref=freecodecamp"><strong>Imagism in Modern Poetry - Hilda Doolittle and Ezra Pound</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-31-the-two-ozone-problems-109567?ref=freecodecamp"><strong>The Two Ozone Problems in the Atmosphere - Tropospheric and Stratospheric</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-seasons-and-climate-109572?ref=freecodecamp"><strong>Seasons and Climate - Factors Affecting Earth's Climate Systems</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-08-horizontal-transport-109574?ref=freecodecamp"><strong>Horizontal Transport in Atmospheric Mixing - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-32-measuring-bond-energies-guest-lecture-by-prof-g-barney-ellison-109587?ref=freecodecamp"><strong>Measuring Bond Energies in Organic Chemistry</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-solvation-h-bonding-and-ionophores-109603?ref=freecodecamp"><strong>Solvation, Hydrogen-Bonding, and Ionophores in Organic Chemistry - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-faulkner-light-in-august-continued-109604?ref=freecodecamp"><strong>Light in August by William Faulkner - Racial Predestination and Redemption - Lecture 25</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-faulkner-s-the-sound-and-the-fury-part-iv-109611?ref=freecodecamp"><strong>Faulkner's The Sound and the Fury - Part IV Analysis</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-faulkner-s-the-sound-and-the-fury-part-iii-109612?ref=freecodecamp"><strong>Faulkner's The Sound and the Fury - Jason's Section and the Loss of Knowable Community</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-social-security-109626?ref=freecodecamp"><strong>Social Security - Economic Analysis and Reform Proposals</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-a-union-without-power-109639?ref=freecodecamp"><strong>The Articles of Confederation - A Union Without Power</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-confederation-109640?ref=freecodecamp"><strong>The American Revolution: Confederation and State Constitutions - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-fighting-the-revolution-the-big-picture-109642?ref=freecodecamp"><strong>Fighting the American Revolution - The Big Picture</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-the-importance-of-george-washington-109643?ref=freecodecamp"><strong>The Importance of George Washington in Revolutionary America</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-heroes-and-villains-109645?ref=freecodecamp"><strong>Heroes and Villains - Benedict Arnold and Social Mobility in the American Revolution</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-resistance-or-rebellion-or-what-the-heck-is-happening-in-boston-109652?ref=freecodecamp"><strong>Resistance or Rebellion in Colonial America - The Road to Revolution</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-being-a-british-american-109653?ref=freecodecamp"><strong>Being a British American - Differences Between Colonial and British Society</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-being-a-british-colonist-109654?ref=freecodecamp"><strong>Being a British Colonist in 18th Century America</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-sars-avian-inluenza-and-swine-flu-lessons-and-prospects-109657?ref=freecodecamp"><strong>SARS, Avian Influenza, and Swine Flu - Lessons and Prospects for Global Health</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-malaria-ii-the-global-challenge-109660?ref=freecodecamp"><strong>Malaria - The Global Challenge and Eradication Efforts - Lecture 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-evolution-of-tobacco-law-109674?ref=freecodecamp"><strong>Evolution of Tobacco Law and Regulation - Environmental Politics and Law</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-the-tobacco-paradigm-109675?ref=freecodecamp"><strong>The Tobacco Paradigm in Environmental Politics and Law - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-don-quixote-part-ii-chapters-lxxi-lxxiv-cont-109682?ref=freecodecamp"><strong>Don Quixote - Cervantes' Legacy and Final Works - Lecture 24</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-don-quixote-part-ii-front-matter-and-chapters-i-xi-109688?ref=freecodecamp"><strong>Don Quixote Part II - Political and Social Context in Cervantes' Novel</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-quantitative-aspects-109701?ref=freecodecamp"><strong>Quantitative Aspects of Global Population Growth</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-evolution-of-sex-and-reproductive-strategies-109708?ref=freecodecamp"><strong>Evolution of Sex and Reproductive Strategies</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-reality-and-the-orbital-approximation-109718?ref=freecodecamp"><strong>Reality and the Orbital Approximation in Freshman Organic Chemistry - Lecture 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-force-laws-lewis-structures-and-resonance-109719?ref=freecodecamp"><strong>Force Laws, Lewis Structures and Resonance in Organic Chemistry</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-purgatory-i-ii-109742?ref=freecodecamp"><strong>Dante's Purgatory - Cantos I and II Analysis</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-imperialists-and-boy-scouts-109753?ref=freecodecamp"><strong>New Imperialism and the Origins of the Boy Scouts - European Civilization 1648-1945 - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-industrial-revolutions-109764?ref=freecodecamp"><strong>Industrial Revolutions - European Civilization 1648-1945 - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-35-alternative-breeding-strategies-109773?ref=freecodecamp"><strong>Alternative Breeding Strategies in Evolution and Ecology - Lecture 35</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-interactions-with-the-physical-environment-109781?ref=freecodecamp"><strong>Interactions with the Physical Environment - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-comparative-methods-trees-maps-and-traits-109798?ref=freecodecamp"><strong>Comparative Methods: Trees, Maps, and Traits in Evolution, Ecology, and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-jacques-lacan-in-theory-109815?ref=freecodecamp"><strong>Jacques Lacan's Psychoanalytic Theory - Lecture 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-samson-agonistes-109817?ref=freecodecamp"><strong>Samson Agonistes: Psycho-Sexual Analysis and Miltonic Heroism - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-flannery-o-connor-wise-blood-109818?ref=freecodecamp"><strong>Flannery O'Connor's Wise Blood - Faith, Interpretation, and Symbolism</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-charles-de-gaulle-109819?ref=freecodecamp"><strong>Charles de Gaulle's Legacy and Impact on Postwar France</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-the-waning-of-religious-authority-109824?ref=freecodecamp"><strong>The Waning of Religious Authority in France Since 1871 - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-the-dark-years-vichy-france-109836?ref=freecodecamp"><strong>The Dark Years - Vichy France and Nazi Collaboration</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-days-of-jubilee-the-meanings-of-emancipation-and-total-war-109842?ref=freecodecamp"><strong>Days of Jubilee: The Meanings of Emancipation and Total War - Lecture 16</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-war-so-terrible-why-the-union-won-and-the-confederacy-lost-at-home-and-abroad-109845?ref=freecodecamp"><strong>Why the Union Won and the Confederacy Lost in the Civil War - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-students-choice-novel-jonathan-safran-foer-everything-is-illuminated-109859?ref=freecodecamp"><strong>Everything is Illuminated by Jonathan Safran Foer - Analysis and Literary Context - Lecture 24</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-technology-and-invention-in-finance-109886?ref=freecodecamp"><strong>Technology and Invention in Finance - Risk Management and Financial Innovation</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-insurance-the-archetypal-risk-management-institution-109889?ref=freecodecamp"><strong>Insurance: The Archetypal Risk Management Institution - Financial Markets</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-the-sovereign-state-hobbes-leviathan-109930?ref=freecodecamp"><strong>The Sovereign State: Hobbes' Leviathan - Introduction to Political Philosophy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-law-of-conservation-of-energy-in-higher-dimensions-109947?ref=freecodecamp"><strong>Law of Conservation of Energy in Higher Dimensions - Fundamentals of Physics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-vectors-in-multiple-dimensions-109950?ref=freecodecamp"><strong>Vectors in Multiple Dimensions - Fundamentals of Physics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-democratic-statecraft-tocqueville-s-democracy-in-america-109953?ref=freecodecamp"><strong>Democratic Statecraft - Tocqueville's Democracy in America - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-pediatric-update-for-the-knee-dy-radiologist-180531?ref=freecodecamp"><strong>Pediatric Knee Imaging Update for Radiologists</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-tanzania-interventional-radiology-initiative-road2ir-180543?ref=freecodecamp"><strong>Tanzania Interventional Radiology Initiative - Road to IR</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-how-i-do-it-thyroid-biopsy-180544?ref=freecodecamp"><strong>How I Do It - Thyroid Biopsy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ct-deep-learning-with-diffusion-large-models-182517?ref=freecodecamp"><strong>Deep Learning with Diffusion &amp; Large Models</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ai-based-pet-image-enhancement-182534?ref=freecodecamp"><strong>AI-Based PET Image Enhancement</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-pecutaneous-and-endovascular-robotics-in-ir-289437?ref=freecodecamp"><strong>Percutaneous and Endovascular Robotics in Interventional Radiology</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lesson-7d-how-to-diagnose-dyslexia-305597?ref=freecodecamp"><strong>Lesson 7d: How to Diagnose Dyslexia</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-19-wartime-reconstruction-and-the-ends-of-war-379475?ref=freecodecamp"><strong>Wartime Reconstruction and the Ends of War - Class 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-3-which-policies-and-programs-improve-addiction-treatment-addiction-treatment-course-473829?ref=freecodecamp"><strong>Which Policies and Programs Improve Addiction Treatment - Addiction Treatment Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-module-2-erik-clemons-on-building-trust-bridging-divides-social-entrepreneurship-interview-475151?ref=freecodecamp"><strong>Building Trust and Bridging Divides - Social Entrepreneurship Interview - Module 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1102-beyond-your-venture-9-ways-to-expand-social-impact-social-entrepreneurship-course-475152?ref=freecodecamp"><strong>Beyond Your Venture - 9 Ways to Expand Social Impact</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mentorship-in-radiology-past-present-and-future-476008?ref=freecodecamp"><strong>Mentorship in Radiology - Past, Present, and Future</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-network-like-a-pro-unleash-your-inner-friendly-brontosaurus-job-searching-with-purpose-488230?ref=freecodecamp"><strong>Network Like a Pro - Unleash Your Inner 'Friendly Brontosaurus' - Job Searching with Purpose</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-13-the-road-to-brown-and-little-rock-109197?ref=freecodecamp"><strong>The Road to Brown v. Board of Education and Little Rock - Lecture 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-23-review-of-musical-style-109207?ref=freecodecamp"><strong>Review of Musical Style - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-26-isotope-evidence-for-climate-change-109246?ref=freecodecamp"><strong>Isotope Evidence for Climate Change - Lecture 26</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-04-vertical-structure-of-the-atmosphere-residence-time-109262?ref=freecodecamp"><strong>Vertical Structure of the Atmosphere and Residence Time - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-monetary-policy-109266?ref=freecodecamp"><strong>Monetary Policy - Evolution and Tools of Central Banking</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-fitzgerald-the-diamond-as-big-as-the-ritz-etc-109294?ref=freecodecamp"><strong>F. Scott Fitzgerald's Short Stories: Social Types and Dramatic Tension - Lecture 12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-dynamic-present-value-109308?ref=freecodecamp"><strong>Dynamic Present Value - Financial Theory</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-thomas-malthus-and-inevitable-poverty-109317?ref=freecodecamp"><strong>Thomas Malthus and the Theory of Inevitable Poverty - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-who-were-the-loyalists-109323?ref=freecodecamp"><strong>Who Were the Loyalists? - American Revolution Lecture 9</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-outraged-colonials-the-stamp-act-crisis-109324?ref=freecodecamp"><strong>The Stamp Act Crisis and Colonial Unity in Pre-Revolutionary America</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-smallpox-i-the-speckled-monster-109331?ref=freecodecamp"><strong>Smallpox - The Speckled Monster and Its Impact on Western Society - Lecture 6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-risk-and-law-pesticide-paradigm-109335?ref=freecodecamp"><strong>Evolution of Pesticide Regulation in the United States - Lecture 9</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-countries-and-nation-social-and-economic-networks-and-the-urban-system-109349?ref=freecodecamp"><strong>Countries and Nation: Social and Economic Networks in Early Modern England - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-population-in-modern-china-109378?ref=freecodecamp"><strong>Population in Modern China - Global Problems of Population Growth</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-the-importance-of-development-in-evolution-109415?ref=freecodecamp"><strong>The Importance of Development in Evolution - Lecture 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-the-end-of-reconstruction-disputed-election-of-1876-and-the-compromise-of-1877-109429?ref=freecodecamp"><strong>The End of Reconstruction - Disputed Election of 1876 and the Compromise of 1877</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-constitutional-crisis-and-impeachment-of-a-president-109442?ref=freecodecamp"><strong>Constitutional Crisis and Impeachment of a President - The Civil War and Reconstruction - Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-nash-equilibrium-bad-fashion-and-bank-runs-109454?ref=freecodecamp"><strong>Nash Equilibrium - Bad Fashion and Bank Runs - Game Theory Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-forwards-and-futures-109483?ref=freecodecamp"><strong>Forwards and Futures Markets - History, Development, and Applications - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-29-imines-and-enamines-oxidation-and-reduction-109590?ref=freecodecamp"><strong>Imines, Enamines, Oxidation and Reduction in Organic Chemistry - Lecture 29</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-26-aromatic-substitution-in-synthesis-friedel-crafts-and-moses-gomberg-109591?ref=freecodecamp"><strong>Aromatic Substitution in Synthesis: Friedel-Crafts Reactions and Benzylic Chemistry</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-the-mutual-fund-theorem-and-covariance-pricing-theorems-109622?ref=freecodecamp"><strong>The Mutual Fund Theorem and Covariance Pricing Theorems - Financial Theory</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-organizing-a-war-109646?ref=freecodecamp"><strong>Organizing a War in the American Revolution - Lecture 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-civil-war-109647?ref=freecodecamp"><strong>The American Revolution - From Declaration to War</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-being-a-revolutionary-109651?ref=freecodecamp"><strong>Being a Revolutionary - The American Revolution and Colonial Resistance</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-the-germ-theory-of-disease-109663?ref=freecodecamp"><strong>The Germ Theory of Disease - Epidemics in Western Society Since 1600</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-plague-iii-illustrations-and-conclusions-109667?ref=freecodecamp"><strong>Cultural Impact of the Second Plague Pandemic - Illustrations and Conclusions</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-don-quixote-part-i-chapters-xxi-xxvi-cont-109681?ref=freecodecamp"><strong>Don Quixote - Part I: Chapters XXI-XXVI Analysis - Lecture 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-don-quixote-part-ii-chapters-lxxi-lxxiv-109683?ref=freecodecamp"><strong>Don Quixote Part II - Chapters LXXI-LXXIV and the Novel's Conclusion</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-don-quixote-part-ii-chapters-xxxvi-liii-cont-109685?ref=freecodecamp"><strong>Don Quixote Part II - Chapters XXXVI-LIII Analysis - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-don-quixote-part-ii-chapters-xxii-xxxv-109687?ref=freecodecamp"><strong>Don Quixote Part II - Montesinos Cave and Master Peter's Puppet Show</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-population-in-traditional-china-109704?ref=freecodecamp"><strong>Population Growth and Demographics in Traditional China</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-media-and-the-fertility-transition-in-developing-countries-guest-lecture-by-william-ryerson-109709?ref=freecodecamp"><strong>Media and the Fertility Transition in Developing Countries - Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-one-dimensional-wave-functions-109720?ref=freecodecamp"><strong>One-Dimensional Wave Functions in Quantum Chemistry - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-ecclesiastical-institutions-unity-martyrs-and-bishops-109751?ref=freecodecamp"><strong>Ecclesiastical Institutions: Unity, Martyrs, and Bishops in Early Christianity - Lecture 25</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-maximilien-robespierre-and-the-french-revolution-109766?ref=freecodecamp"><strong>Maximilien Robespierre and the French Revolution - European Civilization 1648-1945</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-key-events-in-evolution-109794?ref=freecodecamp"><strong>Key Events in Evolution - Lecture 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-the-institutional-construction-of-literary-study-109807?ref=freecodecamp"><strong>The Institutional Construction of Literary Study - Lecture 24</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-the-political-unconscious-109814?ref=freecodecamp"><strong>The Political Unconscious - Fredric Jameson's Theory of Literature</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-the-nature-of-evolution-selection-inheritance-and-history-109816?ref=freecodecamp"><strong>The Nature of Evolution: Selection, Inheritance, and History - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-a-nation-peasants-language-and-french-identity-109821?ref=freecodecamp"><strong>A Nation? Peasants, Language, and French Identity - France Since 1871</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-may-1968-109825?ref=freecodecamp"><strong>May 1968 Student Protests in France - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-telling-a-free-story-fugitive-slaves-and-the-underground-railroad-in-myth-and-reality-109846?ref=freecodecamp"><strong>The Rise of Abolitionism and Slave Narratives - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-lycidas-cont-109848?ref=freecodecamp"><strong>Analyzing Milton's Lycidas: Pastoral Framework and Prophetic Voice - Lecture 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-edward-p-jones-the-known-world-109849?ref=freecodecamp"><strong>The Known World by Edward P. Jones - Narrative Techniques and Historical Knowledge</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-the-miltonic-smile-109850?ref=freecodecamp"><strong>The Miltonic Smile - Exploring Similes in Paradise Lost</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-philip-roth-the-human-stain-cont-109852?ref=freecodecamp"><strong>The American Novel Since 1945 - Lecture 20: Philip Roth and The Human Stain</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-edward-p-jones-the-known-world-cont-109854?ref=freecodecamp"><strong>The Known World by Edward P. Jones - Literacy, Narrative, and Slavery - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-vladimir-nabokov-lolita-109860?ref=freecodecamp"><strong>Vladimir Nabokov's Lolita - Analysis and Context - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-making-it-work-for-real-people-the-democratization-of-finance-109874?ref=freecodecamp"><strong>Making It Work for Real People - The Democratization of Finance</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-guest-lecture-by-carl-icahn-109888?ref=freecodecamp"><strong>Activist Investing and Corporate America - Carl Icahn Guest Lecture</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-planetary-transits-109911?ref=freecodecamp"><strong>Planetary Transits and Hot Jupiters in Astrophysics - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-the-second-law-of-thermodynamics-and-carnot-s-engine-109938?ref=freecodecamp"><strong>The Second Law of Thermodynamics and Carnot's Engine - Lecture 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-dynamics-of-multiple-body-system-and-law-of-109945?ref=freecodecamp"><strong>Dynamics of Multiple-Body Systems and Conservation of Momentum - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-rotations-part-i-dynamics-of-rigid-bodies-109946?ref=freecodecamp"><strong>Rotations and Dynamics of Rigid Bodies - Part I</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-torque-109948?ref=freecodecamp"><strong>Torque and Static Equilibrium in Physics - Lecture 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-creating-a-care-signature-communication-and-the-patient-experience-180524?ref=freecodecamp"><strong>Creating a Care Signature - Communication and the Patient Experience</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-update-on-the-management-of-localized-renal-tumors-180529?ref=freecodecamp"><strong>Update on the Management of Localized Renal Tumors</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-dl-applications-in-myocardial-perfusion-spect-imaging-182523?ref=freecodecamp"><strong>DL Applications in Myocardial Perfusion SPECT Imaging</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-modeling-prior-information-to-guide-image-reconstruction-in-radiation-therapy-182528?ref=freecodecamp"><strong>Modeling Prior Information to Guide Image Reconstruction in Radiation Therapy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-pacs-ai-from-integration-to-cloud-182539?ref=freecodecamp"><strong>PACS &amp; AI – From Integration to Cloud</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-who-updates-in-adult-and-pediatric-cns-neoplasm-284381?ref=freecodecamp"><strong>WHO Updates in Adult and Pediatric CNS Neoplasm</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-2-does-memory-matter-why-are-universities-studying-slavery-and-their-pasts-305587?ref=freecodecamp"><strong>Does Memory Matter? Why Universities Are Studying Slavery and Their Pasts - Class 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-1-why-does-the-civil-war-and-reconstruction-have-a-hold-on-american-historical-imagination-305588?ref=freecodecamp"><strong>Why Does the Civil War and Reconstruction Have a Hold on American Historical Imagination? - Class 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-4-the-18th-century-founding-of-yale-and-its-many-contexts-311262?ref=freecodecamp"><strong>The 18th Century Founding of Yale and its Many Contexts - Native American Dispossession and the Puritan Vision</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-9-ideologies-and-economies-southern-world-views-northern-world-views-344108?ref=freecodecamp"><strong>Ideologies and Economies: Southern World Views vs Northern World Views - Class 9</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-frontiers-and-controversies-in-astrophysics-update-01-348775?ref=freecodecamp"><strong>Frontiers and Controversies in Astrophysics - Update 01</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-08-348787?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-04-348795?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-03-348798?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-22-the-end-of-reconstruction-1877-1883-1965-2024-and-its-legacies-to-our-own-time-384544?ref=freecodecamp"><strong>The End of Reconstruction and Its Legacies to Our Time - Class 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-oral-health-a-central-but-often-neglected-part-of-global-health-essentials-of-global-health-462004?ref=freecodecamp"><strong>Oral Health - A Central But Often Neglected Part of Global Health</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-3-what-medications-are-available-for-opioid-use-disorder-addiction-treatment-course-473827?ref=freecodecamp"><strong>Medications Available for Opioid Use Disorder - Addiction Treatment Course 4.3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-4-revolutionizing-patient-care-ehr-pacs-with-prof-mariam-aboian-medical-software-course-476297?ref=freecodecamp"><strong>Revolutionizing Patient Care - EHR and PACS - 3.4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-1-demystifying-ai-ml-a-core-introduction-for-medical-software-course-478141?ref=freecodecamp"><strong>Demystifying AI and ML - A Core Introduction for Medical Software Course - 11.1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-5-go-further-faster-multistage-rockets-rocket-science-for-everyone-with-yale-s-marla-geha-479835?ref=freecodecamp"><strong>Go Further, Faster! The Ingenious Science of Multistage Rockets - 3.5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-master-chats-interviews-prep-presence-follow-up-for-success-job-searching-with-purpose-488231?ref=freecodecamp"><strong>Master Chats and Interviews - Prep, Presence, and Follow-Up for Success</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-master-your-job-search-the-ultimate-hunt-dashboard-guide-job-searching-with-purpose-488232?ref=freecodecamp"><strong>Master Your Job Search - The Ultimate Hunt Dashboard Guide</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-06-find-your-why-crafting-your-personal-purpose-statement-job-searching-with-purpose-488235?ref=freecodecamp"><strong>Find Your Why - Crafting Your Personal Purpose Statement for Job Searching - 06</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-lecture-class-9-whose-america-protest-and-reform-491044?ref=freecodecamp"><strong>Whose America? Protest and Reform - Class 9</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-low-cost-high-nutrition-eating-for-graduate-students-quick-tasty-cooking-500408?ref=freecodecamp"><strong>Low-Cost, High-Nutrition Eating for Graduate Students - Quick and Tasty Cooking</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-financial-markets-2008-with-robert-shiller-512873?ref=freecodecamp"><strong>Financial Markets (2008)</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-8-migration-and-urbanization-continued-109200?ref=freecodecamp"><strong>Migration and Urbanization in American History - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-1-dawn-of-freedom-109201?ref=freecodecamp"><strong>American History: From Emancipation to the Present - Lecture 1 - Dawn of Freedom</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-circulation-of-the-atmosphere-exam-i-review-109258?ref=freecodecamp"><strong>Circulation of the Atmosphere - Exam I Review</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-28-mechanism-and-equilibrium-of-carbonyl-reactions-109282?ref=freecodecamp"><strong>Mechanism and Equilibrium of Carbonyl Reactions - Lecture 28</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-dynamic-hedging-109306?ref=freecodecamp"><strong>Dynamic Hedging in Financial Theory - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-electrostatics-109320?ref=freecodecamp"><strong>Introduction to Electrostatics and Coulomb's Law - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-economic-expansion-1560-1640-109348?ref=freecodecamp"><strong>Economic Expansion in Early Modern England, 1560-1640</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-economic-motivations-for-fertility-109380?ref=freecodecamp"><strong>Economic Motivations for Fertility - Lecture 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-paper-topics-discovering-the-roman-provinces-and-designing-a-roman-city-109400?ref=freecodecamp"><strong>Roman Architecture - Term Paper Options and Research Topics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-sites-of-memory-sites-of-mourning-guest-lecture-by-jay-winters-109410?ref=freecodecamp"><strong>Sites of Memory and Mourning in Post-World War I Europe - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-how-selection-changes-the-genetic-composition-of-population-109414?ref=freecodecamp"><strong>How Selection Changes the Genetic Composition of Population - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-configurative-reading-109422?ref=freecodecamp"><strong>Configurative Reading in Literary Theory - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-the-end-of-theory-neo-pragmatism-109424?ref=freecodecamp"><strong>The End of Theory - Neo-Pragmatism and Literary Criticism</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-a-hell-of-a-storm-the-kansas-nebraska-act-and-the-birth-of-the-republican-party-1854-55-109427?ref=freecodecamp"><strong>The Kansas-Nebraska Act and the Birth of the Republican Party, 1854-55</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-dred-scott-bleeding-kansas-and-the-impending-crisis-of-the-union-1855-58-109432?ref=freecodecamp"><strong>Dred Scott, Bleeding Kansas, and the Impending Crisis of the Union, 1855-58 - The Civil War and Reconstruction</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-to-appomattox-and-beyond-the-end-of-the-war-and-a-search-for-meanings-109437?ref=freecodecamp"><strong>The End of the Civil War and Its Aftermath - To Appomattox and Beyond</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-repeated-games-cooperation-vs-the-end-game-109465?ref=freecodecamp"><strong>Repeated Games: Cooperation vs. The End Game - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-30-climate-sensitivity-and-human-population-109568?ref=freecodecamp"><strong>Climate Sensitivity and Human Population - The Atmosphere, Ocean and Environmental Change</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-37-proving-the-configuration-of-glucose-and-synthesizing-two-unnatural-products-109583?ref=freecodecamp"><strong>Proving the Configuration of Glucose and Synthesizing Cyclobutadiene - Lecture 37</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-34-acids-and-acid-derivatives-109586?ref=freecodecamp"><strong>Acids and Acid Derivatives - Reactions and Spectroscopy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-31-periodate-cleavage-retrosynthesis-and-green-chemistry-109588?ref=freecodecamp"><strong>Periodate Cleavage, Retrosynthesis, and Green Chemistry in Organic Chemistry</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-30-oxidation-states-and-mechanisms-109589?ref=freecodecamp"><strong>Oxidation States and Mechanisms in Organic Chemistry - Lecture 30</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-alkynes-conjugation-in-allylic-intermediates-and-dienes-109594?ref=freecodecamp"><strong>Alkynes and Conjugation in Allylic Systems and Dienes - Lecture 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-nucleophilic-substitution-tools-stereochemistry-rate-law-substrate-nucleophile-109602?ref=freecodecamp"><strong>Nucleophilic Substitution Mechanisms: Stereochemistry, Kinetics, and Structural Influences</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-yield-curve-arbitrage-109627?ref=freecodecamp"><strong>Yield Curve Arbitrage and Market Interest Rates - Financial Theory</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-shakespeare-s-merchant-of-venice-and-collateral-present-value-and-the-vocabulary-of-finance-109628?ref=freecodecamp"><strong>Shakespeare's Merchant of Venice and Financial Theory - Present Value and Basic Financial Instruments</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-marrying-the-devil-in-texas-109632?ref=freecodecamp"><strong>Marrying the Devil in Texas - Private Equity and Environmental Interests in the TXU Case</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-citizens-and-choices-experiencing-the-revolution-in-new-haven-109644?ref=freecodecamp"><strong>Citizens and Choices - Experiencing the American Revolution in New Haven</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-independence-109648?ref=freecodecamp"><strong>The American Revolution: The Declaration of Independence - Lecture 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-the-logic-of-resistance-109650?ref=freecodecamp"><strong>The Logic of Resistance - American Revolution and Colonial Unity</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-nineteenth-century-medicine-the-paris-school-of-medicine-109666?ref=freecodecamp"><strong>Nineteenth-Century Medicine: The Paris School of Medicine</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-the-evolution-of-sex-109695?ref=freecodecamp"><strong>The Evolution of Sex - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-successor-states-of-eastern-europe-109756?ref=freecodecamp"><strong>Successor States of Eastern Europe after World War I - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-nationalism-109760?ref=freecodecamp"><strong>Nationalism in European Civilization - The Construction of National Identities</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-absolutism-and-the-state-109767?ref=freecodecamp"><strong>Absolutism and the State in European Civilization, 1648-1945 - Lecture 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-dutch-and-british-exceptionalism-109768?ref=freecodecamp"><strong>Dutch and British Exceptionalism in 17th Century Europe - Lecture 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-sexual-selection-109778?ref=freecodecamp"><strong>Sexual Selection in Evolution, Ecology, and Behavior - Lecture 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-life-history-evolution-109780?ref=freecodecamp"><strong>Life History Evolution - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-26-population-growth-density-effects-109782?ref=freecodecamp"><strong>Population Growth - Density Effects and Mathematical Models</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-evolutionary-medicine-109784?ref=freecodecamp"><strong>Evolutionary Medicine - Principles of Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-33-evolutionary-game-theory-fighting-and-contests-109788?ref=freecodecamp"><strong>Evolutionary Game Theory: Fighting and Contests - Lecture 33</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-34-mating-systems-and-parental-care-109795?ref=freecodecamp"><strong>Mating Systems and Parental Care in Evolution and Ecology - Lecture 34</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-post-colonial-criticism-109808?ref=freecodecamp"><strong>Post-Colonial Criticism in Literary Theory - Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-centralized-state-and-republic-109826?ref=freecodecamp"><strong>France Since 1871: Centralized State and Republic - Lecture 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-vietnam-and-algeria-109829?ref=freecodecamp"><strong>France's Decolonization: Vietnam and Algeria - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-mass-politics-and-the-political-challenge-from-the-left-109831?ref=freecodecamp"><strong>Mass Politics and the Political Challenge from the Left in France Since 1871</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-the-home-front-109837?ref=freecodecamp"><strong>The Home Front in World War I France - Lecture 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-battles-for-and-against-americanization-109840?ref=freecodecamp"><strong>Battles For and Against Americanization in Post-War France - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-a-northern-world-view-yankee-society-antislavery-ideology-and-the-abolition-movement-109844?ref=freecodecamp"><strong>A Northern World View: Yankee Society, Antislavery Ideology and the Abolition Movement - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-philip-roth-the-human-stain-109855?ref=freecodecamp"><strong>The Human Stain by Philip Roth - Identity, Race, and Secrecy in Modern America</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-subgame-perfect-equilibrium-matchmaking-and-strategic-investments-109864?ref=freecodecamp"><strong>Subgame Perfect Equilibrium: Matchmaking and Strategic Investments - Lecture 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-stellar-mass-black-holes-cont-109926?ref=freecodecamp"><strong>Stellar Mass Black Holes and Post-Newtonian Gravitational Effects - Lecture 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-newton-s-laws-cont-and-inclined-planes-109929?ref=freecodecamp"><strong>Newton's Laws and Inclined Planes - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-fluid-dynamics-and-statics-and-bernoulli-s-equation-109934?ref=freecodecamp"><strong>Fluid Dynamics, Statics, and Bernoulli's Equation - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-waves-109941?ref=freecodecamp"><strong>Fundamentals of Physics - Waves and Wave Properties - Lecture 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-method-of-detection-the-critical-missing-link-in-u-s-cancer-registries-180516?ref=freecodecamp"><strong>Method of Detection - The Critical Missing Link in U.S. Cancer Registries</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-fast-motion-resolved-4d-mri-using-convolutional-networks-without-data-consistency-182525?ref=freecodecamp"><strong>Fast Motion-Resolved 4D MRI Using Convolutional Networks Without Data Consistency</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-bring-quality-check-back-in-medical-ai-ct-applications-182526?ref=freecodecamp"><strong>Bring Quality Check Back in Medical AI CT Applications</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-pediatric-renovascular-hypertension-and-endovascular-therapy-284111?ref=freecodecamp"><strong>Pediatric Renovascular Hypertension and Endovascular Therapy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-radiomics-radiogenomics-and-ai-the-emerging-role-of-imaging-biomarkers-in-precision-cancer-care-344105?ref=freecodecamp"><strong>Radiomics, Radiogenomics, and AI - The Emerging Role of Imaging Biomarkers in Precision Cancer Care</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-frontiers-and-controversies-in-astrophysics-update-02-348778?ref=freecodecamp"><strong>Frontiers and Controversies in Astrophysics - Update 02</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-psychology-biology-and-politics-of-food-06-348801?ref=freecodecamp"><strong>The Psychology, Biology and Politics of Food - Lecture 6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class12-john-brown-s-holy-war-1860-election-and-the-secession-crisis-353333?ref=freecodecamp"><strong>John Brown's Holy War, 1860 Election, and the Secession Crisis - Class 12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-24-legacies-of-reconstruction-and-the-origins-of-jim-crow-society-391527?ref=freecodecamp"><strong>Legacies of Reconstruction and the Origins of Jim Crow Society - Class 24</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-25-will-it-rise-endings-and-beginnings-for-country-and-for-yale-393082?ref=freecodecamp"><strong>Will It Rise? Endings and Beginnings for Country and Yale - Class 25</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-how-to-handle-objections-to-therapy-interprofessional-panel-addiction-treatment-course-473820?ref=freecodecamp"><strong>How to Handle Objections to Therapy - Interprofessional Panel - Addiction Treatment Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-what-s-getting-better-in-addiction-care-interprofessional-panel-addiction-treatment-course-473821?ref=freecodecamp"><strong>What's Getting Better in Addiction Care - Interprofessional Panel - Addiction Treatment Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-4-what-treatment-settings-are-available-addiction-treatment-course-473826?ref=freecodecamp"><strong>What Treatment Settings Are Available - Addiction Treatment Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-05-how-to-use-shaping-to-develop-desired-behaviors-in-your-children-with-dr-alan-kazdin-474275?ref=freecodecamp"><strong>How to Use Shaping to Develop Desired Behaviors in Your Children - 05</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-07-use-modeling-to-develop-positive-behaviors-with-dr-alan-kazdin-474280?ref=freecodecamp"><strong>Use Modeling to Develop Positive Behaviors - Lesson 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-how-to-change-your-child-s-school-behavior-from-home-with-dr-alan-kazdin-474281?ref=freecodecamp"><strong>How to Change Your Child's School Behavior from Home - 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-attending-and-planned-ignoring-using-attention-to-shape-child-behavior-with-dr-alan-kazdin-474283?ref=freecodecamp"><strong>Attending and Planned Ignoring - Using Attention to Shape Child Behavior - 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-module-9-kendall-barbery-on-growing-greenwave-s-staff-social-entrepreneurship-interview-475144?ref=freecodecamp"><strong>Scaling Non-Profit Organizations - GreenWave Staff Growth Case Study - Module 9</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-905-what-legal-structure-is-best-for-your-social-enterprise-social-entrepreneurship-course-475156?ref=freecodecamp"><strong>What Legal Structure is Best for Your Social Enterprise - Social Entrepreneurship Course - 905</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-2-master-code-management-essential-revision-control-systems-for-medical-software-course-476285?ref=freecodecamp"><strong>Master Code Management - Essential Revision Control Systems for Medical Software Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-2-healthcare-s-shifting-landscape-new-business-models-led-by-software-medical-software-course-478136?ref=freecodecamp"><strong>Healthcare's Shifting Landscape - New Business Models Led by Software - 12.2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-6-what-is-statistical-significance-clinical-trials-explained-medical-software-course-478145?ref=freecodecamp"><strong>What is Statistical Significance? Clinical Trials Explained - Medical Software Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-2-medium-earth-orbit-gps-rocket-science-for-everyone-with-yale-s-marla-geha-479840?ref=freecodecamp"><strong>Medium Earth Orbit and GPS - Rocket Science for Everyone - 2.2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-lecture-class-5-framing-a-nation-the-constitution-486319?ref=freecodecamp"><strong>Framing a Nation - The Constitution - Class 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-master-your-priorities-align-your-career-with-life-s-big-rocks-job-searching-with-purpose-488234?ref=freecodecamp"><strong>Master Your Priorities - Align Your Career with Life's 'Big Rocks'</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-05-alumni-share-job-search-strategies-decision-making-tools-job-searching-with-purpose-488236?ref=freecodecamp"><strong>Alumni Share Job Search Strategies and Decision-Making Tools - Job Searching with Purpose</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-low-cost-high-nutrition-eating-for-graduate-students-make-it-sustainable-500405?ref=freecodecamp"><strong>Low-Cost, High-Nutrition Eating for Graduate Students - Make it Sustainable</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-evolution-ecology-and-behavior-with-stephen-c-stearns-512869?ref=freecodecamp"><strong>Evolution, Ecology and Behavior</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-9-the-new-negroes-109198?ref=freecodecamp"><strong>The New Negro Movement and Marcus Garvey's UNIA - Lecture 9</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-pandemic-influenza-109326?ref=freecodecamp"><strong>Pandemic Influenza: Historical Patterns and the 1918-1920 Spanish Flu</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-syphilis-from-the-great-pox-to-the-modern-version-109327?ref=freecodecamp"><strong>Syphilis: From the "Great Pox" to the Modern Version - Epidemics in Western Society</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-conceptual-foundations-of-weber-s-theory-of-domination-109355?ref=freecodecamp"><strong>Conceptual Foundations of Weber's Theory of Domination</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-why-is-africa-different-109387?ref=freecodecamp"><strong>Why Is Africa Different? - Population Growth and Fertility Patterns</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-the-idea-of-the-autonomous-artwork-109419?ref=freecodecamp"><strong>The Idea of the Autonomous Artwork in Literary Criticism - Lecture 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-retreat-from-reconstruction-the-grant-era-and-paths-to-southern-redemption-109426?ref=freecodecamp"><strong>Retreat from Reconstruction - The Grant Era and Paths to Southern Redemption</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-a-southern-world-view-the-old-south-and-proslavery-ideology-109430?ref=freecodecamp"><strong>A Southern World View: The Old South and Proslavery Ideology - Lecture 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-black-reconstruction-in-the-south-the-freedpeople-and-the-economics-of-land-and-labor-109444?ref=freecodecamp"><strong>Black Reconstruction in the South - The Freedpeople and the Economics of Land and Labor</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-repeated-games-cheating-punishment-and-outsourcing-109460?ref=freecodecamp"><strong>Repeated Games: Cheating, Punishment, and Outsourcing - Game Theory Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-evolutionary-stability-cooperation-mutation-and-equilibrium-109463?ref=freecodecamp"><strong>Evolutionary Stability: Cooperation, Mutation, and Equilibrium in Game Theory - Lecture 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-subgame-perfect-equilibrium-wars-of-attrition-109466?ref=freecodecamp"><strong>Subgame Perfect Equilibrium - Wars of Attrition in Game Theory - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-rotations-part-ii-parallel-axis-theorem-109519?ref=freecodecamp"><strong>Rotations and the Parallel Axis Theorem - Lecture 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-24-who-speaks-for-the-race-109533?ref=freecodecamp"><strong>Who Speaks for the Race? Race and Public Policy - Lecture 24</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-25-c-13-and-2d-nmr-electrophilic-aromatic-substitution-109592?ref=freecodecamp"><strong>C-13 and 2D NMR - Electrophilic Aromatic Substitution - Lecture 25</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-isoprenoids-rubber-and-tuning-polymer-properties-109595?ref=freecodecamp"><strong>Isoprenoids, Rubber, and Tuning Polymer Properties - Freshman Organic Chemistry II</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-pentavalent-carbon-e2-sn1-e1-109600?ref=freecodecamp"><strong>Pentavalent Carbon and Competing Reaction Mechanisms - E2, SN1, E1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-common-sense-109649?ref=freecodecamp"><strong>Thomas Paine's Common Sense and Its Impact on the American Revolution</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-contagionism-versus-anticontagionsim-109664?ref=freecodecamp"><strong>Contagionism versus Anticontagionism in 19th Century Medicine - Lecture 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-asiatic-cholera-i-personal-reflections-109665?ref=freecodecamp"><strong>Asiatic Cholera - Historical Detective Work and Concealment - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-don-quixote-part-ii-chapters-liv-lxx-cont-109684?ref=freecodecamp"><strong>Don Quixote Part II - Chapters LIV-LXX Analysis - Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-demographic-transition-in-europe-mortality-decline-109699?ref=freecodecamp"><strong>Demographic Transition in Europe - Mortality Decline and Population Growth</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-31-preparing-single-enantiomers-and-conformational-energy-109716?ref=freecodecamp"><strong>Preparing Single Enantiomers and Conformational Energy - Freshman Organic Chemistry</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-22-radical-and-type-theories-1832-1850-109721?ref=freecodecamp"><strong>Radical and Type Theories in Organic Chemistry (1832-1850) - Lecture 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-peter-the-great-109755?ref=freecodecamp"><strong>Peter the Great: Westernization and Expansion of Russia - Lecture 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-the-new-criticism-and-other-western-formalisms-109801?ref=freecodecamp"><strong>The New Criticism and Other Western Formalisms - Lecture 6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-workshop-and-factory-109823?ref=freecodecamp"><strong>French Industrialization: Workshop and Factory - Lecture 6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-trench-warfare-109828?ref=freecodecamp"><strong>Trench Warfare in World War I - France Since 1871 - Lecture 14</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-dynamite-club-the-anarchists-109832?ref=freecodecamp"><strong>The Dynamite Club: Anarchism and Terrorism in 19th Century France - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-26-race-and-reunion-the-civil-war-in-american-memory-109841?ref=freecodecamp"><strong>The End of Reconstruction - Electoral Politics and the Compromise of 1877</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-never-call-retreat-military-and-political-turning-points-in-1863-109843?ref=freecodecamp"><strong>Military and Political Turning Points in 1863 - Never Call Retreat</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-microlensing-astrometry-and-other-methods-109923?ref=freecodecamp"><strong>Microlensing, Astrometry and Other Methods for Exoplanet Detection - Lecture 6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-introduction-to-the-four-vector-109928?ref=freecodecamp"><strong>Introduction to the Four-Vector in Special Relativity - Lecture 14</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-thermodynamics-109940?ref=freecodecamp"><strong>Introduction to Thermodynamics - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-course-introduction-and-newtonian-mechanics-109943?ref=freecodecamp"><strong>Introduction to Newtonian Mechanics - Lecture 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lessons-from-the-regulatory-process-for-medical-software-for-image-analysis-and-ai-180518?ref=freecodecamp"><strong>Lessons From the Regulatory Process for Medical Software for Image Analysis and AI</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-model-based-deep-learning-beyond-unrolling-182518?ref=freecodecamp"><strong>Model-Based Deep Learning - Beyond Unrolling</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-nih-perspective-scientific-program-funding-opportunities-related-to-advanced-imaging-ai-at-nibib-182524?ref=freecodecamp"><strong>NIH Perspective: Scientific Program and Funding Opportunities for Advanced Imaging and AI at NIBIB</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-integrating-image-quality-models-into-deep-ct-denoising-182527?ref=freecodecamp"><strong>Integrating Image Quality Models into Deep CT Denoising</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-prior-knowledge-driven-machine-intelligence-to-maximize-the-potential-of-low-dose-spectral-ct-182538?ref=freecodecamp"><strong>Prior Knowledge-Driven Machine Intelligence to Maximize the Potential of Low-Dose Spectral CT</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-cloud-patient-experience-and-mobility-in-healthcare-living-in-the-future-290101?ref=freecodecamp"><strong>The Cloud Patient Experience and Mobility in Healthcare - Living in the Future</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-thoracic-imaging-of-cvid-and-glild-305573?ref=freecodecamp"><strong>Thoracic Imaging of CVID and GLILD</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-3-is-the-american-republic-on-the-eve-of-destruction-or-renewal-305586?ref=freecodecamp"><strong>Is the American Republic on the Eve of Destruction or Renewal? - Class 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-yale-the-early-republic-and-the-1831-black-college-guest-lecture-by-michael-morand-325880?ref=freecodecamp"><strong>Yale, the Early Republic, and the 1831 Black College</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-7-antebellum-yale-and-the-coming-of-the-civil-war-326451?ref=freecodecamp"><strong>Antebellum Yale and the Coming of the Civil War - Class 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class10-mexico-will-poison-us-war-of-conquest-the-compromise-and-kansas-nebraska-350090?ref=freecodecamp"><strong>"Mexico Will Poison Us": War of Conquest, the Compromise, and Kansas-Nebraska - Class 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class15-never-call-retreat-military-turning-points-and-why-the-north-won-the-war-364854?ref=freecodecamp"><strong>Never Call Retreat: Military Turning Points and Why the North Won the Civil War - Class 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-16-homefronts-and-battlefronts-the-social-impact-of-total-war-377635?ref=freecodecamp"><strong>Homefronts and Battlefronts: The Social Impact of Total War - Class 16</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class18-days-of-jubilee-the-process-of-emancipation-and-union-victory-378047?ref=freecodecamp"><strong>Days of Jubilee: The Process of Emancipation and Union Victory - Class 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-20-andrew-johnson-the-radicals-and-the-second-american-revolution-379474?ref=freecodecamp"><strong>Andrew Johnson, the Radicals, and the Second American Revolution - Class 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-21-retreat-from-reconstruction-the-grant-era-and-paths-to-southern-redemption-381398?ref=freecodecamp"><strong>Retreat from Reconstruction: The Grant Era and Paths to Southern Redemption - Class 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-how-do-you-refer-to-treatment-for-substance-use-disorders-applying-the-riptear-framework-464923?ref=freecodecamp"><strong>How Do You Refer to Treatment for Substance Use Disorders - Applying the RIPTEAR Framework</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-1-how-do-you-screen-to-determine-risk-addiction-treatment-course-473824?ref=freecodecamp"><strong>How Do You Screen to Determine Risk - Addiction Treatment Course 2.1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-4-4-what-medications-are-available-for-alcohol-use-disorder-addiction-treatment-course-473825?ref=freecodecamp"><strong>What Medications Are Available for Alcohol Use Disorder - Addiction Treatment Course 4.4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-3-how-do-you-have-patient-centered-conversations-addiction-treatment-course-473828?ref=freecodecamp"><strong>How Do You Have Patient-Centered Conversations - Addiction Treatment Course 1.3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-2-what-can-we-learn-from-the-past-addiction-treatment-course-473831?ref=freecodecamp"><strong>What Can We Learn from the Past? - Addiction Treatment Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-2-how-do-you-clarify-treatment-goals-addiction-treatment-course-473832?ref=freecodecamp"><strong>How Do You Clarify Treatment Goals? - Addiction Treatment Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-what-if-parents-disagree-creating-a-nurturing-family-environment-with-dr-alan-kazdin-474271?ref=freecodecamp"><strong>What If Parents Disagree? Creating a Nurturing Family Environment - 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-09-point-programs-using-token-economies-to-build-positive-child-behaviors-with-dr-alan-kazdin-474276?ref=freecodecamp"><strong>Point Programs - Using Token Economies to Build Positive Child Behaviors - 09</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-06-how-to-use-simulation-with-your-kids-to-reduce-tantrums-with-dr-alan-kazdin-474285?ref=freecodecamp"><strong>How to Use Simulation with Your Kids to Reduce Tantrums - 06</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-from-degeneration-to-dictation-consistent-reporting-of-lumbar-spine-mr-474621?ref=freecodecamp"><strong>From Degeneration to Dictation - Consistent Reporting of Lumbar Spine MR</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-module-8-onyeka-obiocha-on-venture-funding-and-social-impact-social-entrepreneurship-interview-475145?ref=freecodecamp"><strong>Venture Funding and Social Impact - Social Entrepreneurship Interview - Module 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-module-7-trishan-panch-on-sustainable-business-models-social-entrepreneurship-interview-475146?ref=freecodecamp"><strong>Trishan Panch on Sustainable Business Models - Social Entrepreneurship Interview - Module 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-module-6-camila-gueiza-chavez-on-measuring-community-power-social-entrepreneurship-interview-475147?ref=freecodecamp"><strong>Measuring Community Power in Social Entrepreneurship - Camila Güiza-Chavez Interview - Module 6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-module-5-doug-rauch-on-how-customer-feedback-built-daily-table-social-entrepreneurship-interview-475148?ref=freecodecamp"><strong>How Customer Feedback Built Daily Table - Social Entrepreneurship Interview - Module 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-module-4-ruchit-nagar-on-digital-health-innovation-in-india-social-entrepreneurship-interview-475149?ref=freecodecamp"><strong>Digital Health Innovation in India - Social Entrepreneurship Interview - Module 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-module-3-adrienne-abbate-on-engaging-the-community-for-impact-social-entrepreneurship-interview-475150?ref=freecodecamp"><strong>Engaging the Community for Impact - Social Entrepreneurship Interview - Module 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-802-demystify-financing-funding-sources-for-your-social-venture-social-entrepreneurship-course-475158?ref=freecodecamp"><strong>Demystify Financing - Funding Sources for Your Social Venture</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-705-achieving-operational-efficiency-for-your-social-venture-social-entrepreneurship-course-475161?ref=freecodecamp"><strong>Achieving Operational Efficiency for Your Social Venture - Social Entrepreneurship Course - 705</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-3-software-testing-essentials-finding-bugs-ensuring-quality-in-medical-software-course-476803?ref=freecodecamp"><strong>Software Testing Essentials - Finding Bugs and Ensuring Quality in Medical Software - 8.3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-4-finding-your-first-paying-customer-the-pillpack-success-story-medical-software-course-478135?ref=freecodecamp"><strong>Finding Your First Paying Customer - The Pillpack Success Story - Medical Software Course 12.4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-lecture-class-1-the-road-to-250-483302?ref=freecodecamp"><strong>America at 250: A History - The Road to 250 - Class 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-master-informational-interviews-to-land-your-dream-role-job-searching-with-purpose-488229?ref=freecodecamp"><strong>Master Informational Interviews to Land Your Dream Role - Job Searching with Purpose</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-lecture-class-12-the-road-to-250-two-constitutions-secession-and-war-1860-1862-494719?ref=freecodecamp"><strong>The Road to 250 - Two Constitutions, Secession and War, 1860-1862 - Class 12</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-low-cost-high-nutrition-eating-for-graduate-students-grocery-shopping-500406?ref=freecodecamp"><strong>Low-Cost, High-Nutrition Eating for Graduate Students - Grocery Shopping</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-low-cost-high-nutrition-eating-for-graduate-students-healthy-recipes-500407?ref=freecodecamp"><strong>Low-Cost, High-Nutrition Eating for Graduate Students - Healthy Recipes</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-low-cost-high-nutrition-eating-for-graduate-students-meal-planning-500409?ref=freecodecamp"><strong>Low-Cost, High-Nutrition Eating for Graduate Students - Meal Planning</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-fundamentals-of-physics-ii-with-ramamurti-shankar-512867?ref=freecodecamp"><strong>Fundamentals of Physics II - Electricity, Magnetism, Optics and Quantum Mechanics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-financial-theory-with-john-geanakoplos-512868?ref=freecodecamp"><strong>Financial Theory</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-regicide-and-republic-1647-1660-109342?ref=freecodecamp"><strong>Regicide and Republic in England - 1647-1660</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-imperfect-information-information-sets-and-sub-game-perfection-109469?ref=freecodecamp"><strong>Imperfect Information: Information Sets and Sub-game Perfection in Game Theory - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-35-acyl-insertions-and-gr-a-reactivity-109585?ref=freecodecamp"><strong>Acyl Insertions and Alpha-Reactivity in Organic Chemistry - Lecture 35</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-addition-to-form-three-membered-rings-carbenoids-and-epoxidation-109597?ref=freecodecamp"><strong>Addition to Form Three-Membered Rings - Carbenoids and Epoxidation</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-carbocations-and-the-mechanism-of-electrophilic-addition-to-alkenes-and-alkynes-109598?ref=freecodecamp"><strong>Carbocations and the Mechanism of Electrophilic Addition to Alkenes and Alkynes - Lecture 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-cation-intermediates-alkenes-formation-addition-and-stability-109599?ref=freecodecamp"><strong>Cation Intermediates and Alkene Reactions - Formation, Addition, and Stability</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-irving-fisher-s-impatience-theory-of-interest-109629?ref=freecodecamp"><strong>Irving Fisher's Impatience Theory of Interest - Financial Theory Lecture</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-the-case-of-mister-balram-halwai-109634?ref=freecodecamp"><strong>Capitalism and Inequality in Aravind Adiga's The White Tiger - Lecture 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-26-van-t-hoff-s-tetrahedral-carbon-and-chirality-109712?ref=freecodecamp"><strong>Van't Hoff's Tetrahedral Carbon and Chirality - Lecture 26</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-the-coming-of-the-great-war-109757?ref=freecodecamp"><strong>The Coming of the Great War - Origins and Alliances in Early 20th Century Europe</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-the-enlightenment-and-the-public-sphere-109758?ref=freecodecamp"><strong>The Enlightenment and the Public Sphere - European Civilization 1648-1945</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-19-the-new-historicism-109771?ref=freecodecamp"><strong>The New Historicism in Literary Theory - Lecture 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-28-ecological-communities-109786?ref=freecodecamp"><strong>Ecological Communities - Evolution of Concepts and Modern Perspectives</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-20-coevolution-109792?ref=freecodecamp"><strong>Principles of Evolution, Ecology and Behavior: Coevolution - Lecture 20</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-the-paris-commune-and-its-legacy-109833?ref=freecodecamp"><strong>The Paris Commune and Its Legacy - France Since 1871</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-the-popular-front-109835?ref=freecodecamp"><strong>The Popular Front in Interwar France - Lecture 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-18-simple-harmonic-motion-cont-and-introduction-to-waves-109933?ref=freecodecamp"><strong>Simple Harmonic Motion and Introduction to Waves - Lecture 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-the-taylor-series-and-other-mathematical-concepts-109937?ref=freecodecamp"><strong>The Taylor Series, Complex Numbers, and Simple Harmonic Motion - Lecture 16</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-science-and-practice-of-image-based-screening-180528?ref=freecodecamp"><strong>The Science and Practice of Image-Based Screening</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-imaging-opportunities-around-cancer-moonshot-platforms-at-md-anderson-cancer-center-180534?ref=freecodecamp"><strong>Imaging Opportunities Around Cancer Moonshot Platforms at MD Anderson Cancer Center</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-deep-subspace-learning-for-dynamic-mr-image-reconstruction-182531?ref=freecodecamp"><strong>Deep Subspace Learning for Dynamic MR Image Reconstruction</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-vr-ar-in-ir-mixed-reality-in-medicine-284114?ref=freecodecamp"><strong>VR/AR in IR - Mixed Reality in Medicine</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-leveraging-better-allyship-for-gender-equity-in-academic-medicine-284380?ref=freecodecamp"><strong>Leveraging Better Allyship for Gender Equity in Academic Medicine</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-updates-on-treatment-response-assessment-after-locoregional-therapy-to-the-liver-285971?ref=freecodecamp"><strong>Updates on Treatment Response Assessment After Locoregional Therapy to the Liver</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-11-no-rights-dred-scott-bleeding-kansas-and-the-impending-crisis-of-the-union-353334?ref=freecodecamp"><strong>No Rights: Dred Scott, Bleeding Kansas, and the Impending Crisis of the Union - Class 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-historical-structure-of-the-atom-460817?ref=freecodecamp"><strong>Historical Structure of the Atom</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-how-do-you-evaluate-substance-use-disorders-the-riptear-assessment-framework-464924?ref=freecodecamp"><strong>How Do You Evaluate Substance Use Disorders? The RIPTEAR Assessment Framework</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-5-what-happens-when-providers-get-sick-addiction-treatment-course-474274?ref=freecodecamp"><strong>What Happens When Providers Get Sick - Addiction Treatment Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-04-how-to-use-antecedents-to-prompt-the-right-behaviors-with-dr-alan-kazdin-474284?ref=freecodecamp"><strong>How to Use Antecedents to Prompt the Right Behaviors - 04</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-troubleshooting-part-2-what-to-do-when-you-re-stuck-with-dr-alan-kazdin-474286?ref=freecodecamp"><strong>Troubleshooting - Part 2 What to Do When You're Stuck - 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1002-how-to-craft-the-perfect-pitch-deck-for-your-social-venture-social-entrepreneurship-course-475155?ref=freecodecamp"><strong>How to Craft the Perfect Pitch Deck for Your Social Venture - Social Entrepreneurship Course - 1002</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-804-how-social-impact-funding-evolved-from-charity-to-investment-social-entrepreneurship-course-475157?ref=freecodecamp"><strong>How Social Impact Funding Evolved - From Charity to Investment - Social Entrepreneurship Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-705-achieving-operational-efficiency-for-social-entrepreneurs-social-entrepreneurship-course-475159?ref=freecodecamp"><strong>Achieving Operational Efficiency for Social Entrepreneurs - Social Entrepreneurship Course - 705</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-707-the-mcdonald-s-of-healthcare-aravind-eye-systems-case-study-social-entrepreneurship-course-475160?ref=freecodecamp"><strong>The McDonald's of Healthcare - Aravind Eye Systems Case Study - Social Entrepreneurship Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-404-evaluate-your-social-enterprise-idea-aaaq-theory-of-change-social-entrepreneurship-course-475164?ref=freecodecamp"><strong>Evaluate Your Social Enterprise Idea - AAAQ and Theory of Change</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-3-learn-medical-software-validation-fda-s-foundational-gpsv-guidance-medical-software-course-475165?ref=freecodecamp"><strong>Learn Medical Software Validation - FDA's Foundational GPSV Guidance - Medical Software Course 2.3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-1-the-software-design-document-requirements-to-implementation-medical-software-course-476288?ref=freecodecamp"><strong>The Software Design Document - Requirements to Implementation - Medical Software Course 7.1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-7-2-the-ultimate-software-design-document-template-guide-medical-software-course-476289?ref=freecodecamp"><strong>The Ultimate Software Design Document Template Guide - Medical Software Course - 7.2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-6-unlocking-precision-srs-for-image-guided-neurosurgery-igns-medical-software-course-476290?ref=freecodecamp"><strong>Unlocking Precision - SRS for Image-Guided Neurosurgery Medical Software Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-5-mastering-your-srs-template-for-medical-software-course-476291?ref=freecodecamp"><strong>Mastering Your SRS Template for Medical Software Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-1-unlocking-medical-software-life-cycles-the-iec-62304-standard-medical-software-course-476294?ref=freecodecamp"><strong>Unlocking Medical Software - Life Cycles and the IEC 62304 Standard</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-2-medical-software-life-cycles-agile-development-medical-software-course-476295?ref=freecodecamp"><strong>Medical Software Life Cycles - Agile Development - 5.2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-2-navigating-medical-software-regulatory-risk-lifecycle-essentials-medical-software-course-476302?ref=freecodecamp"><strong>Navigating Medical Software - Regulatory, Risk and Lifecycle Essentials - 1.2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-3-avoid-healthcare-startup-failure-find-your-problem-customers-medical-software-course-478134?ref=freecodecamp"><strong>Avoid Healthcare Startup Failure - Find Your Problem and Customers - 12.3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-12-1-unlocking-growth-the-key-value-drivers-in-digital-medicine-medical-software-course-478137?ref=freecodecamp"><strong>Unlocking Growth - The Key Value Drivers in Digital Medicine - 12.1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-6-navigating-ai-ml-challenges-in-medical-software-development-medical-software-course-478138?ref=freecodecamp"><strong>Navigating AI/ML Challenges in Medical Software Development - 11.6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-3-demystifying-deep-learning-neural-networks-med-ai-applications-medical-software-course-478139?ref=freecodecamp"><strong>Demystifying Deep Learning - Neural Networks and Medical AI Applications - 11.3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-7-from-guinness-to-clinical-trials-the-story-of-t-distribution-medical-software-course-478144?ref=freecodecamp"><strong>From Guinness to Clinical Trials - The Story of T-Distribution - 9.7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-1-from-coin-flips-to-clinical-trials-introduction-to-probability-medical-software-course-478147?ref=freecodecamp"><strong>From Coin Flips to Clinical Trials - Introduction to Probability - Medical Software Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-1-steve-girvin-introduction-to-classical-and-quantum-errors-corrections-479328?ref=freecodecamp"><strong>Introduction to Classical and Quantum Error Correction - Class 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-1-low-earth-orbit-leo-satellites-speed-rocket-science-for-everyone-with-yale-s-marla-geha-479841?ref=freecodecamp"><strong>Low Earth Orbit - LEO Satellites and Speed - 2.1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-podcast-episode-1-john-adams-to-do-list-and-common-sense-485170?ref=freecodecamp"><strong>America at 250 - John Adams' To-do List and Common Sense - Episode 1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-lecture-class-7-what-kind-of-nation-democracy-hamilton-jefferson-and-more-488911?ref=freecodecamp"><strong>What Kind of Nation? Democracy, Hamilton, Jefferson, and More - Class 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-a-history-class-10-the-mexican-war-and-its-aftermath-compromise-or-armistice-492659?ref=freecodecamp"><strong>America at 250 - A History - The Mexican War and its Aftermath - Compromise or Armistice - Class 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-a-history-class-11-road-to-disunion-politics-dred-scott-the-crisis-of-1850s-493273?ref=freecodecamp"><strong>Road to Disunion - Politics, Dred Scott, and the Crisis of 1850s - Class 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-class-16-gilded-age-and-the-aftermath-of-reconstruction-south-north-and-west-498395?ref=freecodecamp"><strong>Gilded Age and the Aftermath of Reconstruction - South, North, and West - Class 16</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-devane-lectures-america-at-250-a-history-class-17-a-violent-reunion-500404?ref=freecodecamp"><strong>A Violent Reunion - The Lost Cause, New South and Origins of Jim Crow - Class 17</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-low-cost-high-nutrition-eating-for-graduate-students-nutrition-basics-500410?ref=freecodecamp"><strong>Low-Cost, High-Nutrition Eating for Graduate Students - Nutrition Basics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-class-19-money-power-and-progressivism-503647?ref=freecodecamp"><strong>Money, Power, and Progressivism - America at 250 Class 19</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-class-23-race-rights-and-resistance-508301?ref=freecodecamp"><strong>Race, Rights, and Resistance - America at 250 Class 23</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-a-history-class-24-reagan-s-america-509664?ref=freecodecamp"><strong>America at 250 - A History - Reagan's America - Class 24</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hemodialysis-kinetics-101-512860?ref=freecodecamp"><strong>Hemodialysis Kinetics 101</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-evolution-and-medicine-2015-with-stephen-stearns-512863?ref=freecodecamp"><strong>Evolution and Medicine</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-freshman-organic-chemistry-ii-with-michael-mcbride-512865?ref=freecodecamp"><strong>Freshman Organic Chemistry II</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-foundations-of-modern-social-theory-with-ivan-szelenyi-512866?ref=freecodecamp"><strong>Foundations of Modern Social Theory</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-freshman-organic-chemistry-with-j-michael-mcbride-512870?ref=freecodecamp"><strong>Freshman Organic Chemistry - Structure and Mechanism in Organic Chemistry</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-34-sharpless-oxidation-catalysts-and-the-conformation-of-cycloalkanes-109388?ref=freecodecamp"><strong>Sharpless Oxidation Catalysts and Cycloalkane Conformations - Lecture 34</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-the-expression-of-variation-reaction-norms-109416?ref=freecodecamp"><strong>The Expression of Variation - Reaction Norms - Lecture 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-13-sequential-games-moral-hazard-incentives-and-hungry-lions-109467?ref=freecodecamp"><strong>Sequential Games: Moral Hazard, Incentives, and Backward Induction</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-backward-induction-reputation-and-duels-109470?ref=freecodecamp"><strong>Backward Induction - Reputation and Duels in Game Theory - Lecture 16</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-23-twilight-of-the-polis-109478?ref=freecodecamp"><strong>Twilight of the Polis - The Rise of Theban Hegemony</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-36-gr-a-reactivity-and-condensation-reactions-109584?ref=freecodecamp"><strong>Alpha-Reactivity and Condensation Reactions in Organic Chemistry - Lecture 36</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-epoxide-opening-dipolar-cycloaddition-and-ozonolysis-109596?ref=freecodecamp"><strong>Epoxide Opening, Dipolar Cycloaddition, and Ozonolysis in Organic Chemistry</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-16-backward-induction-and-optimal-stopping-times-109625?ref=freecodecamp"><strong>Backward Induction and Optimal Stopping Times in Financial Theory - Lecture 16</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-tropical-medicine-as-a-discipline-109662?ref=freecodecamp"><strong>Tropical Medicine as a Discipline - Historical Development and Colonial Context</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-the-structures-of-power-109680?ref=freecodecamp"><strong>The Structures of Power in Early Modern England - Politics, Religion, and Society under the Tudors</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-21-berzelius-to-liebig-and-woehler-1805-1832-109711?ref=freecodecamp"><strong>Berzelius, Gay-Lussac, and Davy - Advances in Chemistry from 1805-1832 - Lecture 21</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-29-preparing-single-enantiomers-and-the-mechanism-of-optical-rotation-109714?ref=freecodecamp"><strong>Preparing Single Enantiomers and the Mechanism of Optical Rotation</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-orbital-correction-and-plum-pudding-molecules-109717?ref=freecodecamp"><strong>Orbital Correction and Plum-Pudding Molecules in Organic Chemistry - Lecture 11</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-24-twilight-of-the-polis-cont-and-conclusion-109871?ref=freecodecamp"><strong>The Rise of Philip of Macedon and the Battle of Chaeronea - Lecture 24</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-17-simple-harmonic-motion-109935?ref=freecodecamp"><strong>Simple Harmonic Motion - Fundamentals of Physics</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-theoretical-interpretation-of-the-acid-for-stabilizing-deep-reconstruction-networks-182532?ref=freecodecamp"><strong>Theoretical Interpretation of the ACID for Stabilizing Deep Reconstruction Networks</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-fast-uncertainty-estimation-and-diffusion-models-in-pet-182535?ref=freecodecamp"><strong>Fast Uncertainty Estimation and Diffusion Models in PET</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-14-troubleshooting-what-to-try-when-the-techniques-aren-t-working-with-dr-alan-kazdin-474272?ref=freecodecamp"><strong>Troubleshooting - What to Try When the Techniques Aren't Working - 14</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-702-how-do-social-enterprises-make-money-revenue-models-social-entrepreneurship-course-475162?ref=freecodecamp"><strong>How Do Social Enterprises Make Money? Revenue Models - Social Entrepreneurship Course - 702</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-507-how-daily-table-fights-food-deserts-waste-social-entrepreneurship-course-475163?ref=freecodecamp"><strong>How Daily Table Fights Food Deserts and Waste - Social Entrepreneurship Course - 507</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-1-master-medical-software-construction-coding-testing-risk-mgmt-medical-software-course-476286?ref=freecodecamp"><strong>8.1 | Master Medical Software Construction: Coding, Testing &amp; Risk Mgmt | Medical Software Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-6-2-uncovering-real-needs-from-user-voice-to-stakeholders-in-medical-software-course-476292?ref=freecodecamp"><strong>Uncovering Real Needs - From User Voice to Stakeholders in Medical Software Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-5-4-navigating-the-medical-software-life-cycle-a-complete-guide-medical-software-course-476293?ref=freecodecamp"><strong>Navigating the Medical Software Life Cycle - A Complete Guide - 5.4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-3-6-protect-your-patients-cybersecurity-essentials-for-medical-software-course-476296?ref=freecodecamp"><strong>Protect Your Patients - Cybersecurity Essentials for Medical Software Course</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-5-navigating-medical-software-regulations-your-guide-to-approval-medical-software-course-476298?ref=freecodecamp"><strong>Navigating Medical Software Regulations - Your Guide to Approval - 2.5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-1-from-food-to-software-the-fda-s-evolving-mission-history-medical-software-course-476299?ref=freecodecamp"><strong>From Food to Software - The FDA's Evolving Mission and History - Medical Software Course 2.1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-1-1-diving-into-medical-software-your-course-introduction-medical-software-course-476301?ref=freecodecamp"><strong>Diving Into Medical Software - Your Course Introduction - 1.1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-11-4-navigating-ai-ml-regulations-global-guidance-for-medical-software-course-478140?ref=freecodecamp"><strong>Navigating AI/ML Regulations - Global Guidance for Medical Software Course - 11.4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-5-medical-software-s-lifespan-maintenance-safe-retirement-strategy-medical-software-course-478142?ref=freecodecamp"><strong>Medical Software's Lifespan - Maintenance and Safe Retirement Strategy</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-10-1-unlocking-medical-software-validation-efficacy-fda-clinical-eval-medical-software-course-478143?ref=freecodecamp"><strong>Unlocking Medical Software Validation - Efficacy, FDA, and Clinical Evaluation - 10.1</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9-5-signal-detection-roc-curves-optimizing-medical-software-decisions-medical-software-course-478146?ref=freecodecamp"><strong>Signal Detection and ROC Curves - Optimizing Medical Software Decisions - 9.5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-5-essential-medical-software-verification-testing-strategies-medical-software-course-478148?ref=freecodecamp"><strong>Essential Medical Software Verification and Testing Strategies - 8.5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-7-michael-hatridge-measurement-in-cqed-479325?ref=freecodecamp"><strong>Measurement in Circuit Quantum Electrodynamics - Class 7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-6-aleksander-kubica-decoding-problem-and-statistical-mechanical-mapping-479326?ref=freecodecamp"><strong>Decoding Problem and Statistical-Mechanical Mapping - Class 6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-5-shruti-puri-erasure-errors-and-rydberg-atoms-479327?ref=freecodecamp"><strong>Erasure Errors and Rydberg Atoms - Class 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-2-yongshan-ding-quantum-codes-stabilizers-and-computation-479329?ref=freecodecamp"><strong>Quantum Codes, Stabilizers, and Computation - Class 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-4-takahiro-tsunoda-hardware-efficient-encodings-cat-qubits-dual-rail-qubits-479330?ref=freecodecamp"><strong>Hardware Efficient Encodings - Cat Qubits and Dual-Rail Qubits - Class 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-class-3-daniel-weiss-introduction-to-bosonic-modes-and-kraus-operators-479331?ref=freecodecamp"><strong>Introduction to Bosonic Modes and Kraus Operators - Class 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-7-deeper-dive-kepler-s-law-orbits-rocket-science-for-everyone-with-yale-s-marla-geha-479836?ref=freecodecamp"><strong>Deeper Dive - Kepler's Law and Orbits - 2.7</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-lecture-class-2-revolutionary-and-not-so-revolutionary-beginnings-483303?ref=freecodecamp"><strong>Revolutionary and Not So Revolutionary Beginnings - Class 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-lecture-class-3-declaring-independence-484758?ref=freecodecamp"><strong>Declaring Independence - Class 3</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-lecture-class-4-what-kind-of-union-485437?ref=freecodecamp"><strong>What Kind of Union? - Class 4</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-lecture-class-8-jacksonian-democracy-488910?ref=freecodecamp"><strong>Jacksonian Democracy - Class 8</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-a-history-class-13-union-victory-confederate-defeat-and-emancipation-495197?ref=freecodecamp"><strong>Union Victory, Confederate Defeat, and Emancipation - Class 13</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-a-history-class-14-reconstruction-andrew-johnson-vs-the-radical-republicans-495914?ref=freecodecamp"><strong>Reconstruction - Andrew Johnson vs. the Radical Republicans - Class 14</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-podcast-episode-5-the-cause-of-the-civil-war-496541?ref=freecodecamp"><strong>The Cause of the Civil War - America at 250 Podcast Episode 5</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-class-15-the-defeat-of-reconstruction-1870-1877-and-beyond-497831?ref=freecodecamp"><strong>The Defeat of Reconstruction, 1870-1877 and Beyond - America at 250, Class 15</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-podcast-episode-6-reconstruction-498923?ref=freecodecamp"><strong>America at 250 - Reconstruction - Episode 6</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-class-18-melting-pot-or-guarded-gate-501543?ref=freecodecamp"><strong>America at 250 - Melting Pot or Guarded Gate - Class 18</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-a-history-class-22-anticommunism-and-the-american-way-506402?ref=freecodecamp"><strong>America at 250: A History - Anticommunism and the American Way - Class 22</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-america-at-250-podcast-episode-10-left-and-right-in-the-60s-and-70s-510488?ref=freecodecamp"><strong>Left and Right in the 60s and 70s - Episode 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-america-at-250-class-25-making-sense-of-the-millennium-510962?ref=freecodecamp"><strong>Making Sense of the Millennium - Class 25</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-devane-america-at-250-class-26-meanings-on-the-eve-of-2026-511807?ref=freecodecamp"><strong>America at 250 - Meanings on the Eve of 2026 - Class 26</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-introduction-to-green-chemistry-module-2-512862?ref=freecodecamp"><strong>Introduction to Green Chemistry - Chemical Foundation - Module 2</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-10-sonata-allegro-and-theme-and-variations-528784?ref=freecodecamp"><strong>Sonata-Allegro and Theme and Variations - Lecture 10</strong></a> from <em>Yale University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-9-sonata-allegro-form-mozart-and-beethoven-528785?ref=freecodecamp"><strong>Sonata-Allegro Form - Mozart and Beethoven - Lecture 9</strong></a> from <em>Yale University</em></p>
</li>
</ul>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Create Beautiful Box Shadows in HTML and CSS ]]>
                </title>
                <description>
                    <![CDATA[ By Manu Arora Whenever you're designing a card in HTML, box shadows play a vital role in making the cards stand out.  Whether its a pricing page card or even an e-commerce product listing card, box shadows can make or break the look and the entire me... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-create-beautiful-box-shadows-in-html-and-css/</link>
                <guid isPermaLink="false">66d4601d3bc3ab877dae221c</guid>
                
                    <category>
                        <![CDATA[ CSS ]]>
                    </category>
                
                    <category>
                        <![CDATA[ HTML ]]>
                    </category>
                
                    <category>
                        <![CDATA[ General Programming ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tailwind ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Web Design ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ freeCodeCamp ]]>
                </dc:creator>
                <pubDate>Tue, 04 Jan 2022 16:57:11 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2022/01/Copy-of-Blue-and-White-Modern-Corporate-Travel-YouTube-Thumbnail.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>By Manu Arora</p>
<p>Whenever you're designing a card in HTML, box shadows play a vital role in making the cards stand out. </p>
<p>Whether its a pricing page card or even an e-commerce product listing card, box shadows can make or break the look and the entire message that that cards need to convey.</p>
<p>Today, let's understand how to make beautiful box shadows and how to make them stand out.</p>
<h2 id="heading-understanding-box-shadow-syntax"><strong>Understanding Box Shadow Syntax</strong></h2>
<p>Here's the basic syntax for a box shadow:</p>
<pre><code class="lang-css"><span class="hljs-selector-tag">box-shadow</span>: 1<span class="hljs-selector-tag">px</span> 2<span class="hljs-selector-tag">px</span> 3<span class="hljs-selector-tag">px</span> 4<span class="hljs-selector-tag">px</span> <span class="hljs-selector-tag">rgba</span>(20,20,20,0<span class="hljs-selector-class">.4</span>);
</code></pre>
<p>There are 5 important parts in the above code snippet. Let's understand what they mean:</p>
<ol>
<li>Horizontal Offset: <code>1px</code> in the above example. This indicates how far the shadow will be from the card horizontally. Positive means to the right, negative means to the left.</li>
<li>Vertical Offset: <code>2px</code> in the above example. This indicates how far the shadow will be from the card vertically. Positive means to the bottom, negative means to the top.</li>
<li>Blur: <code>3px</code> in the above example. This indicates how blurry the shadow will look. Higher radius means more blur.</li>
<li>Spread: <code>4px</code> in the above example. This indicates how far the shadow will spread in all directions.</li>
<li>Color: <code>rgba(20,20,20,0.4)</code> in the above example. This determines the color of the shadow. If not supplied, the default text color will be used. Color values can be Hex, RGB, or HSL.</li>
</ol>
<p>Let's see the above code in action:</p>
<div class="embed-wrapper">
        <iframe width="100%" height="350" src="https://codepen.io/manuarora700/embed/BawrqZZ" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="CodePen embed" scrolling="no" allowtransparency="true" allowfullscreen="true" loading="lazy"></iframe></div>
<h2 id="heading-how-box-shadows-affect-cards">How Box Shadows Affect Cards</h2>
<p>Consider the two examples here:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2022/01/Screenshot-2022-01-02-at-7.34.18-PM.png" alt="Image" width="600" height="400" loading="lazy"></p>
<p>The first example has no box shadow, while the second example has a box shadow. The second one appears to be popping out of the screen (that makes it stand out a little as compared to the first one.)  </p>
<p>So, if you need your cards to stand out, box shadows can help you make them really pop.</p>
<p>Let's say you're building an e-commerce application and you want your product cards to stand out. Box shadows can help you achieve this and get your customers to notice your products. </p>
<p>Even if your web application requires your cards to be subtle, you can always go with subtle box shadows to give a more pleasing aesthetic feel to the cards.</p>
<h2 id="heading-how-to-use-multiple-layers-of-box-shadows"><strong>How to Use Multiple Layers Of Box Shadows</strong></h2>
<p>You can use more than one layer of box shadows in your cards – and you'll likely do this a lot.</p>
<p>The syntax to create multiple layers of box shadows look like this:</p>
<pre><code class="lang-css"><span class="hljs-selector-tag">box-shadow</span>: <span class="hljs-selector-tag">rgba</span>(240, 46, 170, 0<span class="hljs-selector-class">.4</span>) <span class="hljs-selector-tag">-5px</span> 5<span class="hljs-selector-tag">px</span>, <span class="hljs-selector-tag">rgba</span>(240, 46, 170, 0<span class="hljs-selector-class">.3</span>) <span class="hljs-selector-tag">-10px</span> 10<span class="hljs-selector-tag">px</span>, <span class="hljs-selector-tag">rgba</span>(240, 46, 170, 0<span class="hljs-selector-class">.2</span>) <span class="hljs-selector-tag">-15px</span> 15<span class="hljs-selector-tag">px</span>, <span class="hljs-selector-tag">rgba</span>(240, 46, 170, 0<span class="hljs-selector-class">.1</span>) <span class="hljs-selector-tag">-20px</span> 20<span class="hljs-selector-tag">px</span>, <span class="hljs-selector-tag">rgba</span>(240, 46, 170, 0<span class="hljs-selector-class">.05</span>) <span class="hljs-selector-tag">-25px</span> 25<span class="hljs-selector-tag">px</span>;
</code></pre>
<p>Each individual box shadow is separated by a comma (<code>,</code>). You can add as many as you want but I recommend to limit yourself to at most 5.  </p>
<p>The above example looks something like this:</p>
<div class="embed-wrapper">
        <iframe width="100%" height="350" src="https://codepen.io/manuarora700/embed/WNZzaJJ" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="CodePen embed" scrolling="no" allowtransparency="true" allowfullscreen="true" loading="lazy"></iframe></div>
<p>Notice the 5 layers beneath the cards that are in descending order of opacity. When done correctly, it can give a different look altogether to your cards. </p>
<p>Now this specific card might not look perfect because it is designed to explain a certain concept. But let's make it more interesting by adding colors to the shadows.  </p>
<p>Remember we talked about adding colors by using the <code>rgba()</code> syntax? Let's put it to use here.</p>
<div class="embed-wrapper">
        <iframe width="100%" height="350" src="https://codepen.io/manuarora700/embed/jOGzeev" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="CodePen embed" scrolling="no" allowtransparency="true" allowfullscreen="true" loading="lazy"></iframe></div>
<p>Here, Instead of using the values <code>rgba(0,0,0,0,2)</code> which indicates the color (Black in this snippet), I replaced it with <code>rgba(240, 46, 170, 0.2)</code> with varying opacity in decreasing order. This is one way of adding colors – the limit is your imagination.</p>
<h2 id="heading-how-to-use-colored-box-shadows"><strong>How to Use Colored Box Shadows</strong></h2>
<p>Even though colors can help you by making your cards stand out visually, they're not always the best option. Sometimes, a plain gray shadow works wonders on a white background. But this totally depends on the theme of your website.</p>
<p>Consider a simple blog application with lots of whitespace and general text content. If you have a card that displays blogs on the website, the best way will be to add a simple yet subtle box shadow to the cards to give them a good pop.  </p>
<p>For example: consider the below cards taken directly from my <a target="_blank" href="https://manuarora.in">website</a>, where I have listed out all the blogs that I've written for freeCodeCamp so far.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2022/01/Screenshot-2022-01-02-at-7.57.17-PM.png" alt="Image" width="600" height="400" loading="lazy"></p>
<p>My website is simple and does one job – it showcases my personality and what I do. If I go on to add a red box shadow to the above boxes, it might not look that good. But if I use gray shadow with some amount of blur, it just helps it stand out without being too in-your-face.</p>
<p>So how do you use them correctly? Let's look at an example.</p>
<div class="embed-wrapper">
        <iframe width="100%" height="350" src="https://codepen.io/manuarora700/embed/jOGzeev" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="CodePen embed" scrolling="no" allowtransparency="true" allowfullscreen="true" loading="lazy"></iframe></div>
<p>In the above example:</p>
<ul>
<li>Background color: <code>rgb(251 113 133);</code></li>
<li>Box Shadow: <code>box-shadow: rgba(254, 205, 211, 0.1) 0px 4px 16px, rgba(254,205,211,0.1) 0px 8px 24px, rgba(254,205,211, 0.1) 0px 16px 56px;</code></li>
</ul>
<p>The box shadow is a lighter shade of the background color that we used in the above example. And there are three layers of shadows. </p>
<p>When we have a background color, it's generally a good idea to have colored shadows of a lighter shade of the background color that is being used. This looks better than having a plain white or black shadow.</p>
<h2 id="heading-how-to-use-inner-shadows"><strong>How to Use Inner Shadows</strong></h2>
<p>All the above examples covered shadows that were 'outside' of the card that we were trying to style. But what if we wanted to have shadows on the inside?</p>
<p>You can use <code>inset</code> box shadows if you want to have box shadows within the holding container.</p>
<p>Consider the below example:</p>
<div class="embed-wrapper">
        <iframe width="100%" height="350" src="https://codepen.io/manuarora700/embed/ZEXxqgd" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="CodePen embed" scrolling="no" allowtransparency="true" allowfullscreen="true" loading="lazy"></iframe></div>
<p>The code for the shadow is: </p>
<pre><code class="lang-css"><span class="hljs-selector-tag">box-shadow</span>: <span class="hljs-selector-tag">rgb</span>(204, 219, 232) 3<span class="hljs-selector-tag">px</span> 3<span class="hljs-selector-tag">px</span> 6<span class="hljs-selector-tag">px</span> 0<span class="hljs-selector-tag">px</span> <span class="hljs-selector-tag">inset</span>, <span class="hljs-selector-tag">rgba</span>(255, 255, 255, 0<span class="hljs-selector-class">.5</span>) <span class="hljs-selector-tag">-3px</span> <span class="hljs-selector-tag">-3px</span> 6<span class="hljs-selector-tag">px</span> 1<span class="hljs-selector-tag">px</span> <span class="hljs-selector-tag">inset</span>;
</code></pre>
<p>The keyword <code>inset</code> is used to specify that we want to use the shadow <code>inwards</code> and not the default behaviour that is <code>outwards</code>.</p>
<p>You can cleverly use inward box shadows in your web applications that have some important information to display. Like wells, or some alert that you're trying to show. In that case, the item appears to be embedded inside the webpage.</p>
<h2 id="heading-box-shadow-examples"><strong>Box Shadow Examples</strong></h2>
<p>Creating box shadows is hard, not because it is difficult but because it requires some design knowledge to get the best out of it. </p>
<p>I recently created an application that is a curated list of beautiful box shadows that can help your cards stand out. Currently the project is rated <a target="_blank" href="https://www.producthunt.com/posts/tailwind-box-shadows">#2 on ProductHunt</a> and is helping a lot of developers make their cards beautiful and effective.</p>
<p>You can find the project here: <a target="_blank" href="https://manuarora.in/boxshadows">Tailwind Box Shadows</a>. </p>
<p>Currently, You can find box shadows in Vanilla CSS and Tailwind JIT code. Click to copy and paste and you're done. There is also a helper utility to convert CSS box shadows to Tailwind box shadows.</p>
<h2 id="heading-conclusion"><strong>Conclusion</strong></h2>
<p>I've been using box shadows in almost all of my <a target="_blank" href="https://manuarora.in/projects">projects</a>. It is the most underrated thing that I've ever come across. A good box shadow layout can really improve the visual aspects of your application.</p>
<p>If you liked the article, try implementing these shadows in your application and let me know what changes it brought to your app.</p>
<p>If you have any feedback, you can reach out to me on my <a target="_blank" href="https://twitter.com/mannupaaji">Twitter</a> and/or my <a target="_blank" href="https://manuarora.in">Personal Website</a>.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Server Definition ]]>
                </title>
                <description>
                    <![CDATA[ In computing, a server is a computer or computers that send data over a network. This data can be a website, a program or photo file, or even information about the weather for an app on your phone. Servers listen for requests from clients, which are ... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/server-definition/</link>
                <guid isPermaLink="false">66c35e8fc337fbd10a4b595f</guid>
                
                    <category>
                        <![CDATA[ servers ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Tech Terms ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ freeCodeCamp ]]>
                </dc:creator>
                <pubDate>Thu, 18 Mar 2021 06:23:00 +0000</pubDate>
                <media:content url="https://cdn-media-2.freecodecamp.org/w1280/605c2c33687d62084bf6cbcd.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>In computing, a server is a computer or computers that send data over a network. This data can be a website, a program or photo file, or even information about the weather for an app on your phone.</p>
<p>Servers listen for requests from clients, which are other computers or devices. When a server hears a request, it reads it and responds by sending data back to the client.</p>
<p>For example, when you enter <code>freecodecamp.org</code> in the address bar, our server hears the request from your browser. Our server reads what page you want and looks for all the data (HTML, CSS, JavaScript, and photos) for that page. Then when everything is ready, it sends that data back to your browser.</p>
<p>Almost any computer with the correct software can act as a server. But the servers behind many popular websites and services are often built with special hardware. This allows the servers to handle many requests at once, and stay online for long periods of time.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ IT Definition ]]>
                </title>
                <description>
                    <![CDATA[ IT (pronounced I.T.) stands for information technology. IT is a broad term that refers to jobs that involve technology in business. Developers, network engineers, UI/UX designers, QA testers, and customer support are all IT jobs. If the job involves ... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/it-definition/</link>
                <guid isPermaLink="false">66c35895dae03919d93dc094</guid>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Tech Terms ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ freeCodeCamp ]]>
                </dc:creator>
                <pubDate>Thu, 18 Mar 2021 06:20:00 +0000</pubDate>
                <media:content url="https://cdn-media-2.freecodecamp.org/w1280/605ad4f0687d62084bf6baf9.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>IT (pronounced I.T.) stands for information technology.</p>
<p>IT is a broad term that refers to jobs that involve technology in business. Developers, network engineers, UI/UX designers, QA testers, and customer support are all IT jobs.</p>
<p>If the job involves computers, technology, and working with data, it's considered IT.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ The 10 Most Popular Coding Challenge Websites ]]>
                </title>
                <description>
                    <![CDATA[ By Daniel Borowski A great way to improve your skills when learning to code is by solving coding challenges. Solving different types of challenges and puzzles can help you become a better problem solver, learn the intricacies of a programming languag... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/the-10-most-popular-coding-challenge-websites-of-2016-fb8a5672d22f/</link>
                <guid isPermaLink="false">66d45e04230dff01669057af</guid>
                
                    <category>
                        <![CDATA[ self-improvement  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ startup ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Web Development ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ freeCodeCamp ]]>
                </dc:creator>
                <pubDate>Tue, 02 Feb 2021 18:30:00 +0000</pubDate>
                <media:content url="https://cdn-media-1.freecodecamp.org/images/1*vmGJG77e-nLnKlv-tUgf5w.jpeg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>By Daniel Borowski</p>
<p>A great way to improve your skills when learning to code is by solving coding challenges. Solving different types of challenges and puzzles can help you become a better problem solver, learn the intricacies of a programming language, prepare for job interviews, learn new algorithms, and more.</p>
<p>Below is a list of some popular coding challenge websites with a short description of what each one offers.</p>
<h3 id="heading-1-topcoderhttpswwwtopcodercomchallengespageindex1"><a target="_blank" href="https://www.topcoder.com/challenges/?pageIndex=1">1. TopCoder</a></h3>
<p><img src="https://cdn-media-1.freecodecamp.org/images/MTryRL4uVza1V87ERWY26L4cFeqD2rgAnW1f" alt="Image" width="800" height="133" loading="lazy"></p>
<p>TopCoder is one of the original platforms for competitive programming online. It provides a list of <a target="_blank" href="https://www.topcoder.com/community/how-it-works/">algorithmic challenges</a> from the past that you can complete on your own directly online using their code editor. Their popular Single Round Matches are offered a few times per month at a specific time where you compete against others to solve challenges the fastest with the best score.</p>
<p>The <a target="_blank" href="https://www.topcoder.com/tc?module=AlgoRank">top ranked users</a> on TopCoder are very good competitive programmers and regularly compete in programming competitions. The top ranked user maintains his <a target="_blank" href="http://petr-mitrichev.blogspot.com/">own blog</a> titled <em>Algorithms weekly by Petr Mitrichev</em> where he writes about coding competitions, algorithms, math, and more.</p>
<h3 id="heading-2-coderbytehttpswwwcoderbytecom"><a target="_blank" href="https://www.coderbyte.com/">2. Coderbyte</a></h3>
<p><img src="https://cdn-media-1.freecodecamp.org/images/sP6ow4n2alliqp5L-p5fVRQC9W0GTws1B9Ig" alt="Image" width="800" height="288" loading="lazy"></p>
<p>Coderbyte provides 200+ coding challenges you can solve directly online in one of 10 programming languages (check out this <a target="_blank" href="https://www.coderbyte.com/information/First%20Factorial">example</a>). The challenges range from easy (finding the largest word in a string) to hard (print the maximum cardinality matching of a graph).</p>
<p>They also provide a collection of <a target="_blank" href="https://www.coderbyte.com/algorithm/tree-traversal-algorithms">algorithm tutorials</a>, introductory videos, and <a target="_blank" href="https://www.coderbyte.com/course/google-interview-questions">interview preparation courses</a>. Unlike HackerRank and other similar websites, you are able to view the solutions other users provide for any challenge aside from the <em>official</em> solutions posted by Coderbyte.</p>
<h3 id="heading-3-project-eulerhttpsprojecteulernet"><a target="_blank" href="https://projecteuler.net/">3. Project Euler</a></h3>
<p><img src="https://cdn-media-1.freecodecamp.org/images/plhA-E3btLLYRvc4hi3WxmUpAhu3aoef1o0V" alt="Image" width="742" height="422" loading="lazy"></p>
<p>Project Euler provides a large collection of challenges in the domain of computer science and mathematics. The challenges typically involve writing a small program to figure out the solution to a clever mathematical formula or equation, such as <a target="_blank" href="https://projecteuler.net/problem=551">finding the sum of digits</a> of all numbers preceding each number in a series.</p>
<p>You cannot directly code on the website in an editor, so you would need to write a solution on your own computer and then provide the solution on their website.</p>
<h3 id="heading-4-hackerrankhttpswwwhackerrankcomdashboard"><a target="_blank" href="https://www.hackerrank.com/dashboard">4. HackerRank</a></h3>
<p><img src="https://cdn-media-1.freecodecamp.org/images/dOpMtufto0gLZiyDOHZ4BVF58S-z393wRlcu" alt="Image" width="796" height="416" loading="lazy"></p>
<p>HackerRank provides challenges for several different domains such as Algorithms, Mathematics, SQL, Functional Programming, AI, and more. You can solve all the challenge directly online (check out this <a target="_blank" href="https://www.hackerrank.com/challenges/simple-array-sum">example</a>).</p>
<p>They provide a discussion and leaderboard for every challenge, and most challenges come with an editorial that explains more about the challenge and how to approach it to come up with a solution.</p>
<p>Currently, if you don't solve the problem, then you can't see the solution of others. If you also try to check the editorial before solving the problem, then you won't get the point for solving the problem at all.</p>
<p>As an example, here I haven't solved the problem, and I am trying to check others' submissions:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2022/01/problem-not-solved-yet.png" alt="Image" width="600" height="400" loading="lazy"></p>
<p>And here, I haven't solved the problem, and I am trying to check the editorial:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2022/01/problem-not-solved-lost-point.png" alt="Image" width="600" height="400" loading="lazy"></p>
<p>HackerRank also provides the ability for users to <a target="_blank" href="https://www.hackerrank.com/jobs/common-app">submit applications</a> and apply to jobs by solving company-sponsored coding challenges.</p>
<h3 id="heading-5-codechefhttpswwwcodechefcom"><a target="_blank" href="https://www.codechef.com/">5. CodeChef</a></h3>
<p><img src="https://cdn-media-1.freecodecamp.org/images/81eunsDYPAqBSC8KwPpBxhPFTHiqGXp70kMa" alt="Image" width="800" height="354" loading="lazy"></p>
<p>CodeChef is an Indian-based competitive programming <a target="_blank" href="https://en.wikipedia.org/wiki/CodeChef">website</a> that provides hundreds of challenges. You are able to write code in their online <a target="_blank" href="https://www.codechef.com/ide">editor</a> and view a collections of challenges that are separated into different categories depending on your skill level (check out this <a target="_blank" href="https://www.codechef.com/problems/TREEFUN">example</a>). They have a large community of coders that contribute to the forums, write <a target="_blank" href="https://www.codechef.com/wiki/tutorial-paying">tutorials</a>, and take part in CodeChef’s coding <a target="_blank" href="https://www.codechef.com/contests/">competitions</a>.</p>
<h3 id="heading-6-exercismiohttpsexercismio">6. <a target="_blank" href="https://exercism.io/">Exercism.io</a></h3>
<p><img src="https://www.freecodecamp.org/news/content/images/2019/12/Screen-Shot-2019-12-11-at-8.14.45-AM.png" alt="Image" width="600" height="400" loading="lazy"></p>
<p><a target="_blank" href="https://exercism.io/">Exercism</a> is a coding challenge website that offers 3100+ challenges spanning 52 different programming languages. After picking a language that you'd like to master, you tackle the coding challenges right on your machine (Exercism has their own command line interface that you can download from GitHub).</p>
<p>It is a bit different from other challenge websites, however, because you work with a mentor after completing each challenge. The mentor reviews your answers online and helps you improve them if needed. Once your answers have been approved and submitted, you unlock more challenges.</p>
<h3 id="heading-7-codewarshttpswwwcodewarscom"><a target="_blank" href="https://www.codewars.com/">7. Codewars</a></h3>
<p><img src="https://cdn-media-1.freecodecamp.org/images/QR7cVhZ7FGb6HjaEDu4N5Co1eTMNTbo1JFzq" alt="Image" width="800" height="406" loading="lazy"></p>
<p>Codewars provides a large collection of coding challenges submitted and edited by their own community. You can solve the challenges directly <a target="_blank" href="https://www.codewars.com/kata/trailing-zeros-in-factorials-in-any-given-integer-base/train/javascript">online</a> in their editor in one of several languages. You can view a discussion for each challenges as well as user solutions.</p>
<h3 id="heading-8-leetcodehttpsleetcodecom"><a target="_blank" href="https://leetcode.com/">8. LeetCode</a></h3>
<p><img src="https://cdn-media-1.freecodecamp.org/images/RzWKVwPaLY2SRsWFWk93ZNlzcg8V0Yeav5t7" alt="Image" width="800" height="363" loading="lazy"></p>
<p>LeetCode is a popular <a target="_blank" href="https://en.wikipedia.org/wiki/Online_judge">Online Judge</a> that provides a list of 190+ challenges that can help you prepare for technical job interviews. You can solve the challenges <a target="_blank" href="https://leetcode.com/problems/merge-k-sorted-lists/">directly online</a> in one of 9 programming languages. You are not able to view other users' solutions, but you are provided statistics for your own solutions such as how fast your code ran when compared to other users' code.</p>
<p>They also have a <a target="_blank" href="https://leetcode.com/mockinterview/">Mock Interview</a> section that is specifically for job interview preparation, they host their own coding <a target="_blank" href="https://leetcode.com/contest/">contests</a>, and they have a section for <a target="_blank" href="https://leetcode.com/articles/recursive-approach-segment-trees-range-sum-queries-lazy-propagation/">articles</a> to help you better understand certain problems.</p>
<h3 id="heading-9-spojhttpwwwspojcom"><a target="_blank" href="http://www.spoj.com/">9. SPOJ</a></h3>
<p><img src="https://cdn-media-1.freecodecamp.org/images/MF3wP06V24C7jal2f8NRvAVhS-tAA2vbNDTL" alt="Image" width="800" height="392" loading="lazy"></p>
<p>Sphere Online Judge (SPOJ) is an online judge that provides over 20k coding challenges. You are able to submit your code in an <a target="_blank" href="http://www.spoj.com/problems/TETRA/">online editor</a>. SPOJ also hosts their own <a target="_blank" href="http://www.spoj.com/contests/">contests</a> and has an area for users to discuss coding challenges. They do not currently provide any <em>official</em> solutions or editorials like some other websites do, though.</p>
<h3 id="heading-10-codingamehttpswwwcodingamecom"><a target="_blank" href="https://www.codingame.com/">10. CodinGame</a></h3>
<p><img src="https://cdn-media-1.freecodecamp.org/images/6l08ZCKDOaoY1TH-PHHHac26McA-c1tIDOPU" alt="Image" width="800" height="460" loading="lazy"></p>
<p>CodinGame is a bit different from the other websites, because instead of simply solving coding challenges in an editor, you actually take part in writing the code for games that you play directly online. You can see a list of games currently offered <a target="_blank" href="https://www.codingame.com/training">here</a> and an example of one <a target="_blank" href="https://www.codingame.com/ide/puzzle/there-is-no-spoon-episode-1">here</a>. The game comes with a problem description, test cases, and an editor where you can write your code in one of 20+ programming languages.</p>
<p>Although this website is different than typical competitive programming websites such as the ones mentioned above, it is still <a target="_blank" href="https://techcrunch.com/2015/11/11/with-codingame-learning-to-code-becomes-a-game/">popular</a> amongst programmers who enjoy solving challenges and taking part in contests.</p>
<p>This list was based on a few things: my own experiences using the websites, some <a target="_blank" href="https://www.google.com/webhp?sourceid=chrome-instant&amp;rlz=1C5CHFA_enUS689US689&amp;ion=1&amp;espv=2&amp;ie=UTF-8#safe=off&amp;q=coding+challenges">Google searches</a>, <a target="_blank" href="https://www.quora.com/What-are-good-coding-challenges-websites">Quora posts</a>, and articles such as <a target="_blank" href="http://infocreeds.com/top-10-coding-challenges-websites/">this one</a> and <a target="_blank" href="https://www.linkedin.com/pulse/most-popular-programming-contest-sites-coding-practice-somenath-panda">this one</a>. I also frequented some forums and subreddits such as <a target="_blank" href="https://www.reddit.com/r/learnprogramming/">r/learnprogramming</a> to see what websites were usually recommended by the users there. Disclaimer: I work at Coderbyte which is one of the websites mentioned above.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ What is NFC? Near Field Communication Uses, Chips, Tags, and Readers Explained ]]>
                </title>
                <description>
                    <![CDATA[ NFC is everywhere these days. You've probably seen it in your phone settings, or heard about it online. While the use of NFC for things like contactless payments was growing steadily, it exploded early this year due to the Coronavirus pandemic. In th... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/what-is-nfc-near-field-communication-uses-chips-tags-and-readers-explained/</link>
                <guid isPermaLink="false">66ac883f33a54a9b1a44793a</guid>
                
                    <category>
                        <![CDATA[ finance ]]>
                    </category>
                
                    <category>
                        <![CDATA[ fintech ]]>
                    </category>
                
                    <category>
                        <![CDATA[ payments ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Kristofer Koishigawa ]]>
                </dc:creator>
                <pubDate>Tue, 03 Nov 2020 18:00:12 +0000</pubDate>
                <media:content url="https://cdn-media-2.freecodecamp.org/w1280/5f9c9581740569d1a4ca0d5c.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>NFC is everywhere these days. You've probably seen it in your phone settings, or heard about it online.</p>
<p>While the use of NFC for things like contactless payments was growing steadily, it exploded early this year due to the Coronavirus pandemic.</p>
<p>In this article we'll go over what NFC is, what it's used for, some creative ways to use NFC, and more.</p>
<h2 id="heading-what-is-nfc-and-how-does-it-work">What is NFC and how does it work?</h2>
<p>NFC stands for near-field communication. It is a standard for devices to communicate with each other wirelessly from a very close distance.</p>
<p>NFC is a subset of another technology called RFID, so let's dig a bit into that before circling back to NFC.</p>
<h3 id="heading-what-is-rfid">What is RFID?</h3>
<p>Radio-frequency identification, or RFID, is a generic term for technologies that use radio waves from a reader to track specific tags. These tags all include an antenna and a tiny chip, and can come in many shapes and sizes. </p>
<p>Highway toll payment devices and those plastic things on clothes and other expensive items in stores are some common examples of RFID tags.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/10/image-123.png" alt="Image" width="600" height="400" loading="lazy">
<em>A diagram of an RFID tag. NFC tags look very similar – <a target="_blank" href="https://www.analogictips.com/rfid-tag-and-reader-antennas/">Source</a></em></p>
<p>If you've ever seen those big devices on either side of a store entrance, those are just big RFID readers. They're constantly transmitting radio waves and listening for a response.</p>
<p>So what happens if you try to leave a store and there's still a tag on the item you bought? </p>
<p>Most RFID tags are unpowered, so when the antenna in the tag picks up radio waves from the reader, it generates a small amount of electricity. That electricity activates the chip inside the tag, and it sends a signal with the information stored on the chip back to the reader. </p>
<p>In this case, when the reader receives a signal back from the tag on your item, it sounds an alarm.</p>
<h3 id="heading-how-are-rfid-and-nfc-related">How are RFID and NFC related?</h3>
<p>NFC is a newer, high-frequency version of RFID, and also involves both tags and readers. </p>
<p>NFC's higher frequency means that, while it can transfer data much faster than RFID, it only works from a distance of about 4 cm/1.6 in or less. Meanwhile, RFID works from a distance of up to 12 m/40 ft.</p>
<h2 id="heading-what-is-nfc-used-for">What is NFC used for?</h2>
<p>There are a lot of use cases for NFC, but here are some of the most common you'll see.</p>
<h3 id="heading-contactless-payments">Contactless payments</h3>
<p>These days, the most common thing that NFC is used for is contactless payment. Many newer credit and debit cards include an NFC tag, so you can just hold your card just above a payment terminal rather than swipe or insert it.</p>
<p>Contactless payment enabled credit and debit cards have a symbol on them similar to these:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/10/image-124.png" alt="Image" width="600" height="400" loading="lazy">
_Most contactless payment cards will have a similar symbol on the front or back – <a target="_blank" href="https://www.emvco.com/emv_insights_post/contactless-payments-how-emvco-supports-seamless-and-secure-acceptance/">Source</a>_</p>
<p>Most modern phones include an NFC chip, which can act as both an NFC reader/writer and tag. </p>
<p>This chip, paired with a mobile payment app like Google Pay, Apple Pay, and Samsung Pay, means that you might not even need to take your wallet out anymore. </p>
<p>Instead, your phone can act as a virtual NFC tag for your credit or debit card, even if said card doesn't have an actual NFC tag inside it.</p>
<p>Whether you use your contactless card or a mobile payment app, every payment you make involves tokenization for extra security.</p>
<p>Tokenization is when your card's information is used to generate a random, temporary token for each transaction. Then, your card or mobile payment app can send that temporary token safely, rather than transmit your actual card number, name, and other sensitive information.</p>
<p>However you choose to pay, using a contactless payment card, a mobile payment app, or inserting your card's chip are all <a target="_blank" href="https://www.engadget.com/2019-08-29-how-to-make-online-payments-safely-and-securely.html">much safer than the old method of swiping</a>.</p>
<h3 id="heading-interacting-with-products">Interacting with products</h3>
<p>Traditionally RFID is used for tracking inventory in warehouses and stores. But once a product leaves the store, its RFID tag is disabled.</p>
<p>A lot of products now include NFC tags for additional interaction after you leave the store. Nintendo's Amiibo figures are probably the most common recent example of this:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/10/image-96.png" alt="Image" width="600" height="400" loading="lazy">
<em>If this isn't the cutest NFC tag, I don't know what is – <a target="_blank" href="https://www.nintendo.com/amiibo/detail/detective-pikachu-amiibo/">Source</a></em></p>
<p>When you scan an Amiibo figure with your Nintendo console, you can get special characters, items, or other additional content, depending on the game and figure you use.</p>
<p>Your Nintendo console can also write information back to the NFC tag in your figure, again, depending on the game and figure.</p>
<p>Other companies like Nike have been including NFC tags in things like sports jerseys and sneakers. This allows you to get personalized content based on the product you scan (recent scores for a team, stats for a specific player, and so on), or even check that a product is genuine.</p>
<h3 id="heading-data-transfer">Data transfer</h3>
<p>Unlike RFID, which is typically one-way communication between a reader and a tag, NFC allows for two-way communication.</p>
<p>Some phones are able to use NFC to transfer data like contacts or photos between two devices if you touch them together.</p>
<h2 id="heading-creative-uses-for-nfc">Creative uses for NFC</h2>
<p>One of the coolest things you can do with NFC is buy a pack of tags online and program them to do different things with your phone.</p>
<p>For example, if you're tired of always giving your WiFi password out to guests, you could program an NFC tag to automatically connect to your network. Then, all your guests need to do is make sure NFC is enabled and hold their phones near the tag.</p>
<p>You could also program NFC tags to control different smart devices around your house. You could have a tag that toggles a smart lamp on or off, or one that sets the thermostat. </p>
<p>The commands triggered by the NFC tags can also be personalized to specific devices. For example, if you like the room a bit cooler than your partner, when you scan the thermostat tag it can lower the temperature. But when your partner scans it, it could raise the temperature to their preferred setting.</p>
<p>There are a lot of other interesting ways to use NFC tags to make your life just a little bit easier. Check out this video for more ideas and to see how to program your own NFC tags in both iOS and Android:</p>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/o9WHrX9cvXA" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" loading="lazy"></iframe></div>
<h2 id="heading-in-summary">In summary</h2>
<p>Though you might not have heard much about NFC until earlier this year (I certainly hadn't), it will likely become the standard we pay for things. </p>
<p>And considering all the cool stuff you can do with a phone and a pack of NFC tags, it's surprising that NFC isn't more widely adopted.</p>
<p>If you end up programming your own NFC tags, let me know what you did and how you did it over on <a target="_blank" href="https://twitter.com/kriskoishigawa">Twitter</a>.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ MBR vs GPT: What's the Difference Between an MBR Partition and a GPT Partition? [Solved] ]]>
                </title>
                <description>
                    <![CDATA[ If you're building a PC, you might have been asked how you want to install your operating system – MBR or GPT? The differences between an MBR and GPT partition are pretty straightforward. But there's a lot of background information that will help you... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/mbr-vs-gpt-whats-the-difference-between-an-mbr-partition-and-a-gpt-partition-solved/</link>
                <guid isPermaLink="false">66ac881f2dd2c39dc134e0c1</guid>
                
                    <category>
                        <![CDATA[ hardware ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Kristofer Koishigawa ]]>
                </dc:creator>
                <pubDate>Mon, 12 Oct 2020 04:12:00 +0000</pubDate>
                <media:content url="https://cdn-media-2.freecodecamp.org/w1280/5f9c9842740569d1a4ca190c.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>If you're building a PC, you might have been asked how you want to install your operating system – MBR or GPT?</p>
<p>The differences between an MBR and GPT partition are pretty straightforward. But there's a lot of background information that will help you get a clearer picture about each type of partition table, and when you should choose one over the other.</p>
<p>In this article we'll go into what a partition is, the difference between an MBR and GPT partition, whether you should upgrade from one type of partition to another, and more.</p>
<h2 id="heading-whats-a-partition">What's a partition?</h2>
<p>A partition is a virtual division of a hard disk drive (HDD) or solid state drive (SSD). Each partition can vary in size and typically serves a different function.</p>
<p>For example, in Windows there is usually a small recovery partition and a large file system partition labeled <code>C:</code>. The <code>C:</code> partition is what most people are familiar with, as it's where you usually install your programs and store your various files.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/10/disk-management.png" alt="Image" width="600" height="400" loading="lazy">
<em>Windows Disk Manager – <a target="_blank" href="https://docs.microsoft.com/en-us/windows-server/storage/disk-management/overview-of-disk-management">Source</a></em></p>
<p>In Linux, there's typically a root partition (<code>/</code>), one for swap which helps with memory management, and large <code>/home</code> partition. The <code>/home</code> partition is similar to the <code>C:</code> partition in Windows in that it's where you install most of your programs and store files.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/10/yCyXA.png" alt="Image" width="600" height="400" loading="lazy">
<em>GParted in Linux – <a target="_blank" href="https://bbs.archlinux.org/viewtopic.php?id=155698">Source</a></em></p>
<p>If you bought your computer from a store and the operating system is already installed, then the manufacturer has already taken care of the partitions. You don't need to worry about them unless you want to do something like dual-boot Windows and Linux from the same HDD or SDD.</p>
<p>Even if you're installing the operating system yourself, most times the installer will suggest default partitions and partition sizes. Again, you usually don't need to make any adjustments.</p>
<p>Now that you have a high-level overview of what a partition is, we can dive into the differences between MBR and GPT partitions.</p>
<p><strong>Note:</strong> I'll be using the term "drive" to refer to both HDDs and SSDs from now on.</p>
<h2 id="heading-an-overview-of-mbr-and-gpt-partitions">An overview of MBR and GPT partitions</h2>
<p>Before a drive can be divided into individual partitions, it needs to be configured to use a specific partition scheme or table.</p>
<p>A partition table tells the operating system how the partitions and data on the drive are organized. For example, the screenshots above show the partition tables on the drive, and each individual partition is shown as a rectangular block.</p>
<p>There are two main types of partition tables: MBR and GPT.</p>
<p>MBR stands for Master Boot Record, and is a bit of reserved space at the beginning of the drive that contains the information about how the partitions are organized. The MBR also contains code to launch the operating system, and it's sometimes called the Boot Loader.</p>
<p>GPT is an abbreviation of GUID Partition Table, and is a newer standard that's slowly replacing MBR.</p>
<p>Unlike an MBR partition table, GPT stores the data about how all the partitions are organized and how to boot the OS throughout the drive. That way if one partition is erased or corrupted, it's still possible to boot and recover some of the data.</p>
<p>If you bought your computer within the last five years or so, it's very likely that it's using GPT partition tables rather than the older MBR tables.</p>
<h2 id="heading-differences-between-mbr-vs-gpt-partitions">Differences between MBR vs GPT partitions</h2>
<p>There are a number of differences between MBR and GPT partitions, but we'll cover some of the main ones here.</p>
<p>First, the maximum capacity of MBR partition tables is only about 2 terabytes. You can use a drive that's larger than 2 terabytes with MBR, but only the first 2 terabytes of the drive will be used. The rest of the storage on the drive will be wasted.</p>
<p>In contrast, GPT partition tables offer a maximum capacity of 9.7 zetabytes. 1 zetabyte is about 1 billion terabytes, so you're unlikely to run out of space anytime soon.</p>
<p>Next, MBR partition tables can have a maximum of 4 separate partitions. However, one of those partitions can be configured to be an <em>extended partition</em>, which is a partition that can be split up into an 23 additional partitions. So the absolute maximum number of partitions an MBR partition table can have is 26 partitions.</p>
<p>GPT partition tables allow for up to 128 separate partitions, which is more than enough for most real world applications.</p>
<p>As MBR is older, it's usually paired with older Legacy BIOS systems, while GPT is found on newer UEFI systems. This means that MBR partitions have better software and hardware compatibility, though GPT is starting to catch up.</p>
<p>We'll take a brief look at both Legacy BIOS and UEFI a bit later in the article.</p>
<h2 id="heading-should-you-upgrade-from-mbr-to-gpt">Should you upgrade from MBR to GPT?</h2>
<p>If one of your drives is currently using an MBR partition table, you might be asking yourself if you should upgrade to the newer GPT standard.</p>
<p>In short, probably not. As the saying goes, if it ain't broke, don't fix it.</p>
<p>It's very easy to ruin the MBR sector of the drive, making it impossible to boot up again. Then you'll either need to create a recovery USB drive with Windows or Linux and try to repair the MBR, or completely wipe the drive and reinstall the operating system.</p>
<p>Speaking from experience, it's not worth the headache.</p>
<p>That said, there are some cases where you might consider upgrading from MBR to GPT.</p>
<p>For example, maybe you want to upgrade your drive to one that's greater than 2 terabytes, or you need more than 26 partitions. Even in these cases, you'll need to make sure that your hardware can even support a GPT partition table and a UEFI BIOS.</p>
<p>If you've done the research are positive you want to make the jump to GPT, make sure you have a backup of your drive and all important data. Worst case scenario, you'll be able to roll back without having to reinstall everything and start from scratch.</p>
<h2 id="heading-an-overview-of-bios">An overview of BIOS</h2>
<p>I've mentioned BIOS a few times before. While it's a bit outside the scope of this article, a basic understanding of BIOS is necessary to understand one of the last main differences between MBR and GPT partitions.</p>
<p>BIOS stands for Basic Input/Output System, and is the software that's stored on a chip on a computer's motherboard that runs when you first turn it on.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/10/xThDu5d.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>A BIOS chip on a Gigabyte motherboard – <a target="_blank" href="https://forums.tomshardware.com/threads/gigabyte-ab350-gaming-3-cpu-led-on-no-posting.3103246/">Source</a></em></p>
<p>The BIOS does things like configure the keyboard, mouse, and other hardware, set the system clock, test the memory, and so on. Then it looks for a drive and loads the boot loader on the drive, which is either an MBR or GPT partition table.</p>
<p>Usually when you first turn on your computer you'll see a logo from either your computer or motherboard's manufacturer. </p>
<p>Often there's a message below the logo saying which key to press to configure the computer's BIOS. This key is usually Delete, Escape, or F2, though it varies by manufacturer.</p>
<p>As mentioned previously, there are two main types of BIOS – Legacy BIOS and UEFI BIOS:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/10/windows-boot-screen-bios.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>A Legacy BIOS configuration screen – <a target="_blank" href="https://fossbytes.com/intel-end-legacy-bios-support-2020-uefi/">Source</a></em></p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/10/29143-uefiasus.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>A UEFI BIOS Configuration screen – <a target="_blank" href="https://www.tested.com/tech/pcs/2894-what-you-should-know-about-uefi-and-windows-boot-times/">Source</a></em></p>
<p>Legacy BIOS are older, and are entirely keyboard driven. They're usually simple in terms of UI, and have either a black or blue-screen-of-death background color.</p>
<p>UEFI stands for Unified Extensible Firmware Interface, and can be thought of as a newer type of BIOS. UEFI often includes graphics to show fan speed, temperature, and CPU clock speeds, and can sometimes be controlled with a mouse or trackpad.</p>
<h2 id="heading-mbr-and-gpt-bios">MBR and GPT BIOS</h2>
<p>Because MBR is an older standard, it's paired with Legacy BIOS systems (and Legacy BIOS can only access drives with an MBR partition). This is not necessarily a bad thing, as support for Legacy BIOS is better.</p>
<p>But again, one of the most obvious limitations of MBR partitions is that it can only handle drives that are up to 2 terabytes.</p>
<p>The newer GPT standard is paired with UEFI BIOS systems. Though support for both GPT and UEFI BIOS is not as great as MBR/Legacy BIOS, it's gaining ground. </p>
<p>More manufacturers are switching over to UEFI BIOS, which in turn requires drives to use the newer GPT format. But requirement for GPT formatted drives comes with the advantage of a much higher capacity and up to 128 partitions.</p>
<h2 id="heading-in-closing">In closing</h2>
<p>While understanding the difference between MBR and GPT partitions is a bit like peeling an onion, hopefully you got through it without tearing up.</p>
<p>If all you want is a quick reference for the differences between MBR and GPT partitions, here's a handy table:</p>
<div class="hn-table">
<table>
<thead>
<tr>
<td></td><td>MBR</td><td>GPT</td></tr>
</thead>
<tbody>
<tr>
<td>Maximum capacity</td><td>2TB</td><td>9.7ZB (~9.7 billion terabytes)</td></tr>
<tr>
<td>Maximum partitions</td><td>26</td><td>128</td></tr>
<tr>
<td>Partition/boot data location</td><td>At the beginning of the drive</td><td>Throughout the drive</td></tr>
<tr>
<td>BIOS type</td><td>Legacy BIOS</td><td>UEFI</td></tr>
</tbody>
</table>
</div><p>And please, don't be like my younger self – make sure you have a backup before you mess around with your partitions. Actually, make two backups.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Test and Play with Web APIs the Easy Way with Postman ]]>
                </title>
                <description>
                    <![CDATA[ In a world where static websites and apps increasingly depend on separately maintained APIs, it can be hard to figure out how they work by just playing around in the browser.  So how can we use Postman to both test our existing APIs and understand ho... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-test-and-play-with-web-apis-the-easy-way-with-postman/</link>
                <guid isPermaLink="false">66b8e36e47e3b55b9fb6ee45</guid>
                
                    <category>
                        <![CDATA[ api ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Developer Tools ]]>
                    </category>
                
                    <category>
                        <![CDATA[ programing ]]>
                    </category>
                
                    <category>
                        <![CDATA[ QA ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Quality Assurance ]]>
                    </category>
                
                    <category>
                        <![CDATA[ REST API ]]>
                    </category>
                
                    <category>
                        <![CDATA[ software development ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Software Engineering ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Software Testing ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Testing ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tools ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Colby Fayock ]]>
                </dc:creator>
                <pubDate>Tue, 30 Jun 2020 16:34:32 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2020/06/postman.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>In a world where static websites and apps increasingly depend on separately maintained APIs, it can be hard to figure out how they work by just playing around in the browser. </p>
<p>So how can we use Postman to both test our existing APIs and understand how they work?</p>
<ul>
<li><a class="post-section-overview" href="#heading-what-is-postman">What is Postman?</a></li>
<li><a class="post-section-overview" href="#heading-what-are-we-going-to-build-learn">What are we going to build / learn?</a></li>
<li><a class="post-section-overview" href="#heading-part-0-getting-set-up-with-postman">Part 0: Getting set up with Postman</a></li>
<li><a class="post-section-overview" href="#heading-part-1-an-introduction-to-postman">Part 1: An introduction to Postman</a></li>
<li><a class="post-section-overview" href="#heading-part-2-creating-a-new-postman-request-to-get-info-about-squirtle">Part 2: Creating a new Postman request to GET info about Squirtle</a></li>
<li><a target="_blank" href="https://www.freecodecamp.org/news/p/a02335e1-4f9a-453d-8916-db6b8419cf99/part-3-creating-a-collection-of-requests-in-postman-for-the-pok-api">Part 3: Creating a collection of requests in Postman for the PokéAPI</a></li>
<li><a class="post-section-overview" href="#heading-part-4-making-post-requests-with-postman-to-translate-sentences-to-sound-like-yoda">Part 4: Making POST requests with Postman to translate sentences to sound like Yoda</a></li>
<li><a class="post-section-overview" href="#heading-part-5-authenticating-requests-to-the-lord-of-the-rings-api-with-an-api-key">Part 5: Authenticating requests to the Lord of the Rings API with an API Key</a></li>
</ul>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/KFuaybrXCdw" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" loading="lazy"></iframe></div>
<h2 id="heading-what-is-postman">What is Postman?</h2>
<p><a target="_blank" href="https://www.postman.com/">Postman</a> is a tool teams can use to reliably test APIs using easy to use configurations. It comes stocked with features you would expect when dealing with APIs, including authentication, setting headers, customizing the payload, and a bunch more that help reduce the friction of using an API.</p>
<p>And it’s not just for testing. The beauty is that this can be used for many aspects of working with APIs for many different members of the team. Maybe a Project Manager wants to verify that things work or might find it easier to make a change straight with the API, or a QA Engineer needs to make sure everything still works, or a developer wants to actively make changes while working on the API itself.</p>
<p>The best part about it – Postman provides collaboration features. The free tier includes exporting and importing collections of saved API requests as well as creating shared links. If you're part of a team, they have paid tiers that allow you to sync up your collections to make sure everyone has the most recent and up to date collection.</p>
<h2 id="heading-what-are-we-going-to-build-learn">What are we going to build / learn?</h2>
<p>We’re going to walk through two different example APIs to cover the concepts of Postman.</p>
<p>First, we’ll walk through some simple HTTP requests with a <a target="_blank" href="https://pokeapi.co/">public API for Pokémon</a>.</p>
<p>We’ll then use the Yoda Translator API for one part to demonstrate how to make specific HTTP requests.</p>
<p>Once we understand how the basics work, we’ll use the <a target="_blank" href="https://the-one-api.herokuapp.com/">Lord of the Rings API</a> to learn how authentication works with APIs. For this, you’ll need to register for a free account for an API key.</p>
<h2 id="heading-part-0-getting-set-up-with-postman">Part 0: Getting set up with Postman</h2>
<p>Before we get started, you’ll need <a target="_blank" href="https://www.postman.com/downloads/">Postman</a> in order to follow along with this walkthrough. The good news, is Postman is available for free on Mac, Windows, and Linux, so you should be able to find a version that works for you.</p>
<p>Get Postman: <a target="_blank" href="https://www.postman.com/downloads/">https://www.postman.com/downloads/</a></p>
<p>Once downloaded, go through the standard installation instructions, open it up, and we should be ready to go!</p>
<h2 id="heading-part-1-an-introduction-to-postman">Part 1: An introduction to Postman</h2>
<p>The first time you open up Postman you’ll immediately be shown a launchpad with a bunch of options to get started.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-launchpad.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>It might seem a bit overwhelming, but let’s break down some of the key concepts that we’ll need to know.</p>
<h3 id="heading-requests">Requests</h3>
<p>A request is kind of what it sounds like, it’s a specific API request. This will be a single type of request, whether it’s a GET or POST to a specific endpoint. You’ll want to create new requests for each type of endpoint which will allow you to move between them when testing.</p>
<h3 id="heading-collections">Collections</h3>
<p>A collection is a group of requests. This is handy for organizing your requests into different groups. This could be as simple as two totally different APIs (ie. Twitter vs Slack) or it could be two different groups of APIs for a single API (ie. Twitter Tweets API vs Twitter Accounts API).</p>
<h3 id="heading-authorization">Authorization</h3>
<p>Authorization is how requests are authenticated with an API, whether by a person making a request or by a computer making that request on your behalf. This commonly comes in the form of an API key which can be a static value assigned to your account or dynamically generated with tools like <a target="_blank" href="https://oauth.net/">OAuth</a>.</p>
<h3 id="heading-environments">Environments</h3>
<p>Environments will allow you to configure your endpoints to use specific variables that make it easier to use the same endpoints between different environments. For instance, you might have the same <code>/profile</code> endpoint on both your production and development environments, but they have different domains. Environments lets you manage a single request with a variable domain.</p>
<h3 id="heading-workspaces">Workspaces</h3>
<p>We won’t go too far into workspaces in this post, but it allows you to manage and organize different sets of collections. Imagine if you want to use Postman for both work and a personal project, you might have a Work workspace as well as a Personal workspace.</p>
<p>For the purposes of this article, we’ll be covering Requests, Collections, and Authorization.</p>
<h2 id="heading-part-2-creating-a-new-postman-request-to-get-info-about-squirtle">Part 2: Creating a new Postman request to GET info about Squirtle</h2>
<p>Now that we have a better understanding of the different terminology, let’s actually create a request.</p>
<p>At the top left of the UI you should see a but orange button that says <strong>New</strong>. Go ahead and click that and then select <strong>Request</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-create-new-request.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Before we get into the request itself, it requests a few things.</p>
<p>This first thing requires is a name. We’re going to start off by requesting information about the Pokémon Squirtle, so let’s name this “Pokémon - Squirtle”.</p>
<p>It also requires a collection, so click <strong>Create Collection</strong> and let’s name the collection “My Favorite Pokémon”.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-configure-new-request.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Click the orange checkmark button next to the collection name then hit <strong>Save</strong>.</p>
<p>At this point we’ll have a new request, so let’s build that request.</p>
<p>There are two things we’ll first need to fill out for our first request:</p>
<ul>
<li><strong>Request type:</strong> GET, POST, PUT, etc - we’ll use GET</li>
<li><strong>Request URL:</strong> The endpoint for your API request - for our request we’ll use <a target="_blank" href="https://pokeapi.co/api/v2/pokemon/squirtle/">https://pokeapi.co/api/v2/pokemon/squirtle/</a></li>
</ul>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-squirtle-pokemon-get.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>And once you make sure those are correct, you can simply hit the blue <strong>Send</strong> button on the right and we’ve successfully made our first request!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-squirtle-pokemon-get-success.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>We immediately get a few things we can see:</p>
<ul>
<li><strong>Body:</strong> at the bottom we should now see the response body of the API request. For our Squirtle API, we should have a JSON object with data like <code>abilities</code>, <code>base_experience</code>, and <code>forms</code>.</li>
<li><strong>Status:</strong> on the right, we should see the HTTP status code. “200 Ok” is a good sign and it means it was successful!</li>
<li><strong>Time:</strong> simply how long the request took to finish</li>
<li><strong>Size:</strong> the size in KB (in our example) of the response data</li>
</ul>
<p>You can also hover over Status, Time, and Size and get a more in depth look at each option.</p>
<p>So we made our first request!</p>
<p>Once thing to notice before we move on is that our request looks like it’s in a browser tab. If we’re done with that particular request, we can close the tab and click <strong>Save</strong> to make sure all of our changes are there for next time!</p>
<h2 id="heading-part-3-creating-a-collection-of-requests-in-postman-for-the-pokeapi">Part 3: Creating a collection of requests in Postman for the PokéAPI</h2>
<p>Now that we’ve created a request, let’s create a collection of them. Technically we already had to create a new collection for Part 2, but we’ll create a new one to learn how collections themselves work.</p>
<p>At the top left of the UI, click the orange <strong>New</strong> button again and select <strong>Collection</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-create-new-collection.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Similar to a request, it asks for a name so let’s call this “PokéAPI”. Optionally you can add a description, then click <strong>Create</strong> at the bottom.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-configure-new-collection.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>On the left, you’ll now see your collection. You can select and expand the folder since we’ll be working with it.</p>
<p>Before we add a request, the PokéAPI has different types of requests, so it makes sense to organize it a little more thoroughly. So let’s click the three dots next to the PokéAPI collection and select <strong>Add Folder</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-add-folder-to-collection.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Similar to the others, this asks for a name. Folders are kind of like collections inside of a collection, so you get similar options. Let’s name this one “Pokémon” and click the orange <strong>Save</strong> button like before.</p>
<p>Now let’s add our requests! First, click the three dots next to the Pokémon folder, similar to how we added a folder to the collection, but this time select <strong>Add Request</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-add-request-to-collection.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Let’s name this request “Pokemon”. While it might be confusing that we have a Pokemon request inside of the Pokémon folder, Pokemon is just one of the endpoints of the Pokémon group.</p>
<p>Now, let’s use the same exact API that we used with our Squirtle request before:</p>
<ul>
<li><strong>Request Type:</strong> GET</li>
<li><strong>Request URL:</strong> <a target="_blank" href="https://pokeapi.co/api/v2/pokemon/squirtle/">https://pokeapi.co/api/v2/pokemon/squirtle/</a></li>
</ul>
<p>And similar to before, when we hit the blue <strong>Send</strong> button, we should see a successful request!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-successful-get-request-squirtle.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Now let’s add another request. Follow the same process as before to create a new request under the PokéAPI Pokémon folder and let’s name this request “Abilities”.</p>
<p>If you scroll through the response from the first Squirtle endpoint, you see a lot of other API urls. At the top, we have <code>abilities</code> and we have two different ones — “torrent” and “rain-dish”.</p>
<p>Choose your favorite Squirtle ability and copy the <code>url</code> value into the new Abilities request we just created, I’m going to use <code>rain-dish</code>.</p>
<p>We can leave the Request Type as GET, hit the blue <strong>Send</strong> button, and we can again see a successful response!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-successful-request-squirtle-abilities.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Here we get a lot of information about our Squirtle ability Rain Dish and some of the details come in different languages which is cool!</p>
<p>So now we have a new PokéAPI collection with a Pokémon folder representing the group of Pokémon API endpoints including Pokemon and abilities.</p>
<p>We’re going to stop Part 3 with those 2 requests, but feel free to continue on and add as many of the PokéAPI requests as you’d like!</p>
<h2 id="heading-part-4-making-post-requests-with-postman-to-translate-sentences-to-sound-like-yoda">Part 4: Making POST requests with Postman to translate sentences to sound like Yoda</h2>
<p>So far we’ve only made GET requests, but what if we wanted to make a POST request where we need to actually send some data?</p>
<p>For making a POST request, we’re going to use the Yoda Translator API from funtranslations.com. While this API only takes a single parameter, it’s still a good public endpoint we can use to understand the concept.</p>
<p>First, let’s create a new collection with a new request:</p>
<ul>
<li><strong>Collection:</strong> Fun Translations</li>
<li><strong>Request:</strong> Yoda</li>
</ul>
<p>This time, instead of a GET request, our request configuration will be:</p>
<ul>
<li><strong>Request Type:</strong> POST</li>
<li><strong>Request URL:</strong> <a target="_blank" href="https://api.funtranslations.com/translate/yoda">https://api.funtranslations.com/translate/yoda</a></li>
</ul>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-new-request-yoda-api.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Now this time, if we hit the blue <strong>Send</strong> button, we’ll notice we don’t get a successful 200 response, we get a 400!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-yoda-api-bad-request.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>We never actually set up any data to be posted to the API and it requires that data, so let’s add it.</p>
<p>Right below the <strong>Request URL</strong>, click <strong>Body</strong>. Then instead of none, select <strong>raw</strong> as the body type. Finally, on the far right of the types, change <strong>Text</strong> to <strong>JSON</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-yoda-request-body-type.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Then, in the space below it, you can add the following:</p>
<pre><code class="lang-json">{
    <span class="hljs-attr">"text"</span>: <span class="hljs-string">"Hello, I am learning how to test APIs with Postman!"</span>
}
</code></pre>
<p>And now click the blue <strong>Send</strong> button again and we get a successful response!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-successful-post-body-yoda-api.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>We can apply this concept to pretty much any API. Postman doesn’t only permit you to post JSON, it allows you to use the other formats that we see listed in the Body Type section, meaning you have a lot of options depending on what the API you’re using requires.</p>
<h2 id="heading-part-5-authenticating-requests-to-the-lord-of-the-rings-api-with-an-api-key">Part 5: Authenticating requests to the Lord of the Rings API with an API Key</h2>
<p>For the rest of the walkthrough, we’re going to use the Lord of the Rings API.</p>
<p>First up, the Lord of the Rings API requires authentication in order to make requests using an API key. So to start, you’ll before we dive in, you’ll need to go <a target="_blank" href="https://the-one-api.herokuapp.com/sign-up">create a free account</a>.</p>
<p><a target="_blank" href="https://the-one-api.herokuapp.com/sign-up">https://the-one-api.herokuapp.com/sign-up</a></p>
<p>Once you sign up and log in, the first thing you’ll see is your API key! Either copy this key down or remember where you can find it for later. If you leave the page, you can always grab it by navigating to <strong>Welcome</strong> and then <strong>Account</strong> in the navigation of the API website.</p>
<p>To get started, let’s first create a new collection and request:</p>
<ul>
<li><strong>Collection:</strong> Lord of the Rings</li>
<li><strong>Folder:</strong> Movie</li>
<li><strong>Request:</strong> All Movies</li>
<li><strong>Request Type:</strong> GET</li>
<li><strong>Request URL:</strong> <a target="_blank" href="https://the-one-api.herokuapp.com/v1/movie">https://the-one-api.herokuapp.com/v1/movie</a></li>
</ul>
<p>Once you’re set with the above, click <strong>Send</strong>, and you’ll notice immediately it gives a response that says 401 and that it’s unauthenticated.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-unauthorized-request-lord-of-the-rings-api.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Because this API requires the API key, this is exactly what we expected. So let’s click on the <strong>Authorization</strong> tab. We can then select a <strong>Type</strong> of <strong>Bearer Token</strong>, and on the right, we can paste in our key that we just set up with the Lord of the Rings API.</p>
<p>And as soon as we hit <strong>Send</strong>, we now see a successful response!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-authorized-successful-lord-of-the-rings-api-request.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>This worked really great, but what if we have a bunch of requests that use a single key. Do we have to manage that on each request?</p>
<p>Instead of managing it on each individual request, we can manage it on the collection. Let’s first build another request.</p>
<p>Under our Lord of the Rings collection and in the Movie folder, create a new request:</p>
<ul>
<li><strong>Request:</strong> Quote by Movie ID</li>
<li><strong>Request Type:</strong> GET</li>
<li><strong>Request URL:</strong> <a target="_blank" href="https://the-one-api.herokuapp.com/v1/movie/%7Bid%7D">https://the-one-api.herokuapp.com/v1/movie/{id}</a></li>
</ul>
<p>In this request, let’s use an ID from the response of the first request, I’m going to use <code>5cd95395de30eff6ebccde5b</code> which is the ID of The Two Towers, so the request URL will look like:</p>
<pre><code>https:<span class="hljs-comment">//the-one-api.herokuapp.com/v1/movie/5cd95395de30eff6ebccde5b</span>
</code></pre><p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-inherit-authorization-from-parent.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Now, instead of setting our token in the request Authorization, we’re going to leave the type as <strong>Inherit auth from parent</strong>. Click on the three dots next to the collection and select <strong>Edit</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-edit-collection.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Here, we’re going to do the same exact thing we did with the first request but on the Collection configuration. Select the <strong>Authorization</strong> tab, under type select <strong>Bearer Token</strong>, and in the <strong>Token</strong> field again paste your token.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-add-authorization-api-key-token-to-collection.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Finally, click <strong>Update</strong> and hit the blue <strong>Send</strong> button again and we can see a successful request!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-authorized-request-inherit-token-from-parent.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>We can now go back to our All Movies request and update the Authorization to use a Type of Inherit auth from parent and it should still continue to work!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/postman-successful-request-lord-of-the-rings-api.jpg" alt="Image" width="600" height="400" loading="lazy"></p>
<h2 id="heading-what-else-can-we-do-with-postman">What else can we do with Postman?</h2>
<p>While I covered a lot of the basics, there’s quite a lot more you can do with Postman. Here are a few of my favorites.</p>
<h3 id="heading-environment-variables">Environment Variables</h3>
<p>If you’re working as a developer on a project, it’s likely that your team uses multiple environments, such as a development and production environment. Instead of creating and maintaining completely separate requests, you can add an environment variable and instead change that variable when switching between environments!</p>
<p>Variables apply to many scenarios, but that’s a common use. Check out Postman’s docs to learn how.</p>
<p><a target="_blank" href="https://learning.postman.com/docs/postman/variables-and-environments/variables/">https://learning.postman.com/docs/postman/variables-and-environments/variables/</a></p>
<h3 id="heading-import-and-export-collections-and-data">Import and Export Collections and Data</h3>
<p>A great thing about Postman is once you have your requests all organized, you can export them for others to use. This also means that you can import collections from other team members. This makes it much easier to make sure everyone’s using the same collection.</p>
<p>Bonus: you can even store these files in a Git repository, as they’re just JSON.</p>
<p>But keep in mind - if you’re using Authorization on the collection like we went over in this guide, you’ll want to make sure you don’t include that when exporting your collection.</p>
<p><a target="_blank" href="https://learning.postman.com/docs/postman/collections/importing-and-exporting-data/">https://learning.postman.com/docs/postman/collections/importing-and-exporting-data/</a></p>
<h3 id="heading-automated-testing">Automated testing</h3>
<p>Once you have a set of requests in a collection and even better, if you’re storing them in Github, you can begin to use those requests as part of a way to manage automated testing of your API.</p>
<p>While there are a few solutions for doing this, Postman includes a Collection runner built right into the app and <a target="_blank" href="https://learning.postman.com/docs/postman/collection-runs/command-line-integration-with-newman/">Newman</a> is a command line tool that lets you run tests right from the terminal.</p>
<p><a target="_blank" href="https://www.postman.com/use-cases/api-testing-automation/">https://www.postman.com/use-cases/api-testing-automation/</a></p>
<h2 id="heading-whats-your-favorite-way-to-test-and-play-with-apis">What’s your favorite way to test and play with APIs?</h2>
<p><a target="_blank" href="https://twitter.com/colbyfayock">Share with me on Twitter!</a></p>
<div id="colbyfayock-author-card">
  <p>
    <a href="https://twitter.com/colbyfayock">
      <img src="https://res.cloudinary.com/fay/image/upload/w_2000,h_400,c_fill,q_auto,f_auto/w_1020,c_fit,co_rgb:007079,g_north_west,x_635,y_70,l_text:Source%20Sans%20Pro_64_line_spacing_-10_bold:Colby%20Fayock/w_1020,c_fit,co_rgb:383f43,g_west,x_635,y_6,l_text:Source%20Sans%20Pro_44_line_spacing_0_normal:Follow%20me%20for%20more%20JavaScript%252c%20UX%252c%20and%20other%20interesting%20things!/w_1020,c_fit,co_rgb:007079,g_south_west,x_635,y_70,l_text:Source%20Sans%20Pro_40_line_spacing_-10_semibold:colbyfayock.com/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_68,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_145,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_222,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_295,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/v1/social-footer-card" alt="Follow me for more Javascript, UX, and other interesting things!" width="2000" height="400" loading="lazy">
    </a>
  </p>
  <ul>
    <li>
      <a href="https://twitter.com/colbyfayock">? Follow Me On Twitter</a>
    </li>
    <li>
      <a href="https://youtube.com/colbyfayock">?️ Subscribe To My Youtube</a>
    </li>
    <li>
      <a href="https://www.colbyfayock.com/newsletter/">✉️ Sign Up For My Newsletter</a>
    </li>
  </ul>
</div>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Create a Travel Bucket List Map with Gatsby, React Leaflet, & Hygraph ]]>
                </title>
                <description>
                    <![CDATA[ Traveling is fun and we all have a lot of places we want to visit, but rarely do we have time to do it all at once. That’s what bucket lists are for! How can we create a custom mapping app that we can show all of our the destinations ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-create-a-travel-bucket-list-map-with-gatsby-react-leaflet-graphcms/</link>
                <guid isPermaLink="false">66b8e3580cedc1f2a4f7069b</guid>
                
                    <category>
                        <![CDATA[ beginners guide ]]>
                    </category>
                
                    <category>
                        <![CDATA[ cms ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Gatsby ]]>
                    </category>
                
                    <category>
                        <![CDATA[ GatsbyJS ]]>
                    </category>
                
                    <category>
                        <![CDATA[ graphcms ]]>
                    </category>
                
                    <category>
                        <![CDATA[ headless cms ]]>
                    </category>
                
                    <category>
                        <![CDATA[ JavaScript ]]>
                    </category>
                
                    <category>
                        <![CDATA[ leaflet ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Mapping ]]>
                    </category>
                
                    <category>
                        <![CDATA[ maps ]]>
                    </category>
                
                    <category>
                        <![CDATA[ react-leaflet ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Travel ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Tutorial ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Colby Fayock ]]>
                </dc:creator>
                <pubDate>Tue, 23 Jun 2020 14:45:00 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2020/06/travel-bucket-list.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Traveling is fun and we all have a lot of places we want to visit, but rarely do we have time to do it all at once. That’s what bucket lists are for! How can we create a custom mapping app that we can show all of our the destinations on our bucket list?</p>
<p>Note: As of July 2022, GraphCMS is now <a target="_blank" href="https://hygraph.com/">Hygraph</a>.</p>
<ul>
<li><a class="post-section-overview" href="#heading-what-are-we-going-to-build">What are we going to build?</a></li>
<li><a class="post-section-overview" href="#heading-step-1-creating-a-new-app-with-gatsby-starter-leaflet">Step 1: Creating a new app with Gatsby Starter Leaflet</a></li>
<li><a class="post-section-overview" href="#heading-step-2-creating-and-managing-a-list-of-travel-locations-with-graphcms">Step 2: Creating and managing a list of travel locations with GraphCMS</a></li>
<li><a class="post-section-overview" href="#heading-step-3-querying-our-graphcms-location-data-with-gatsby-and-graphql">Step 3: Querying our GraphCMS location data with Gatsby and GraphQL</a></li>
<li><a class="post-section-overview" href="#heading-step-4-creating-a-bucket-list-of-destinations-and-adding-them-to-the-map">Step 4: Creating a bucket list of destinations and adding them to the map</a></li>
<li><a class="post-section-overview" href="#heading-what-else-other-features-can-we-add-to-our-app">What else other features can we add to our app?</a></li>
<li><a class="post-section-overview" href="#heading-want-to-learn-more-about-maps">Want to learn more about maps?</a></li>
</ul>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/isbr52VKjb0" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" loading="lazy"></iframe></div>
<h2 id="heading-what-are-we-going-to-build">What are we going to build?</h2>
<p>We’re going to build a mapping app with <a target="_blank" href="https://www.gatsbyjs.org/">Gatsby</a> managed by a CMS that will both display markers on a map and show our locations in a simple text-based list for our bucket list locations.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/travel-bucket-list-demo.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Demo of a Travel Bucket List mapping app</em></p>
<p>We’ll spin up the app with a <a target="_blank" href="https://github.com/colbyfayock/gatsby-starter-leaflet">Gatsby Starter for Leaflet</a> and then we’ll use <a target="_blank" href="https://graphcms.com/">GraphCMS</a> to create and manage the list of locations for our map!</p>
<h2 id="heading-woah-a-mapping-app">Woah, a mapping app?</h2>
<p>Yup. If you haven't played with maps before, don't be discouraged! It's not as bad as you probably think. If you'd rather start with mapping basics, you can  <a target="_blank" href="https://www.freecodecamp.org/news/easily-spin-up-a-mapping-app-in-react-with-leaflet/">read more about how mapping works</a>  first.</p>
<h2 id="heading-step-1-creating-a-new-app-with-gatsby-starter-leaflet">Step 1: Creating a new app with Gatsby Starter Leaflet</h2>
<p>We’ll start off with Gatsby Starter Leaflet. This is going to give us a basic React application with our mapping tools already built in.</p>
<h3 id="heading-creating-a-new-gatsby-app-with-gatsby-starter-leaflet">Creating a new Gatsby app with Gatsby Starter Leaflet</h3>
<p>To get started, navigate to where you want to create your new app and run:</p>
<pre><code class="lang-shell">gatsby new my-travel-bucket-list https://github.com/colbyfayock/gatsby-starter-leaflet
</code></pre>
<p><em>Note: you can replace <code>my-travel-bucket-list</code> with whatever you want. This will be used to create the new folder for the app.</em></p>
<p>Once you run that, Gatsby will pull down the Starter and install the dependencies. After it’s complete, navigate to that directory and run the development command:</p>
<pre><code class="lang-shell">cd my-travel-bucket-list
yarn develop
# or
npm run develop
</code></pre>
<p>Once it’s finished location, your app should be ready to go!</p>
<h3 id="heading-cleaning-our-some-demo-code">Cleaning our some demo code</h3>
<p>Because we’re using a Starter, it has a little bit of demo code. Let’s clean that out to avoid any confusion.</p>
<p>Open up the <code>src/pages/index.js</code> file.</p>
<p>First, remove everything inside of <code>mapEffect</code> except the first line and set up an alias for <code>leafletElement</code> to <code>map</code>:</p>
<pre><code class="lang-js"><span class="hljs-keyword">async</span> <span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">mapEffect</span>(<span class="hljs-params">{ leafletElement: map } = {}</span>) </span>{
  <span class="hljs-keyword">if</span> ( !map ) <span class="hljs-keyword">return</span>;
}
</code></pre>
<p>With that gone, we can remove the <code>markerRef</code> definition at the top of the <code>IndexPage</code> component, remove the <code>ref={markerRef}</code> prop from our <code>&lt;Marker&gt;</code> component, and the <code>useRef</code> import next to React.</p>
<p>Now, we can remove all of the variables that start with <code>popup</code> and <code>time</code>, including:</p>
<ul>
<li>timeToZoom</li>
<li>timeToOpenPopupAfterZoom</li>
<li>timeToUpdatePopupAfterZoom</li>
<li>popupContentHello</li>
<li>popupContentGatsby</li>
</ul>
<p>Lastly, you can remove all of the following lines:</p>
<pre><code class="lang-js"><span class="hljs-keyword">import</span> L <span class="hljs-keyword">from</span> <span class="hljs-string">'leaflet'</span>;
...
import { promiseToFlyTo, getCurrentLocation } <span class="hljs-keyword">from</span> <span class="hljs-string">'lib/map'</span>;
...
import gatsby_astronaut <span class="hljs-keyword">from</span> <span class="hljs-string">'assets/images/gatsby-astronaut.jpg'</span>;
...
const ZOOM = <span class="hljs-number">10</span>;
</code></pre>
<p>Once done, we should be ready to go with a basic app with a map!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/new-app-gatsby-starter-leaflet.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>New app with Gatsby Starter Leaflet</em></p>
<p><a target="_blank" href="https://github.com/colbyfayock/my-travel-bucket-list/commit/63eed5a7a208ede6f8eeec44e0c08b594b407360">Follow along with the commit!</a></p>
<h2 id="heading-step-2-creating-and-managing-a-list-of-travel-locations-with-graphcms">Step 2: Creating and managing a list of travel locations with GraphCMS</h2>
<h3 id="heading-creating-a-graphcms-account">Creating a GraphCMS account</h3>
<p>To get started with GraphCMS, you’ll need an account. I’m not going to walk you through this part, but the good news is they have a generous free tier that makes it easy to sign up for us to use for our demo!</p>
<p><a target="_blank" href="https://app.graphcms.com/signup">Sign up for GraphCMS</a></p>
<p>Alternatively, if you already have an account, you can make sure you’re logged in.</p>
<h3 id="heading-creating-a-new-graphcms-project">Creating a new GraphCMS project</h3>
<p>Once logged in, we’ll want to create a new project. We’re going to create one manually, so once at the <a target="_blank" href="https://app.graphcms.com/">GraphCMS Dashboard</a>, select <strong>Create new project</strong>:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-create-new-project.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Creating a new project in GraphCMS</em></p>
<p>Here, you can enter whatever you’d like for the <strong>Name</strong> and <strong>Description</strong> such as:</p>
<ul>
<li>Name: My Travel Bucket List</li>
<li>Description: The locations that I want to travel to some day!</li>
</ul>
<p>Below that you’ll see a map where you’ll select a <strong>Region</strong>. This is where your database data will live, so while it probably doesn’t matter too much for our purposes, you can choose the one that’s closest to you.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-configure-new-project.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Configuring a new project in GraphCMS</em></p>
<p>After you select your options, go ahead and click <strong>Create Project</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-select-plan.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Selecting the Personal plan in GraphCMS</em></p>
<p>Next, you’ll be presented with billing options. Since we’re just creating a demo, under <strong>Personal</strong> select <strong>Continue</strong> at which point we’ll be dropped into our new GraphCMS project dashboard.</p>
<h3 id="heading-creating-a-new-content-model-schema-with-graphcms">Creating a new Content Model Schema with GraphCMS</h3>
<p>In GraphCMS, a Content Model refers to a specific type of data that has specific properties associated with it. In our case, our Model will be a Destination, which will be defined by a Name and a Location.</p>
<p>First, navigate to the <strong>Schema</strong> section of GraphCMS in the left sidebar and select <strong>Create Model</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-create-new-schema-model.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Creating a new Schema Model in GraphCMS</em></p>
<p>Once selected, you’ll see a popup that asks for a bit more information. Here, you can type in “Destination” as the <strong>Display Name</strong>, which will also fill in most of the other fields. We’ll leave those as is.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-configure-new-content-model.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Configuring a new Model in GraphCMS</em></p>
<p>Feel free to add a description if you’d like, but it’s not required. Then select <strong>Create model</strong>.</p>
<p>Now that we have our Model, we need our properties.</p>
<p>First, select <strong>Single line text</strong> in the right list of fields and add a <strong>Display Name</strong> of “Name”. This will also fill out <strong>App Id</strong> which you can leave as is. Then click <strong>Create</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-configure-text-field.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Adding and configuring a new text field in GraphCMS</em></p>
<p>Next, scroll down in the field options on the right and under <strong>Location</strong> select <strong>Map</strong>. Add “Location” as the <strong>Display Name</strong>, which will set the <strong>App Id</strong> as “location” which you can leave as is. Then same as before, click <strong>Create</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-configure-new-map-field.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Adding and configuring a new map field in GraphCMS</em></p>
<p>Now we have a Content Model which we’ll use to create our locations!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-destination-content-model.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Destination content Model in GraphCMS</em></p>
<h3 id="heading-creating-our-locations">Creating our locations</h3>
<p>Finally, let’s create our locations. Navigate over to <strong>Content</strong> in the GraphCMS dashboard, make sure you’ve selected <strong>Destination</strong> under <strong>System</strong> (should be the only one), and select <strong>Create New</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-add-new-content.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Create new Destination Content in GraphCMS</em></p>
<p>Now we can start adding all of our locations! First, add the name of your location in the <strong>Name</strong> field, then you can use the <strong>Search</strong> box under <strong>Location</strong> to find that location on the map.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-create-new-destination-content-item.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Adding a new Destination Content item in GraphCMS</em></p>
<p>Once you’re good, hit <strong>Save and publish</strong>. This will create your first location!</p>
<p>Follow those same steps and create as many locations as you want.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-destination-content-items.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>List of Destination Content items in GraphCMS</em></p>
<p>We’ll use these for our map and bucket list.</p>
<h2 id="heading-step-3-querying-our-graphcms-location-data-with-gatsby-and-graphql">Step 3: Querying our GraphCMS location data with Gatsby and GraphQL</h2>
<p>Now that we have our locations, let’s use them!</p>
<h3 id="heading-adding-a-plugin-to-gatsby-to-query-our-graphql-data">Adding a plugin to Gatsby to query our GraphQL data</h3>
<p>First, we need to <a target="_blank" href="https://www.gatsbyjs.org/packages/gatsby-source-graphql/">add a new plugin</a> to our Gatsby project to query our GraphQL data. In your terminal make sure your development server isn’t running and run:</p>
<pre><code class="lang-shell">yarn add gatsby-source-graphql
# or
npm install gatsby-source-graphql
</code></pre>
<p>Next, open up your <code>gatsby-config.js</code> file in the root of your project and add the following to your plugins:</p>
<pre><code class="lang-json">{
  resolve: 'gatsby-source-graphql',
  options: {
    typeName: 'GCMS',
    fieldName: 'gcms',
    url: '[API ENDPOINT]',
  }
}
</code></pre>
<p>This will be what sources our data from GraphCMS, but we need an endpoint.</p>
<h3 id="heading-finding-our-api-endpoint-for-graphcms">Finding our API endpoint for GraphCMS</h3>
<p>Open back up your browser and head over to your GraphCMS project. After selecting <strong>Settings</strong> in the left navigation, select <strong>API Access</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-api-access.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>API Access in GraphCMS</em></p>
<p>Before we copy our API Endpoint, first we need to update our permissions so we can query our API. Under <strong>Public API Permissions</strong>, check the box next to <strong>Content from stage Published</strong> and click <strong>Save</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-configure-api-access.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Configuring API permissions in GraphCMS</em></p>
<p>Next, copy the URL under <strong>Endpoints</strong>:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/graphcms-copy-api-access-endpoint.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Copying API Endpoint in GraphCMS</em></p>
<p>And paste that in to your <code>gatsby-config.js</code> file that we modified above:</p>
<pre><code class="lang-json">{
  resolve: 'gatsby-source-graphql',
  options: {
    typeName: 'GCMS',
    fieldName: 'gcms',
    url: 'https:<span class="hljs-comment">//[region-id].graphcms.com/v2/[project-id]/master',</span>
  },
},
</code></pre>
<p><em>Note: your URL will have actual values inside of <code>[region-id]</code> and <code>[project-id]</code>.</em></p>
<p>Save your <code>gatsby-config.js</code> file and start your development server backup (<code>yarn develop</code>) and we’re ready to go!</p>
<h3 id="heading-querying-our-locations-via-graphql">Querying our locations via GraphQL</h3>
<p>Finally, let’s actually query our data so that we’ll be able to use it in our app.</p>
<p>We’re going to create a new <a target="_blank" href="https://reactjs.org/docs/hooks-reference.html">React Hook</a> that we’ll be able to use to grab our locations anywhere within our app.</p>
<p>Under <code>src/hooks/index.js</code>, add the following line to the existing list:</p>
<pre><code class="lang-js"><span class="hljs-keyword">export</span> { <span class="hljs-keyword">default</span> <span class="hljs-keyword">as</span> useDestinations } <span class="hljs-keyword">from</span> <span class="hljs-string">'./useDestinations'</span>;
</code></pre>
<p>This will allow us to more conveniently import our hook which we’ll create next.</p>
<p>Under <code>src/hooks</code>, create a new file <code>useDestinations.js</code> and paste in this code:</p>
<pre><code class="lang-js"><span class="hljs-keyword">import</span> { graphql, useStaticQuery } <span class="hljs-keyword">from</span> <span class="hljs-string">'gatsby'</span>;

<span class="hljs-keyword">export</span> <span class="hljs-keyword">default</span> <span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">useDestinations</span>(<span class="hljs-params"></span>) </span>{
  <span class="hljs-keyword">const</span> { gcms = {} } = useStaticQuery( graphql<span class="hljs-string">`
    query {
      gcms {
        destinations {
          id
          name
          location {
            latitude
            longitude
          }
        }
      }
    }
  `</span> );

  <span class="hljs-keyword">let</span> { destinations } = gcms;

  <span class="hljs-keyword">return</span> {
    destinations,
  };
}
</code></pre>
<p>Here, we’re:</p>
<ul>
<li>Importing the <code>graphql</code> and <code>useStaticQuery</code> utilities from Gatsby</li>
<li>We’re creating a new function (or hook) that is exported by default</li>
<li>In that function, we’re using <code>useStaticQuery</code> to create a new GraphQL query which asks GraphCMS to return the data structure we defined.</li>
<li>That query returns a value which we destructure immediately to grab the <code>gmcs</code> object</li>
<li>We destructure <code>destinations</code> from <code>gmcs</code> and return it as part of a new object from our hook</li>
</ul>
<p>With this, we can now use our hook anywhere in our app!</p>
<p>Head over to your <code>src/pages/index.js</code> file, first import our new hook:</p>
<pre><code class="lang-js"><span class="hljs-keyword">import</span> { useDestinations } <span class="hljs-keyword">from</span> <span class="hljs-string">'hooks'</span>;
</code></pre>
<p>And at the top of the <code>IndexPage</code> component, query our data:</p>
<pre><code class="lang-js"><span class="hljs-keyword">const</span> { destinations } = useDestinations();
</code></pre>
<p>This puts all of our locations into the <code>destinations</code> variable. We can test that this works by console logging it out:</p>
<pre><code class="lang-js"><span class="hljs-built_in">console</span>.log(<span class="hljs-string">'destinations'</span>, destinations);
</code></pre>
<p>And once we open up our browser and look in our web developer tools console, we can see our location data!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/gatsby-starter-leaflet-logging-graphcms-destinations.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Logging destinations data to the web console</em></p>
<h2 id="heading-step-4-creating-a-bucket-list-of-destinations-and-adding-them-to-the-map">Step 4: Creating a bucket list of destinations and adding them to the map</h2>
<p>We’re going to start with creating a simple text list of our destinations. This will let us see all of our destinations in an easy to read format.</p>
<h3 id="heading-creating-a-text-list-of-our-destinations">Creating a text list of our destinations</h3>
<p>Inside of our <code>IndexPage</code> and above “Still Getting Started?”, let’s add the following code:</p>
<pre><code class="lang-jsx">&lt;h2&gt;My Destinations&lt;/h2&gt;
<span class="xml"><span class="hljs-tag">&lt;<span class="hljs-name">ul</span>&gt;</span>
  { destinations.map(destination =&gt; {
    const { id, name } = destination;
    return <span class="hljs-tag">&lt;<span class="hljs-name">li</span> <span class="hljs-attr">key</span>=<span class="hljs-string">{id}</span>&gt;</span>{ name }<span class="hljs-tag">&lt;/<span class="hljs-name">li</span>&gt;</span>
  })}
<span class="hljs-tag">&lt;/<span class="hljs-name">ul</span>&gt;</span></span>
</code></pre>
<p>This code:</p>
<ul>
<li>Adds a new header for our list</li>
<li>Creates a new unordered list</li>
<li>Loops through our <code>destinations</code> and creates a new list item for each destination that include’s the location’s name</li>
</ul>
<p>Once we hit save and reload, we should see our list under our map!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/app-adding-list-of-destinations.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>New basic list of destinations in the app</em></p>
<p>The list looks a little odd though right? We probably want to format it a little better to fit into the page.</p>
<p>Open up <code>src/assets/stylesheets/pages/_home.scss</code> and inside of the <code>.home-start</code> class, add:</p>
<pre><code class="lang-scss"><span class="hljs-selector-class">.home-start</span> {

  ...

  <span class="hljs-selector-tag">ul</span> {
    <span class="hljs-attribute">list-style</span>: none;
    <span class="hljs-attribute">padding</span>: <span class="hljs-number">0</span>;
    <span class="hljs-attribute">margin</span>: <span class="hljs-number">1.2em</span> <span class="hljs-number">0</span>;
  }
</code></pre>
<p>Let’s also modify the <code>h2</code> to space things out a little better:</p>
<pre><code class="lang-scss"><span class="hljs-selector-class">.home-start</span> {

  ...

  <span class="hljs-selector-tag">h2</span> {

    <span class="hljs-attribute">margin-top</span>: <span class="hljs-number">2em</span>;

    &amp;<span class="hljs-selector-pseudo">:first-child</span> {
      <span class="hljs-attribute">margin-top</span>: <span class="hljs-number">0</span>;
    }

  }
</code></pre>
<p>Once you hit save and reload, it should look a little better.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/app-fixing-styles-list-of-destinations.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Destinations in the app with cleaned up styles</em></p>
<p>Feel free to make additional changes, but we’ll leave it there for now.</p>
<h3 id="heading-adding-our-destinations-to-the-map">Adding our destinations to the map</h3>
<p>Now we can finally add our destinations to the map!</p>
<p>Inside of our <code>&lt;Map&gt;</code> component, we already have a <code>&lt;Marker&gt;</code>. This allows us to easily add a marker to the map given a position. We’ll take this concept and combine it with our text list to add our locations to the map.</p>
<p>Let’s update our <code>&lt;Map&gt;</code> code to match the following:</p>
<pre><code class="lang-jsx">&lt;<span class="hljs-built_in">Map</span> {...mapSettings}&gt;
  { destinations.map(<span class="hljs-function"><span class="hljs-params">destination</span> =&gt;</span> {
    <span class="hljs-keyword">const</span> { id, name, location } = destination;
    <span class="hljs-keyword">const</span> position = [location.latitude, location.longitude];
    <span class="hljs-keyword">return</span> <span class="xml"><span class="hljs-tag">&lt;<span class="hljs-name">Marker</span> <span class="hljs-attr">key</span>=<span class="hljs-string">{id}</span> <span class="hljs-attr">position</span>=<span class="hljs-string">{position}</span> /&gt;</span></span>
  })}
&lt;/<span class="hljs-built_in">Map</span>&gt;
</code></pre>
<p>Here we:</p>
<ul>
<li>Loop through our <code>destinations</code> to dynamically create a new list of components inside our <code>&lt;Map&gt;</code></li>
<li>Inside each loop instance, we destructure our date from <code>destination</code></li>
<li>We create a new <code>position</code> array with the latitude and longitude</li>
<li>Create a new <code>Marker</code> where we use our position to add it to the map</li>
</ul>
<p>This gives us our markers on the map!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/mapping-app-with-destination-markers.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Markers for each destination in the mapping app</em></p>
<p>But we want to know what each of those locations are, so let’s also add a popup to each marker that will show the name.</p>
<p>First, we need to import <code>Popup</code> from <code>react-leaflet</code>:</p>
<pre><code class="lang-js"><span class="hljs-keyword">import</span> { Marker, Popup } <span class="hljs-keyword">from</span> <span class="hljs-string">'react-leaflet'</span>;
</code></pre>
<p>Then, let’s update our <code>&lt;Marker&gt;</code> component to return:</p>
<pre><code class="lang-jsx"><span class="hljs-keyword">return</span> (
  <span class="xml"><span class="hljs-tag">&lt;<span class="hljs-name">Marker</span> <span class="hljs-attr">key</span>=<span class="hljs-string">{id}</span> <span class="hljs-attr">position</span>=<span class="hljs-string">{position}</span>&gt;</span>
    <span class="hljs-tag">&lt;<span class="hljs-name">Popup</span>&gt;</span>{ name }<span class="hljs-tag">&lt;/<span class="hljs-name">Popup</span>&gt;</span>
  <span class="hljs-tag">&lt;/<span class="hljs-name">Marker</span>&gt;</span></span>
);
</code></pre>
<p>And once we save and open back up our map, you can now click on each marker and see our destinations name!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/mapping-app-with-destination-marker-popup.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Popup for each destination marker in the mapping app</em></p>
<h3 id="heading-before-were-done-center-the-map">Before we’re done, center the map</h3>
<p>Previously, our demo map centered on Washington, DC. Let’s update that to the center of the world since our map doesn’t focus on the United States.</p>
<p>Update the <code>LOCATION</code> variable to:</p>
<pre><code class="lang-js"><span class="hljs-keyword">const</span> LOCATION = {
  <span class="hljs-attr">lat</span>: <span class="hljs-number">0</span>,
  <span class="hljs-attr">lng</span>: <span class="hljs-number">0</span>,
};
</code></pre>
<p>And with that, we have our map!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/mapping-app-with-travel-bucket-list-markers.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Final mapping app with markers and popups for each destination</em></p>
<p><a target="_blank" href="https://github.com/colbyfayock/my-travel-bucket-list/commit/56dbadb74cea2770174eb8ea7c039be27ca18971">Follow along with the commit!</a></p>
<h2 id="heading-what-else-other-features-can-we-add-to-our-app">What else other features can we add to our app?</h2>
<h3 id="heading-add-a-way-to-check-off-each-location">Add a way to check off each location</h3>
<p>Inside GraphCMS, you can add a new field to your Destination content model that allows you to select whether you visited each location or not.</p>
<p>With this value, we can add it to our query and update our map with some kind of indicator like a checkmark to show that we’ve checked it off our bucket list!</p>
<h3 id="heading-customize-your-map-background-styles">Customize your map background styles</h3>
<p>We’re using a public version of <a target="_blank" href="https://www.openstreetmap.org/#map=5/38.007/-95.844">OpenStreetMap</a> which is open source, but <a target="_blank" href="https://www.mapbox.com/">Mapbox</a> offers some cool maps we can use to make it look a little more impressive.</p>
<p>If you want to get started changing your map styles, you can <a target="_blank" href="https://www.freecodecamp.org/news/how-to-set-up-a-custom-mapbox-basemap-with-gatsby-and-react-leaflet/">check out this other walkthrough</a> of mine to learn how to use Mapbox.</p>
<p><a target="_blank" href="https://www.colbyfayock.com/2020/04/how-to-set-up-a-custom-mapbox-basemap-style-with-react-leaflet-and-leaflet-gatsby-starter">Check out the blog post</a> or <a target="_blank" href="https://www.youtube.com/watch?v=KcPJr1b_rv0">watch the video</a>!</p>
<h3 id="heading-style-the-map-markers-with-a-custom-image">Style the map markers with a custom image</h3>
<p>You can check out my video walk through on how to change the markers to a custom image.</p>
<p>Take that a step further and use the feature above to dynamically show a different marker image when you’ve checked off a location.</p>
<p><a target="_blank" href="https://egghead.io/lessons/react-customize-geojson-data-markers-with-a-react-leaflet-icon-image?pl=mapping-with-react-leaflet-e0e0&amp;af=atzgap">Check out the video on Egghead.io!</a></p>
<h2 id="heading-want-to-learn-more-about-maps">Want to learn more about maps?</h2>
<p>Check out some of my other tutorials and videos:</p>
<ul>
<li><a target="_blank" href="https://egghead.io/playlists/mapping-with-react-leaflet-e0e0?af=atzgap">Mapping with React Leaflet</a> (<a target="_blank" href="https://egghead.io/?af=atzgap">egghead.io</a>)</li>
<li><a target="_blank" href="https://www.youtube.com/playlist?list=PLFsfg2xP7cbJTnTFH3OGXEAt9O1mpoqpR">Mapping Apps with React, Gatsby, &amp; Leaflet</a> (<a target="_blank" href="https://www.youtube.com/channel/UC7Wpv0Aft4NPNhHWW_JC4GQ">youtube.com</a>)</li>
<li><a target="_blank" href="https://www.colbyfayock.com/2020/03/how-to-create-a-coronavirus-covid-19-dashboard-map-app-with-gatsby-and-leaflet">How to create a Coronavirus (COVID-19) Dashboard &amp; Map App with Gatsby and Leaflet</a> (colbyfayock.com)</li>
<li><a target="_blank" href="https://www.colbyfayock.com/2020/03/how-to-create-a-summer-road-trip-mapping-app-with-gatsby-and-leaflet">How to Create a Summer Road Trip Mapping App with Gatsby and Leaflet</a> (colbyfayock.com)</li>
<li><a target="_blank" href="https://www.freecodecamp.org/news/easily-spin-up-a-mapping-app-in-react-with-leaflet/">How to build a mapping app in React the easy way with Leaflet</a> (colbyfayock.com)</li>
<li><a target="_blank" href="https://www.colbyfayock.com/2020/03/anyone-can-map-inspiration-and-an-introduction-to-the-world-of-mapping">Anyone Can Map! Inspiration and an introduction to the world of mapping</a> (colbyfayock.com)</li>
</ul>
<h2 id="heading-whats-on-your-travel-bucket-list">What’s on your travel bucket list?</h2>
<p><a target="_blank" href="https://twitter.com/colbyfayock">Let me know on Twitter!</a></p>
<div class="embed-wrapper">
        <blockquote class="twitter-tweet">
          <a href="https://twitter.com/colbyfayock/status/1275441134144110595"></a>
        </blockquote>
        <script defer="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script></div>
<div id="colbyfayock-author-card">
  <p>
    <a href="https://twitter.com/colbyfayock">
      <img src="https://res.cloudinary.com/fay/image/upload/w_2000,h_400,c_fill,q_auto,f_auto/w_1020,c_fit,co_rgb:007079,g_north_west,x_635,y_70,l_text:Source%20Sans%20Pro_64_line_spacing_-10_bold:Colby%20Fayock/w_1020,c_fit,co_rgb:383f43,g_west,x_635,y_6,l_text:Source%20Sans%20Pro_44_line_spacing_0_normal:Follow%20me%20for%20more%20JavaScript%252c%20UX%252c%20and%20other%20interesting%20things!/w_1020,c_fit,co_rgb:007079,g_south_west,x_635,y_70,l_text:Source%20Sans%20Pro_40_line_spacing_-10_semibold:colbyfayock.com/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_68,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_145,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_222,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_295,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/v1/social-footer-card" alt="Follow me for more Javascript, UX, and other interesting things!" width="2000" height="400" loading="lazy">
    </a>
  </p>
  <ul>
    <li>
      <a href="https://twitter.com/colbyfayock">? Follow Me On Twitter</a>
    </li>
    <li>
      <a href="https://youtube.com/colbyfayock">?️ Subscribe To My Youtube</a>
    </li>
    <li>
      <a href="https://www.colbyfayock.com/newsletter/">✉️ Sign Up For My Newsletter</a>
    </li>
  </ul>
</div>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Front End Developer vs Back End Developer – Definition and Meaning In Practice ]]>
                </title>
                <description>
                    <![CDATA[ Websites and applications are complex! Buttons and images are just the tip of the iceberg. With this kind of complexity, you need people to manage it, but which parts are the front end developers and back end developers responsible for? [The many la... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/front-end-developer-vs-back-end-developer-definition-and-meaning-in-practice/</link>
                <guid isPermaLink="false">66b8e3260cedc1f2a4f70691</guid>
                
                    <category>
                        <![CDATA[ Back end development  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ backend ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Backend Development ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Cloud Computing ]]>
                    </category>
                
                    <category>
                        <![CDATA[ code ]]>
                    </category>
                
                    <category>
                        <![CDATA[ coding ]]>
                    </category>
                
                    <category>
                        <![CDATA[ front end ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Front-end Development ]]>
                    </category>
                
                    <category>
                        <![CDATA[ JavaScript ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Web Development ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Colby Fayock ]]>
                </dc:creator>
                <pubDate>Thu, 18 Jun 2020 14:45:00 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2020/06/front-end-back-end.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Websites and applications are complex! Buttons and images are just the tip of the iceberg. With this kind of complexity, you need people to manage it, but which parts are the front end developers and back end developers responsible for?</p>
<ul>
<li>[The many layers of development](#The many layers of development)</li>
<li><a class="post-section-overview" href="#heading-but-were-not-all-full-stack">But we’re not all full stack</a></li>
<li><a class="post-section-overview" href="#heading-so-what-is-the-difference-between-front-end-development-and-back-end-development">So what is the difference between Front End Development and Back End Development?</a></li>
<li><a class="post-section-overview" href="#heading-what-is-front-end-development">What is Front End Development?</a></li>
<li><a class="post-section-overview" href="#heading-what-is-back-end-development">What is Back End Development?</a></li>
<li><a class="post-section-overview" href="#heading-where-things-get-fuzzy">Where things get fuzzy</a></li>
<li><a class="post-section-overview" href="#heading-resources-to-learn">Resources to learn</a></li>
</ul>
<h2 id="heading-the-many-layers-of-development">The many layers of development</h2>
<p>Whether you’re working on a website or a native iOS app, all development environments share a common theme — there’s a front end to an application and a back end.</p>
<p>This line can get blurry, especially given the rise of javascript and the <a target="_blank" href="https://en.wikipedia.org/wiki/Serverless_computing">serverless</a> world. With the tooling somewhat merging together, we might sometimes wonder if we’re a <a target="_blank" href="https://www.colbyfayock.com/2020/02/how-to-become-a-full-stack-web-developer-in-2020/">full stack developer</a>.</p>
<div class="embed-wrapper">
        <blockquote class="twitter-tweet">
          <a href="https://twitter.com/holtbt/status/977419276251430912"></a>
        </blockquote>
        <script defer="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script></div>
<h2 id="heading-but-were-not-all-full-stack">But we’re not all full stack</h2>
<p>As much as we might all <a target="_blank" href="https://full-stack.netlify.app/">want to be</a>, we’re not all full stack developers. Personally, I find myself able to be productive in the back end of an application, but it’s not my strength and I much prefer to be heads down building UIs.</p>
<p>And some people are the opposite, where they are strongest dealing with building APIs in the back end of an application and while they can build out a UI, it might be more of a prototype-like experience than a fleshed out application.</p>
<h2 id="heading-so-what-is-the-difference-between-front-end-development-and-back-end-development">So what is the difference between Front End Development and Back End Development?</h2>
<p>Even if you are a full stack developer, that doesn’t mean there’s not a division of responsibilities.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/front-end-vs-back-end-engineer-2.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Front End Engineer vs Back End Engineer</em></p>
<p>So what do those look like?</p>
<h2 id="heading-what-is-front-end-development">What is Front End Development?</h2>
<p>The front end of an application typically refers to the layer that represents the UI (user interface). This can include anything from a static site with HTML and CSS to a full <a target="_blank" href="https://reactjs.org/">React</a> app that powers the UI.</p>
<h3 id="heading-what-did-front-end-development-traditionally-look-like">What did Front End Development traditionally look like?</h3>
<p>Javascript currently rules the front end web, but that wasn’t always the case. While it could have been used to add little bits of interaction to a site, typically front ends were rendered using server-side templating languages like framework-driven <a target="_blank" href="https://www.php.net/">PHP</a> and <a target="_blank" href="http://www.template-toolkit.org/">Template Toolkit</a> (<a target="_blank" href="https://www.perl.org/">Perl</a>).</p>
<p>This grew to be super popular in practice with home grown frameworks or tools like <a target="_blank" href="https://wordpress.org/">Wordpress</a> that used PHP to drive a massive community of developers who built their websites with those tools.</p>
<p>The way it worked was the templating language was able to get its data straight from the server as it was rendered. When a browser requested the page directly from the origin (the server itself), whatever data the template would need, the application logic would provide at that time.</p>
<p>Some of the more traditional front end tools include:</p>
<ul>
<li>Libraries like <a target="_blank" href="https://jquery.com/">jQuery</a> or <a target="_blank" href="https://mootools.net/">MooTools</a></li>
<li>Website frameworks like <a target="_blank" href="https://wordpress.com/">Wordpress</a></li>
<li>Plain <a target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li>
<li>Abundant use of <a target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table">Table</a> elements</li>
</ul>
<p>But as time went on, javascript kept getting more mature as a language and browsers kept getting more powerful, which led to the idea that we could move more of that work to the browser to build faster and more interactive experiences.</p>
<h3 id="heading-what-does-front-end-development-look-like-now">What does Front End Development look like now?</h3>
<p>Now it’s common to see javascript-heavy websites and apps built using UI frameworks like <a target="_blank" href="https://reactjs.org/">React</a>, <a target="_blank" href="https://vuejs.org/">Vue</a>, and <a target="_blank" href="https://angular.io/">Angular</a>. These tools provide abstractions that allow developers to build complex UIs with reusable patterns like components.</p>
<p>When the browser loads the page, the page receives an initial HTML document that also includes the script tag to the javascript (same as always). But once that javascript loads, it reaches out to APIs using browser requests that when completed, update the page to fill in any kind of dynamic data that you’d typically get along with that first HTML document.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/building-website-with-more-steps.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>It's like building a website... with more steps</em></p>
<p>While it sounds like more steps, it commonly provides a faster initial page load and render, not to mention it has a great developer experience. By delivering less on that first request and prioritizing what loads after that, it usually ends up as a better user experience.</p>
<p>Some of the front end tools that are more common and growing in popularity  include:</p>
<ul>
<li>UI frameworks like <a target="_blank" href="https://reactjs.org/">React</a> or <a target="_blank" href="https://vuejs.org/">Vue</a></li>
<li>Web frameworks like <a target="_blank" href="https://www.gatsbyjs.org/">Gatsby</a></li>
<li>Compilers like <a target="_blank" href="https://babeljs.io/">Babel</a></li>
<li>Bundlers like <a target="_blank" href="https://webpack.js.org/">Webpack</a></li>
<li>CSS tools like <a target="_blank" href="https://sass-lang.com/">Sass</a></li>
</ul>
<p>But those APIs, whether ones we pay for or create ourselves, need to be built <em>somewhere</em>. That’s where the back end comes in.</p>
<h2 id="heading-what-is-back-end-development">What is Back End Development?</h2>
<p>The back end layer is usually where the business logic occurs. This can be super complex like the rules that determine revenue for an e-commerce company or something more common like a user profile.</p>
<h3 id="heading-what-did-back-end-development-traditionally-look-like">What did Back End Development traditionally look like?</h3>
<p>The back ends of applications were historically built using server-side languages like <a target="_blank" href="https://www.php.net/">PHP</a> or <a target="_blank" href="https://www.ruby-lang.org/en/">Ruby</a>. The idea is that you have a server that you need to perform complex operations on, so the way to do that is with a language that server would understand.</p>
<p>On each request to the server, the backend would perform the full stack of the operations, including rendering out the front end. By using frameworks or DIY architectures, the back end would accept the request, figure out what it should do with that request, run any business logic needed with the request, and provide the front end any data that it would need to display a response to that request.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/front-end-back-end-500-error.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Back end giving the front end a 500 Internal Server Error</em></p>
<p>Some of the more traditional back end tools include:</p>
<ul>
<li>On-premise or remotely managed servers like <a target="_blank" href="https://www.rackspace.com/">Rackspace</a></li>
<li>HTTP servers using <a target="_blank" href="https://httpd.apache.org/">Apache</a></li>
<li>Databases like <a target="_blank" href="https://www.mysql.com/">MySQL</a></li>
<li>Server side languages like <a target="_blank" href="https://www.php.net/">PHP</a> or <a target="_blank" href="https://www.perl.org/">Perl</a></li>
<li>Application frameworks like <a target="_blank" href="https://rubyonrails.org/">Ruby on Rails</a></li>
</ul>
<h3 id="heading-what-does-back-end-development-look-like-now">What does Back End Development look like now?</h3>
<p>Back end stacks look somewhat similar to the way they did before, aside from newer code patterns, except more often you’ll see the back ends provide data through APIs via HTTP requests instead of directly to the templates the front end team are working on.</p>
<p>While the foundation isn’t super different, it actually be comes increasingly complex as you have to deal with different security implications that could compromise your system if not properly configured such as leaving an API open to the public that returns sensitive user data.</p>
<p>But also how the server operates can be completely different. While previously, we might run our python on our own managed server (we still can), we can now make use of serverless functions with tools like <a target="_blank" href="https://aws.amazon.com/lambda/">AWS Lambda</a> that simplify how we manage code.</p>
<p>While “<a target="_blank" href="https://en.wikipedia.org/wiki/Serverless_computing">serverless</a>” doesn’t necessarily mean there are literally no servers, it means that as a service, the developer doesn’t have to worry about maintaining that server and can instead just focus on the code they need to run.</p>
<p>Some of the back end tools that are more common and growing in popularity include:</p>
<ul>
<li>Cloud servers like <a target="_blank" href="https://aws.amazon.com/ec2/">AWS EC2</a></li>
<li>Serverless services like <a target="_blank" href="https://aws.amazon.com/lambda/">AWS Lambda</a></li>
<li>NoSQL databases like <a target="_blank" href="https://www.mongodb.com/">MongoDB</a></li>
<li>Languages like <a target="_blank" href="https://www.python.org/">Python</a> or javascript via <a target="_blank" href="https://nodejs.org/">NodeJS</a></li>
<li>Web application frameworks like <a target="_blank" href="https://www.serverless.com/">Serverless Framework</a></li>
</ul>
<h2 id="heading-where-things-get-fuzzy">Where things get fuzzy</h2>
<p>Part of the twist with back ends is now you can write your back end with javascript. With the inception of <a target="_blank" href="https://nodejs.org/en/">Node.js</a>, developers were given the ability to use their favorite browser language to do most of the same things they were used to and familiar with but now on a server.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/nodejs-never-stopped-to-think-if-should.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Never stopped to think if we should write JS on a server</em></p>
<p>While not everyone is fond of running javascript as a server side language, it became a little easier to use the same language to write the full stack of an application. This changed the game a bit as far as front ends and back ends were concerned.</p>
<p>But it’s also started to come full circle where you now see systems that build APIs right <a target="_blank" href="https://redwoodjs.com/tutorial/redwood-file-structure">next to the front end</a> similar to what you might see in a traditional stack.</p>
<h2 id="heading-front-end-vs-back-end">Front End vs Back End</h2>
<p>Regardless of the stack, there will always be the separation of concerns. The UI and all of the interaction, whether rendered on the server or in the browser, is what makes the front end the front end and the data and business logic, whether coming from the server in your company’s closet or a managed function, is what makes the back end the back end.</p>
<p>Whether you prefer to work on the user facing features or build the logic that lets them do things, there are plenty of resources to get started.</p>
<h2 id="heading-resources-to-learn">Resources to learn</h2>
<h3 id="heading-front-end">Front End</h3>
<ul>
<li><a target="_blank" href="https://www.freecodecamp.org/learn/">freecodecamp.org Responsive Web Design Certification</a> (freecodecamp.org)</li>
<li><a target="_blank" href="https://beginnerjavascript.com/">Beginner Javascript</a> (beginnerjavascript.com - Wes Bos)</li>
<li><a target="_blank" href="https://www.youtube.com/watch?v=Ke90Tje7VS0">React Tutorial for Beginners</a> (youtube.com - Programming with Mosh)</li>
<li><a target="_blank" href="https://frontendmasters.com/">Front End Masters</a> (frontendmasters.com)</li>
</ul>
<h3 id="heading-back-end">Back End</h3>
<ul>
<li><a target="_blank" href="https://www.freecodecamp.org/learn">freecodecamp.org APIs and Microservices Certification</a> (freecodecamp.org)</li>
<li><a target="_blank" href="https://kentcdodds.com/blog/super-simple-start-to-serverless/">Super simple start to serverless</a> (kentcdodds.com)</li>
<li><a target="_blank" href="https://www.freecodecamp.org/news/aws-certified-cloud-practitioner-training-2019-free-video-course/">AWS Certified Cloud Practitioner Training 2019 - A Free 4-hour Video Course</a> (freecodecamp.org)</li>
<li><a target="_blank" href="https://www.edx.org/course/cs50s-introduction-to-computer-science">CS50's Introduction to Computer Science</a> (edx.org)</li>
</ul>
<h3 id="heading-all-the-above">All the above</h3>
<ul>
<li><a target="_blank" href="https://www.colbyfayock.com/2020/02/how-to-become-a-full-stack-web-developer-in-2020/">How to Become a Full Stack Web Developer in 2020</a> (colbyfayock.com)</li>
<li><a target="_blank" href="https://egghead.io/?af=atzgap">Egghead.io</a> (egghead.io)</li>
<li><a target="_blank" href="https://www.100daysofcode.com/">100 Days of Code</a> (100daysofcode.com)</li>
<li><a target="_blank" href="https://www.udemy.com/course/the-web-developer-bootcamp/">The Web Developer Bootcamp</a> (udemy.com - Colt Steele)</li>
</ul>
<div id="colbyfayock-author-card">
  <p>
    <a href="https://twitter.com/colbyfayock">
      <img src="https://res.cloudinary.com/fay/image/upload/w_2000,h_400,c_fill,q_auto,f_auto/w_1020,c_fit,co_rgb:007079,g_north_west,x_635,y_70,l_text:Source%20Sans%20Pro_64_line_spacing_-10_bold:Colby%20Fayock/w_1020,c_fit,co_rgb:383f43,g_west,x_635,y_6,l_text:Source%20Sans%20Pro_44_line_spacing_0_normal:Follow%20me%20for%20more%20JavaScript%252c%20UX%252c%20and%20other%20interesting%20things!/w_1020,c_fit,co_rgb:007079,g_south_west,x_635,y_70,l_text:Source%20Sans%20Pro_40_line_spacing_-10_semibold:colbyfayock.com/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_68,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_145,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_222,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_295,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/v1/social-footer-card" alt="Follow me for more Javascript, UX, and other interesting things!" width="2000" height="400" loading="lazy">
    </a>
  </p>
  <ul>
    <li>
      <a href="https://twitter.com/colbyfayock">? Follow Me On Twitter</a>
    </li>
    <li>
      <a href="https://youtube.com/colbyfayock">?️ Subscribe To My Youtube</a>
    </li>
    <li>
      <a href="https://www.colbyfayock.com/newsletter/">✉️ Sign Up For My Newsletter</a>
    </li>
  </ul>
</div>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Sync VS Code Settings Between Multiple Devices and Environments ]]>
                </title>
                <description>
                    <![CDATA[ All developers like their text editor a certain way, but it can be tough to make sure all of your environments have the same configuration. How can we make sure our VS Code configuration is the same wherever we use it? What is VS Code? What will we ... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-sync-vs-code-settings-between-multiple-devices-and-environments/</link>
                <guid isPermaLink="false">66b8e36c682e4a25eed261a2</guid>
                
                    <category>
                        <![CDATA[ code ]]>
                    </category>
                
                    <category>
                        <![CDATA[ coding ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Developer Tools ]]>
                    </category>
                
                    <category>
                        <![CDATA[ editor ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ programing ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tools ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Visual Studio Code ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Colby Fayock ]]>
                </dc:creator>
                <pubDate>Tue, 16 Jun 2020 14:45:45 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-settings-sync.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>All developers like their text editor a certain way, but it can be tough to make sure all of your environments have the same configuration. How can we make sure our VS Code configuration is the same wherever we use it?</p>
<ul>
<li><a class="post-section-overview" href="#heading-what-is-vs-code">What is VS Code?</a></li>
<li><a class="post-section-overview" href="#heading-what-will-we-use">What will we use?</a></li>
<li><a class="post-section-overview" href="#heading-how-does-it-work">How does it work?</a></li>
<li><a class="post-section-overview" href="#heading-step-1-install-settings-sync">Step 1: Install Settings Sync</a></li>
<li><a class="post-section-overview" href="#heading-step-2-authorize-access-to-github">Step 2: Authorize access to Github</a></li>
<li><a class="post-section-overview" href="#heading-step-3-upload-your-current-settings">Step 3: Upload your current settings</a></li>
<li><a class="post-section-overview" href="#heading-step-4-syncing-your-configuration-to-another-environment">Step 4: Syncing your configuration to another environment</a></li>
<li><a class="post-section-overview" href="#heading-step-5-updating-your-configuration">Step 5: Updating your configuration</a></li>
</ul>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/TR2va67cVkQ" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" loading="lazy"></iframe></div>
<h2 id="heading-what-is-vs-code">What is VS Code?</h2>
<p><a target="_blank" href="https://code.visualstudio.com/">Visual Studio Code</a>, or VS Code, is an all-inclusive code editor that takes all of the features you want out of working with code and puts them in one editor to make you ultra productive.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/visual-studio-code-editor.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>VS Code editor</em></p>
<p>It’s been the “cool kid on the block” for a little while now and has been increasingly growing in popularity at least in the JavaScript community. Microsoft has put a lot of effort into making it something people want to use (and they’re doing a great job at that).</p>
<h2 id="heading-what-will-we-use">What will we use?</h2>
<p>We’re going to use a VS Code extension called <a target="_blank" href="https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync">Settings Sync</a> that makes use of Github’s <a target="_blank" href="https://gist.github.com/">Gist</a> feature to store a private JSON configuration file in the cloud.</p>
<h2 id="heading-how-does-it-work">How does it work?</h2>
<p>The extension uses Github’s OAuth to log in to your Github account. Once approved, VS Code obtains an access token and reaches out to both store and download your settings file to a private Github Gist.</p>
<p>Once it’s set up, you can then configure the extension on any other instance of VS Code and immediately download your configuration to sync up your editor.</p>
<h2 id="heading-step-0-vs-code">Step 0: VS Code</h2>
<p>We’ll assume for this walkthrough you have VS Code already installed. While you don’t need to have any special configuration, having something different than the default (like a <a target="_blank" href="https://code.visualstudio.com/docs/getstarted/themes">color theme</a>) will help you see it work.</p>
<p>Let’s get started!</p>
<h2 id="heading-step-1-install-settings-sync">Step 1: Install Settings Sync</h2>
<p>The first thing we need to do is install the extension. You can do this <a target="_blank" href="https://code.visualstudio.com/docs/editor/extension-gallery">a few ways</a> — you can visit <a target="_blank" href="https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync">the webpage</a> and hit <strong>Install</strong> which will open up VS Code or you can search for the extension in the Extensions panel.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-settings-sync-1.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>VS Code Settings Sync extension</em></p>
<p>Once installed, it will open up a new tab with the Settings Sync dashboard.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-settings-sync-dashboard.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Settings Sync dashboard after installation</em></p>
<h2 id="heading-step-2-authorize-access-to-github">Step 2: Authorize access to Github</h2>
<p>To get started with Github, click the <strong>Login with Github</strong> button in the Settings Sync dashboard.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-settings-sync-login-with-github.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Log in to Settings Sync with Github</em></p>
<p>This will open up Github in your default web browser and ask you to log in. While you can use any Github account you want, it would probably make most sense to use your personal account.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-login-success.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Successful Github login to Settings Sync</em></p>
<p>Once you’re logged in, you should now see <strong>Success!</strong> in your browser.</p>
<h2 id="heading-step-3-upload-your-current-settings">Step 3: Upload your current settings</h2>
<p>Now that you’re connected to Github, you’re ready to upload your settings.</p>
<p>Open up your <a target="_blank" href="https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette">Command Palette</a> with CMD+Shift+P (on Mac) or navigate to View and Command Palette. Type “Sync Upload” which will filter the commands and hit enter once the <strong>Sync: Update/Upload Settings</strong> option is selected.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-settings-sync-upload-update-command.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Update/Upload Settings command in Settings Sync</em></p>
<p>When doing this, you might be prompted with screen that asks if you want to force upload — press <strong>Yes</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-settings-sync-force-upload.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Force upload new settings in Settings Sync</em></p>
<p>At this point, Settings Sync will create a new Gist in your Github account with your configuration settings. Once it’s done you should see a success message.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-settings-sync-successful-upload.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Successful settings upload in Settings Sync</em></p>
<p>You should now be able to visit <a target="_blank" href="https://gist.github.com/">gist.github.com</a> and find a new private <code>cloudSettings</code> Gist that includes all of your VS Code settings!</p>
<h2 id="heading-step-4-syncing-your-configuration-to-another-environment">Step 4: Syncing your configuration to another environment</h2>
<p>To sync your VS Code configuration to another computer or VS Code environment, you want to first follow steps 1 and 2 above — installing the extension and logging in to Github.</p>
<p>The difference is this time, you’ll want to configure VS Code to download your settings instead of upload them.</p>
<p>To get started, first open back up your Sync Settings dashboard. If this is a new installation like we’re assuming here, you can open up the Command Palette and type “sync download” and hit enter which will open up that dashboard. Here, click <strong>Edit Configuration</strong> this time.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-settings-sync-edit-configuration.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Edit Settings Sync configuration</em></p>
<p>On this screen, you should see your <strong>Github Access Token</strong>, but you should also see an empty field for Gist ID. Here, we want to first grab the ID from our cloudSettings Gist URL:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-settings-github-gist.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>VS Code cloudSettings Gist ID</em></p>
<p>And then paste that value inside of our <strong>Gist ID</strong> input in VS Code.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-settings-sync-gist-id-configuration-1.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Adding Gist ID to Settings Sync configuration</em></p>
<p>Once it’s there, you can open the Command Palette again, type “sync download”, and hit enter, and Sync Settings will fetch your VS Code configuration from the Gist and update your local settings with that configuration!</p>
<h2 id="heading-step-5-updating-your-configuration">Step 5: Updating your configuration</h2>
<p>From here on, any time you want to make a new change to your stored configuration, you’ll want to use both the Update/Upload and Download features like we used above.</p>
<p>To update a new tweak to your configuration, type “sync update”  and hit enter:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-settings-sync-update-settings.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Update command for Settings Sync</em></p>
<p>And to download your configuration to sync up another editor, type “sync download” and hit enter:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/vs-code-settings-sync-download-command.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Download settings command for Settings Sync</em></p>
<p>These commands will both update your cloudSettings Gist and download from it to sync up your VS Code instances</p>
<h2 id="heading-whats-your-favorite-vs-code-trick">What’s your favorite VS Code trick?</h2>
<p><a target="_blank" href="https://twitter.com/colbyfayock">Share it with me on Twitter!</a></p>
<h2 id="heading-join-the-conversation">Join the conversation</h2>
<div class="embed-wrapper">
        <blockquote class="twitter-tweet">
          <a href="https://twitter.com/colbyfayock/status/1272906851005366274"></a>
        </blockquote>
        <script defer="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script></div>
<div id="colbyfayock-author-card">
  <p>
    <a href="https://twitter.com/colbyfayock">
      <img src="https://res.cloudinary.com/fay/image/upload/w_2000,h_400,c_fill,q_auto,f_auto/w_1020,c_fit,co_rgb:007079,g_north_west,x_635,y_70,l_text:Source%20Sans%20Pro_64_line_spacing_-10_bold:Colby%20Fayock/w_1020,c_fit,co_rgb:383f43,g_west,x_635,y_6,l_text:Source%20Sans%20Pro_44_line_spacing_0_normal:Follow%20me%20for%20more%20JavaScript%252c%20UX%252c%20and%20other%20interesting%20things!/w_1020,c_fit,co_rgb:007079,g_south_west,x_635,y_70,l_text:Source%20Sans%20Pro_40_line_spacing_-10_semibold:colbyfayock.com/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_68,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_145,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_222,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_295,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/v1/social-footer-card" alt="Follow me for more Javascript, UX, and other interesting things!" width="2000" height="400" loading="lazy">
    </a>
  </p>
  <ul>
    <li>
      <a href="https://twitter.com/colbyfayock">? Follow Me On Twitter</a>
    </li>
    <li>
      <a href="https://youtube.com/colbyfayock">?️ Subscribe To My Youtube</a>
    </li>
    <li>
      <a href="https://www.colbyfayock.com/newsletter/">✉️ Sign Up For My Newsletter</a>
    </li>
  </ul>
</div>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Grow Your Audience and Share Your Content with the World ]]>
                </title>
                <description>
                    <![CDATA[ Building quality content can be a really rewarding task. But for those just starting out or those who don't yet have a large audience, that content can easily get buried amongst the other million tweets on Twitter. How can we expand our reach and hel... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-grow-your-audience-and-share-your-content-with-the-world/</link>
                <guid isPermaLink="false">66b8e35f684cb75ad7f76d1e</guid>
                
                    <category>
                        <![CDATA[ blog ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Blogger ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Blogging ]]>
                    </category>
                
                    <category>
                        <![CDATA[ #content marketing ]]>
                    </category>
                
                    <category>
                        <![CDATA[ marketing ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technical writing ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ write ]]>
                    </category>
                
                    <category>
                        <![CDATA[ writing ]]>
                    </category>
                
                    <category>
                        <![CDATA[ writing tips ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Colby Fayock ]]>
                </dc:creator>
                <pubDate>Thu, 11 Jun 2020 14:45:00 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2020/06/grow-audience.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Building quality content can be a really rewarding task. But for those just starting out or those who don't yet have a large audience, that content can easily get buried amongst the other million tweets on Twitter. How can we expand our reach and help our content impact more people?</p>
<ul>
<li><a class="post-section-overview" href="#heading-creating-our-content-for-the-masses">Creating our content for the masses</a></li>
<li><a class="post-section-overview" href="#heading-what-do-i-mean-by-building-an-audience">What do I mean by building an audience?</a></li>
<li><a class="post-section-overview" href="#heading-leveraging-larger-platforms-and-publications">Leveraging larger platforms and publications</a></li>
<li><a class="post-section-overview" href="#heading-syndicating-with-other-platforms">Syndicating with other platforms</a></li>
<li><a class="post-section-overview" href="#heading-contributing-to-other-publications">Contributing to other publications</a></li>
<li><a class="post-section-overview" href="#heading-sharing-on-content-curation-platforms">Sharing on content curation platforms</a></li>
<li><a class="post-section-overview" href="#heading-other-notable-places">Other notable places</a></li>
</ul>
<h2 id="heading-creating-our-content-for-the-masses">Creating our content for the masses</h2>
<p>Every content creator has been there – you just wrote an article that you're super excited about and think it's going to be a massive hit. But you quickly find that overnight success never came when you wake up hoping to find thousands of likes on the tweet only to find none.</p>
<p>But that might not have anything to do with your article. It could absolutely be groundbreaking, but unfortunately there's not many people around to see it.</p>
<p>Social networks don't tend to prioritize their feeds based on how good your article is, but how much interaction and engagement that post received. While that kind of makes sense, that doesn't play well for people just starting out.</p>
<p>So how do we expand that reach? While the obvious route is to buy your way to the top with ads, I'm going to focus on more natural ways we can build our audience.</p>
<h2 id="heading-what-do-i-mean-by-building-an-audience">What do I mean by building an audience?</h2>
<p>Your favorite web developers or social media influencers didn't start with 100,000 followers – most of them worked really hard to get where they are.  That process is what building an audience is all about.</p>
<p>By creating content, you're working to find others who enjoy your take or get inspired by it. Ideally, those same people will follow you on their favorite platform with the hope that your next piece will inspire them just the same.</p>
<p>Your audience is those people who followed you or are actively engaging with the content you create. The ones who are supporting you by giving a thumbs up to your new video. The ones who subscribe to <a target="_blank" href="https://www.colbyfayock.com/newsletter/">your newsletter</a> because they're eager to see the awesome work you did that week.</p>
<p>By working hard on your content, being consistent, and <a target="_blank" href="https://www.colbyfayock.com/2020/05/how-to-write-more-effectively-and-develop-your-unique-style/">finding your voice</a>, you'll naturally build that audience. But to build that audience, people first need to see it. So how can we get it in front of people?</p>
<h2 id="heading-leveraging-larger-platforms-and-publications">Leveraging larger platforms and publications</h2>
<p>While your new blog might not have anyone subscribed to your RSS feed, there are platforms out there with large audiences that are actively looking for more authors.</p>
<p>By leveraging these audiences, you're helping to get your foot in the door. While you might need to give up a little bit of ownership of the article by writing it somewhere that's not your own blog, you're providing a means for more people to read your content and find out who you are.</p>
<p>This process can take many forms, but I'm going to focus on a few things:</p>
<ul>
<li>Syndicating with other platforms</li>
<li>Contributing to other publications</li>
<li>Sharing on content curation platforms</li>
</ul>
<h2 id="heading-syndicating-with-other-platforms">Syndicating with other platforms</h2>
<p>Syndicating your content can be one of the more effective means of getting access to a larger network while holding on to a lot of the benefits of hosting your own content.</p>
<p>Not all platforms are the same, but most of the ones I'm going to go over allow you to provide a <a target="_blank" href="https://moz.com/learn/seo/canonicalization">canonical link</a> to your own website. What this does is allow you to publish your work on different platforms all while the "SEO juice" ultimately flows back to your own blog.</p>
<p>While it's important from an SEO perspective, it's also generally a good way to keep your content hosted on your own website where you know you'll maintain it for the foreseeable future. If one of those platforms ends up closing down, you still have all of your content safe at home.</p>
<p>So what are some platforms that we can syndicate with and how can you set it up?</p>
<h3 id="heading-devto">Dev.to</h3>
<p><a target="_blank" href="https://dev.to/">Dev.to</a> is the choice platform for developers who want to share their knowledge and open up conversation to the larger tech community. They provide an incredibly welcoming and safe space where developers experienced and new can publish their work.</p>
<p>The great part about it is that everyone seems to get a bit of a fair chance at getting their work out to the world. While they have similar features to other networks where you can follow your favorite authors, newer authors still show up in the content feed giving you a chance to be seen.</p>
<p>To syndicate on dev.to, you'll want to set up the canonical link in the post configuration. When editing the content, you'll want to look for the settings icon, where you'll then be provided with an input where you can add the original URL for your post.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/devto-post-canonical-url.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Adding a canonical URL to a dev.to post</em></p>
<h3 id="heading-medium">Medium</h3>
<p><a target="_blank" href="https://medium.com/">Medium</a> has suffered a lot of criticism lately due to its aggressive tactics and monetization strategies, but it's still an effective platform for newcomers who don't have an audience to get in front of.</p>
<p>Medium's large network of users and content curation makes it a great platform for expanding your reach. But it doesn't stop at posting there.</p>
<p>To be effective with your Medium posts, you want to look to get published with an existing Medium publication. <a target="_blank" href="https://medium.com/better-programming">Better Programming</a> is one of the larger developer publications that are always <a target="_blank" href="https://medium.com/better-programming/write-for-us-5c4bcba59397">looking for new authors</a> to contribute.</p>
<p>Submitting to a Medium publication will help you take advantage of not only Medium's network, but that publication's network that gives you a better chance of getting selected by Medium's curation team and landing in someone's newsletter inbox.</p>
<p>Adding a canonical link to your Medium posts is a bit trickier though. To do this, you must "import" your story rather than copy and pasting it in. The good news, is Medium also tries to import all of the content, ideally making it a bit easier to add (remember to review all of the formatting!).</p>
<p>On your Stories page, you can find the Import button.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/medium-import-story.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Importing a story on Medium</em></p>
<p>Once it's imported, you won't really be able to see much, but once you preview the page, you can view the source and find the canonical link added.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/06/medium-post-source-canonical-link.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Canonical link in Medium post source</em></p>
<h2 id="heading-contributing-to-other-publications">Contributing to other publications</h2>
<p>While you might have to give up ownership of your content, writing for other publications or writing as a "guest post" is a great way to get started and gain some ground where you might not have had any before.</p>
<p>Depending on the publisher, you might not ever get the opportunity to post it on your own website, but you're trading that for the privilege to get your work out to potentially millions of people instead of the 10 unique visitors from the month of May.</p>
<p>This can even open up the door to more opportunities. This helps give your name recognition and authority that can help in your job search or simply another chance to write for the same publisher or a different bigger one.</p>
<p>The good news – is there's an endless supply of big name publishers that you can submit your work to. Here are a few you can get started with:</p>
<ul>
<li><a target="_blank" href="https://www.freecodecamp.org/news/developer-news-style-guide/">freeCodeCamp News</a></li>
<li><a target="_blank" href="https://www.smashingmagazine.com/write-for-us/">Smashing Magazine</a></li>
<li><a target="_blank" href="https://css-tricks.com/guest-posting/">CSS-Tricks</a></li>
<li><a target="_blank" href="https://sitepoint.typeform.com/to/DMmYfn">Sitepoint</a></li>
<li><a target="_blank" href="https://envato.formstack.com/forms/create_a_tutorial?Source=&amp;Medium=">Tuts+</a></li>
<li><a target="_blank" href="https://www.webdesignerdepot.com/write-for-us/">Web Designer Depot</a></li>
<li><a target="_blank" href="https://dzone.com/pages/contribute">DZone</a></li>
<li><a target="_blank" href="https://www.pluralsight.com/guides">Pluralsight Guides</a> (See "Teach" in footer)</li>
</ul>
<p>Each of these publications have different processes of getting published. So be patient and keep working hard at your content.</p>
<p><em>Note: know of another publisher that offers writing opportunities? <a target="_blank" href="https://twitter.com/colbyfayock">Let me know</a> and I'll add them above!</em></p>
<h2 id="heading-sharing-on-content-curation-platforms">Sharing on content curation platforms</h2>
<p>It would be great if we all had a massive Twitter following where we could post about our new blog, but that's typically not the case. So while you should absolutely set up a <a target="_blank" href="https://twitter.com/colbyfayock">social media profile</a> and get your content out there, I'll focus on other platforms here.</p>
<h3 id="heading-reddit">Reddit</h3>
<p>Though there are certainly rules about self-promotion depending on the subreddit, <a target="_blank" href="https://www.reddit.com/">Reddit's</a> a massive community of real people who are curious and eager to learn about something new.</p>
<p>Learn about the different tech or <a target="_blank" href="https://www.reddit.com/r/webdev/">webdev</a> subreddits that are out there. Start getting involved with other people's posts. Develop a relationship with the people there and show why your content has value.</p>
<h3 id="heading-hacker-news">Hacker News</h3>
<p><a target="_blank" href="https://news.ycombinator.com/">Hacker News</a> is tough. It's hard to get noticed and on the front page. And even when you get on the front page, there's a good chance you'll get a lot of criticism you never expected to get.</p>
<p>But if you can have thick skin and learn to take the heat should you get noticed, Hacker News can be an incredible way to broadcast to the world. People have turned into <a target="_blank" href="https://www.youtube.com/watch?v=ifq3xhik8tE">overnight successes</a> by ending up on the front page of Hacker News whether they're the ones who posted it there or not.</p>
<h3 id="heading-more-platforms">More platforms</h3>
<p>While those are two of the big ones, there are a ton more. Here are a few more to get you started:</p>
<ul>
<li><a target="_blank" href="https://www.echojs.com/">Echo JS</a></li>
<li><a target="_blank" href="http://www.rubyflow.com/">RubyFlow</a></li>
<li><a target="_blank" href="https://golangnews.com/">Golang News</a></li>
<li><a target="_blank" href="https://www.webdesignernews.com/">Web Designer News</a></li>
</ul>
<h2 id="heading-other-notable-places">Other notable places</h2>
<h3 id="heading-chat-based-communities">Chat-based Communities</h3>
<p>There are a ton of <a target="_blank" href="https://www.freecodecamp.org/news/freecodecamp-discord-chat-room-server/">communities</a> using platforms like <a target="_blank" href="https://slack.com/">Slack</a> or <a target="_blank" href="https://discord.com/">Discord</a> that are <a target="_blank" href="https://www.100daysofcode.com/resources/">incredibly supportive</a> in helping each other grow. While you shouldn't simply spam your content, try to start a conversation around it. Talk about why the topic is important to you or how your tutorial can help others in their code journey.</p>
<h3 id="heading-newsletters">Newsletters</h3>
<p>This is something a lot of people regret not starting earlier – myself included. It's not too much effort to start a newsletter <a target="_blank" href="https://app.convertkit.com/referrals/l/36ce3fce-f231-48b5-b878-e622d0265c3f">with a platform that has a free tier</a> and keep it in your back pocket until you see some growth. No one's going to judge you for waiting a few months to put out content, but once you begin to grow your audience, they'll be excited to see all of your new work.</p>
<h3 id="heading-other-peoples-newsletters">Other people's newsletters</h3>
<p>You don't have to have your own newsletter to get into someone's inbox, there are already a ton of newsletter curators doing a lot of hard work to find great content around the web, but if they don't see it, how can they include it?</p>
<p>Most newsletter publications love to receive submissions. This helps their publication grow and include content from people who might not have a good opportunity on their own.</p>
<p>While you can Google around and find a newsletter that makes sense for you, here are a few that I follow along with that I know would love to see your work:</p>
<ul>
<li>All <a target="_blank" href="https://cooperpress.com/publications/">Cooperpress</a> Publications including <a target="_blank" href="http://javascriptweekly.com/">Javascript Weekly</a>, <a target="_blank" href="https://serverless.email/">Serverless Status</a>, and <a target="_blank" href="https://cooperpress.com/publications/">a bunch more</a></li>
<li><a target="_blank" href="https://webtoolsweekly.com/">Web Tools Weekly</a></li>
<li><a target="_blank" href="https://css-weekly.com/">CSS Weekly</a></li>
</ul>
<h2 id="heading-building-your-brand">Building your "brand"</h2>
<p>"Brand" is a funny word and can come sometimes come with negative connotations. But really as an author, your goal should be to build a presence that you carry with you consistently through all of your different outlets of work.</p>
<p>For instance, when possible, try to always use the same username when creating author profiles. You can find me mostly anywhere at <a target="_blank" href="https://twitter.com/colbyfayock">@colbyfayock</a> – it makes it easy for people to find me on a new network.</p>
<p>Also try to use the same picture. While it's definitely fun to customize your different profiles depending on who's there, the benefit of using the same picture is people will come to recognize you by that picture. They'll instantly be able to remember they saw your blog post when they see your tweet come through their feed.</p>
<h2 id="heading-be-patient-your-time-will-come">Be patient, your time will come</h2>
<p>You're not going to find an overnight success without spending a lot of money, so be patient. Content development is hard, it takes time to both build an audience and figure out your voice.</p>
<p>But chances are, if this is your first article you've ever written, maybe that first publisher you sent it to wasn't interested in it.</p>
<p><strong>THAT'S OKAY!</strong> Don't give up! Send it to another publisher and try the original one for your next article. When I first started out, it took a few articles before I got accepted as an author to freeCodeCamp's Medium publication.</p>
<p>The more you write, the more <a target="_blank" href="https://www.colbyfayock.com/2020/05/how-to-write-more-effectively-and-develop-your-unique-style/">you'll learn about what's effective</a>. It's not a sprint – be patient and just keep up the hard work.</p>
<h2 id="heading-overcoming-the-fear-of-sharing-your-work">Overcoming the fear of sharing your work</h2>
<p>Most of these things aren't easy to do. The idea that you might have to face critical feedback of your work is absolutely scary!</p>
<p>But <a target="_blank" href="https://www.colbyfayock.com/2020/04/overcoming-your-fear-of-writing-and-how-you-can-find-motivation/">overcoming this fear</a> is an important step of the process. I personally struggled with this when I began writing, but the more you put yourself our there, the less scary it becomes and you'll quickly notice there aren't as many bad people out there looking to say bad things about your work.</p>
<p>Instead, you're opening yourself up to an opportunity to learn and grow. Though not everyone's the same, the tech community can be overwhelmingly welcoming and supportive. The more you share and put yourself out there, the more receptive people will be to wanting to hear what you have to say.</p>
<h2 id="heading-how-do-you-share-your-work">How do you share your work?</h2>
<p><a target="_blank" href="https://twitter.com/colbyfayock">Let me know on Twitter!</a></p>
<div id="colbyfayock-author-card">
  <p>
    <a href="https://twitter.com/colbyfayock">
      <img src="https://res.cloudinary.com/fay/image/upload/w_2000,h_400,c_fill,q_auto,f_auto/w_1020,c_fit,co_rgb:007079,g_north_west,x_635,y_70,l_text:Source%20Sans%20Pro_64_line_spacing_-10_bold:Colby%20Fayock/w_1020,c_fit,co_rgb:383f43,g_west,x_635,y_6,l_text:Source%20Sans%20Pro_44_line_spacing_0_normal:Follow%20me%20for%20more%20JavaScript%252c%20UX%252c%20and%20other%20interesting%20things!/w_1020,c_fit,co_rgb:007079,g_south_west,x_635,y_70,l_text:Source%20Sans%20Pro_40_line_spacing_-10_semibold:colbyfayock.com/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_68,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_145,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_222,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_295,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/v1/social-footer-card" alt="Follow me for more Javascript, UX, and other interesting things!" width="2000" height="400" loading="lazy">
    </a>
  </p>
  <ul>
    <li>
      <a href="https://twitter.com/colbyfayock">? Follow Me On Twitter</a>
    </li>
    <li>
      <a href="https://youtube.com/colbyfayock">?️ Subscribe To My Youtube</a>
    </li>
    <li>
      <a href="https://www.colbyfayock.com/newsletter/">✉️ Sign Up For My Newsletter</a>
    </li>
  </ul>
</div>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ What are Github Actions and How Can You Automate Tests and Slack Notifications? ]]>
                </title>
                <description>
                    <![CDATA[ Automation is a powerful tool. It both saves us time and can help reduce human error.  But automation can be tough and can sometimes prove to be costly. How can Github Actions help harden our code and give us more time to work on features instead of ... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/what-are-github-actions-and-how-can-you-automate-tests-and-slack-notifications/</link>
                <guid isPermaLink="false">66b8e39047c23b7ae1ad0bdf</guid>
                
                    <category>
                        <![CDATA[ automation ]]>
                    </category>
                
                    <category>
                        <![CDATA[ automation testing  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ CI/CD ]]>
                    </category>
                
                    <category>
                        <![CDATA[ continuous delivery ]]>
                    </category>
                
                    <category>
                        <![CDATA[ continuous deployment ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Continuous Integration ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Devops ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Git ]]>
                    </category>
                
                    <category>
                        <![CDATA[ GitHub ]]>
                    </category>
                
                    <category>
                        <![CDATA[ GitHub Actions ]]>
                    </category>
                
                    <category>
                        <![CDATA[ slack ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Software Testing ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Testing ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Colby Fayock ]]>
                </dc:creator>
                <pubDate>Wed, 03 Jun 2020 14:45:00 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2020/05/github-actions.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Automation is a powerful tool. It both saves us time and can help reduce human error. </p>
<p>But automation can be tough and can sometimes prove to be costly. How can Github Actions help harden our code and give us more time to work on features instead of bugs?</p>
<ul>
<li><a class="post-section-overview" href="#heading-what-are-github-actions">What are Github Actions?</a></li>
<li><a class="post-section-overview" href="#heading-what-is-cicd">What is CI/CD?</a></li>
<li><a class="post-section-overview" href="#heading-what-are-we-going-to-build">What are we going to build?</a></li>
<li><a class="post-section-overview" href="#heading-part-0-setting-up-a-project">Part 0: Setting up a project</a></li>
<li><a class="post-section-overview" href="#heading-part-1-automating-tests">Part 1: Automating tests</a></li>
<li><a class="post-section-overview" href="#heading-part-2-post-new-pull-requests-to-slack">Part 2: Post new pull requests to Slack</a></li>
</ul>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/1n-jHHNSoTw" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" loading="lazy"></iframe></div>
<h2 id="heading-what-are-github-actions">What are Github Actions?</h2>
<p><a target="_blank" href="https://github.com/features/actions">Actions</a> are a relatively new feature to <a target="_blank" href="https://github.com/">Github</a> that allow you to set up CI/CD workflows using a configuration file right in your Github repo.</p>
<p>Previously, if you wanted to set up any kind of automation with tests, builds, or deployments, you would have to look to services like <a target="_blank" href="https://circleci.com/">Circle CI</a> and <a target="_blank" href="https://travis-ci.org/">Travis</a> or write your own scripts. But with Actions, you have first class support to powerful tooling to automate your workflow.</p>
<h2 id="heading-what-is-cicd">What is CI/CD?</h2>
<p>CD/CD stands for Continuous Integration and Continuous Deployment (or can be Continuous Delivery). They're both practices in software development that allow teams to build projects together quickly, efficiently, and ideally with less errors.</p>
<p>Continuous Integration is the idea that as different members of the team work on code on different git branches, the code is merged to a single working branch which is then built and tested with automated workflows. This helps to constantly make sure everyone's code is working properly together and is well-tested.</p>
<p>Continuous Deployment takes this a step further and takes this automation to the deployment level. Where with the CI process, you automate the testing and the building, Continuous Deployment will automate deploying the project to an environment. </p>
<p>The idea is that the code, once through any building and testing processes, is in a deployable state, so it should be able to be deployed.</p>
<h2 id="heading-what-are-we-going-to-build">What are we going to build?</h2>
<p>We're going to tackle two different workflows.</p>
<p>The first will be to simply run some automated tests that will prevent a pull request from being merged if it is failing. We won't walk through building the tests, but we'll walk through running tests that already exist.</p>
<p>In the second part, we'll set up a workflow that sends a message to slack with a link to a pull request whenever a new one is created. This can be super helpful when working on open source projects with a team and you need a way to keep track of requests.</p>
<h2 id="heading-part-0-setting-up-a-project">Part 0: Setting up a project</h2>
<p>For this guide, you can really work through any node-based project as long as it has tests you can run for Part 1.</p>
<p>If you'd like to follow along with a simpler example that I'll be using, I've set up a new project that you can clone with a single function that has two tests that are able to run and pass.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/function-with-test.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>A function with two tests</em></p>
<p>If you'd like to check out this code to get started, you can run:</p>
<pre><code class="lang-shell">git clone --single-branch --branch start git@github.com:colbyfayock/my-github-actions.git
</code></pre>
<p>Once you have that cloned locally and have installed the dependencies, you should be able to run the tests and see them pass!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/passing-tests.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Passing tests</em></p>
<p>It should also be noted that you'll be required to have this project added as a new repository on Github in order to follow along.</p>
<p><a target="_blank" href="https://github.com/colbyfayock/my-github-actions/commit/6919b1b9beea4823fd28375f1864d233e23f2d26">Follow along with the commit!</a></p>
<h2 id="heading-part-1-automating-tests">Part 1: Automating tests</h2>
<p>Tests are an important part of any project that allow us to make sure we're not breaking existing code while we work. While they're important, they're also easy to forget about.</p>
<p>We can remove the human nature out of the equation and automate running our tests to make sure we can't proceed without fixing what we broke.</p>
<h3 id="heading-step-1-creating-a-new-action">Step 1: Creating a new action</h3>
<p>The good news, is Github actually makes it really easy to get this workflow started as it comes as one of their pre-baked options.</p>
<p>We'll start by navigating to the <strong>Actions</strong> tab on our repository page.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-actions-dashboard.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Github Actions starting page</em></p>
<p>Once there, we'll immediately see some starter workflows that Github provides for us to dive in with. Since we're using a node project, we can go ahead and click <strong>Set up this workflow</strong> under the <strong>Node.js</strong> workflow.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-action-new-nodejs-workflow.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Setting up a Node.js Github Action workflow</em></p>
<p>After the page loads, Github will land you on a new file editor that already has a bunch of configuration options added.</p>
<p>We're actually going to leave this "as is" for our first step. Optionally, you can change the name of the file to <code>tests.yml</code> or something you'll remember.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-action-create-new-workflow.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Adding a new Github Action workflow file</em></p>
<p>You can go ahead and click <strong>Start commit</strong> then either commit it directory to the <code>master</code> branch or add the change to a new branch. For this walkthrough, I'll be committing straight to <code>master</code>.</p>
<p>To see our new action run, we can again click on the <strong>Actions</strong> tab which will navigate us back to our new Actions dashboard.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-action-workflow-status.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Viewing Github Action workflow events</em></p>
<p>From there, you can click on <strong>Node.js CI</strong> and select the commit that you just made above and you'll land on our new action dashboard. You can then click one of the node versions in the sidebar via <strong>build (#.x)</strong>, click the <strong>Run npm test</strong> dropdown, and we'll be able to see the output of our tests being run (which if you're following along with me, should pass!).</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-action-workflow-logs.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Viewing logs of a Github Action workflow</em></p>
<p><a target="_blank" href="https://github.com/colbyfayock/my-github-actions/commit/10e397966572ed9975cac40f6ab5f41c1255a947">Follow along with the commit!</a></p>
<h3 id="heading-step-2-configuring-our-new-action">Step 2: Configuring our new action</h3>
<p>So what did we just do above? We'll walk through the configuration file and what we can customize.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-action-workflow-file.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Github Action Node.js workflow file</em></p>
<p>Starting from the top, we specify our name:</p>
<pre><code class="lang-yaml"><span class="hljs-attr">name:</span> <span class="hljs-string">Node.js</span> <span class="hljs-string">CI</span>
</code></pre>
<p>This can really be whatever you want. Whatever you pick should help you remember what it is. I'm going to customize this to "Tests" so I know exactly what's going on.</p>
<pre><code class="lang-yaml"><span class="hljs-attr">on:</span>
  <span class="hljs-attr">push:</span>
    <span class="hljs-attr">branches:</span> [ <span class="hljs-string">master</span> ]
  <span class="hljs-attr">pull_request:</span>
    <span class="hljs-attr">branches:</span> [ <span class="hljs-string">master</span> ]
</code></pre>
<p>The <code>on</code> key is how we specify what events trigger our action. This can be a variety of things like based on time with <a target="_blank" href="https://en.wikipedia.org/wiki/Cron">cron</a>. But here, we're saying that we want this action to run any time someone pushes commits to  <code>master</code> or someone creates a pull request targeting the <code>master</code> branch. We're not going to make a change here.</p>
<pre><code class="lang-yaml"><span class="hljs-attr">jobs:</span>
  <span class="hljs-attr">build:</span>
    <span class="hljs-attr">runs-on:</span> <span class="hljs-string">ubuntu-latest</span>
</code></pre>
<p>This next bit creates a new job called <code>build</code>. Here we're saying that we want to use the latest version of Ubuntu to run our tests on. <a target="_blank" href="https://ubuntu.com/">Ubuntu</a> is common, so you'll only want to customize this if you want to run it on a specific environment.</p>
<pre><code class="lang-yaml">    <span class="hljs-attr">strategy:</span>
      <span class="hljs-attr">matrix:</span>
        <span class="hljs-attr">node-version:</span> [<span class="hljs-number">10.</span><span class="hljs-string">x</span>, <span class="hljs-number">12.</span><span class="hljs-string">x</span>, <span class="hljs-number">14.</span><span class="hljs-string">x</span>]
</code></pre>
<p>Inside of our job we specify a <a target="_blank" href="https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategy">strategy</a> matrix. This allows us to run the same tests on a few different variations. </p>
<p>In this instance, we're running the tests on 3 different versions of <a target="_blank" href="https://nodejs.org/en/">node</a> to make sure it works on all of them. This is definitely helpful to make sure your code is flexible and future proof, but if you're building and running your code on a specific node version, you're safe to change this to only that version.</p>
<pre><code class="lang-yaml">    <span class="hljs-attr">steps:</span>
    <span class="hljs-bullet">-</span> <span class="hljs-attr">uses:</span> <span class="hljs-string">actions/checkout@v2</span>
    <span class="hljs-bullet">-</span> <span class="hljs-attr">name:</span> <span class="hljs-string">Use</span> <span class="hljs-string">Node.js</span> <span class="hljs-string">${{</span> <span class="hljs-string">matrix.node-version</span> <span class="hljs-string">}}</span>
      <span class="hljs-attr">uses:</span> <span class="hljs-string">actions/setup-node@v1</span>
      <span class="hljs-attr">with:</span>
        <span class="hljs-attr">node-version:</span> <span class="hljs-string">${{</span> <span class="hljs-string">matrix.node-version</span> <span class="hljs-string">}}</span>
    <span class="hljs-bullet">-</span> <span class="hljs-attr">run:</span> <span class="hljs-string">npm</span> <span class="hljs-string">ci</span>
    <span class="hljs-bullet">-</span> <span class="hljs-attr">run:</span> <span class="hljs-string">npm</span> <span class="hljs-string">run</span> <span class="hljs-string">build</span> <span class="hljs-string">--if-present</span>
    <span class="hljs-bullet">-</span> <span class="hljs-attr">run:</span> <span class="hljs-string">npm</span> <span class="hljs-string">test</span>
</code></pre>
<p>Finally, we specify the steps we want our job to run. Breaking this down:</p>
<ul>
<li><code>uses: actions/checkout@v2</code>: In order for us to run our code, we need to have it available. This checks out our code on our job environment so we can use it to run tests.</li>
<li><code>uses: actions/setup-node@v1</code>: Since we're using node with our project, we'll need it set up on our environment. We're using this action to do that setup  for us for each version we've specified in the matrix we configured above.</li>
<li><code>run: npm ci</code>: If you're not familiar with <code>npm ci</code>, it's similar to running <code>npm install</code> but uses the <code>package-lock.json</code> file without performing any patch upgrades. So essentially, this installs our dependencies.</li>
<li><code>run: npm run build --if-present</code>: <code>npm run build</code> runs the build script in our project. The <code>--if-present</code> flag performs what it sounds like and only runs this command if the build script is present. It doesn't hurt anything to leave this in as it won't run without the script, but feel free to remove this as we're not building the project here.</li>
<li><code>run: npm test</code>: Finally, we run <code>npm test</code> to run our tests. This uses the <code>test</code> npm script set up in our <code>package.json</code> file.</li>
</ul>
<p>And with that, we've made a few tweaks, but our tests should run after we've committed those changes and pass like before!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-action-workflow-logs-npm-test.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Logs of passing tests in Github Action workflow</em></p>
<p><a target="_blank" href="https://github.com/colbyfayock/my-github-actions/commit/087cd8e8592d1f2b520b6e44b70b0a242a9d2d72">Follow along with the commit!</a></p>
<h3 id="heading-step-3-testing-that-our-tests-fail-and-prevent-merges">Step 3: Testing that our tests fail and prevent merges</h3>
<p>Now that our tests are set up to automatically run, let's try to break it to see it work.</p>
<p>At this point, you can really do whatever you want to intentionally break the tests, but <a target="_blank" href="https://github.com/colbyfayock/my-github-actions/pull/1">here's what I did</a>:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/bad-changes-code-diff.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Code diff - https://github.com/colbyfayock/my-github-actions/pull/1</em></p>
<p>I'm intentionally returning different expected output so that my tests will fail. And they do!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-failing-checks.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Failing status checks on pull request</em></p>
<p>In my new pull request, my new branch breaks the tests, so it tells me my checks have failed. If you noticed though, it's still green to merge, so how can we prevent merges?</p>
<p>We can prevent pull requests from being merged by setting up a Protected Branch in our project settings.</p>
<p>First, navigate to <strong>Settings</strong>, then <strong>Branches</strong>, and click <strong>Add rule</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-add-protected-branch.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Github branch protection rules</em></p>
<p>We'll then want to set the branch name pattern to <code>*</code>, which means all branches, check the <strong>Require status checks to pass before merging option</strong>, then select all of our different status checks that we'd like to require to pass before merging.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-configure-protected-branch.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Setting up a branch protection rule in Github</em></p>
<p>Finally, hit <strong>Create</strong> at the bottom of the page.</p>
<p>And once you navigate back to the pull request, you'll notice that the messaging is a bit different and states that we need our statuses to pass before we can merge.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-failing-checks-cant-merge.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Failing tests preventing merge in pull request</em></p>
<p><em>Note: as an administrator of a repository, you'll still be able to merge, so this technically only prevents non-administrators from merging. But will give you increased messaging if the tests fail.</em></p>
<p>And with that, we have a new Github Action that runs our tests and prevents pull requests from merging if they fail.</p>
<p><a target="_blank" href="https://github.com/colbyfayock/my-github-actions/pull/1">Follow along with the pull request!</a></p>
<p><em>Note: we won't be merging that pull request before continuing to Part 2.</em></p>
<h2 id="heading-part-2-post-new-pull-requests-to-slack">Part 2: Post new pull requests to Slack</h2>
<p>Now that we're preventing merge requests if they're failing, we want to post a message to our <a target="_blank" href="http://slack.com/">Slack</a> workspace whenever a new pull request is opened up. This will help us keep tabs on our repos right in Slack.</p>
<p>For this part of the guide, you'll need a Slack workspace that you have permissions to create a new developer app with and the ability to create a new channel for the bot user that will be associated with that app.</p>
<h3 id="heading-step-1-setting-up-slack">Step 1: Setting up Slack</h3>
<p>There are a few things we're going to walk through as we set up Slack for our workflow:</p>
<ul>
<li>Create a new app for our workspace</li>
<li>Assign our bot permissions</li>
<li>Install our bot to our workspace</li>
<li>Invite our new bot to our channel</li>
</ul>
<p>To get started, we'll create a new app. Head over to the <a target="_blank" href="https://api.slack.com/apps">Slack API Apps dashboard</a>. If you already haven't, log in to your Slack account with the Workspace you'd like to set this up with.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/slack-create-new-app.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Creating a new Slack app</em></p>
<p>Now, click <strong>Create New App</strong> where you'll be prompted to put in a name and select a workspace you want this app to be created for. I'm going to call my app "Gitbot" as the name, but you can choose whatever makes sense for you. Then click <strong>Create App</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/slack-add-name-new-app.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Configuring a new Slack app</em></p>
<p>Once created, navigate to the <strong>App Home</strong> link in the left sidebar. In order to use our bot, we need to assign it <a target="_blank" href="https://oauth.net/">OAuth</a> scopes so it has permissions to work in our channel, so select <strong>Review Scopes to Add</strong> on that page.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/slack-app-review-scopes.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Reviewing Slack app scopes</em></p>
<p>Scroll own and you'll see a <strong>Scopes</strong> section and under that a <strong>Bot Token</strong> section. Here, click <strong>Add an OAuth Scope</strong>. For our bot, we don't need a ton of permissions, so add the <code>channels:join</code> and <code>chat:write</code> scopes and we should be good to go.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/slack-app-add-scopes.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Adding scopes for a Slack app Bot Token</em></p>
<p>Now that we have our scopes, let's add our bot to our workspace. Scroll up on that same page to the top and you'll see a button that says <strong>Install App to Workspace</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/slack-install-app-to-workspace.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Installing Slack app to a workspace</em></p>
<p>Once you click this, you'll be redirected to an authorization page. Here, you can see the scopes we selected for our bot. Next, click <strong>Allow</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/slack-app-allow-workspace-permissions.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Allowing permission for Slack app to be installed to workspace</em></p>
<p>At this point, our Slack bot is ready to go. At the top of the <strong>OAuth &amp; Permissions</strong> page, you'll see a <strong>Bot User OAuth Access Token</strong>. This is what we'll use when setting up our workflow, so either copy and save this token or remember this location so you know how to find it later.</p>
<p><em>Note: this token is private - don't give this out, show it in a screencast, or let anyone see it!</em></p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/slack-app-oauth-token.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Copying OAuth Access Token for Slack bot user</em></p>
<p>Finally, we need to invite our Slack bot to our channel. If you open up your workspace, you can either use an existing channel or create a new channel for these notifications, but you'll want to enter the command <code>/invite @[botname]</code> which will invite our bot to our channel.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/slack-invite-bot-to-channel.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Inviting Slack bot user to channel</em></p>
<p>And once added, we're done with setting up Slack!</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/slack-app-bot-joined-channel.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Slack bot was added to channel</em></p>
<h3 id="heading-create-a-github-action-to-notify-slack">Create a Github Action to notify Slack</h3>
<p>Our next step will be somewhat similar to when we created our first Github Action. We'll create a workflow file which we'll configure to send our notifications.</p>
<p>While we can use our code editors to do this by creating a file in the <code>.github</code> directory, I'm going to use the Github UI.</p>
<p>First, let's navigate back to our <em>Actions</em> tab in our repository. Once there, select <strong>New workflow</strong>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-new-workflow.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Setting up a new Github Action workflow</em></p>
<p>This time, we're going to start the workflow manually instead of using a pre-made Action. Select <strong>set up a workflow yourself</strong> at the top.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-set-up-new-workflow.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Setting up a Github Action workflow manually</em></p>
<p>Once the new page loads, you'll be dropped in to a new template where we can start working. Here's what our new workflow will look like:</p>
<pre><code class="lang-yaml"><span class="hljs-attr">name:</span> <span class="hljs-string">Slack</span> <span class="hljs-string">Notifications</span>

<span class="hljs-attr">on:</span>
  <span class="hljs-attr">pull_request:</span>
    <span class="hljs-attr">branches:</span> [ <span class="hljs-string">master</span> ]

<span class="hljs-attr">jobs:</span>
  <span class="hljs-attr">notifySlack:</span>

    <span class="hljs-attr">runs-on:</span> <span class="hljs-string">ubuntu-latest</span>

    <span class="hljs-attr">steps:</span>
    <span class="hljs-bullet">-</span> <span class="hljs-attr">name:</span> <span class="hljs-string">Notify</span> <span class="hljs-string">slack</span>
      <span class="hljs-attr">env:</span>
        <span class="hljs-attr">SLACK_BOT_TOKEN:</span> <span class="hljs-string">${{</span> <span class="hljs-string">secrets.SLACK_BOT_TOKEN</span> <span class="hljs-string">}}</span>
      <span class="hljs-attr">uses:</span> <span class="hljs-string">abinoda/slack-action@master</span>
      <span class="hljs-attr">with:</span>
        <span class="hljs-attr">args:</span> <span class="hljs-string">'{\"channel\":\"[Channel ID]\",\"blocks\":[{\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"*Pull Request:* $<span class="hljs-template-variable">{{ github.event.pull_request.title }}</span>\"}},{\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"*Who?:* $<span class="hljs-template-variable">{{ github.event.pull_request.user.login }}</span>\n*Request State:* $<span class="hljs-template-variable">{{ github.event.pull_request.state }}</span>\"}},{\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"&lt;$<span class="hljs-template-variable">{{ github.event.pull_request.html_url }}</span>|View Pull Request&gt;\"}}]}'</span>
</code></pre>
<p>So what's happening in the above?</p>
<ul>
<li><code>name</code>: we're setting a friendly name for our workflow</li>
<li><code>on</code>: we want our workflow to trigger when there's a pull request is created that targets our <code>master</code> branch</li>
<li><code>jobs</code>: we're creating a new job called <code>notifySlack</code></li>
<li><code>jobs.notifySlack.runs-on</code>: we want our job to run on a basic setup of the latest Unbuntu</li>
<li><code>jobs.notifySlack.steps</code>: we really only have one step here - we're using a pre-existing Github Action called <a target="_blank" href="https://github.com/marketplace/actions/post-slack-message">Slack Action</a> and we're configuring it to publish a notification to our Slack</li>
</ul>
<p>There are two points here we'll need to pay attention to, the <code>env.SLACK_BOT_TOKEN</code> and the <code>with.args</code>.</p>
<p>In order for Github to communicate with Slack, we'll need a token. This is what we're setting in <code>env.SLACK_BOT_TOKEN</code>. We generated this token in the first step. Now that we'll be using this in our workflow configuration, we'll need to <a target="_blank" href="https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets#creating-encrypted-secrets-for-a-repository">add it as a Git Secret in our project</a>.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-slack-token-secret.jpg" alt="Image" width="600" height="400" loading="lazy">
_Github secrets including SLACK_BOT<em>TOKEN</em></p>
<p>The  <code>with.args</code> property is what we use to configure the payload to the Slack API that includes the channel ID (<code>channel</code>) and our actual message (<code>blocks</code>).</p>
<p>The payload in the arguments is stringified and escaped. For example, when expanded it looks like this:</p>
<pre><code class="lang-json">{
  <span class="hljs-attr">"channel"</span>: <span class="hljs-string">"[Channel ID]"</span>,
  <span class="hljs-attr">"blocks"</span>: [{
    <span class="hljs-attr">"type"</span>: <span class="hljs-string">"section"</span>,
    <span class="hljs-attr">"text"</span>: {
      <span class="hljs-attr">"type"</span>: <span class="hljs-string">"mrkdwn"</span>,
      <span class="hljs-attr">"text"</span>: <span class="hljs-string">"*Pull Request:* ${{ github.event.pull_request.title }}"</span>
    }
  }, {
    <span class="hljs-attr">"type"</span>: <span class="hljs-string">"section"</span>,
    <span class="hljs-attr">"text"</span>: {
      <span class="hljs-attr">"type"</span>: <span class="hljs-string">"mrkdwn"</span>,
      <span class="hljs-attr">"text"</span>: <span class="hljs-string">"*Who?:*n${{ github.event.pull_request.user.login }}n*State:*n${{ github.event.pull_request.state }}"</span>
    }
  }, {
    <span class="hljs-attr">"type"</span>: <span class="hljs-string">"section"</span>,
    <span class="hljs-attr">"text"</span>: {
      <span class="hljs-attr">"type"</span>: <span class="hljs-string">"mrkdwn"</span>,
      <span class="hljs-attr">"text"</span>: <span class="hljs-string">"&lt;${{ github.event.pull_request._links.html.href }}|View Pull Request&gt;"</span>
    }
  }]
}
</code></pre>
<p><em>Note: this is just to show what the content looks like, we need to use the original file with the stringified and escaped argument.</em></p>
<p>Back to our configuration file, the first thing we set is our channel ID. To find our channel ID, you'll need to use the Slack web interface. Once you open Slack in your browser, you want to find your channel ID in the URL:</p>
<pre><code>https:<span class="hljs-comment">//app.slack.com/client/[workspace ID]/[channel ID]</span>
</code></pre><p><img src="https://www.freecodecamp.org/news/content/images/2020/05/slack-web-channel-id.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Channel ID in Slack web app URL</em></p>
<p>With that channel ID, you can modify our workflow configuration and replace <code>[Channel ID]</code> with that ID:</p>
<pre><code class="lang-yaml"><span class="hljs-attr">with:</span>
  <span class="hljs-attr">args:</span> <span class="hljs-string">'{\"channel\":\"C014RMKG6H2\",...</span>
</code></pre>
<p>The rest of the arguments property is how we set up our message. It includes variables from the Github event that we use to customize our message. </p>
<p>We won't go into tweaking that here, as what we already have will send a basic pull request message, but you can test out and build your own payload with Slack's <a target="_blank" href="https://app.slack.com/block-kit-builder/">Block Kit Builder</a>.</p>
<p><a target="_blank" href="https://github.com/colbyfayock/my-github-actions/commit/e228b9899ef3da218d1a100d06a72259d45ea19e">Follow along with the commit!</a></p>
<h3 id="heading-test-out-our-slack-workflow">Test out our Slack workflow</h3>
<p>So now we have our workflow configured with our Slack app, finally we're ready to use our bot!</p>
<p>For this part, all we need to do is create a new pull request with any change we want. To test this out, I simply <a target="_blank" href="https://github.com/colbyfayock/my-github-actions/pull/2">created a new branch</a> where I added a sentence to the <code>README.md</code> file.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/github-test-pull-request.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Code diff - <a target="_blank" href="https://github.com/colbyfayock/my-github-actions/pull/2">https://github.com/colbyfayock/my-github-actions/pull/2</a></em></p>
<p>Once you <a target="_blank" href="https://github.com/colbyfayock/my-github-actions/pull/2">create that pull request</a>, similar to our tests workflow, Github will run our Slack workflow! You can see this running in the Actions tab just like before.</p>
<p>As long as you set everything up correctly, once the workflow runs, you should now have a new message in Slack from your new bot.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/slack-github-notification.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Slack bot automated message about new pull request</em></p>
<p><em>Note: we won't be merging that pull request in.</em></p>
<h2 id="heading-what-else-can-we-do">What else can we do?</h2>
<h3 id="heading-customize-your-slack-notifications">Customize your Slack notifications</h3>
<p>The message I put together is simple. It tells us who created the pull request and gives us a link to it.</p>
<p>To customize the formatting and messaging, you can use the Github <a target="_blank" href="https://app.slack.com/block-kit-builder/">Block Kit Builder</a> to create your own.</p>
<p>If you'd like to include additional details like the variables I used for the pull request, you can make use of Github's available <a target="_blank" href="https://help.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#contexts">contexts</a>. This lets you pull information about the environment and the job to customize your message.</p>
<p>I couldn't seem to find any sample payloads, so here's an example of a sample <code>github</code> context payload you would expect in the event.</p>
<p><a target="_blank" href="https://gist.github.com/colbyfayock/1710edb9f47ceda0569844f791403e7e">Sample github context</a></p>
<h3 id="heading-more-github-actions">More Github actions</h3>
<p>With our ability to create new custom workflows, that's not a lot we can't automate. Github even has a <a target="_blank" href="https://github.com/marketplace?type=actions">marketplace</a> where you can browse around for one.</p>
<p>If you're feeling like taking it a step further, you can even create your own! This lets you set up scripts to configure a workflow to perform whatever tasks you need for your project.</p>
<h2 id="heading-join-in-the-conversation">Join in the conversation!</h2>
<div class="embed-wrapper">
        <blockquote class="twitter-tweet">
          <a href="https://twitter.com/colbyfayock/status/1268197100539514881"></a>
        </blockquote>
        <script defer="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script></div>
<h2 id="heading-what-do-you-use-github-actions-for">What do you use Github actions for?</h2>
<p>Share with me on <a target="_blank" href="https://twitter.com/colbyfayock">Twitter</a>!</p>
<div id="colbyfayock-author-card">
  <p>
    <a href="https://twitter.com/colbyfayock">
      <img src="https://res.cloudinary.com/fay/image/upload/w_2000,h_400,c_fill,q_auto,f_auto/w_1020,c_fit,co_rgb:007079,g_north_west,x_635,y_70,l_text:Source%20Sans%20Pro_64_line_spacing_-10_bold:Colby%20Fayock/w_1020,c_fit,co_rgb:383f43,g_west,x_635,y_6,l_text:Source%20Sans%20Pro_44_line_spacing_0_normal:Follow%20me%20for%20more%20JavaScript%252c%20UX%252c%20and%20other%20interesting%20things!/w_1020,c_fit,co_rgb:007079,g_south_west,x_635,y_70,l_text:Source%20Sans%20Pro_40_line_spacing_-10_semibold:colbyfayock.com/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_68,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_145,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_222,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/w_300,c_fit,co_rgb:7c848a,g_north_west,x_1725,y_295,l_text:Source%20Sans%20Pro_40_line_spacing_-10_normal:colbyfayock/v1/social-footer-card" alt="Follow me for more Javascript, UX, and other interesting things!" width="2000" height="400" loading="lazy">
    </a>
  </p>
  <ul>
    <li>
      <a href="https://twitter.com/colbyfayock">? Follow Me On Twitter</a>
    </li>
    <li>
      <a href="https://youtube.com/colbyfayock">?️ Subscribe To My Youtube</a>
    </li>
    <li>
      <a href="https://www.colbyfayock.com/newsletter/">✉️ Sign Up For My Newsletter</a>
    </li>
  </ul>
</div>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ The Fibonacci Sequence –  Explained in Python, JavaScript, C++, Java, and Swift ]]>
                </title>
                <description>
                    <![CDATA[ By Pau Pavón The Fibonacci sequence is, by definition, the integer sequence in which every number after the first two is the sum of the two preceding numbers. To simplify: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, … It has many applications in ma... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/the-fibonacci-sequence-in-5-different-programming-languages-1c6514c749e5/</link>
                <guid isPermaLink="false">66c36157e4cb1ff6521c827c</guid>
                
                    <category>
                        <![CDATA[ coding ]]>
                    </category>
                
                    <category>
                        <![CDATA[ JavaScript ]]>
                    </category>
                
                    <category>
                        <![CDATA[ General Programming ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Python ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ freeCodeCamp ]]>
                </dc:creator>
                <pubDate>Mon, 01 Jun 2020 15:38:00 +0000</pubDate>
                <media:content url="https://cdn-media-1.freecodecamp.org/images/0*74G0BbEUwrCaw8iQ." medium="image" />
                <content:encoded>
                    <![CDATA[ <p>By Pau Pavón</p>
<p>The Fibonacci sequence is, by definition, the integer sequence in which every number after the first two is the sum of the two preceding numbers. To simplify:</p>
<p>0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, …</p>
<p>It has many applications in mathematics and even trading (yes, you read that right: trading), but that’s not the point of this article. My goal today is to show you how you can compute any term of this series of numbers in five different programming languages using recursive functions.</p>
<p>Recursive functions are those functions which, basically, call themselves.</p>
<p>I want to note that this isn’t the best method to do it — in fact, it could be considered the most basic method for this purpose. This is because the computing power required to calculate larger terms of the series is immense. The number of times the function is called causes a stack overflow in most languages.</p>
<p>All the same, for the purposes of this tutorial, let’s begin.</p>
<p>First of all, let’s think about what the code is going to look like. It’ll include:</p>
<p>· A recursive function F (F for Fibonacci): to compute the value of the next term.</p>
<p>· Nothing else: I warned you it was quite basic.</p>
<p>Our function will take <em>n</em> as an input, which will refer to the _n_th term of the sequence that we want to be computed. So, F(4) should return the fourth term of the sequence.</p>
<p>Let’s plan it. The code should, regardless the language, look something like this:</p>
<p><a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>function F(n)  if n = 0</code></a><br>    <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>return 0  if n = 1</code></a><br>    <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>return 1  else</code></a><br>    <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>return F(n-1) + F(n-2)</code></a></p>
<p>Note: the term 0 of the sequence will be considered to be 0, so the first term will be 1; the second, 1; the third, 2; and so on. You get it.</p>
<p>Let’s analyze the function for a moment. If it gets 0 as an input, it returns 0. If it gets 1, it returns 1. If it gets 2… Well, in that case it falls into the else statement, which will call the function again for terms 2–1 (1) and 2–2 (0). That will return 1 and 0, and the two results will be added, returning 1. Perfect.</p>
<p>Now you can see why recursive functions are a problem in some cases. Imagine you wanted the 100th term of the sequence. The function would call itself for the 99th and the 98th, which would themselves call the function again for the 98th and 97th, and 97th and 96th terms…and so on. It would be <strong>really</strong> slow.</p>
<p>But the good news is that it actually works!</p>
<p>So let’s start with the different languages. I won’t give too much detail (actually, no detail at all) to make your reading experience better. There isn’t too much to detail anyways.</p>
<p>Let’s jump into it:</p>
<h3 id="heading-python">Python</h3>
<p><a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>def F(n):  if n == 0:</code></a><br>    <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>return 0  if n == 1:</code></a><br>    <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>return 1  else:</code></a><br>    <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>return F(n-1) + F(n-2)</code></a></p>
<h3 id="heading-swift">Swift</h3>
<p><a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>func F(_ n: Int) -&gt; Int {  if n == 0 {    return 0</code></a><br>  <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>}  if n == 1 {    return 1</code></a><br>  <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>}  else {    return F(n-1) + F(n-2)</code></a><br>  <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>}}</code></a></p>
<h3 id="heading-javascript">JavaScript</h3>
<p><a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>function F(n) {  if(n == 0) {    return 0;</code></a><br>  <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>}  if(n == 1) {    return 1;</code></a><br>  <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>}  else {    return F(n-1) + F(n-2);</code></a><br>  <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>}}</code></a></p>
<h3 id="heading-java">Java</h3>
<p><a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>public static int F(int n) {  if(n == 0) {    return 0;</code></a><br>  <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>}  if(n == 1) {    return 1;</code></a><br>  <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>}  else {    return F(n-1) + F(n-2);</code></a><br>  <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>}}</code></a></p>
<h3 id="heading-c">C++</h3>
<p><a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>int F(int n) {  if(n == 0) {    return 0;</code></a><br>  <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>}  if(n == 1) {    return 1;</code></a><br>  <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>}  else {    return F(n-1) + F(n-2);</code></a><br>  <a target="_blank" href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral"><code>}}</code></a></p>
<p>And that’s it. I chose these languages just based on popularity — or at least because these 5 are the most common ones that I use They’re in no particular order. They could be classified by syntax difficulty, in my opinion, from Python (easiest) to C++ (hardest). But that depends on your personal opinion and your experience with each language.</p>
<p>I hope you liked this article and, if you have any questions/recommendations or just want to say hi, comment below!</p>
 ]]>
                </content:encoded>
            </item>
        
    </channel>
</rss>
