<?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[ Productivity - 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[ Productivity - freeCodeCamp.org ]]>
            </title>
            <link>https://www.freecodecamp.org/news/</link>
        </image>
        <generator>Eleventy</generator>
        <lastBuildDate>Mon, 25 May 2026 10:49:10 +0000</lastBuildDate>
        <atom:link href="https://www.freecodecamp.org/news/tag/productivity/rss.xml" rel="self" type="application/rss+xml" />
        <ttl>60</ttl>
        
            <item>
                <title>
                    <![CDATA[ How to Unblock Your AI PR Review Bottleneck: A Tech Lead’s Guide to Building a Codebase-Aware Reviewer ]]>
                </title>
                <description>
                    <![CDATA[ A few months ago, I was reviewing a pull request that added three new API endpoints. The diff was clean. Tests passed. The agent that generated it had even written sensible authorisation checks. By ev ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-unblock-ai-pr-review-bottleneck-handbook/</link>
                <guid isPermaLink="false">69f906a346610fd60629a300</guid>
                
                    <category>
                        <![CDATA[ AI ]]>
                    </category>
                
                    <category>
                        <![CDATA[ software development ]]>
                    </category>
                
                    <category>
                        <![CDATA[ code review ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ leadership ]]>
                    </category>
                
                    <category>
                        <![CDATA[ handbook ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Qudrat Ullah ]]>
                </dc:creator>
                <pubDate>Mon, 04 May 2026 20:50:43 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/c94dff21-66d0-4256-bf3e-25c1978364d9.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>A few months ago, I was reviewing a pull request that added three new API endpoints. The diff was clean. Tests passed. The agent that generated it had even written sensible authorisation checks. By every signal I usually rely on, it was ready to merge.</p>
<p>The problem only showed up when I checked which authentication middleware the agent had imported.</p>
<p>Our codebase had two: a v1 middleware backed by MongoDB and a v2 middleware backed by MySQL, which we had spent the previous quarter migrating.</p>
<p>New endpoints were supposed to use v2. The agent had used v1 for all three. Tests passed because user records still existed in both databases (that was the point of the migration), and the v1 middleware happily authenticated them. The code worked. But every new endpoint we shipped was reinforcing the legacy auth path we had just spent a quarter trying to retire.</p>
<p>I caught it on the second read. Twenty minutes after the comments, the engineer fixed it and reopened the PR. The third reviewer probably wouldn't have caught it. The migration timeline lived in a Slack thread from six months earlier. The rule that "new endpoints use v2" lived in my head.</p>
<p>This kind of catch is the slow-burn version of why AI changed my job as a tech lead. Code generation got faster. My review queue got longer. The hardest reviews were the ones where everything looked right, and the only thing wrong was something that lived in the team's collective memory rather than in the diff.</p>
<p>This handbook is about what we did to fix that. It's the story of how we went from drowning in clean-looking PRs to running a custom AI PR reviewer that catches a meaningful share of these mistakes before any human is pulled in. The fix turned out to be less about buying a better tool and more about moving the team's memory into a place the AI could actually read.</p>
<p>The lessons should transfer whether your team uses Claude Code, Cursor, Cline, GitHub Copilot, or any combination. The structure matters more than the tool.</p>
<h2 id="heading-table-of-contents">Table of Contents</h2>
<ul>
<li><p><a href="#heading-the-old-bottleneck-and-the-one-ai-created">The Old Bottleneck, and the One AI Created</a></p>
</li>
<li><p><a href="#heading-what-the-new-review-work-actually-looks-like">What the New Review Work Actually Looks Like</a></p>
</li>
<li><p><a href="#heading-why-i-did-not-just-buy-a-tool">Why I Did Not Just Buy a Tool</a></p>
</li>
<li><p><a href="#heading-the-realisation-move-the-rules-into-the-codebase">The Realisation: Move the Rules Into the Codebase</a></p>
</li>
<li><p><a href="#heading-two-files-that-changed-everything-agentsmd-and-claudemd">Two Files That Changed Everything: AGENTS.md and CLAUDE.md</a></p>
</li>
<li><p><a href="#heading-where-per-service-memory-files-earn-their-keep">Where Per-Service Memory Files Earn Their Keep</a></p>
</li>
<li><p><a href="#heading-what-this-looks-like-on-disk">What This Looks Like on Disk</a></p>
</li>
<li><p><a href="#heading-generated-documentation-as-a-side-effect">Generated Documentation as a Side Effect</a></p>
</li>
<li><p><a href="#heading-building-the-pr-review-command">Building the PR Review Command</a></p>
</li>
<li><p><a href="#heading-guardrails-read-only-by-default">Guardrails: Read-Only by Default</a></p>
</li>
<li><p><a href="#heading-the-compounding-loop-that-made-the-real-difference">The Compounding Loop That Made the Real Difference</a></p>
</li>
<li><p><a href="#heading-starting-from-zero-on-an-existing-project">Starting From Zero on an Existing Project</a></p>
</li>
<li><p><a href="#heading-what-still-needs-human-review">What Still Needs Human Review</a></p>
</li>
<li><p><a href="#heading-a-two-week-setup-plan">A Two-Week Setup Plan</a></p>
</li>
<li><p><a href="#heading-what-is-working-what-i-am-still-improving">What Is Working, What I Am Still Improving</a></p>
</li>
<li><p><a href="#heading-sources">Sources</a></p>
</li>
</ul>
<h2 id="heading-the-old-bottleneck-and-the-one-ai-created">The Old Bottleneck, and the One AI Created</h2>
<p>To understand why this fix was needed, it helps to remember what reviewing code looked like a couple of years ago.</p>
<p>Back then, the slow part was upstream of the PR. A ticket would land, and before anyone could open a branch, there was a long preamble of context-gathering.</p>
<p>Junior engineers needed time to understand what the change was for. Senior engineers had to explain business rules and architectural decisions. Tickets sat in "ready" columns for days while someone with the right context made themselves available. Then the writing itself took time, because typing real code is slower than typing comments about it.</p>
<p>That bottleneck mostly dissolved when the team got serious about AI-assisted development. Engineers used the agent to read the codebase, ask clarifying questions, draft an implementation plan, and produce a working branch in hours instead of days. Tickets moved through the queue faster. Junior engineers shipped more without blocking on senior availability. From the outside, this looked like an unambiguous win.</p>
<p>But the bottleneck didn't disappear. It moved.</p>
<p>Within a few weeks of widespread AI adoption, my review queue had doubled. Then tripled. Engineers were opening PRs faster than I could read them.</p>
<p>The PRs themselves looked clean: well-formatted, with sensible variable names, passing tests, and AI-generated descriptions that read better than most human-written ones.</p>
<p>On the surface, this was great. In practice, it was creating a different kind of pain. I was the senior engineer who knew which patterns mattered and which paths through the codebase were the right ones, and I was the bottleneck. The team's velocity was now capped by my reading speed.</p>
<p>The CircleCI 2026 State of Software Delivery report confirmed I was not alone. Drawing on more than 28 million CI workflow runs across over 22,000 organisations, the report showed feature branch throughput had grown 59% year over year, the largest jump CircleCI had ever measured. Main branch throughput, where code actually gets promoted to production, fell by 7% for the median team in the same period. Build success rates dropped to 70.8%, the lowest in five years.</p>
<p>The pattern was consistent across the industry. AI accelerated writing. The rest of the system absorbed the cost.</p>
<p>So the question for me, as a tech lead, became concrete: how do I unblock myself without lowering the bar?</p>
<h2 id="heading-what-the-new-review-work-actually-looks-like">What the New Review Work Actually Looks Like</h2>
<p>Before I explain the fix, it helps to know what kinds of issues were actually piling up. They weren't the dramatic kind. None of them would crash production. They were small, recurring, and looked plausible at a glance.</p>
<p>Take the simplest case I kept catching. An engineer would ask the agent to add a delete button on a new screen. The button needed to call our existing backend delete endpoint. Instead of reusing the hook the team already had for that endpoint, the agent would write the fetch call inline.</p>
<p>The code worked. The tests passed. But a week later, when someone changed the backend response shape, only one of the two call sites got updated.</p>
<p>That kind of duplication doesn't show up in a code review unless the reviewer happens to remember that a hook exists.</p>
<p>Another example I saw constantly: the agent comparing a status field against the literal string <code>"completed"</code> instead of using the <code>Status.Completed</code> enum that the rest of the services used. The code ran. The tests ran. The next refactor of the enum quietly skipped the file. After a few days, someone would spend half a day debugging a state machine that was working fine until the agent's literal silently fell out of sync.</p>
<p>These were two-minute fixes once spotted, but spotting them took me a reasonable time per PR. The friction wasn't the difficulty. It was the repetition.</p>
<p>The pattern repeated across larger problems, too.</p>
<p>I once asked an agent to build an event creation wizard. The wizard needed several dropdowns and one new component.</p>
<p>We have a design system folder where shared UI components live, and the rule on the team is simple: check there first, and if you build something new, register it there.</p>
<p>The agent had no way to know that. It only loaded the wizard's own files, so it never opened the design system folder. It generated brand new dropdowns inline, with APIs that were almost identical to the ones we already had. The new component went straight into the wizard rather than into the design system. CI passed. The wizard worked. We caught the duplication in human review, but it was the kind of catch that depended entirely on a reviewer who happened to know the design system existed.</p>
<p>The same pattern hit in one of the repos I was looking at for backend architecture. Backend follows a strict four-layer pattern: route, controller, app, repo. Controllers must never call repository functions directly. That rule keeps authorisation centralised, business logic testable, and database concerns isolated.</p>
<p>One PR I reviewed had the agent calling repo functions straight from a controller, skipping the app layer entirely. The code worked. The tests passed because the agent had also written tests against the new shape. But it broke a discipline the team had spent years building. If that PR had landed, the next AI-assisted PR could have used it as a template, and the layering would have eroded one diff at a time.</p>
<p>The common thread is that all of these mistakes had something written down somewhere, in code, in a Slack thread, in a senior engineer's head, that would have prevented them. The information existed. The agent just couldn't see it.</p>
<h2 id="heading-why-i-did-not-just-buy-a-tool">Why I Did Not Just Buy a Tool</h2>
<p>The obvious next move was to install one of the AI PR reviewers that flooded the market in 2026.</p>
<p>I evaluated several. Anthropic launched Claude Code Review in March 2026, billed on token usage and averaging \(15 to \)25 per review. CodeRabbit Pro charges \(24 per developer per month on annual billing, or \)30 per developer per month on monthly billing, with seats counted against developers who actually open PRs. Greptile in March 2026 moved to a base-plus-usage model at $30 per seat per month, including 50 reviews, after which each additional review costs a dollar. GitHub announced that all Copilot plans will transition to usage-based billing on June 1, 2026, with code reviews consuming both AI Credits and GitHub Actions minutes from that date.</p>
<p>For a small team with low PR volume, none of these is a dealbreaker. For a larger team running heavy AI-assisted development, the costs compound fast. A 10-person team running five PRs each per day blows through Greptile's included reviews in a single week. CodeRabbit Pro at \(24 per seat scales linearly with developers. The premium Claude Code Review at \)15 to $25 per PR is the most expensive option per review by an order of magnitude.</p>
<p>I looked at the cost numbers, but cost wasn't actually the deciding factor. The deciding factor was that none of these tools would have caught the problems I just listed.</p>
<p>A generic reviewer wouldn't have caught the v1/v2 middleware. It had no way to know v2 was the canonical path. A generic reviewer wouldn't have caught the duplicate dropdowns. It had no way to know our design system existed. A generic reviewer wouldn't have caught the bypassed architecture. It had no way to know that controllers must not call repositories.</p>
<p>The information that lets a reviewer flag any of these is exactly the information that lives in the team's head, not in any tool's default prompt.</p>
<p>The better-rated tools support custom rules, and that's where I started to see the real shape of the problem. Once you are configuring custom rules, you've already accepted that the value is in the rules. The tool is just whatever runs them.</p>
<p>This raised a different question: if the rules are the product, why pay per seat or per review for someone else's wrapper around them?</p>
<p>This is what made me change direction.</p>
<h2 id="heading-the-realisation-move-the-rules-into-the-codebase">The Realisation: Move the Rules Into the Codebase</h2>
<p>Once I started thinking of the rules as the product, the path forward got clearer.</p>
<p>I asked myself a simple question: what was I actually doing in code review that the AI was not? The answer turned out to be the same thing, over and over. I was typing review comments that captured a piece of the team's memory.</p>
<p>"Use the Status enum, not a string literal." "There is already a hook for this in <code>/hooks/useDeleteItem</code>." "Controllers must not import from the repo layer; route this through the app layer." "Check the design system folder before creating new components."</p>
<p>Each of those comments was knowledge that lived in my head and arrived in the codebase one PR comment at a time. None of it was available to the agent the next time it generated a similar PR.</p>
<p>So the fix was not to buy a smarter reviewer. The fix was to write the rules down in a place every agent on the team would read before any review happened.</p>
<p>If I had typed "use the enum, not a literal" three times in three different PRs, that was a rule the agent should know about from now on. If I had pointed at the design system folder for the fourth time, that was a rule. If I had explained the four-layer architecture twice in PR comments, that was a rule.</p>
<p>I needed somewhere to put these rules. That turned out to be a less obvious decision than I expected.</p>
<h2 id="heading-two-files-that-changed-everything-agentsmd-and-claudemd">Two Files That Changed Everything: AGENTS.md and CLAUDE.md</h2>
<p>If you start looking into how to give an AI agent a persistent project context, you run into two competing conventions almost immediately.</p>
<p>The first is <strong>AGENTS.md</strong>, an open standard that has gathered real momentum. According to InfoQ, by mid-2025, the format had already been adopted by more than 20,000 GitHub repositories and was being positioned as a complement to traditional documentation: machine-readable context that lives alongside human-facing files like README.md.</p>
<p>The standard's own site reports it is now used by more than 60,000 open-source projects and has moved to stewardship under the Agentic AI Foundation, which sits inside the Linux Foundation. The format is supported by OpenAI Codex, GitHub Copilot, Google Gemini, Cursor, and Windsurf, among others.</p>
<p>The second is <strong>CLAUDE.md</strong>, which is Anthropic's convention for Claude Code. The Claude Code documentation describes two complementary memory systems: CLAUDE.md, where you write the persistent context yourself, and an auto-memory mechanism that lets Claude save its own notes from corrections and observed patterns. By default, Claude Code reads CLAUDE.md, not AGENTS.md.</p>
<p>This split mattered for us because half the team uses Claude Code and the other half uses Cursor. We had two practical options: maintain both files with the same content (and accept the duplication), or symlink one filename to the other so both ecosystems read the same source of truth. We went with the symlink. It's one less thing to drift.</p>
<p>The next question was what to actually put in the file. After a few iterations, here's the shape that worked. Think of it as a briefing document for a new engineer who has read no code and seen no Slack threads. The minimum content was:</p>
<ul>
<li><p>The tech stack (languages, frameworks, package manager)</p>
</li>
<li><p>The project structure, especially important for our monorepo</p>
</li>
<li><p>Where shared utilities, components, and helpers live, and the rule that new code should reuse them before creating new versions</p>
</li>
<li><p>Architectural patterns the project follows, with file path examples</p>
</li>
<li><p>Anti-patterns and what to do instead</p>
</li>
<li><p>Test conventions and where good examples live</p>
</li>
<li><p>Pointers to deeper documentation when more detail is needed</p>
</li>
</ul>
<p>Two practical rules emerged from the first month of using these files.</p>
<p><strong>Keep them lean:</strong> There is a counterintuitive failure mode with long instruction lists: the agent doesn't just skip the new ones at the bottom. The average compliance across all of them drops. A bloated memory file becomes a memory file that the agent skims. If a section runs more than a paragraph or two, move it to a separate document and link to it.</p>
<p><strong>Phrase rules as imperatives, not aspirations:</strong> "Controllers must not call repositories. Route through the app layer." beats "Try to keep controllers thin." The first is testable. The second is decorative.</p>
<p>That was the entry point. But a single root-level file was not enough for a monorepo with multiple services and frontends, which led to the next decision.</p>
<h2 id="heading-where-per-service-memory-files-earn-their-keep">Where Per-Service Memory Files Earn Their Keep</h2>
<p>A single <code>AGENTS.md</code> at the root of a monorepo collapses under its own weight pretty quickly. Each service in our codebase has its own architecture, conventions, and business rules. Trying to fit all of that into one file produced a long document that the agent treated as background noise, and we were back to the bloat problem from the previous section.</p>
<p>The pattern that worked: every service or app gets its own <code>AGENTS.md</code> at its root, and the project-level <code>AGENTS.md</code> becomes an index that points to them.</p>
<p>A per-service <code>AGENTS.md</code> covers things like:</p>
<ul>
<li><p>The architecture for this service (the four-layer pattern, the directory layout)</p>
</li>
<li><p>Naming conventions specific to this service</p>
</li>
<li><p>Test patterns and where good examples live</p>
</li>
<li><p>Business rules that this service is responsible for</p>
</li>
<li><p>Inter-service contracts and what other services consume from this one</p>
</li>
<li><p>Pointers to deeper docs in <code>docs/</code></p>
</li>
<li><p>A "Lessons learned" section, which I'll come back to in the section on the compounding loop</p>
</li>
</ul>
<p>The same lean rule applies. Keep it short, point at examples, and phrase guidance as imperatives.</p>
<p>The reason this works mechanically is that the agent loads the right files for the work at hand. When an engineer asks the agent to change something in <code>backend/</code>, the agent reads the project-level <code>AGENTS.md</code>, sees that work in <code>backend/</code> should be guided by <code>backend/AGENTS.md</code>, and loads that file. It doesn't load the frontend's <code>AGENTS.md</code>, because that work is somewhere else. The context window stays focused on what's relevant.</p>
<p>Without this split, you have two bad options. Either you put everything in the root file, where the agent ignores most of it, or you put nothing in the root file, where the agent has no team context at all. The per-service split gives you both depth and signal.</p>
<p>But these files only work if the deeper docs they point to actually exist, which is where the next piece of the system came in.</p>
<h2 id="heading-what-this-looks-like-on-disk">What This Looks Like on Disk</h2>
<p>Before going further, it helps to see the whole structure laid out. Here's the shape we settled on for our monorepo. The exact folder names follow Claude Code's conventions. If you use Cursor, it would be <code>.cursor/</code>, and if you use Cline, it would be <code>.clinerules</code> – but the shape transfers directly.</p>
<pre><code class="language-plaintext">project-root/
├── AGENTS.md                       # symlink to CLAUDE.md
├── CLAUDE.md                       # root memory file
├── README.md                       # human-facing project readme
│
├── .claude/                        # tool-specific config folder
│   ├── README.md                   # explains the .claude/ layout
│   ├── settings.json               # permissions and guardrails
│   ├── agents/                     # specialised subagents (optional)
│   ├── commands/                   # slash commands engineers run
│   │   ├── review-pr.md            # the PR review command
│   │   └── plan-feature.md         # implementation plan command
│   ├── hooks/                      # lifecycle hooks (optional)
│   ├── pr-rules/                   # rule files for PR review
│   │   ├── common.md               # rules that apply to every PR
│   │   ├── frontend.md             # rules for frontend changes
│   │   ├── backend.md              # rules for backend changes
│   │   ├── service-a.md            # rules for service-a
│   │   └── service-b.md            # rules for service-b
│   └── skills/                     # reusable workflows
│
├── frontend/
│   ├── AGENTS.md                   # frontend conventions
│   ├── docs/
│   │   ├── overview.md
│   │   ├── architecture.md         # routing, state, data layer
│   │   ├── design-system.md        # design system reference
│   │   └── testing.md              # test conventions
│   └── src/
│
├── backend/
│   ├── AGENTS.md                   # the four-layer pattern
│   ├── docs/
│   │   ├── overview.md
│   │   ├── architecture.md         # route -&gt; controller -&gt; app -&gt; repo
│   │   ├── auth.md                 # v1 vs v2 middleware
│   │   ├── business-rules.md
│   │   └── integrations.md
│   └── src/
│
├── service-a/
│   ├── AGENTS.md
│   ├── docs/
│   │   ├── overview.md
│   │   ├── business-rules.md
│   │   └── integrations.md
│   └── src/
│
└── service-b/
    ├── AGENTS.md
    ├── docs/
    │   ├── overview.md
    │   ├── business-rules.md
    │   └── integrations.md
    └── src/
</code></pre>
<p>A few things worth pointing out:</p>
<p>The <code>.claude/</code> folder uses standard subfolder names: <code>commands</code>, <code>agents</code>, <code>hooks</code>, <code>skills</code>. These follow Claude Code's plugin model, but most modern AI coding tools have similar slots. Following the conventions makes the structure recognisable to anyone on the team and lowers the cost of switching tools later.</p>
<p>The <code>pr-rules/</code> folder isn't a standard convention. It's a folder we created to hold per-area review rules that the PR review command loads selectively. You don't have to call it <code>pr-rules</code> – the name matters less than having one place where review rules live.</p>
<p>Each service has its own <code>AGENTS.md</code> plus a <code>docs/</code> folder. The root <code>AGENTS.md</code> is short and acts as an index. It tells the agent things like "if you touch files in <code>backend/</code>, also read <code>backend/AGENTS.md</code> first." The per-service file then points at the deeper docs as needed.</p>
<h2 id="heading-generated-documentation-as-a-side-effect">Generated Documentation as a Side Effect</h2>
<p>Setting up per-service <code>AGENTS.md</code> files surfaced a problem I had been quietly avoiding. Most of our services didn't have decent documentation. Not API reference material, which lives in code, but the higher-level "what does this service do, what business rules does it enforce, what does it consume and produce" information that lives in nobody's head except the original author's.</p>
<p>The honest reason was that writing this kind of documentation by hand had never paid back the time it took. By the time the doc was finished, half of it was already stale.</p>
<p>So I tried something I wouldn't have considered earlier. I used the AI itself to generate a first draft for each service. I pointed the agent at each service's code and asked it to produce a <code>docs/</code> folder with a specific structure: an overview, a list of business rules, an integrations document, a domain model, and any quirks worth knowing. The agent read the code, traced the call paths, and wrote a draft.</p>
<p>I then reviewed the output by hand, corrected the things it got wrong, and committed the result. The first drafts were 70-80% correct. The remaining 20-30% was where the agent had made plausible but wrong inferences, and those were exactly the cases where human review mattered.</p>
<p>The generated docs ended up serving two audiences. The agent uses them when reasoning about changes, which means it has real context for the service it's touching rather than guessing from local files. And new engineers use them on their first day, which has cut our onboarding time noticeably.</p>
<p>We used to write onboarding documents that drifted out of date within months. These docs stay closer to current because the agent reads them on every PR, and any drift gets surfaced when the agent gives wrong advice based on stale information.</p>
<p>The pattern that works is to keep the per-service <code>AGENTS.md</code> short and pointing at the docs, rather than duplicating their content. <code>AGENTS.md</code> is the always-loaded index. <code>docs/</code> holds the details. The agent loads the relevant doc on demand when the task calls for it.</p>
<p>With the rules in place and the docs in place, I had everything I needed to build the actual reviewer.</p>
<h2 id="heading-building-the-pr-review-command">Building the PR Review Command</h2>
<p>This is the piece that most directly unblocked my queue.</p>
<p>This command didn't appear out of nowhere. It started as the checklist I was running through in my head every time I opened a PR. I was reviewing every change manually, leaving the same comments, flagging the same patterns. So I wrote that checklist down, expanded it with references to the per-service docs for the harder rules, and turned it into a command anyone on the team could run.</p>
<p>Then I handed it to the engineers and changed the rule: run this on your own branch before marking the PR ready for review. That single shift moved the work from after the PR was opened to before. Engineers now catch 90-95% of the blockers, improvements, and nice-to-haves on their own machine, fix them locally, and only then push the change.</p>
<p>The PR description includes the AI's summary, so when anyone opens the PR, they can see the reviewer's green signal at the top before even reading the diff.</p>
<p>GitHub stays clean. The conversation on the PR becomes about the things that actually need a human, not the recurring stuff the team already knows how to fix.</p>
<p>The command lives in <code>.claude/commands/review-pr.md</code>. Here's a generalised version. Your tool's command structure may differ, but the shape is what matters.</p>
<pre><code class="language-markdown"># Review PR

Review the current branch's PR. Be direct. Cite `file:line`. Surface real issues,
no padding.

## 1. Scope the diff

Run, in order:

    gh pr view --json number,title,body,headRefName 2&gt;/dev/null || true
    git fetch origin main
    git log --no-merges origin/main..HEAD --oneline
    git diff origin/main...HEAD --stat
    git diff origin/main...HEAD

Read the PR body. Note the stated intent. Every change should trace to it. Flag
anything that does not.

Use `...` (three dots) for the diff. It compares against the merge base and
excludes commits brought in by merging main.

## 2. Load rules

Always read `.claude/pr-rules/common.md`.

Then read the per-area file for each workspace touched in the diff:

| Workspace path | Rules file                      |
| -------------- | ------------------------------- |
| `frontend/**`  | `.claude/pr-rules/frontend.md`  |
| `backend/**`   | `.claude/pr-rules/backend.md`   |
| `service-a/**` | `.claude/pr-rules/service-a.md` |
| `service-b/**` | `.claude/pr-rules/service-b.md` |

For non-trivial changes, follow doc pointers inside the rules files (for
example, `backend/AGENTS.md`, `backend/docs/architecture.md`).

Apply every entry under each file's "Lessons learned" section as a check.

## 3. Output

Use exactly this format.

    ## Summary
    &lt;one paragraph: what the PR does, whether it matches the stated intent&gt;

    ## Blocking
    - [file:line] issue, why it blocks

    ## Should fix
    - [file:line] issue

    ## Nice to have
    - issue

    ## Verified
    - what was checked and looks good

If nothing blocks, say so. Do not manufacture concerns.

If you find an issue worth remembering for future PRs, suggest the bullet to
add to the relevant rules file's "Lessons learned" section. Do not edit the
rules file yourself, leave that to the human.
</code></pre>
<p>A few of the design choices in this command turned out to matter more than I expected.</p>
<p>The structured output format (Summary, Blocking, Should fix, Nice to have, Verified) keeps the review easy to scan and easy to paste into a PR description. The "Verified" section is the most underrated of the five: it tells the human reviewer what the AI already checked, so they can spend their attention elsewhere. Without it, the human reviewer ends up doing the same checks twice.</p>
<p>The instruction to be direct and stop padding does real work. Without it, AI reviewers tend to manufacture concerns to look thorough, which trains engineers to skim past the bot. Telling it explicitly to say "nothing blocks" when nothing blocks made the signal-to-noise ratio of the output much better.</p>
<p>The "suggest a bullet for the rules file" instruction at the end is the heart of the whole system, and I'll explain why in the section on the compounding loop. The key constraint here is that the agent suggests the bullet but doesn't commit to it. A human evaluates whether it's general enough to be a rule, and only then adds it to the file. That manual step is what keeps the rules sharp instead of bloated.</p>
<p>With each PR, if humans fix something or the AI suggests something, you keep adding those to your MD files and keep improving your agents for the future. The result compounds quickly.</p>
<p>One more thing here: the diff-scoping commands are all read-only. The command shouldn't be able to push, edit PRs, or close anything. Which is the next piece of the system.</p>
<h2 id="heading-guardrails-read-only-by-default">Guardrails: Read-Only by Default</h2>
<p>Giving an AI agent broad permissions on your codebase is a security incident waiting to happen. Even if you trust the model to behave, an LLM occasionally does unexpected things, and a fast-moving agent on an unrestricted shell can cause damage in seconds.</p>
<p>The fix is a <code>settings.json</code> (in Claude Code – other tools have their own equivalents) at the root of <code>.claude/</code> that explicitly declares what the agent can and can't do. The deny list matters more than the allow list, and a good one is organised around four categories of risk.</p>
<p>The first is <strong>secrets and configuration</strong>. Any read against anything that appears to be a credential is blocked. That covers <code>.env</code> files of every variant (<code>.env</code>, <code>.env.local</code>, <code>.env.production</code>, <code>.env.test</code>, and so on), <code>.npmrc</code>, <code>.netrc</code>, <code>.pgpass</code>, <code>id_rsa</code>, <code>id_ed25519</code>, <code>*.pem</code>, <code>*.key</code>, <code>*.p12</code>, <code>**/credentials.json</code>, <code>**/secrets.json</code>, <code>**/.aws/**</code>, <code>**/.ssh/**</code>, <code>**/.gcloud/**</code>, and <code>**/.kube/**</code>. Environment dumps are blocked too: <code>env</code>, <code>printenv</code>, <code>set</code>, <code>export</code>. The agent has no legitimate reason to read or echo any of these, ever.</p>
<p>The second is <strong>destructive Git operations</strong>. The agent can read Git history but can't rewrite or push it. Blocked: <code>git push</code>, <code>git commit</code>, <code>git revert</code>, <code>git cherry-pick</code>, <code>git merge</code>, <code>git rebase</code>, <code>git reset --hard</code>, <code>git tag</code>. Allowed: <code>git fetch</code>, <code>git status</code>, <code>git log</code>, <code>git diff</code>, <code>git show</code>, <code>git branch</code>, <code>git rev-parse</code>, <code>git merge-base</code>, <code>git config --get</code>.</p>
<p>The third is <strong>write operations on PRs and issues</strong>. The agent can read your GitHub state but can't act on it. Blocked: <code>gh pr create</code>, <code>gh pr edit</code>, <code>gh pr merge</code>, <code>gh pr close</code>, <code>gh pr comment</code>, <code>gh pr review</code>, <code>gh issue create</code>, <code>gh issue edit</code>, <code>gh issue close</code>, <code>gh issue comment</code>, <code>gh release create</code>, <code>gh repo create</code>, <code>gh repo edit</code>, <code>gh repo delete</code>. Allowed: <code>gh pr view</code>, <code>gh pr list</code>, <code>gh pr diff</code>, <code>gh pr checks</code>, <code>gh issue view</code>, <code>gh issue list</code>, <code>gh release view</code>.</p>
<p>The fourth is <strong>workflow and automation control</strong>. These are the surfaces where a compromised or misled agent could do the most damage. Blocked: <code>gh workflow run</code>, <code>gh run rerun</code>, <code>gh run cancel</code>, <code>gh secret</code>, <code>gh variable</code>, <code>gh auth</code>, <code>gh ssh-key</code>, <code>gh gpg-key</code>, and the unrestricted <code>gh api</code>.</p>
<p>For shell commands the agent legitimately needs to run, like build and test commands, allowlist specific patterns: <code>pnpm test</code>, <code>pnpm lint</code>, <code>pnpm format:check</code>, <code>pnpm build</code>, <code>pnpm vitest</code>. Anything outside the allowed list requires human confirmation. These are your own settings&nbsp;– I've just mentioned what I prefer.</p>
<p>The pattern is simple: read-only by default, write-allowed only for the specific commands you have explicitly approved. The agent can investigate, plan, and recommend. It can't ship.</p>
<p>With the structure in place and the guardrails set, the system started doing its job. What I didn't expect was how much better it would get over the months that followed.</p>
<h2 id="heading-the-compounding-loop-that-made-the-real-difference">The Compounding Loop That Made the Real Difference</h2>
<p>When we started, the AI reviewer was useful but not transformative. It caught some obvious issues, missed plenty of subtle ones, and produced a fair amount of noise.</p>
<p>The first month, my review burden dropped by 35%. The time I was spending on PR checking was reduced to 1/3, almost. Decent, not life-changing.</p>
<p>What changed over time wasn't the tool. It was the rules.</p>
<p>Every time a PR creator and reviewer caught something the AI had missed, we were adding bullets to the relevant rules file. Every time the AI flagged something useful that turned out to be a recurring pattern, the agent's own suggestion at the end of the review went into the file.</p>
<p>After a few days, the rules files had grown into something that captured a meaningful fraction of the team's collective review knowledge, written down in a place every agent on the team would read.</p>
<p>The catch rate went up. The noise went down because the rules also said what was acceptable and what we already considered solved. New engineers stopped getting the same comments on their first three PRs because the AI caught the comments first. Engineers joining the team didn't have to absorb the conventions through six months of review feedback. They installed the project, opened it in their editor, and the agent already knew.</p>
<p>This is the part most teams miss when they evaluate AI PR review tools. They look at the catch rate today and decide whether the tool is worth the price. The catch rate today isn't the right number. The right number is what the catch rate looks like in six months, after the rules file has absorbed every recurring mistake your team has made.</p>
<p>A single rule written down today saves a small amount of review time. Over a hundred PRs, it saves more. After a year, the rules file is a written-down version of a tech lead's accumulated taste. We've switched between Claude Code, the GitHub Copilot CLI, and Cursor for various tasks during this period. The AI tool changes, but the rules file in the repo stays the same.</p>
<p>The discipline that makes this work is treating the rules file as living documentation. Every recurring review comment is a candidate for promotion into the file. If you catch yourself typing the same feedback in two different PRs, that's a rule that belongs in <code>pr-rules/</code>. The "suggest a bullet" instruction in the review command is what makes this practical: the AI does the typing, the human does the deciding.</p>
<p>This is also what made me realise the system was worth the time it took to set up. The PR review command, on its own, is useful but unremarkable. The compounding loop is what turns it into infrastructure.</p>
<h2 id="heading-starting-from-zero-on-an-existing-project">Starting From Zero on an Existing Project</h2>
<p>If you've read this far and feel like the gap between your project and what I just described is a sprint of work, that's the most common reaction. It's also not correct.</p>
<p>The blank <code>AGENTS.md</code> is intimidating, especially on an existing codebase. You know your team has a thousand conventions, and writing a thousand rules sounds like a project that takes weeks before it produces any value.</p>
<p>The honest answer is that you can't write all the rules up front, and you shouldn't try. The first version of any of these files should take an afternoon, not a sprint.</p>
<p>Here's how I would actually start.</p>
<p>Run <code>/init</code> (or your tool's equivalent). In Claude Code, <code>/init</code> scans the project, infers the obvious shape (language, framework, entry points, build commands), and writes an initial <code>CLAUDE.md</code>. The output is a starting point, not a finished file. Read it, delete most of what it generates, and keep the bones.</p>
<p>Then add three things, each one bullet long.</p>
<p>First, an architecture rule. Pick the single most important convention your team enforces. For us, that was the four-layer pattern. The bullet was: "Controllers must not call repository functions directly. They must go through the app layer."</p>
<p>Second, a discoverability rule. Pick the single most important shared resource the team has, the one new code is most likely to duplicate. For us, that was the design system. The bullet was: "Before creating a new UI component, check <code>/src/design-system/</code> first."</p>
<p>Third, a "do not touch" rule. Pick the single most dangerous file or area in the codebase. Auth, billing, or migrations whichever has the most production risk. The bullet was: "Do not modify files in <code>/auth/</code> without human approval."</p>
<p>That's enough to start. Three rules, ten minutes of writing, and most of your team's recurring AI mistakes start to drop.</p>
<p>If even three rules feels like too much, start with one. Pick a single line that matters in your codebase and write it down.</p>
<p>"No <code>any</code> types in TypeScript." "Always use the enum, never compare against the string literal." "Run the linter before opening a PR." It doesn't have to be sophisticated. It doesn't have to cover edge cases. It just has to capture one piece of judgement that lives in your head today and would otherwise stay there.</p>
<p>Tomorrow, add another. The first week, you might catch 5% of the recurring mistakes. By 20 or 30 PRs in, you might catch 20-30%. The rules file doesn't need to be impressive on day one. It needs to exist and keep growing.</p>
<p>This is the compounding effect I'll come back to soon, and it's the reason this approach works on real projects rather than just in theory.</p>
<p>From there, the file grows the same way it would grow for any team. Every review catch becomes a candidate rule. After a few weeks, you have ten or fifteen rules. After a few months, you have a real review system.</p>
<p>The mistake is trying to write the perfect file on day one. The right file is the one you start with and keep editing.</p>
<h2 id="heading-what-still-needs-human-review">What Still Needs Human Review</h2>
<p>This system doesn't replace human review, and it shouldn't be allowed to.</p>
<p>The AI reviewer catches what the rules describe, plus a fair number of obvious things it would have spotted anyway. It doesn't catch problems that depend on context the rules don't capture. It doesn't catch product judgement. It doesn't catch the question of whether the change should have been built at all.</p>
<p>It also has an important blind spot when reviewing AI-authored code. The reviewer shares the same training data and reasoning patterns as the agent that wrote the code. If the original agent missed the v1/v2 distinction because it had no way to see the migration timeline, an AI reviewer reading the same diff has the same problem. Two AIs in a review loop are not two independent reviewers. They share blind spots.</p>
<p>That is why the AI reviewer in this setup never approves a PR. It produces a structured review that goes into the PR description. A human still reads the change and approves it. The AI is the first pass, not the gate.</p>
<p>Accountability also has to live with a human. When something the AI approved breaks production, someone has to own the post-mortem and decide what changes are needed for next time. The AI can't be that person. What it can do, well, is reduce the stack of small mistakes a human reviewer has to find before they get to the harder questions.</p>
<h2 id="heading-a-two-week-setup-plan">A Two-Week Setup Plan</h2>
<p>If you want to set this up for your own team, here's a concrete plan that fits in a couple of weeks. None of this needs to happen in a single push.</p>
<h3 id="heading-day-1-bootstrap-the-memory-file">Day 1: Bootstrap the memory file.</h3>
<p>Run <code>/init</code> (or your tool's equivalent) at the root of the project. Read the generated <code>CLAUDE.md</code> (or <code>AGENTS.md</code>). Delete most of it. Keep the tech stack and project structure sections.</p>
<p>Add the three rules from the previous section: one architecture rule, one discoverability rule, and one "do not touch" rule. Decide whether you want both files or a symlink.</p>
<h3 id="heading-day-2-add-per-service-files-for-your-highest-risk-areas">Day 2: Add per-service files for your highest-risk areas</h3>
<p>Pick the two or three areas of the codebase that change most often or carry the most risk. Add an <code>AGENTS.md</code> to each, following the same lean pattern. Include the architectural pattern for that area, the naming conventions, where to find good test examples, and pointers to any existing docs. Skip anything that doesn't need to be there yet.</p>
<h3 id="heading-day-3-set-up-the-directory-structure-and-guardrails">Day 3: Set up the directory structure and guardrails</h3>
<p>Create a <code>.claude/</code> folder (or your tool's equivalent) at the root, with <code>commands/</code> and <code>pr-rules/</code> subfolders. Add a <code>settings.json</code> with the deny list categories from the guardrails section. Test that the agent can't read a <code>.env</code> file, run <code>git push</code>, or create a PR. If any of those work, fix the settings before doing anything else.</p>
<h3 id="heading-day-4-write-the-pr-review-command">Day 4: Write the PR review command</h3>
<p>Adapt the command in this article to your structure. Include the diff scoping, the rule loading, the output format, and the "suggest a new rule" instruction at the end. Run it on a branch you've already merged, and tune the output until it's useful.</p>
<h3 id="heading-day-5-run-it-on-real-prs">Day 5: Run it on real PRs</h3>
<p>Have one or two engineers run the command on their next PRs before opening them. Read the output. Note what it caught, what it missed, and what was noise. Add the missing catches to the rules files. The first week is mostly tuning.</p>
<h3 id="heading-week-2-roll-out-and-document">Week 2: Roll out and document</h3>
<p>Once the command produces useful output reliably, ask the whole team to run it before opening PRs and paste the output into the PR description. Add a short section to your contributing guide explaining the workflow. Set a recurring item in your team's rituals to review the rules files monthly and trim anything that has gone stale.</p>
<p>That gets you to a working system. From there, the maintenance is incremental. Every recurring review comment becomes a candidate rule. Every architectural decision becomes a candidate update to the relevant <code>AGENTS.md</code>. The system improves as a side effect of the work the team is already doing.</p>
<h2 id="heading-what-is-working-what-i-am-still-improving">What Is Working, What I Am Still Improving</h2>
<p>Here's my honest assessment after a few months of running this:</p>
<h3 id="heading-whats-working">What's Working</h3>
<p>My review burden is meaningfully smaller. Engineers fix most of the easy mistakes before I see the PR. The "Verified" section of the AI's output tells me what to skip past. New engineers ramp faster because the conventions live in a place their tooling reads. The rules files have grown into something I would actually use to onboard someone new.</p>
<h3 id="heading-what-isnt-finished">What Isn't Finished</h3>
<p>The AI still misses problems that depend on context, and the rules don't capture them. The rules files grow, but they also need pruning, and we haven't been disciplined about that.</p>
<p>We're still figuring out how to handle rules that apply only conditionally. Docs are helping in that case, but we need to keep those up to date. And no system survives a determined engineer who skips the workflow or docs when they're in a rush.</p>
<p>There's no shortcut here. The work is real, ongoing, and mostly about discipline. The discipline is treating your codebase as something the AI needs to learn, and treating every recurring review comment as something that should be written down once instead of typed thirty times. If you're willing to do that, the tools take care of the rest.</p>
<p>If you take three things from this article, take these.</p>
<ol>
<li><p>First, don't pay for a generic reviewer to do a job your codebase needs to inform. Generic reviewers catch generic problems. Most of your real review work is specific to your team.</p>
</li>
<li><p>Second, put the rules in a file the AI reads, not in your head. <code>AGENTS.md</code>, <code>CLAUDE.md</code>, per-service files, per-area rules files. Pick a structure and stick to it.</p>
</li>
<li><p>Third, treat every human review catch as a chance to update the rules. The compounding effect over months is the entire point. A review system that improves itself is worth more than any single tool.</p>
</li>
</ol>
<p>That's the system. It took a couple of weeks to build the foundation and a few months for the rules to mature. It costs very little to run, and it has done more for our PR throughput than any tool I evaluated.</p>
<h2 id="heading-sources">Sources</h2>
<ul>
<li><p>CircleCI's 2026 State of Software Delivery report, analysing more than 28 million CI workflows from over 22,000 organisations: <a href="https://circleci.com/resources/2026-state-of-software-delivery/">https://circleci.com/resources/2026-state-of-software-delivery/</a></p>
</li>
<li><p>CircleCI's blog post detailing the year-over-year throughput numbers, including the 59% feature branch growth and the main branch decline: <a href="https://circleci.com/blog/five-takeaways-2026-software-delivery-report/">https://circleci.com/blog/five-takeaways-2026-software-delivery-report/</a></p>
</li>
<li><p>GitHub announcement of Copilot's transition to usage-based billing on June 1, 2026: <a href="https://github.blog/news-insights/company-news/github-copilot-is-moving-to-usage-based-billing/">https://github.blog/news-insights/company-news/github-copilot-is-moving-to-usage-based-billing/</a></p>
</li>
<li><p>GitHub changelog confirming Copilot code review will start consuming GitHub Actions minutes on June 1, 2026: <a href="https://github.blog/changelog/2026-04-27-github-copilot-code-review-will-start-consuming-github-actions-minutes-on-june-1-2026/">https://github.blog/changelog/2026-04-27-github-copilot-code-review-will-start-consuming-github-actions-minutes-on-june-1-2026/</a></p>
</li>
<li><p>AGENTS.md, the open standard's official site, including its stewardship under the Agentic AI Foundation and the Linux Foundation: <a href="https://agents.md/">https://agents.md/</a></p>
</li>
<li><p>Anthropic's Claude Code documentation on the memory system, including CLAUDE.md, auto memory, and the /init command: <a href="https://code.claude.com/docs/en/memory">https://code.claude.com/docs/en/memory</a></p>
</li>
<li><p>Anthropic's Claude Code GitHub Actions documentation, including notes on token-based billing and recommended cost controls: <a href="https://code.claude.com/docs/en/github-actions">https://code.claude.com/docs/en/github-actions</a></p>
</li>
<li><p>CodeRabbit's pricing documentation, confirming the per-developer-per-month seat model: <a href="https://docs.coderabbit.ai/management/plans">https://docs.coderabbit.ai/management/plans</a></p>
</li>
<li><p>Greptile's March 2026 pricing announcement, introducing the base-plus-usage model at $30 per seat per month with 50 included reviews: <a href="https://www.greptile.com/blog/greptile-v4">https://www.greptile.com/blog/greptile-v4</a></p>
</li>
<li><p>HumanLayer's write-up on writing a good CLAUDE.md, including data on instruction-following degradation: <a href="https://www.humanlayer.dev/blog/writing-a-good-claude-md">https://www.humanlayer.dev/blog/writing-a-good-claude-md</a></p>
</li>
</ul>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Keep Human Experts Visible in Your AI-Assisted Codebase ]]>
                </title>
                <description>
                    <![CDATA[ Six months ago, Stack Overflow processed 108,563 questions in a single month. By December 2025, that number had fallen to 3,862. A 78% collapse in two years. The explanation everyone reaches for is th ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-keep-human-experts-visible-in-your-ai-assisted-codebase/</link>
                <guid isPermaLink="false">69dd18d4217f5dfcbd13e964</guid>
                
                    <category>
                        <![CDATA[ claude.ai ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ claude ]]>
                    </category>
                
                    <category>
                        <![CDATA[ claude-code ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Python ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Daniel Nwaneri ]]>
                </dc:creator>
                <pubDate>Mon, 13 Apr 2026 16:24:52 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/21d160a8-af66-4048-9fda-1d83b2e26148.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Six months ago, Stack Overflow processed 108,563 questions in a single month. By December 2025, that number had fallen to 3,862. A 78% collapse in two years.</p>
<p>The explanation everyone reaches for is that AI replaced it. That's partly true. But it misses the structural problem underneath: every time a developer asks Claude or ChatGPT to write code, the knowledge that shaped the answer disappears.</p>
<p>The GitHub discussion where someone spent two hours documenting why cursor-based pagination beats offset for live-updating datasets. The Stack Overflow answer from 2019 where one engineer, after a week of debugging, documented exactly why that approach fails under concurrent writes.</p>
<p>The AI consumed all of it. The humans who produced it got nothing — no citation in the codebase, no signal that their work mattered.</p>
<p>Over time, those people stopped contributing. Stack Overflow isn't dying because it's bad. It's dying because AI extracted its value and the feedback loop that kept humans contributing broke down.</p>
<p>This tutorial builds a tool that puts that loop back together. <strong>proof-of-contribution</strong> is a Claude Code skill that links every AI-generated artifact back to the human knowledge that inspired it — and surfaces exactly where the AI made choices with no human source at all.</p>
<p>I'll show you how to install proof-of-contribution, how to record your first provenance entry, how to use the spec-writer integration that makes Knowledge Gaps deterministic, and how to run <code>poc.py verify</code> — a static analyser that detects gaps without a single API call.</p>
<h2 id="heading-table-of-contents">Table of Contents</h2>
<ol>
<li><p><a href="#heading-what-you-will-build">What You Will Build</a></p>
</li>
<li><p><a href="#heading-prerequisites">Prerequisites</a></p>
</li>
<li><p><a href="#heading-quickstart-in-5-minutes">Quickstart in 5 Minutes</a></p>
</li>
<li><p><a href="#heading-how-the-tool-works">How the Tool Works</a></p>
</li>
<li><p><a href="#heading-how-to-install-proof-of-contribution">How to Install proof-of-contribution</a></p>
</li>
<li><p><a href="#heading-how-to-scaffold-your-project">How to Scaffold Your Project</a></p>
</li>
<li><p><a href="#heading-how-to-record-your-first-provenance-entry">How to Record Your First Provenance Entry</a></p>
</li>
<li><p><a href="#heading-how-to-use-import-spec-to-seed-knowledge-gaps">How to Use import-spec to Seed Knowledge Gaps</a></p>
</li>
<li><p><a href="#heading-how-to-trace-human-attribution">How to Trace Human Attribution</a></p>
</li>
<li><p><a href="#heading-how-to-verify-with-static-analysis">How to Verify with Static Analysis</a></p>
</li>
<li><p><a href="#heading-how-to-enable-pr-enforcement">How to Enable PR Enforcement</a></p>
</li>
<li><p><a href="#heading-where-to-go-next">Where to Go Next</a></p>
</li>
</ol>
<h2 id="heading-what-you-will-build">What You Will Build</h2>
<p>proof-of-contribution is a Claude Code skill with a local CLI. Together they give you:</p>
<ul>
<li><p><strong>Provenance Blocks</strong>: Claude appends a structured attribution block to every generated artifact, listing the human sources that inspired it and flagging what it synthesized without any traceable source.</p>
</li>
<li><p><strong>Knowledge Gaps</strong>: the parts of AI-generated code that have no human citation, surfaced before they become production incidents</p>
</li>
<li><p><code>poc.py trace</code>: a CLI command that shows the full human attribution chain for any file in thirty seconds</p>
</li>
<li><p><code>poc.py import-spec</code>: bridges proof-of-contribution with spec-writer, seeding knowledge gaps from your spec's assumptions list before the agent builds anything</p>
</li>
<li><p><code>poc.py verify</code>: a static analyser that cross-checks your file's structure against seeded claims using Python's AST. Zero API calls. Exit code 0 means clean, exit code 1 means gaps found — wires directly into CI</p>
</li>
<li><p><strong>A GitHub Action</strong>: optional PR enforcement that fails PRs missing attribution, for teams that want a standard</p>
</li>
</ul>
<p>The complete source is at <a href="https://github.com/dannwaneri/proof-of-contribution">github.com/dannwaneri/proof-of-contribution</a>.</p>
<h2 id="heading-prerequisites">Prerequisites</h2>
<p>This is a beginner-to-intermediate tutorial. You should be comfortable with:</p>
<ul>
<li><p><strong>Command line basics</strong>: navigating directories, running scripts</p>
</li>
<li><p><strong>Git</strong>: basic commits and PRs</p>
</li>
<li><p><strong>Python 3.8 or higher</strong>: the CLI is pure Python with no dependencies</p>
</li>
</ul>
<p>You will need:</p>
<ul>
<li><p><strong>Python installed</strong>: check with <code>python --version</code> or <code>python3 --version</code></p>
</li>
<li><p><strong>Git installed</strong>: check with <code>git --version</code></p>
</li>
<li><p><strong>Claude Code</strong> (or any agent that supports the Agent Skills standard — Cursor and Gemini CLI also work)</p>
</li>
</ul>
<p>There's no database to install. No API keys. No paid services. The default storage is SQLite, which Python includes out of the box.</p>
<h2 id="heading-quickstart-in-5-minutes">Quickstart in 5 Minutes</h2>
<p>If you want to try the tool before reading the full tutorial, here are the five commands that take you from zero to your first gap detection:</p>
<p><strong>Mac and Linux:</strong></p>
<pre><code class="language-bash"># 1. Install
mkdir -p ~/.claude/skills
git clone https://github.com/dannwaneri/proof-of-contribution.git \
  ~/.claude/skills/proof-of-contribution

# 2. Scaffold your project (run in your repo root)
python ~/.claude/skills/proof-of-contribution/assets/scripts/poc_init.py

# 3. Record attribution for an AI-generated file
python poc.py add src/utils/parser.py

# 4. Detect gaps via static analysis
python poc.py verify src/utils/parser.py

# 5. See the full provenance chain
python poc.py trace src/utils/parser.py
</code></pre>
<p><strong>Windows PowerShell:</strong></p>
<pre><code class="language-powershell"># 1. Install
New-Item -ItemType Directory -Force -Path "$HOME\.claude\skills"
git clone https://github.com/dannwaneri/proof-of-contribution.git `
  "$HOME\.claude\skills\proof-of-contribution"

# 2. Scaffold your project
python "$HOME\.claude\skills\proof-of-contribution\assets\scripts\poc_init.py"

# 3. Record attribution
python poc.py add src\utils\parser.py

# 4. Detect gaps
python poc.py verify src\utils\parser.py

# 5. See the full provenance chain
python poc.py trace src\utils\parser.py
</code></pre>
<p>That's the whole tool. The sections below walk through each step in detail with real terminal output at every stage.</p>
<h2 id="heading-how-the-tool-works">How the Tool Works</h2>
<p>Before you install anything, you need a clear mental model of what proof-of-contribution actually does — because the most important part isn't obvious.</p>
<h3 id="heading-the-archaeology-problem">The Archaeology Problem</h3>
<p>Here's a scenario that happens on every team using AI-assisted development.</p>
<p>A developer joins. They go through six months of AI-generated codebase. They hit a bug in the pagination logic — cursor-based, unusual implementation, nobody remembers why it was built that way. The original developer has left.</p>
<p>Old answer: two days of archaeology. <code>git blame</code> points to a commit message that says "fix pagination." The commit before that says "implement pagination." Dead end.</p>
<p>With <code>poc.py trace src/utils/paginator.py</code>, that same developer sees this in thirty seconds:</p>
<pre><code class="language-plaintext">Provenance trace: src/utils/paginator.py
────────────────────────────────────────────────────────────
  [HIGH]  @tannerlinsley on github
          Cursor pagination discussion
          https://github.com/TanStack/query/discussions/123
          Insight: cursor beats offset for live-updating datasets

Knowledge gaps (AI-synthesized, no human source):
  • Error retry strategy — no human source cited
  • Concurrent write handling — AI chose this arbitrarily
</code></pre>
<p>They now know where the pattern came from and — critically — which parts have no traceable human source. The concurrent write handling is where the bug lives. The AI made a choice nobody reviewed.</p>
<p>That's what this tool does. Not enforcement first. Archaeology first.</p>
<h3 id="heading-how-knowledge-gaps-are-detected">How Knowledge Gaps Are Detected</h3>
<p>The obvious assumption is that Claude introspects and reports what it doesn't know. That assumption is wrong. LLMs hallucinate confidently. An AI that could reliably detect its own knowledge gaps wouldn't produce them.</p>
<p>The detection mechanism is a comparison, not introspection.</p>
<p>When you use <a href="https://github.com/dannwaneri/spec-writer">spec-writer</a> before building, it generates a spec with an explicit <code>## Assumptions to review</code> section — every decision the AI is making that you didn't specify, each one impact-rated. That list is the contract.</p>
<p>When you run <code>poc.py import-spec spec.md --artifact src/utils/paginator.py</code>, those assumptions get seeded into the database as unresolved knowledge gaps. After the agent builds, <code>poc.py trace</code> shows which assumptions made it into code with no human source ever cited.</p>
<p>The AI isn't grading its own exam. The spec is the answer key.</p>
<p><code>poc.py verify</code> takes this further. After the agent builds, it parses the file's actual structure using Python's built-in <code>ast</code> module — extracting every function definition, conditional branch, and return path. It cross-checks each one against the seeded claims. Any structural unit with no resolved claim surfaces as a deterministic Knowledge Gap, regardless of how confident the model was when it wrote the code.</p>
<h2 id="heading-how-to-install-proof-of-contribution">How to Install proof-of-contribution</h2>
<h3 id="heading-mac-and-linux">Mac and Linux</h3>
<pre><code class="language-bash">mkdir -p ~/.claude/skills
git clone https://github.com/dannwaneri/proof-of-contribution.git \
  ~/.claude/skills/proof-of-contribution
</code></pre>
<h3 id="heading-windows-powershell">Windows PowerShell</h3>
<pre><code class="language-powershell">New-Item -ItemType Directory -Force -Path "$HOME\.claude\skills"
git clone https://github.com/dannwaneri/proof-of-contribution.git `
  "$HOME\.claude\skills\proof-of-contribution"
</code></pre>
<p>That's the entire installation. No package to install, no configuration file to edit. The skill is a markdown file the agent reads. The CLI is a Python script that runs locally.</p>
<h3 id="heading-verify-the-install">Verify the Install:</h3>
<pre><code class="language-bash">ls ~/.claude/skills/proof-of-contribution/
</code></pre>
<p>You should see <code>SKILL.md</code>, <code>poc.py</code>, <code>assets/</code>, and <code>references/</code>. If the directory is empty, the clone failed — check your internet connection and try again.</p>
<h2 id="heading-how-to-scaffold-your-project">How to Scaffold Your Project</h2>
<p>The scaffold script creates the database, config, CLI, and GitHub integration in your project root. Run it once per project.</p>
<h3 id="heading-mac-and-linux">Mac and Linux</h3>
<pre><code class="language-bash">cd /path/to/your/project
python ~/.claude/skills/proof-of-contribution/assets/scripts/poc_init.py
</code></pre>
<h3 id="heading-windows-powershell">Windows PowerShell</h3>
<pre><code class="language-powershell">cd C:\path\to\your\project
python "$HOME\.claude\skills\proof-of-contribution\assets\scripts\poc_init.py"
</code></pre>
<p>You should see output like this:</p>
<pre><code class="language-plaintext">🔗 Proof of Contribution — init

  →  Project root: /path/to/your/project
  ✔  Created .poc/config.json
  ✔  Created .poc/.gitignore  (db excluded from git, config tracked)
  ✔  Created .poc/provenance.db  (SQLite — no extra infra needed)
  ✔  Created .github/PULL_REQUEST_TEMPLATE.md
  ✔  Created .github/workflows/poc-check.yml
  ✔  Created poc.py  (local CLI — includes import-spec command)
  ✔  Created .gitignore

✔ Proof of Contribution initialised for 'your-project'
</code></pre>
<p>This creates four things in your project:</p>
<pre><code class="language-plaintext">your-project/
├── .poc/
│   ├── config.json      ← project settings (commit this)
│   ├── provenance.db    ← SQLite database (local only, gitignored)
│   └── .gitignore
├── .github/
│   ├── PULL_REQUEST_TEMPLATE.md
│   └── workflows/
│       └── poc-check.yml
└── poc.py               ← your local CLI
</code></pre>
<ul>
<li><p><code>.poc/</code> — the tool's local data directory. <code>config.json</code> stores project settings and is committed to git. <code>provenance.db</code> is the SQLite database where attribution records and knowledge gaps are stored — local only, gitignored.</p>
</li>
<li><p><code>poc.py</code> — your local CLI, copied into the project root. Run <code>python poc.py trace</code>, <code>python poc.py verify</code>, and every other command directly without a global install.</p>
</li>
<li><p><code>.github/PULL_REQUEST_TEMPLATE.md</code> — a PR template with the <code>## 🤖 AI Provenance</code> section pre-filled. Developers fill it in when submitting PRs that contain AI-generated code.</p>
</li>
<li><p><code>.github/workflows/poc-check.yml</code> — the optional GitHub Action for PR enforcement. Installed but dormant until you push the workflow file and enable it in your repo settings.</p>
</li>
</ul>
<p><strong>Windows note:</strong> if the scaffold fails with a <code>UnicodeEncodeError</code>, the emoji in the PR template is hitting a Windows encoding limit. Open <code>assets/scripts/poc_init.py</code> in a text editor and find every line ending with <code>.write_text(...)</code>. Change each one to <code>.write_text(..., encoding="utf-8")</code>. Save and re-run.</p>
<h3 id="heading-verify-the-scaffold-worked">Verify the Scaffold Worked</h3>
<pre><code class="language-bash">python poc.py report
</code></pre>
<p>Expected output:</p>
<pre><code class="language-plaintext">Proof of Contribution Report
────────────────────────────────────────
  Artifacts tracked    : 0
  With provenance      : 0  (0%)
  Unresolved gaps      : 0
  Resolved claims      : 0
  Human experts        : 0
</code></pre>
<p>Empty database, clean state. You're ready.</p>
<h2 id="heading-how-to-record-your-first-provenance-entry">How to Record Your First Provenance Entry</h2>
<p>Before we dive in here, I just want to clear something up. Earlier, I described <code>poc.py verify</code> as detecting Knowledge Gaps automatically — and it does. But the static analyser can only tell you <em>that</em> a function has no human citation. It can't tell you <em>which</em> human source inspired it. That knowledge lives in your head, not in the code.</p>
<p><code>poc.py add</code> is where you supply that context. After the agent builds a file, you record the human sources you actually drew on: the GitHub discussion you read before prompting, the Stack Overflow answer that shaped the approach. Those records become the attribution chain <code>poc.py trace</code> surfaces — and what closes the gaps <code>poc.py verify</code> flags.</p>
<p><code>verify</code> finds the gaps. <code>add</code> fills them.</p>
<p><code>poc.py add</code> records attribution for a file interactively. You can run it on any AI-generated file in your project.</p>
<pre><code class="language-bash">python poc.py add src/utils/parser.py
</code></pre>
<p>You'll see a prompt:</p>
<pre><code class="language-plaintext">Recording provenance for: src/utils/parser.py
(Press Ctrl+C to cancel)

  Human source URL (or Enter to finish):
</code></pre>
<p>Enter the URL of the human-authored source that inspired the code. This could be a GitHub discussion, a Stack Overflow answer, a documentation page, a blog post, or an RFC.</p>
<pre><code class="language-plaintext">  Human source URL (or Enter to finish): https://github.com/TanStack/query/discussions/123
  Author handle: tannerlinsley
  Platform (github/stackoverflow/docs/other): github
  Source title: Cursor pagination discussion
  What specific insight came from this? cursor beats offset for live-updating datasets
  Confidence HIGH/MEDIUM/LOW [MEDIUM]: HIGH
  ✔ Recorded.
</code></pre>
<p>Add as many sources as apply. Press Enter on a blank URL when you're done.</p>
<pre><code class="language-plaintext">  Human source URL (or Enter to finish): 
✔ Provenance saved. Run: python poc.py trace src/utils/parser.py
</code></pre>
<h3 id="heading-check-what-you-recorded">Check What You Recorded</h3>
<pre><code class="language-bash">python poc.py trace src/utils/parser.py
</code></pre>
<pre><code class="language-plaintext">Provenance trace: src/utils/parser.py
────────────────────────────────────────────────────────────
  [HIGH]  @tannerlinsley on github
          Cursor pagination discussion
          https://github.com/TanStack/query/discussions/123
          Insight: cursor beats offset for live-updating datasets
</code></pre>
<p>No knowledge gaps — because you recorded a source. If the file had parts with no human source, they would appear below as gaps.</p>
<h3 id="heading-see-all-experts-in-your-graph">See All Experts in Your Graph</h3>
<p>Every <code>poc.py add</code> call stores not just the URL but the author — their handle, platform, and the specific insight they contributed. Run it across enough files, and those authors accumulate into a <strong>knowledge graph</strong>: a local record of which human experts your codebase drew from, which files their knowledge shaped, and how many artifacts trace back to their work.</p>
<p><code>poc.py experts</code> surfaces the top contributors. On a new project, it'll be one or two entries. On a mature codebase, it becomes a map of whose knowledge is load-bearing — the people you'd want to consult if that part of the code ever needed to change.</p>
<pre><code class="language-bash">python poc.py experts
</code></pre>
<pre><code class="language-plaintext">Top Human Experts in Knowledge Graph
──────────────────────────────────────────────────────
  @tannerlinsley            github          1 artifact(s)
</code></pre>
<h2 id="heading-how-to-use-import-spec-to-seed-knowledge-gaps">How to Use import-spec to Seed Knowledge Gaps</h2>
<p>This is the most important command in the tool. It connects proof-of-contribution with spec-writer and makes Knowledge Gaps deterministic.</p>
<p>When you use spec-writer before building a feature, it generates an <code>## Assumptions to review</code> section — every implicit decision is impact-rated HIGH, MEDIUM, or LOW. The <code>import-spec</code> command reads that section and seeds those assumptions into the database as unresolved gaps before the agent writes a line of code.</p>
<p>After the agent builds, any assumption that made it into the implementation without a cited human source surfaces automatically in <code>poc.py trace</code>. You don't need to know which parts of the code are uncertain. The spec already told you.</p>
<h3 id="heading-step-1-create-a-test-spec">Step 1 — Create a Test Spec</h3>
<p>If you don't have a spec-writer output yet, create one manually to see how the import works.</p>
<p><strong>Mac and Linux:</strong></p>
<pre><code class="language-bash">cat &gt; test-spec.md &lt;&lt; 'EOF'
## Assumptions to review

1. SQLite is sufficient for single-developer use — Impact: HIGH
   Correct this if: you need team-shared provenance

2. Filepath is the artifact identifier — Impact: MEDIUM
   Correct this if: you use content hashing instead

3. REST pattern for any future API — Impact: LOW
   Correct this if: you prefer GraphQL
EOF
</code></pre>
<p><strong>Windows PowerShell:</strong></p>
<pre><code class="language-powershell">python -c "
content = '''## Assumptions to review

1. SQLite is sufficient for single-developer use - Impact: HIGH
   Correct this if: you need team-shared provenance

2. Filepath is the artifact identifier - Impact: MEDIUM
   Correct this if: you use content hashing instead

3. REST pattern for any future API - Impact: LOW
   Correct this if: you prefer GraphQL'''
open('test-spec.md', 'w', encoding='utf-8').write(content)
print('test-spec.md created')
"
</code></pre>
<p><strong>Windows note:</strong> don't use PowerShell's <code>echo</code> to create spec files. PowerShell saves files as UTF-16, which causes a <code>UnicodeDecodeError</code> when <code>import-spec</code> reads them. The <code>python -c</code> approach above writes UTF-8 correctly.</p>
<h3 id="heading-step-2-import-the-assumptions">Step 2 — Import the Assumptions</h3>
<pre><code class="language-bash">python poc.py import-spec test-spec.md --artifact src/utils/parser.py
</code></pre>
<pre><code class="language-plaintext">Spec assumptions imported — 3 Knowledge Gap(s) seeded
───────────────────────────────────────────────────────
  1. [HIGH] SQLite is sufficient for single-developer use
       Correct if: you need team-shared provenance
  2. [MEDIUM] Filepath is the artifact identifier
       Correct if: you use content hashing instead
  3. [LOW] REST pattern for any future API
       Correct if: you prefer GraphQL

  →  Bound to: src/utils/parser.py
  After the agent builds, run:
  python poc.py trace src/utils/parser.py
  python poc.py add src/utils/parser.py
</code></pre>
<h3 id="heading-step-3-trace-the-gaps">Step 3 — Trace the Gaps</h3>
<pre><code class="language-bash">python poc.py trace src/utils/parser.py
</code></pre>
<pre><code class="language-plaintext">Knowledge gaps (AI-synthesized, no human source):
  • REST pattern for any future API [Correct if: you prefer GraphQL]
  • SQLite is sufficient for single-developer use [Correct if: you need team-shared provenance]
  • Filepath is the artifact identifier [Correct if: you use content hashing instead]

  Resolve gaps: python poc.py add src/utils/parser.py
</code></pre>
<p>Three gaps, colour-coded by urgency. The HIGH-impact assumption — SQLite for single-developer use — appears in red. The LOW-impact one appears in green. When you run <code>poc.py add</code> and record a human source with an insight that overlaps the gap text, the gap auto-closes.</p>
<h3 id="heading-preview-without-writing">Preview Without Writing</h3>
<pre><code class="language-bash">python poc.py import-spec test-spec.md --dry-run
</code></pre>
<p>This parses the spec and prints what would be seeded without touching the database. This is useful before committing to an import.</p>
<h3 id="heading-check-the-overall-health">Check the Overall Health</h3>
<pre><code class="language-bash">python poc.py report
</code></pre>
<pre><code class="language-plaintext">Proof of Contribution Report
────────────────────────────────────────
  Artifacts tracked    : 1
  With provenance      : 0  (0%)
  Unresolved gaps      : 3
  Resolved claims      : 0
  Human experts        : 1
  ⚠ Less than 50% of artifacts have provenance records.
  ⚠ 3 unresolved Knowledge Gap(s).
    Run `poc.py trace &lt;filepath&gt;` to locate them.
</code></pre>
<h2 id="heading-how-to-trace-human-attribution">How to Trace Human Attribution</h2>
<p><code>poc.py trace</code> is the command you'll use most. It shows the full human attribution chain for any file and lists any knowledge gaps — parts of the code with no traceable human source.</p>
<pre><code class="language-bash">python poc.py trace src/utils/parser.py
</code></pre>
<p>A file with both attribution and gaps looks like this:</p>
<pre><code class="language-plaintext">Provenance trace: src/utils/parser.py
────────────────────────────────────────────────────────────
  [HIGH]  @juliandeangelis on github
          Spec Driven Development methodology
          https://github.com/dannwaneri/spec-writer
          Insight: separate functional from technical spec

  [MEDIUM] @tannerlinsley on github
           Cursor pagination discussion
           https://github.com/TanStack/query/discussions/123
           Insight: cursor beats offset for live-updating datasets

Knowledge gaps (AI-synthesized, no human source):
  • Error retry strategy — no human source cited
  • CSV column ordering — AI chose this arbitrarily

  Resolve gaps: python poc.py add src/utils/parser.py
</code></pre>
<p>The human attribution section shows every cited source, colour-coded by confidence. The knowledge gaps section shows every assumption that shipped without a human citation — either seeded from a spec via <code>import-spec</code>, or flagged by Claude in the Provenance Block.</p>
<h3 id="heading-resolving-gaps">Resolving Gaps</h3>
<p>Run <code>poc.py add</code> on any file with open gaps:</p>
<pre><code class="language-bash">python poc.py add src/utils/parser.py
</code></pre>
<p>When you enter an insight that shares words with an open gap claim, the gap auto-closes. Run <code>poc.py trace</code> again to confirm it's resolved.</p>
<h2 id="heading-how-to-verify-with-static-analysis">How to Verify with Static Analysis</h2>
<p><code>poc.py verify</code> is the command that closes the epistemic trust gap completely. It detects Knowledge Gaps by analysing the file's actual code structure — not by asking the AI what it doesn't know.</p>
<p>Run it after the agent builds, once you've seeded gaps with <code>import-spec</code>:</p>
<pre><code class="language-bash">python poc.py verify src/utils/parser.py
</code></pre>
<p>Expected output:</p>
<pre><code class="language-plaintext">Verify: src/utils/parser.py
────────────────────────────────────────────────────────────
  Structural units detected : 11
  Seeded claims             : 3
  Covered by cited source   : 2
  Deterministic gaps        : 1

Deterministic Knowledge Gaps (no human source):
  • function: handle_concurrent_writes (lines 47–61)
      Seeded assumption: concurrent write handling — AI chose this arbitrarily

  Resolve: python poc.py add src/utils/parser.py
</code></pre>
<p>The gap shown is not something Claude admitted. It's something the analyser found by comparing the file's function list against your seeded claims. The function <code>handle_concurrent_writes</code> exists in the code but has no resolved human citation in the database. That's the gap.</p>
<h3 id="heading-what-the-exit-codes-mean">What the Exit Codes Mean</h3>
<pre><code class="language-bash">python poc.py verify src/utils/parser.py
echo $?   # Mac/Linux

python poc.py verify src/utils/parser.py
echo $LASTEXITCODE   # Windows PowerShell
</code></pre>
<ul>
<li><p><strong>Exit code 0</strong> — no gaps, all detected units have cited sources</p>
</li>
<li><p><strong>Exit code 1</strong> — gaps found, resolve with <code>poc.py add</code></p>
</li>
<li><p><strong>Exit code 2</strong> — file not found or unsupported language</p>
</li>
</ul>
<p>Exit code 1 integrates directly into CI pipelines. Add <code>poc.py verify</code> to your GitHub Action or pre-commit hook and gaps block the build before they reach production.</p>
<h3 id="heading-run-it-without-a-seeded-spec">Run it Without a Seeded Spec</h3>
<p>If you haven't run <code>import-spec</code> first, <code>verify</code> still works — it falls back to structural analysis and surfaces every uncited function and branch as a gap:</p>
<pre><code class="language-bash">python poc.py verify src/utils/parser.py
</code></pre>
<pre><code class="language-plaintext">⚠ No spec imported — showing all uncited structural units.
  Run: python poc.py import-spec spec.md --artifact src/utils/parser.py
  for deterministic gap detection.

Deterministic Knowledge Gaps (no human source):
  • function: parse_query (lines 1–7)
  • branch: if not text (lines 2–3)
  • function: fetch_results (lines 9–12)
  ...
</code></pre>
<p>It's less precise than the spec-writer path — every structural unit shows rather than only the ones tied to named assumptions — but it's useful as a baseline on any file, new or old.</p>
<h3 id="heading-the-strict-flag">The <code>--strict</code> Flag</h3>
<pre><code class="language-bash">python poc.py verify src/utils/parser.py --strict
</code></pre>
<p>Strict mode flags every uncited structural unit as a gap even when claims are seeded. You can use it when you want zero tolerance: any function or branch without a resolved human source fails the check.</p>
<h2 id="heading-how-to-enable-pr-enforcement">How to Enable PR Enforcement</h2>
<p>Once <code>poc.py trace</code> has saved you real hours — not before — enable the GitHub Action. The distinction matters. Turning it on day one frames the tool as overhead. Turning it on after the team already finds value frames it as a standard.</p>
<pre><code class="language-bash">git add .github/ .poc/config.json poc.py
git commit -m "chore: add proof-of-contribution"
git push
</code></pre>
<p>After that, every PR is checked for an <code>## 🤖 AI Provenance</code> section. The scaffold already created the PR template with that section included. Developers fill it in naturally once they're already running <code>poc.py trace</code> locally — the template just asks them to record what they already know.</p>
<p>Developers who write fully human code opt out by adding <code>100% human-written</code> anywhere in the PR body. The action skips the check automatically.</p>
<h3 id="heading-what-the-action-checks">What the Action Checks</h3>
<p>The action reads the PR description and looks for:</p>
<ol>
<li><p>The <code>## 🤖 AI Provenance</code> heading</p>
</li>
<li><p>At least one populated row in the attribution table</p>
</li>
</ol>
<p>If the section is missing or the table is empty, the action fails and posts a comment explaining what to add. The comment includes a link to <code>poc.py trace &lt;filepath&gt;</code> so the developer knows exactly where to look.</p>
<h2 id="heading-where-to-go-next">Where to Go Next</h2>
<h3 id="heading-use-it-with-spec-writer-on-a-real-feature">Use it with spec-writer on a Real Feature</h3>
<p>The real value of <code>import-spec</code> is on actual features, not test specs. If you use <a href="https://github.com/dannwaneri/spec-writer">spec-writer</a>, the workflow is:</p>
<pre><code class="language-plaintext">/spec-writer "your feature description"
</code></pre>
<p>Save the output to <code>spec.md</code>. Then:</p>
<pre><code class="language-bash">python poc.py import-spec spec.md --artifact src/path/to/output.py
</code></pre>
<p>Build the feature with your agent. Then run <code>poc.py trace</code> to see which assumptions made it into code with no human source. Resolve the HIGH-impact gaps first — those are the ones that will cause production incidents.</p>
<h3 id="heading-activate-the-claude-code-skill">Activate the Claude Code Skill</h3>
<p>The SKILL.md file makes Claude automatically append a Provenance Block to every generated artifact when the skill is active. The block lists human sources Claude drew from and flags what it synthesized without any traceable source.</p>
<p>To activate it in Claude Code, the skill is already installed at <code>~/.claude/skills/proof-of-contribution/</code>. Claude Code loads it automatically when you are in a project that has <code>.poc/config.json</code>.</p>
<p>A generated Provenance Block looks like this:</p>
<pre><code class="language-plaintext">## PROOF OF CONTRIBUTION
Generated artifact: fetch_github_discussions()
Confidence: MEDIUM

## HUMAN SOURCES THAT INSPIRED THIS

[1] GitHub GraphQL API Documentation Team
    Source type: Official Docs
    URL: docs.github.com/en/graphql
    Contribution: cursor-based pagination pattern

[2] GitHub Community (multiple contributors)
    Source type: GitHub Discussions
    URL: github.com/community/community
    Contribution: "ghost" fallback for deleted accounts
                  surfaced in bug reports

## KNOWLEDGE GAPS (AI synthesized, no human cited)
- Error handling / retry logic
- Rate limit strategy

## RECOMMENDED HUMAN EXPERTS TO CONSULT
- github.com/octokit community for pagination
</code></pre>
<p>The Knowledge Gaps section is the part no other tool produces. It's where AI admits what it synthesized without a traceable human source — before that gap becomes a production incident.</p>
<h3 id="heading-upgrade-when-you-outgrow-sqlite">Upgrade When You Outgrow SQLite</h3>
<p>The default database is SQLite — local only, no infra required. When you need team sharing or graph queries, the <code>references/</code> directory in the repo has migration guides:</p>
<table>
<thead>
<tr>
<th>Need</th>
<th>File</th>
</tr>
</thead>
<tbody><tr>
<td>Team sharing a provenance DB</td>
<td><code>references/relational-schema.md</code></td>
</tr>
<tr>
<td>Graph traversal queries</td>
<td><code>references/neo4j-implementation.md</code></td>
</tr>
<tr>
<td>Semantic web / interoperability</td>
<td><code>references/jsonld-schema.md</code></td>
</tr>
</tbody></table>
<h2 id="heading-manual-tracking-vs-proof-of-contribution">Manual Tracking vs. proof-of-contribution</h2>
<table>
<thead>
<tr>
<th></th>
<th>Manual tracking</th>
<th>proof-of-contribution</th>
</tr>
</thead>
<tbody><tr>
<td><strong>Finding who wrote the code</strong></td>
<td>Search Slack, ask the team, dig through commits</td>
<td><code>poc.py trace &lt;file&gt;</code> — thirty seconds</td>
</tr>
<tr>
<td><strong>Knowing which parts the AI guessed</strong></td>
<td>You don't, until it breaks in production</td>
<td>Knowledge Gaps section — surfaced before the code ships</td>
</tr>
<tr>
<td><strong>Detecting gaps after the build</strong></td>
<td>Code review, if someone notices</td>
<td><code>poc.py verify</code> — static analysis, zero API calls</td>
</tr>
<tr>
<td><strong>Enforcing attribution on PRs</strong></td>
<td>Honor system</td>
<td>GitHub Action fails the PR if attribution is missing</td>
</tr>
<tr>
<td><strong>Connecting to your spec</strong></td>
<td>Copy-paste assumptions into comments manually</td>
<td><code>poc.py import-spec</code> seeds them as tracked claims automatically</td>
</tr>
<tr>
<td><strong>Infrastructure required</strong></td>
<td>None (usually a spreadsheet or nothing)</td>
<td>None — SQLite, pure Python, no paid services</td>
</tr>
</tbody></table>
<p>The tool doesn't replace code review. It gives code review the context it needs to catch the right things.</p>
<p>The archaeology scenario — two days tracing a bug through dead-end commit messages — takes thirty seconds with <code>poc.py trace</code>. The code still has gaps, and it always will. But now you know where they are.</p>
<p><em>Built by</em> <a href="https://dev.to/dannwaneri"><em>Daniel Nwaneri</em></a><em>. The spec-writer skill that feeds</em> <code>import-spec</code> <em>is at</em> <a href="https://github.com/dannwaneri/spec-writer"><em>github.com/dannwaneri/spec-writer</em></a><em>. The full proof-of-contribution repo is at</em> <a href="https://github.com/dannwaneri/proof-of-contribution"><em>github.com/dannwaneri/proof-of-contribution</em></a><em>.</em></p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Build Your Own Claude Code Skill ]]>
                </title>
                <description>
                    <![CDATA[ Every developer eventually has a workflow they repeat. A way they write commit messages. A checklist they run before opening a pull request. A structure they follow when reviewing code. They do it man ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-build-your-own-claude-code-skill/</link>
                <guid isPermaLink="false">69c6ecde7cf27065104cd8a1</guid>
                
                    <category>
                        <![CDATA[ claude.ai ]]>
                    </category>
                
                    <category>
                        <![CDATA[ claude ai ]]>
                    </category>
                
                    <category>
                        <![CDATA[ claude ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ webdev ]]>
                    </category>
                
                    <category>
                        <![CDATA[ AI ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Daniel Nwaneri ]]>
                </dc:creator>
                <pubDate>Fri, 27 Mar 2026 20:47:26 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/c0947834-4b11-46c6-ab61-994667e70a7e.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Every developer eventually has a workflow they repeat. A way they write commit messages. A checklist they run before opening a pull request. A structure they follow when reviewing code. They do it manually, explain it to their agents in every session, and watch the agent interpret it differently each time.</p>
<p>Agent skills fix this. A skill is a markdown file that loads into Claude Code's context automatically when you need it. You write the workflow once. The agent follows it every time. And because skills follow an open standard, the same file works in Claude Code, GitHub Copilot, Cursor, and Gemini CLI.</p>
<p>This tutorial shows you how to build a skill from scratch. You will build a commit-message-writer — a skill that reads your staged changes and generates a structured commit message following the Conventional Commits standard. By the end, you will have a working skill installed and ready to use, and you will understand the structure well enough to build any skill you need.</p>
<h2 id="heading-table-of-contents">Table of Contents</h2>
<ol>
<li><p><a href="#heading-what-an-agent-skill-is">What an Agent Skill Is</a></p>
</li>
<li><p><a href="#heading-how-to-choose-what-to-build">How to Choose What to Build</a></p>
</li>
<li><p><a href="#heading-how-to-structure-your-skill">How to Structure Your Skill</a></p>
</li>
<li><p><a href="#heading-how-to-write-the-description">How to Write the Description</a></p>
</li>
<li><p><a href="#heading-how-to-write-the-instructions">How to Write the Instructions</a></p>
</li>
<li><p><a href="#heading-how-to-build-the-commit-message-writer-skill">How to Build the commit-message-writer Skill</a></p>
</li>
<li><p><a href="#heading-how-to-install-and-test-your-skill">How to Install and Test Your Skill</a></p>
</li>
<li><p><a href="#heading-how-to-improve-your-skill-over-time">How to Improve Your Skill Over Time</a></p>
</li>
<li><p><a href="#heading-where-to-go-next">Where to Go Next</a></p>
</li>
</ol>
<h2 id="heading-what-an-agent-skill-is">What an Agent Skill Is</h2>
<p>A skill is a folder containing a <code>SKILL.md</code> file. That file has two parts: a YAML frontmatter block at the top, and a markdown body below it.</p>
<pre><code class="language-plaintext">my-skill/
└── SKILL.md
</code></pre>
<p>The frontmatter tells the agent what the skill is called and when to use it. The body tells the agent what to do when it loads the skill. Here is the minimal structure:</p>
<pre><code class="language-yaml">---
name: my-skill
description: What this skill does and when to use it.
---
 
# My Skill
 
Instructions for the agent go here.
</code></pre>
<p>When you invoke a skill — either explicitly with <code>/skill-name</code> or by describing what you want — the agent reads the SKILL.md body and follows the instructions inside it. The frontmatter never reaches the agent's instructions. It's metadata the skill system uses to decide whether to load the skill at all.</p>
<h3 id="heading-how-the-agent-decides-to-load-a-skill">How the Agent Decides to Load a Skill</h3>
<p>This is the most important thing to understand before you write your first skill: <strong>the agent decides whether to load your skill based entirely on the description field.</strong></p>
<p>Skills appear in Claude Code's context as a list of names and descriptions. When you make a request, the agent scans that list and loads any skill whose description matches what you're asking for. If the description is vague, the skill won't load when you need it. If the description is too narrow, it won't load for variations of the same request.</p>
<p>The instructions in the body only matter after the skill loads. Getting the description right is what determines whether the skill loads at all.</p>
<h3 id="heading-what-skills-are-not">What Skills Are Not</h3>
<p>Skills are instruction files. They cannot run code on their own — but they can instruct the agent to run code using its existing tools. They are not plugins, extensions, or packages. They have no runtime. They are markdown files the agent reads, like a recipe a chef follows.</p>
<h2 id="heading-how-to-choose-what-to-build">How to Choose What to Build</h2>
<p>The best skills share three properties.</p>
<ol>
<li><p><strong>They encode a repeatable workflow.</strong> If you do something differently every time, a skill won't help. If you follow the same steps every session — even if you explain them differently each time — that's a skill candidate.</p>
</li>
<li><p><strong>They have a clear trigger.</strong> You should be able to finish the sentence "I need this skill when I want to...". If you can't finish that sentence in one clause, the workflow isn't scoped enough for a skill.</p>
</li>
<li><p><strong>They produce a consistent output format.</strong> Skills that output in a fixed structure — a commit message, a code review, a spec — are easier to build and test than skills that produce open-ended prose.</p>
</li>
</ol>
<p>Good candidates: commit messages, pull request descriptions, code reviews, changelog entries. Bad candidates: "help me think through this", "make this better" — too open-ended to encode in a skill.</p>
<p>For this tutorial, commit message generation is the right scope. The trigger is obvious (you want to commit), the workflow is defined (read staged changes, apply Conventional Commits format), and the output is structured (a commit message with a specific shape).</p>
<h2 id="heading-how-to-structure-your-skill">How to Structure Your Skill</h2>
<p>Every skill starts as a single folder with a single file:</p>
<pre><code class="language-plaintext">commit-message-writer/
└── SKILL.md
</code></pre>
<p>As skills grow, they can include additional files the agent loads as needed:</p>
<pre><code class="language-plaintext">commit-message-writer/
├── SKILL.md          ← always loaded when skill triggers
└── references/
    └── examples.md   ← loaded only when the agent needs examples
</code></pre>
<p>The SKILL.md body should stay under 500 lines. If your instructions are growing beyond that, move supporting detail into a <code>references/</code> subfolder and tell the agent when to read those files. This keeps the skill lean — the agent only loads what it needs.</p>
<p>For this tutorial, a single SKILL.md is enough.</p>
<h2 id="heading-how-to-write-the-description">How to Write the Description</h2>
<p>The description field is the trigger condition. It determines when your skill loads and when it doesn't. Most skills fail not because the instructions are wrong, but because the description doesn't match how people actually ask for help.</p>
<p>Here is a weak description:</p>
<pre><code class="language-yaml">description: Generates commit messages.
</code></pre>
<p>This will undertrigger. "Generate a commit message" will load it. "Write a commit for my changes" probably won't. "Summarize my staged diff" definitely won't — even though all three are asking for the same thing.</p>
<p>Here is a stronger description:</p>
<pre><code class="language-yaml">description: Generates structured commit messages following the Conventional Commits standard. Use when you want to commit your changes and need a well-formatted message. Triggers on "write a commit message", "commit my changes", "summarize my staged diff", "what should my commit say", or any request to describe or document code changes for version control.
</code></pre>
<p>The pattern is: <strong>what the skill does + when to use it + specific trigger phrases</strong>. The trigger phrases cover the different ways a developer might ask for the same thing.</p>
<p>Two rules for descriptions:</p>
<p><strong>Be specific about the output.</strong> "Generates commit messages" is vague. "Generates structured commit messages following the Conventional Commits standard" tells the agent and the user exactly what they'll get.</p>
<p><strong>Be slightly pushy.</strong> The agent has a natural tendency to undertrigger skills — to handle requests itself rather than loading a skill. A description that explicitly lists trigger phrases counteracts this. You are not being redundant. You are training the trigger.</p>
<h2 id="heading-how-to-write-the-instructions">How to Write the Instructions</h2>
<p>The body of SKILL.md is where you define what the agent does when the skill loads. Good instructions follow two principles.</p>
<p><strong>Generate first, clarify second.</strong> The agent should produce output immediately rather than asking clarifying questions. If it needs to make assumptions, it should make them and flag them — not ask. Asking questions before producing output adds friction and loses the benefit of having a skill at all.</p>
<p><strong>Define the output format explicitly.</strong> Don't say "write a good commit message." Say exactly what the structure is, what fields are required, what the character limits are. The more specific the output format, the more consistent the results.</p>
<p>Here is what weak instructions look like:</p>
<pre><code class="language-markdown"># Commit Message Writer
 
Look at the staged changes and write a commit message that describes what changed.
</code></pre>
<p>That will produce different results every time — different formats, different lengths, different conventions. It's not a skill. It's a prompt.</p>
<p>Here is what strong instructions look like:</p>
<pre><code class="language-markdown"># Commit Message Writer
 
Read the staged diff using `git diff --staged`. Generate a commit message
following the Conventional Commits standard.
 
Output format:
type(scope): short description under 72 characters
 
Body (if changes are non-trivial):
- What changed and why, not how
- One bullet per logical change
 
Footer (if applicable):
BREAKING CHANGE: description
Closes #issue-number
</code></pre>
<p>The agent knows exactly what to produce. The output will be consistent across sessions, across projects, and across agents that support the standard.</p>
<h2 id="heading-how-to-build-the-commit-message-writer-skill">How to Build the <code>commit-message-writer</code> Skill</h2>
<p>Now build it. Create the skill directory:</p>
<pre><code class="language-bash">mkdir -p ~/.claude/skills/commit-message-writer
</code></pre>
<p>On Windows PowerShell:</p>
<p><strong>Note:</strong> PowerShell uses backtick (<code>`</code>) for line continuation, not backslash.</p>
<pre><code class="language-powershell">New-Item -ItemType Directory -Force -Path "$HOME\.claude\skills\commit-message-writer"
</code></pre>
<p>Create the SKILL.md file inside that directory. Here is the complete content:</p>
<pre><code class="language-markdown">---
name: commit-message-writer
description: Generates structured commit messages following the Conventional Commits
  standard. Use when you want to commit your changes and need a well-formatted message.
  Triggers on "write a commit message", "commit my changes", "summarize my staged
  diff", "what should my commit say", or any request to describe or document staged
  changes for version control.
---
 
# commit-message-writer
 
You generate structured commit messages from staged git changes.
 
## How to invoke
 
Run `git diff --staged` to read the staged changes. If nothing is staged, tell the
user and suggest they run `git add` first.
 
Generate first. Do not ask clarifying questions before producing the commit message.
If you need to make assumptions about scope or type, make them and note them after
the output.
 
## Output format
 
~~~
type(scope): short description
 
[body — optional, include if changes are non-trivial]
 
[footer — optional]
~~~
 
**Type** — choose one:
- `feat` — a new feature
- `fix` — a bug fix
- `docs` — documentation changes only
- `refactor` — code change that neither fixes a bug nor adds a feature
- `test` — adding or updating tests
- `chore` — build process, tooling, or dependency updates
 
**Scope** — the module, file, or area affected. Use the directory name or component
name. Omit if the change spans the entire codebase.
 
**Short description** — imperative mood, under 72 characters, no period at the end.
"Add user authentication" not "Added user authentication" or "Adds user authentication."
 
**Body** — what changed and why, not how. One bullet per logical change. Skip if the
short description is self-explanatory.
 
**Footer** — include `BREAKING CHANGE:` if the commit breaks backward compatibility.
Include `Closes #N` if it resolves a GitHub issue.
 
## Quality rules
 
- Never use "updated", "changed", or "modified" in the short description — be specific
- Never write "various improvements" or "misc fixes" — name what improved
- If more than three files changed across unrelated concerns, flag it:
  "These changes may be better split into separate commits: [list concerns]"
- The short description must be under 72 characters — count before outputting
 
## Example output
 
Input: staged changes adding a rate limiter to an API endpoint
 
~~~
feat(api): add rate limiting to /query endpoint
 
- Limits requests to 100 per minute per IP using Cloudflare's rate limit binding
- Returns 429 with Retry-After header when limit is exceeded
- Adds rate limit configuration to wrangler.toml
 
Closes #47
~~~
</code></pre>
<p>Save that file. The skill is built.</p>
<h2 id="heading-how-to-install-and-test-your-skill">How to Install and Test Your Skill</h2>
<h3 id="heading-verify-the-file-exists">Verify the File Exists</h3>
<pre><code class="language-bash">cat ~/.claude/skills/commit-message-writer/SKILL.md
</code></pre>
<p>You should see the full SKILL.md content. If you get an error, check the directory path.</p>
<h3 id="heading-test-the-skill">Test the Skill</h3>
<p>Open Claude Code in any git repository that has staged changes. Type:</p>
<pre><code class="language-plaintext">/commit-message-writer
</code></pre>
<p>The agent will read your staged diff and produce a commit message following the format you defined.</p>
<p>You can also trigger it naturally:</p>
<pre><code class="language-plaintext">write a commit message for my staged changes
</code></pre>
<pre><code class="language-plaintext">what should my commit say
</code></pre>
<pre><code class="language-plaintext">summarize my diff for git
</code></pre>
<p>All three should load the skill and produce a structured commit message. If the skill doesn't trigger on natural language requests, the description needs more trigger phrases — see the improvement section below.</p>
<h3 id="heading-test-edge-cases">Test Edge Cases</h3>
<p>Test these cases before relying on the skill in production:</p>
<pre><code class="language-bash"># Stage nothing, then ask for a commit message
git add -p  # stage nothing
# In Claude Code: "write a commit message"
# Expected: skill tells you nothing is staged and suggests git add
</code></pre>
<pre><code class="language-bash"># Stage changes across unrelated files
git add src/api.ts src/styles.css README.md
# In Claude Code: "write a commit message"  
# Expected: skill flags that commits may be better split
</code></pre>
<h2 id="heading-how-to-improve-your-skill-over-time">How to Improve Your Skill Over Time</h2>
<p>The first version of any skill is a draft. You improve it by observing where it produces inconsistent or wrong output, then updating the instructions.</p>
<h3 id="heading-when-the-skill-undertriggers">When the Skill Undertriggers</h3>
<p>If you type "summarize my changes for git" and the skill doesn't load, add that phrase to the description's trigger list:</p>
<pre><code class="language-yaml">description: ... Triggers on "write a commit message", "commit my changes",
  "summarize my staged diff", "summarize my changes for git", ...
</code></pre>
<p>The description is your primary lever for fixing triggering problems.</p>
<h3 id="heading-when-the-output-format-drifts">When the Output Format Drifts</h3>
<p>If the agent starts producing commit messages that don't match your format — wrong type, missing scope, body in the wrong style — the instructions need to be more explicit. Add a concrete example that shows the failure and the correct output:</p>
<pre><code class="language-markdown">## Common mistakes to avoid
 
Wrong: "Updated the authentication flow"
Right: "refactor(auth): simplify token validation logic"
 
Wrong: "Fixed bugs"
Right: "fix(api): handle null response from upstream service"
</code></pre>
<p>Concrete counterexamples are more effective than abstract rules.</p>
<h3 id="heading-when-the-scope-grows">When the Scope Grows</h3>
<p>If you find yourself wanting the skill to handle related tasks — reviewing commit messages, generating changelogs, writing PR descriptions — resist the urge to add everything to one skill. Build separate skills. Each skill should do one thing well. The Agent Skills standard is designed for composition, not for monolithic instructions.</p>
<h2 id="heading-where-to-go-next">Where to Go Next</h2>
<p>The commit-message-writer covers the core pattern. The same structure works for any repeatable workflow.</p>
<p><strong>Pull request descriptions</strong> follow the same shape — read the diff, apply a structure, produce consistent output. The trigger phrases are different ("write a PR description", "summarize my branch for review") and the output format adds sections for motivation and testing, but the SKILL.md structure is identical.</p>
<p><strong>Code review checklists</strong> work well as skills when your team has a standard review process. The trigger is "review this code" or "check this PR", and the instructions encode whatever your team actually checks — security concerns, test coverage, naming conventions.</p>
<p>The commit-message-writer is the simplest skill architecture — instructions only. As your skills grow more specialized, two other patterns become useful.</p>
<p>The first adds a <code>references/</code> directory: the voice-humanizer skill loads a CORPUS.md file containing the author's published writing, which the agent reads when it needs to check output against a specific style. The second adds quality rules and structured output formats that make results stricter and more consistent — that's the pattern spec-writer uses to surface assumptions inline. Each is the same SKILL.md structure at a different level of complexity.</p>
<p>Start with instructions only. Add references when the agent needs external context. Add output format rules when consistency matters more than flexibility.</p>
<p>The Agent Skills standard is supported in Claude Code, GitHub Copilot in VS Code, Cursor, and Gemini CLI. A skill you build once installs across all of them. The install path differs by agent:</p>
<table>
<thead>
<tr>
<th>Agent</th>
<th>Skills directory</th>
</tr>
</thead>
<tbody><tr>
<td>Claude Code</td>
<td><code>~/.claude/skills/</code></td>
</tr>
<tr>
<td>GitHub Copilot</td>
<td><code>~/.copilot/skills/</code> or <code>.github/skills/</code></td>
</tr>
<tr>
<td>Cursor</td>
<td><code>~/.cursor/skills/</code></td>
</tr>
<tr>
<td>Gemini CLI</td>
<td><code>~/.gemini/skills/</code></td>
</tr>
</tbody></table>
<p>The SKILL.md format is the same across all of them.</p>
<p>The commit-message-writer you just built is a working skill. The next one will take less time. By the third, you will start seeing workflows you repeat and immediately think: that should be a skill.</p>
<p>That's the point.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Override API Responses and Headers in Chrome DevTools: A Step-by-Step Guide ]]>
                </title>
                <description>
                    <![CDATA[ Have you ever faced a situation as a frontend developer where you needed to show a demo to your product manager, and something was broken in the API response? Or, a production bug where you were block ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-override-api-responses-and-headers-in-chrome-devtools/</link>
                <guid isPermaLink="false">69c5a33110e664c5da34c6d3</guid>
                
                    <category>
                        <![CDATA[ Frontend Development ]]>
                    </category>
                
                    <category>
                        <![CDATA[ APIs ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Tapas Adhikary ]]>
                </dc:creator>
                <pubDate>Thu, 26 Mar 2026 21:20:49 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/a2fee8e9-cb71-4065-af8e-ef0357e6ca2c.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Have you ever faced a situation as a frontend developer where you needed to show a demo to your product manager, and something was broken in the API response? Or, a production bug where you were blocked by waiting on your backend team to provide you with a fix to implement further on the frontend?</p>
<p>To make things even worse, how about a CORS error that completely prevented you from showing the page?</p>
<p>It happens, right? Going back to the backend team and getting a quick fix for these issues would be ideal, but may not be realistic in most cases. It depends on the availability of the backend developers, the priority items they're working on, communication protocols between teams, and even interpersonal relationships.</p>
<p>Now, the question is, can you afford to wait? Wait for things to work in your favour within the given deadline so that you can show that demo or deliver the work to your customer? The answer is NO. You may not have that luxury.</p>
<p>Today, in this article, you'll learn a couple of mind-blowing tips and tricks that will save you from these situations. You'll understand how to set up your Chrome browser so that you can continue with your frontend development even when the backend API returns an incorrect response or a CORS error.</p>
<p>This is a step-by-step guide that'll help make you comfortable with all the required configurations and get you set up to use it on your web projects. This guide is also available as a video tutorial as part of the <a href="https://www.youtube.com/playlist?list=PLIJrr73KDmRwT8Msc4H3_CP5Tf8MqqqVZ">Thinking in Debugging</a> series. You can check it out if you’d like:</p>
<div class="embed-wrapper"><iframe width="560" height="315" src="https://www.youtube.com/embed/ndrPcDNmwFk" 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>

<p>Let's get started with the problems and their solutions.</p>
<h2 id="heading-table-of-contents">Table of Contents</h2>
<ol>
<li><p><a href="#heading-problem-1-backend-response-is-wrong">Problem 1: The Backend Response Is Wrong</a></p>
</li>
<li><p><a href="#heading-problem-2-validating-a-ui-scenario-without-backend-changes">Problem 2: Validating a UI Scenario Without Backend Changes</a></p>
</li>
<li><p><a href="#heading-problem-3-handling-cors-errors">Problem 3: Handling CORS Errors</a></p>
</li>
<li><p><a href="#heading-additional-tips">Additional Tips</a></p>
<ul>
<li><p><a href="#heading-applying-overrides-globally">Applying Overrides Globally</a></p>
</li>
<li><p><a href="#heading-disabling-or-removing-overrides">Disabling or Removing Overrides</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-learn-more-from-the-thinking-in-debugging-mindset">Learn More From the Thinking in Debugging Mindset</a></p>
</li>
<li><p><a href="#heading-before-we-end">Before We End…</a></p>
</li>
</ol>
<h2 id="heading-problem-1-the-backend-response-is-wrong">Problem 1: The Backend Response Is Wrong</h2>
<p>Here is a classic case of a wrong API response, but you still need to continue with your frontend work.</p>
<p>Take a look at the image below. Do you see that something is off? Yeah, on the first card, the spelling of <code>Banana</code> seems to be misspelled as <code>Banananana</code>. This user interface is constructed using the data we have received as an API response.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/2bef7ac2-98c0-419a-b783-ee64900f8121.png" alt="Incorrect spelling of banana on first card" style="display:block;margin:0 auto" width="2076" height="1546" loading="lazy">

<p>We can go to the backend team and request that they fix it as soon as possible. But it may not happen until the next sprint starts, which might be 15 days from now.</p>
<p>So, what can we do to continue with our work and all the validations on the frontend side? We can use the <code>Content Overriding</code> feature of the Chrome browser to mitigate this situation.</p>
<h3 id="heading-how-to-use-content-overriding">How to Use <code>Content Overriding</code></h3>
<p>First, open up the DevTools of your Chrome browser by pressing the F12 (on Mac, Cmd+F12) key. Then move to the network tab and inspect the API request that returns the incorrect response.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/f9689133-c7cd-400e-b0cc-5275fe1ca7ec.png" alt="Network Request" style="display:block;margin:0 auto" width="1870" height="808" loading="lazy">

<p>Next, right-click on the API request and select the <code>Override content</code> option from the context menu.</p>
<p>You may wonder what content means here, and what I am overriding? You're overriding the API response so that it can reflect on the UI locally.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/31d4e340-d9fa-4dec-81cc-08fbf644aa58.png" alt="Override Content Option" style="display:block;margin:0 auto" width="814" height="1090" loading="lazy">

<p>This will bring up a UI at the top where you can select a folder to store override files. It's important to understand that all the content overrides are locally stored on your machine's hard disk. This means you can use these persisted overrides again and again until someone fixes the issue permanently at the backend.</p>
<p>Now click on the <code>Select folder</code> button.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/7d238b9d-146c-4592-9008-26c7c189a0de.png" alt="Select a Folder" style="display:block;margin:0 auto" width="1890" height="1530" loading="lazy">

<p>This will open up the folder explorer for you. Create a new folder and select it, or select an existing folder where you want to save the overrides. In my case, I've named the folder as <code>debug_devtools</code>.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/7bc13c7b-0ffa-442a-899e-98a805fcddac.png" alt="Select a Folder" style="display:block;margin:0 auto" width="1564" height="1062" loading="lazy">

<p>Now, Chrome DevTools will ask for confirmation that you're allowing DevTools to edit files on your local system. Just click on the <code>Allow</code> button.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/07ff30f6-8bef-40c3-aee9-bcd55545c67f.png" alt="Allow" style="display:block;margin:0 auto" width="1504" height="682" loading="lazy">

<p>That's all for the setup. Now, you'll find the same response in the editable mode under the <code>Sources</code> tab of DevTools. Let's take a deeper look at the image below:</p>
<ol>
<li><p>The Local overrides are listed under the <code>Sources &gt; Oveerides</code> tab of the DevTools.</p>
</li>
<li><p>On the left side, the <code>Enable Local Overrides</code> checkbox is selected, and the overrides are listed below. You can find the same folder you created before, and under that, you'll see another folder called <code>localhost:3001</code> and a file called <code>edibles</code> under it. The localhost:3001 folder name is related to the API endpoint namespace we're connecting to. The edibles file name under it goes with the request name.</p>
</li>
<li><p>On the right side, you can see the content (that is, the response to the edibles request) in editable mode.</p>
</li>
</ol>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/fc918250-c1ab-4b56-8505-3032e698b8cc.png" alt="fc918250-c1ab-4b56-8505-3032e698b8cc" style="display:block;margin:0 auto" width="1818" height="1410" loading="lazy">

<p>You can even cross-check now by traversing to the file system's <code>debug_devtools</code> folder. You should find the same folders and files as you saw in the DevTools.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/81fd4e82-ae7d-4d07-88d8-5a757edbc3ef.png" alt="Response in folder" style="display:block;margin:0 auto" width="1460" height="662" loading="lazy">

<p>You can open up the <code>edibles</code> file. The file content should match exactly the response you saw before.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/4ba75464-0a29-4f11-9bc6-be0463e10dd5.png" alt="edibles content" style="display:block;margin:0 auto" width="1686" height="1148" loading="lazy">

<p>Now, it's time to override. Coming to the Sources tab's editable response panel, you can fix the spelling. Save your changes using Ctrl + S (or Cmd + S).</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/c33701f0-ddb1-478c-8fe6-d68ddf8dd638.png" alt="edit text" style="display:block;margin:0 auto" width="1634" height="700" loading="lazy">

<p>Now, hard refresh your browser. You should be able to see your change reflected on the UI.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/1414be9d-adf4-41a6-8cbc-d115a49bb8a6.png" alt="Banana Fixed" style="display:block;margin:0 auto" width="2982" height="1590" loading="lazy">

<p>Awesome!! You can now share this overridden response (the <code>edibles</code> file) with other developers to point to from their Chrome DevTools to get the same local fix until the backend fixes it.</p>
<h2 id="heading-problem-2-validating-a-ui-scenario-without-backend-changes">Problem 2: Validating a UI Scenario Without Backend Changes</h2>
<p>Imagine you need to validate that certain items are low in stock on an item listing page. If the stock quantity of an item hits 50 or below, you want to show a <code>Low Stock</code> label for that item.</p>
<p>Now, what if the API response doesn't return a quantity of 50 or below? Content overriding can come to the rescue once again!</p>
<p>You can edit the response to set the quantity value to 50 or below and follow the same process as before to reflect the change on the UI. Look at the image below:</p>
<ol>
<li><p>We have edited the quantity on the right-side panel.</p>
</li>
<li><p>Once saved and refreshed, we not only see the updated count on the UI, but it also runs the underlying JavaScript logic to show the <code>Low Stock</code> label automatically. This is a superpower.</p>
</li>
</ol>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/77b8578e-ecc9-4397-b980-e24cc0ab099e.png" alt="Stock" style="display:block;margin:0 auto" width="2660" height="684" loading="lazy">

<h2 id="heading-problem-3-handling-cors-errors">Problem 3: Handling CORS Errors</h2>
<p><a href="https://www.youtube.com/shorts/lPiQClBVYY4">Cross-Origin Resource Sharing (CORS)</a> is a browser security feature that allows a web server to explicitly grant requests coming from a domain other than its own. By default, browsers don't allow these cross-origin requests and follow a strict rule called <code>Same Origin Resource Sharing</code>.</p>
<p>In many cases, your API server and the web server could be hosted on different domains. In those cases, when the web application attempts to access an API, it faces the CORS error.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/f739eb08-6bb1-4534-9080-0417d511396c.png" alt="CORS Error" style="display:block;margin:0 auto" width="2982" height="742" loading="lazy">

<p>On the server side, you need to have explicit configurations to allow cross-origin requests. For example, you need to add the following response headers:</p>
<pre><code class="language-shell">Access-Control-Allow-Origin: http://localhost:5174
Access-Control-Allow-Methods: GET
Access-Control-Allow-Headers: *
</code></pre>
<p>So, again, it may not be guaranteed that your CORS error will be resolved at the server side as soon as you want. But you cann't afford to get blocked due to it. So, what's the way around? Yes! The overriding, but this time, overriding the response header.</p>
<p>Go to the network tab of the Chrome DevTools and right-click on the request that has the CORS error. Now, select the <code>Override headers</code> option from the context menu.</p>
<p>By the way, have you noticed that the <code>Override content</code> option is disabled here? This is because we don't have any response as content from this request, as it got an error.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/4d81fbb1-e960-48f2-bdd7-597e686faff6.png" alt="4d81fbb1-e960-48f2-bdd7-597e686faff6" style="display:block;margin:0 auto" width="1280" height="966" loading="lazy">

<p>Clicking on the <code>Overriding headers</code> will take you to the <code>Headers</code> tab where you can find the option to add additional headers to the response headers. Click on the <code>+ Add header</code> button to add the CORS-related headers.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/9acdbde3-0b12-4cef-9437-844ca92d502c.png" alt="Add Header" style="display:block;margin:0 auto" width="1736" height="1036" loading="lazy">

<p>Add all three headers with their respective values one by one:</p>
<pre><code class="language-bash">Access-Control-Allow-Origin: http://localhost:5174 
Access-Control-Allow-Methods: GET 
Access-Control-Allow-Headers: *
</code></pre>
<p>Each of these headers has its own important use:</p>
<ol>
<li><p>With the <code>Access-Control-Allow-Origin</code> header, you can specify the origin domains that are allowed to have a cross-origin request to the server. In this case, the value is <code>http://localhost:5174</code> where we're running a Vite-based ReactJS app.</p>
</li>
<li><p>The header <code>Access-Control-Allow-Methods</code> specifies what kind of HTTP methods are allowed from the originating domain. In this case, we're allowing only the <code>GET</code> method.</p>
</li>
<li><p>The <code>Access-Control-Allow-Headers</code> HTTP response headers specify which HTTP headers can be safely used during a cross-origin request.</p>
</li>
</ol>
<p>Alright, let's add them all and save.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/02fc7203-9ca6-47cf-a478-f20d928ece54.png" alt="CORS Headers" style="display:block;margin:0 auto" width="1714" height="690" loading="lazy">

<p>Like overriding content, overriding the header will also create a folder with the context of the server domain, and under that, a file called <code>.headers</code>. As the file name starts with a dot(.), it may be treated as a hidden file by most operating systems. So make sure you go through the OS settings to view the hidden files to view this file.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/ab93a8d4-b87d-4cf4-8a0e-1d6ce4d26537.png" alt="Hidden headers file" style="display:block;margin:0 auto" width="1394" height="530" loading="lazy">

<p>Once you view and open the file, you'll see the headers you have added with overriding.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/8dfe3ee3-2250-489a-a465-f9796934a470.png" alt="headers content" style="display:block;margin:0 auto" width="1678" height="1122" loading="lazy">

<p>Now, hard refresh your browser, and try to perform the same operation that was giving you the CORS error before. Wow, the error has gone now! You should be able to see the request success and the response coming back from the server.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/351dcb19-af06-4058-b08d-d449b92ab898.png" alt="User Data" style="display:block;margin:0 auto" width="2558" height="1080" loading="lazy">

<p>Just imagine, not a single line of server-side code changes, and you're unblocked so you can move forward with your client-side UI work. Fantastic, isn't it?</p>
<h2 id="heading-additional-tips">Additional Tips</h2>
<p>Before we end, let's learn about a couple more handy tips.</p>
<h3 id="heading-applying-overrides-globally">Applying Overrides Globally</h3>
<p>We applied the CORS error-related header overriding only on the <code>/user</code> API endpoint. What if you need to apply the same overriding for other endpoints, too? You can do it easily by following these simple steps:</p>
<ol>
<li><p>Navigate to the <code>Sources</code> tab.</p>
</li>
<li><p>Select the <code>Overrides</code> sub-tab.</p>
</li>
<li><p>Click on the <code>.headers</code> override.</p>
</li>
<li><p>On the right-side panel, change the value of the <code>Apply to</code> to <code>*</code>.</p>
</li>
</ol>
<p>That's it. Now, the same response headers will be applied as overrides for all the endpoints.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/c15a94e4-a2e9-48b1-8ae1-c781424be388.png" alt="Apply To" style="display:block;margin:0 auto" width="1678" height="666" loading="lazy">

<h3 id="heading-disabling-or-removing-overrides">Disabling or Removing Overrides</h3>
<p>Sometimes, you might want to disable or remove overrides. To disable overrides without removing them, just uncheck the <code>Enable Local Overrides</code> checkbox. To remove all the overrides permanently, click on the stop icon at the top-right corner. Also, to selectively remove an override, right-click on it and delete.</p>
<img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/80c59dc2-0eea-48ad-b499-be1d4493512c.png" alt="80c59dc2-0eea-48ad-b499-be1d4493512c" style="display:block;margin:0 auto" width="848" height="642" loading="lazy">

<h2 id="heading-learn-more-from-the-thinking-in-debugging-mindset">Learn More From the Thinking in Debugging Mindset</h2>
<p>If you've liked this practical, example-driven guide, you'll enjoy my other debugging-related content from the <em>Thinking in Debugging</em> series. Please <a href="https://www.youtube.com/playlist?list=PLIJrr73KDmRwT8Msc4H3_CP5Tf8MqqqVZ">check it out</a>.</p>
<p><a href="https://www.youtube.com/playlist?list=PLIJrr73KDmRwT8Msc4H3_CP5Tf8MqqqVZ"><img src="https://cdn.hashnode.com/uploads/covers/5c9bb4026656f09759cdc1f0/9046f04f-71f1-4303-b39c-7267fd3814bc.png" alt="Thinking in Debugging" style="display:block;margin:0 auto" width="2330" height="1046" loading="lazy"></a></p>
<h2 id="heading-before-we-end">Before We End…</h2>
<p>That’s all! I hope you found this insightful.</p>
<p>Let’s connect:</p>
<ul>
<li><p>Subscribe to my <a href="https://www.youtube.com/tapasadhikary?sub_confirmation=1">YouTube Channel</a>.</p>
</li>
<li><p>Check out my courses, <a href="https://www.youtube.com/playlist?list=PLIJrr73KDmRw2Fwwjt6cPC_tk5vcSICCu">40 Days of JavaScript</a> and <a href="https://www.youtube.com/playlist?list=PLIJrr73KDmRyQVT__uFZvaVfWPdfyMFHC">15 Days of React Design Patterns</a></p>
</li>
<li><p>Follow on <a href="https://www.linkedin.com/in/tapasadhikary/">LinkedIn</a> if you don't want to miss the daily dose of up-skilling tips.</p>
</li>
<li><p>Join my <a href="https://discord.gg/zHHXx4vc2H">Discord Server</a>, and let’s learn together.</p>
</li>
<li><p>Follow my work on <a href="https://github.com/tapascript">GitHub</a>.</p>
</li>
</ul>
<p>See you soon with my next article. Until then, please take care of yourself and keep learning.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Stop Letting AI Agents Guess Your Requirements ]]>
                </title>
                <description>
                    <![CDATA[ I spent 64% of my weekly Claude budget before Wednesday building a tool designed to reduce Claude usage. That's the kind of irony that deserves its own specification. The tool is spec-writer: a Claude ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-stop-letting-ai-agents-guess-your-requirements/</link>
                <guid isPermaLink="false">69c1dc5930a9b81e3ac400fc</guid>
                
                    <category>
                        <![CDATA[ claude.ai ]]>
                    </category>
                
                    <category>
                        <![CDATA[ ClaudeCode ]]>
                    </category>
                
                    <category>
                        <![CDATA[ claude ]]>
                    </category>
                
                    <category>
                        <![CDATA[ AI ]]>
                    </category>
                
                    <category>
                        <![CDATA[ webdev ]]>
                    </category>
                
                    <category>
                        <![CDATA[ webdevelopment ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ TypeScript ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Daniel Nwaneri ]]>
                </dc:creator>
                <pubDate>Tue, 24 Mar 2026 00:35:37 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/06a3ff85-4d60-4e05-b494-8d2f3e6024ac.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>I spent 64% of my weekly Claude budget before Wednesday building a tool designed to reduce Claude usage. That's the kind of irony that deserves its own specification.</p>
<p>The tool is spec-writer: a Claude Code skill that takes a vague feature request and generates a structured spec, technical plan, and task breakdown before a single line of code gets written.</p>
<p>The problem it solves is one most developers hit within their first week of using AI coding agents seriously: the agent writes confidently in the wrong direction and you pay for it twice, once in tokens, once in rewrites.</p>
<p>This tutorial shows you how to install spec-writer, how to invoke it on a real feature, and how to read the output so you can catch the assumptions that would have wasted your time.</p>
<h2 id="heading-table-of-contents">Table of Contents</h2>
<ol>
<li><p><a href="#heading-the-problem-with-prompting-agents-directly">The Problem with Prompting Agents Directly</a></p>
</li>
<li><p><a href="#heading-what-specdriven-development-is">What Spec-Driven Development Is</a></p>
</li>
<li><p><a href="#heading-how-spec-writer-works">How spec-writer Works</a></p>
</li>
<li><p><a href="#heading-how-to-install-spec-writer">How to Install spec-writer</a></p>
</li>
<li><p><a href="#heading-how-to-write-your-first-spec">How to Write Your First Spec</a></p>
</li>
<li><p><a href="#heading-how-to-read-the-output">How to Read the Output</a></p>
</li>
<li><p><a href="#heading-how-to-hand-the-spec-to-your-agent">How to Hand the Spec to Your Agent</a></p>
</li>
<li><p><a href="#heading-where-to-go-next">Where to Go Next</a></p>
</li>
</ol>
<h2 id="heading-the-problem-with-prompting-agents-directly">The Problem with Prompting Agents Directly</h2>
<p>Here is what happens when you skip the spec.</p>
<p>You have a feature in your head: "Add a way for users to export their data." You open Claude Code and describe it. The agent produces code. It looks right. You run it. It's mostly right – except it exports everything including soft-deleted records, it doesn't paginate, it times out on large accounts, and it has no authentication check on the export endpoint.</p>
<p>None of those things were in your prompt. The agent guessed, and it guessed plausibly – which is worse than guessing obviously wrong. You didn't notice until testing.</p>
<p>This is the fundamental problem with prompting agents directly on anything non-trivial: your prompt carries your conscious requirements, but every feature has a shadow of requirements you didn't think to state. And the agent fills that shadow with assumptions.</p>
<p>Most of the time, those assumptions are reasonable. Some of the time, they're wrong in ways that take hours to unravel.</p>
<p>The failure mode isn't hallucination. It's the agent being exactly as helpful as the prompt allowed, which wasn't helpful enough.</p>
<p>Spec-Driven Development addresses this directly. The methodology – documented extensively by practitioners like Julián Deangelis – argues that a written spec isn't documentation overhead. It's the mechanism that forces you to make decisions before the agent does.</p>
<h2 id="heading-what-spec-driven-development-is">What Spec-Driven Development Is</h2>
<p>Spec-Driven Development is the practice of writing a structured specification before you write code or prompt an agent. The spec defines what the feature must do, what assumptions are being made, and what tasks the implementation breaks into.</p>
<p>The key insight is what a spec is <em>for</em>. A spec is not trying to replace code. It's trying to surface the decisions that would otherwise be invisible. The agent will make those decisions either way: with a spec, you make them first. Without a spec, you discover them during testing.</p>
<p>The strongest counterargument to SDD comes from Gabriella Gonzalez: <em>a sufficiently detailed spec is just code</em>. She's right that some specs devolve into pseudocode so specific they might as well be implementations.</p>
<p>But that's a spec written at the wrong level of abstraction. The goal is to name the decisions, not to pre-implement them. "Only authenticated users can trigger this export" is a decision. "Call <code>verifyJWT(token)</code> and return 401 if it fails" is implementation. The spec needs the first. The agent handles the second.</p>
<p>SDD has three levels:</p>
<ol>
<li><p><strong>Spec-First</strong>: write a spec before every feature and hand it to the agent as context. This is the entry point and the workflow this tutorial focuses on.</p>
</li>
<li><p><strong>Spec-Anchored</strong>: the spec lives in the repository and evolves alongside the code. When requirements change, you update the spec and re-prompt the agent to realign.</p>
</li>
<li><p><strong>Spec-as-Source</strong>: the spec is the primary artifact. Code is generated from it and considered disposable. This is the most ambitious level and the direction many teams are moving toward.</p>
</li>
</ol>
<p>spec-writer gets you to Spec-First immediately, with no ceremony.</p>
<h2 id="heading-how-spec-writer-works">How spec-writer Works</h2>
<p>spec-writer is a Claude Code skill – a markdown file that loads into the agent's context and changes how it responds when invoked.</p>
<p>The skill follows one rule: generate first, flag assumptions inline. Instead of asking you clarifying questions before producing output, it generates the full spec immediately and marks every decision it made without your explicit input using <code>[ASSUMPTION: ...]</code> tags. Then you correct what's wrong.</p>
<p>This is faster than Q&amp;A because it makes the decisions visible in a form you can react to rather than anticipate.</p>
<p>The output has three sections in fixed order:</p>
<ol>
<li><p><strong>SPEC</strong>: the what. One-line purpose, user stories, requirements, edge cases, and acceptance criteria in Given/When/Then format.</p>
</li>
<li><p><strong>PLAN</strong>: the how. Stack and architecture decisions, data model changes, API contracts, testing strategy, and security constraints.</p>
</li>
<li><p><strong>TASKS</strong>: the breakdown. Ordered, self-contained tasks each completable in a single agent session, each with its own acceptance criteria.</p>
</li>
</ol>
<p>After the three sections, the skill produces an <strong>Assumptions summary</strong>: every <code>[ASSUMPTION: ...]</code> from the output, ranked by impact. This is the part you review before handing anything to the agent.</p>
<p>The skill is compatible with <a href="https://github.com/github/spec-kit">GitHub Spec Kit</a> and <a href="https://github.com/Fission-AI/OpenSpec">OpenSpec</a>. If you use either framework, save the spec output to your <code>.specify/</code> or <code>openspec/changes/</code> directory and continue from there.</p>
<h2 id="heading-how-to-install-spec-writer">How to Install spec-writer</h2>
<p>spec-writer uses the Agent Skills standard, which means the same SKILL.md file works across Claude Code, Cursor, GitHub Copilot, Gemini CLI, and any other agent that supports the standard. You install it once and it works everywhere.</p>
<h3 id="heading-installation">Installation</h3>
<p>Create the skills directory if it doesn't exist and clone the repo:</p>
<pre><code class="language-bash">mkdir -p ~/.claude/skills
git clone https://github.com/dannwaneri/spec-writer.git ~/.claude/skills/spec-writer
</code></pre>
<p>On Windows PowerShell:</p>
<p><strong>(Note:</strong> PowerShell uses backtick (<code>`</code>) for line continuation, not backslash.)</p>
<pre><code class="language-powershell">New-Item -ItemType Directory -Force -Path "$HOME\.claude\skills"
git clone https://github.com/dannwaneri/spec-writer.git "$HOME\.claude\skills\spec-writer"
</code></pre>
<p>That's the entire installation. No package to install, no configuration file to edit, no API key. The skill is a markdown file. The agent reads it.</p>
<h3 id="heading-verification">Verification</h3>
<p>Open Claude Code and type:</p>
<pre><code class="language-plaintext">/spec-writer test
</code></pre>
<p>If the skill is installed correctly, the agent will read the SKILL.md and produce a spec structure – even for "test" as input. You'll see the three sections and the Assumptions summary. If nothing happens, confirm that the <code>~/.claude/skills/spec-writer/SKILL.md</code> file exists.</p>
<h2 id="heading-how-to-write-your-first-spec">How to Write Your First Spec</h2>
<p>The invocation pattern is:</p>
<pre><code class="language-plaintext">/spec-writer [your feature description]
</code></pre>
<p>The description can be as rough as you'd write in a Slack message. The skill's job is to structure it. You don't need to be precise. Being precise is what the spec is for.</p>
<h3 id="heading-a-real-example">A Real Example</h3>
<p>Here is a real invocation from the Foundation project, a federated knowledge base built on Cloudflare Workers:</p>
<pre><code class="language-plaintext">/spec-writer Add CLI capture for Claude Code sessions stored in ~/.claude/projects/
</code></pre>
<p>That's twelve words. No mention of the tech stack, no data model details, no authentication requirements, no error handling spec. All of that comes out in the spec.</p>
<p>Here is the abbreviated output:</p>
<p><strong>SPEC</strong></p>
<p><strong>One-line purpose:</strong> Developers can capture Claude Code session logs from their local filesystem into Foundation before they are deleted after 30 days.</p>
<p><strong>Users and use cases:</strong></p>
<ul>
<li><p>As a developer using Claude Code daily, I want my coding sessions captured automatically so that architectural decisions and debugging patterns don't disappear after 30 days.</p>
</li>
<li><p>As a Foundation user, I want CLI sessions and browser extension captures in the same knowledge base so that I have one place to query across all my AI interactions.</p>
</li>
</ul>
<p><strong>Acceptance criteria:</strong></p>
<pre><code class="language-plaintext">Given a developer with Claude Code sessions in ~/.claude/projects/
When they run the Foundation CLI capture command
Then a list of uncaptured sessions is displayed, sorted by most recent first
 
Given a session already in Foundation
When the developer runs capture again
Then that session does not appear in the review list
 
Given a malformed .jsonl file
When the capture command processes it
Then an error is logged for that file and processing continues on remaining sessions
</code></pre>
<p><strong>PLAN</strong></p>
<p><strong>Stack and architecture:</strong></p>
<pre><code class="language-plaintext">CLI capture runs locally — it needs to read the local filesystem, which
Cloudflare Workers cannot do. [ASSUMPTION: CLI capture is a local Node.js
or Bun script that calls the Foundation API to insert sessions, rather
than a Worker itself]
</code></pre>
<p><strong>API contracts:</strong></p>
<ul>
<li><p><code>POST /api/sessions/import</code> – accepts parsed session JSON, returns session ID</p>
</li>
<li><p>Returns 409 if session already exists</p>
</li>
<li><p>Triggers evaluator pipeline after successful insert</p>
</li>
</ul>
<p><strong>TASKS</strong></p>
<pre><code class="language-plaintext">## Task 1: .jsonl parser
 
**What to build:** A parser that reads a Claude Code .jsonl session file
and outputs Foundation's internal message format.
**Files likely affected:** cli/src/parsers/claudeCode.js (create)
**Acceptance criteria:**
1. Parses a valid .jsonl file into the correct message format
2. Handles malformed lines without crashing — logs and skips
3. Returns empty array for empty file
**Dependencies:** none
</code></pre>
<p><strong>Assumptions to review:</strong></p>
<pre><code class="language-plaintext">1. CLI capture is a local script calling the Foundation API, not a Worker
   Impact: HIGH
   Correct this if: you want a purely serverless approach
 
2. Manual curation before capture, not automatic bulk import
   Impact: HIGH
   Correct this if: you want automatic background capture
 
3. Session ID from .jsonl filename is the deduplication key
   Impact: MEDIUM
   Correct this if: session IDs are stored differently in your schema
 
4. No sensitive data scrubbing in v1
   Impact: MEDIUM
   Correct this if: your sessions contain credentials or keys
</code></pre>
<p>Twelve words in, four decisions surfaced immediately – three of which had real architectural implications.</p>
<p>The third assumption ("Session ID from .jsonl filename is the deduplication key") is the one that would have caused the most subtle bug. The agent would have implemented deduplication based on the filename and it would have worked until a session was renamed. The spec caught it before a line of code was written.</p>
<h2 id="heading-how-to-read-the-output">How to Read the Output</h2>
<p>The output is designed to be scanned for <code>[ASSUMPTION: ...]</code> tags first, read for the tasks second.</p>
<h3 id="heading-reading-the-assumptions">Reading the Assumptions</h3>
<p>Every <code>[ASSUMPTION: ...]</code> tag marks a place where the agent filled in something you didn't specify. Your job is to go through the Assumptions summary and decide for each one:</p>
<ul>
<li><p><strong>Correct</strong>: the assumption is right, leave it</p>
</li>
<li><p><strong>Override</strong>: the assumption is wrong, restate it and re-run the spec</p>
</li>
<li><p><strong>Defer</strong>: the assumption doesn't matter for this iteration, mark it and move on</p>
</li>
</ul>
<p>The impact rating tells you which assumptions to fix before you start coding. HIGH-impact assumptions affect architecture or data model. If they're wrong, fixing them requires rework. LOW-impact assumptions affect behavior details that are easy to change later.</p>
<h3 id="heading-reading-the-acceptance-criteria">Reading the Acceptance Criteria</h3>
<p>The acceptance criteria in Given/When/Then format are the most useful part of the spec for catching scope errors. Read each one and ask: is this actually what I want?</p>
<p>Criteria are binary by design. "Returns 401 when unauthenticated" is a criterion. "Works correctly" is not. If you find yourself reading a criterion and thinking "well, it depends", then that's a signal that the criterion is hiding an assumption. Restate it.</p>
<h3 id="heading-reading-the-tasks">Reading the Tasks</h3>
<p>The tasks are ordered and self-contained. Each task produces a verifiable change. Before you hand any task to an agent, check two things:</p>
<ol>
<li><p>Does the task have all the context it needs? If a task says "follow the existing auth pattern" and you haven't pointed the agent at your auth code, it will guess.</p>
</li>
<li><p>Does the acceptance criteria match what you'd actually test? If the criteria are vague, tighten them before the agent sees the task.</p>
</li>
</ol>
<h2 id="heading-how-to-hand-the-spec-to-your-agent">How to Hand the Spec to Your Agent</h2>
<p>The spec is context, not a prompt. When you start an agent session for a task, include the relevant spec sections alongside the task description.</p>
<p>For Task 1 from the example above, your agent session might open like this:</p>
<pre><code class="language-plaintext">Context:
- This is a federated knowledge base built on Cloudflare Workers, D1, and Vectorize
- Sessions are stored in ~/.claude/projects/ as .jsonl files
- The API runs at https://&lt;your-worker&gt;.workers.dev
 
Spec:
[paste the SPEC and PLAN sections]
 
Task:
[paste Task 1]
</code></pre>
<p>The context block is just an example. Replace it with your own project's tech stack, file locations, and API URL. The point is to give the agent the same context a new team member would need on day one.</p>
<p>The agent now has requirements, architecture context, and a single scoped task with binary acceptance criteria. It cannot guess the deduplication key incorrectly because the spec already resolved that assumption. It cannot skip error handling because the acceptance criteria explicitly require it.</p>
<p>This is the workflow the spec is designed for. The spec doesn't replace the agent. Rather, it removes the decisions from the agent's hands and puts them in yours, before the work starts.</p>
<h3 id="heading-saving-the-spec-for-later">Saving the Spec for Later</h3>
<p>If you want to move toward Spec-Anchored development – where the spec lives in the repository – save the output to a <code>specs/</code> directory in your project:</p>
<pre><code class="language-bash"># Create specs directory
mkdir -p specs
 
# Save your spec
# Paste the output into specs/cli-capture.md
</code></pre>
<p>When requirements change, update the spec and re-prompt the agent to realign the implementation. The spec becomes the source of truth, not the code comments.</p>
<h2 id="heading-where-to-go-next">Where to Go Next</h2>
<p>Try it on your next feature before you write a line of code. The assumptions it flags will tell you something about your feature you hadn't consciously decided yet – and correcting the HIGH-impact ones before you hand anything to an agent is the whole point. Skipping that step is the same as prompting directly.</p>
<p>If your project is growing, move toward Spec-Anchored. Save specs in your repository under <code>specs/</code>. When a new contributor joins or an agent starts a session cold, the specs give them the decisions that got made without requiring them to reverse-engineer the code.</p>
<p>The strongest ongoing challenge to this workflow is Gabriella Gonzalez's argument that detailed specs become code. If your specs are getting implementation-specific, you've crossed a line. Pull back to decisions – "only authenticated users can trigger this" – and leave implementation to the agent. The spec's job is to name what the agent would have guessed wrong, not to write the feature in prose.</p>
<p>The Agent Skills standard now works across Claude Code, GitHub Copilot, Cursor, and Gemini CLI. The spec-writer repo is at <a href="https://github.com/dannwaneri/spec-writer">github.com/dannwaneri/spec-writer</a>.</p>
<p>The irony of spending 64% of a Claude budget building a token-efficiency tool is real. But the spec surfaced four decisions on a twelve-word prompt. The fourth one – the deduplication key assumption – would have produced a bug that worked perfectly until a session got renamed.</p>
<p>That's not a hallucination. That's the agent being exactly as helpful as the prompt allowed.</p>
<p>The spec is how you raise the ceiling on what "helpful" means.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Build a Production-Ready Flutter CI/CD Pipeline with GitHub Actions: Quality Gates, Environments, and Store Deployment ]]>
                </title>
                <description>
                    <![CDATA[ Mobile application development has evolved over the years. The processes, structure, and syntax we use has changed, as well as the quality and flexibility of the apps we build. One of the major improv ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-build-a-production-ready-flutter-ci-cd-pipeline-with-github-actions-quality-gates-environments-and-store-deployment/</link>
                <guid isPermaLink="false">69bb2e078c55d6eefb6c2e8d</guid>
                
                    <category>
                        <![CDATA[ ci-cd ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Flutter ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Mobile Development ]]>
                    </category>
                
                    <category>
                        <![CDATA[ github-actions ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Devops ]]>
                    </category>
                
                    <category>
                        <![CDATA[ github copilot ]]>
                    </category>
                
                    <category>
                        <![CDATA[ CI/CD pipelines ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Dart ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ automation ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Oluwaseyi Fatunmole ]]>
                </dc:creator>
                <pubDate>Wed, 18 Mar 2026 22:58:15 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/8c9d9384-ff02-47d7-aa69-42db2ebae247.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Mobile application development has evolved over the years. The processes, structure, and syntax we use has changed, as well as the quality and flexibility of the apps we build.</p>
<p>One of the major improvements has been a properly automated CI/CD pipeline flow that gives us seamless automation, continuous integration, and continuous deployment.</p>
<p>In this article, I'll break down how you can automate and build a production ready CI/CD pipeline for your Flutter application using GitHub Actions.</p>
<p>Note that there are other ways to do this, like with Codemagic (built specifically for Flutter apps – which I'll cover in a subsequent tutorial), but in this article we'll focus on GitHub Actions instead.</p>
<h2 id="heading-table-of-contents">Table of Contents</h2>
<ol>
<li><p><a href="#heading-the-typical-workflow">The Typical Workflow</a></p>
</li>
<li><p><a href="#heading-prerequisites">Prerequisites</a></p>
</li>
<li><p><a href="#heading-pipeline-architecture">Pipeline Architecture</a></p>
</li>
<li><p><a href="#heading-writing-the-workflows">Writing the Workflows</a></p>
<ul>
<li><p><a href="#heading-the-helper-scripts">The Helper Scripts</a></p>
<ul>
<li><p><a href="#heading-script-1-generateconfigsh">generate_config.sh</a></p>
</li>
<li><p><a href="#heading-script-2-qualitygatesh">quality_gate.sh</a></p>
</li>
<li><p><a href="#heading-script-3-uploadsymbolssh-sentry">upload_symbols.sh</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-workflow-1-prchecksyml">PR Quality Gate (pr_checks.yml)</a></p>
</li>
<li><p><a href="#heading-workflow-2-androidyml">Android CI/CD Pipeline (android.yml)</a></p>
</li>
<li><p><a href="#heading-workflow-3-iosyml">iOS CI/CD Pipeline (ios.yml)</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-secrets-and-configuration-reference">Secrets and Configuration Reference</a></p>
</li>
<li><p><a href="#heading-end-to-end-flow">End-to-End Flow</a></p>
</li>
<li><p><a href="#heading-conclusion">Conclusion</a></p>
</li>
</ol>
<h2 id="heading-the-typical-workflow">The Typical Workflow</h2>
<p>First, let's define the common approach to deploying production-ready Flutter apps.</p>
<p>The development team does their work on local, pushes to the repository for merge or review, and eventually runs <code>flutter build apk</code> or <code>flutter build appbundle</code> to generate the apk file. This then gets shared with the QA team manually, or deployed to Firebase app distribution for testing. If it's a production move, the app bundle is submitted to the Google Play store for review and then deployed.</p>
<p>This process is often fully manual with no automated checks, validation, or control over quality, speed, and seamlessness. Manually shipping a Flutter app starts out relatively simply, but can quickly and quietly turn into a liability. You run <code>flutter build</code>, switch configs, sign the build, upload it somewhere, and hope you didn’t mix up staging keys with production ones.</p>
<p>As teams grow and release updates more and more quickly, these manual steps become real risks. A skipped quality check, a missing keystore, or an incorrect base URL deployed to production can cost hours of debugging or worse – it can affect your users.</p>
<p>Automating this process fully involves some high level configuration and predefined scripting. It completely takes control of the deployment process from the moment the developer raised a PR into the common or base branch (for example, the <code>develop</code> branch).</p>
<p>This automated process takes care of everything that needs to be done – provided it has been predefined, properly scripted, and aligns with the use case of the team.</p>
<h3 id="heading-what-well-do-here">What we'll do here:</h3>
<p>In this tutorial, we'll build a production-grade CI/CD pipeline for a Flutter app using GitHub Actions. The pipeline automates the entire lifecycle: pull-request quality checks, environment-specific configuration injection, Android and iOS builds, Firebase App Distribution for testers, Sentry symbol uploads, and final deployment to the Play Store and App Store.</p>
<p>By the end, every release – from a developer opening a PR to the final build landing in users' hands – will be fully automated, with no one touching a terminal.</p>
<h2 id="heading-prerequisites">Prerequisites</h2>
<p>Before starting, you should have:</p>
<ol>
<li><p>A Flutter app with working Android and iOS builds</p>
</li>
<li><p>Basic familiarity with <a href="https://www.freecodecamp.org/news/automate-cicd-with-github-actions-streamline-workflow/">GitHub Actions</a> (workflows and jobs)</p>
</li>
<li><p>A Firebase project with App Distribution enabled</p>
</li>
<li><p>A Sentry project for error tracking</p>
</li>
<li><p>A Google Play Console app already created</p>
</li>
<li><p>An Apple Developer account with App Store Connect access</p>
</li>
<li><p>Fastlane configured for your iOS project</p>
</li>
<li><p>Basic Bash knowledge (I’ll explain the important parts)</p>
</li>
</ol>
<h2 id="heading-pipeline-architecture">Pipeline Architecture</h2>
<p>In this guide, we'll be building a CI/CD pipeline with very precise instructions and use cases. These use cases determine the way your pipeline is built.</p>
<p>For this tutorial, we'll use this use case:</p>
<p>I want to automate the workflow on my development team based on the following criteria:</p>
<ol>
<li><p>When a developer on the team raises a PR into the common working branch <code>develop</code> in most cases), a workflow is triggered to run quality checks on the code. It only allows the merge to happen if all checks (like tests coverage, quality checks, and static analysis) pass.</p>
</li>
<li><p>Code that's moving from the develop branch to the staging branch goes through another workflow that injects staging configurations/secret keys, does all the necessary checks, and distributes the application for testing on Firebase App Distribution for android as well as Testflight for iOS.</p>
</li>
<li><p>Code that's moving from the staging to the production branch goes through the production level workflow which involves apk secured signing, production configuration injection, running tests to ensure nothing breaks, Sentry analysis for monitoring, and submission to App Store Connect as well as Google Play Console.</p>
</li>
</ol>
<p>These are our predefined conditions which help with the construction of our workflows.</p>
<h2 id="heading-writing-the-workflows">Writing the Workflows</h2>
<p>We'll split this pipeline into three GitHub Actions workflows.</p>
<p>We'll also be taking it a notch higher by creating three helper .sh scripts for a cleaner and more maintainable workflow.</p>
<p>In your project root, create two folders:</p>
<ol>
<li><p>.github/</p>
</li>
<li><p>scripts.</p>
</li>
</ol>
<p>The <strong>.github/</strong> folder will hold the workflows we'll be creating for each use case, while the <strong>scripts/</strong> folder will hold the helper scripts that we can easily call in our CLI or in the workflows directly.</p>
<p>After this, we'll create three workflow .yaml files:</p>
<ol>
<li><p>pr_checks.yaml</p>
</li>
<li><p>android.yaml</p>
</li>
<li><p>ios.yaml</p>
</li>
</ol>
<p>Also in the scripts folder, let's create three .sh files:</p>
<ol>
<li><p>generate_config.sh</p>
</li>
<li><p>quality_checks.sh</p>
</li>
<li><p>upload_symbols.sh</p>
</li>
</ol>
<pre><code class="language-yaml">.github/
  workflows/
    pr_checks.yml
    android.yml
    ios.yml

scripts/
  generate_config.sh
  quality_checks.sh
  upload_symbols.sh
</code></pre>
<p>This workflow architecture ensures that a push to <code>develop</code> automatically produces a tester build. Also, merging to <code>production</code> ships directly to the stores without manual commands or config changes.</p>
<p>The scripts live outside the YAML on purpose. This lets you run the same logic locally.</p>
<h3 id="heading-the-helper-scripts">The Helper Scripts</h3>
<p>The scripts form the backbone of the pipeline. Each one has a single responsibility and is reused across workflows.</p>
<p>Instead of cramming logic into YAML, we'll move it into <strong>reusable scripts</strong>. This keeps workflows clean and lets you run the same logic locally. Let's go through each one now.</p>
<h3 id="heading-script-1-generateconfigsh">Script #1: <code>generate_config.sh</code></h3>
<p>Injecting secrets safely is one of the hardest CI/CD problems in mobile apps.</p>
<p>The strategy:</p>
<ul>
<li><p>Commit a Dart template file with placeholders</p>
</li>
<li><p>Replace placeholders at build time using secrets from GitHub Actions</p>
</li>
<li><p>Never commit real credentials</p>
</li>
</ul>
<pre><code class="language-yaml">#!/usr/bin/env bash
set -euo pipefail


ENV_NAME=${1:-}
BASE_URL=${2:-}
ENCRYPTION_KEY=${3:-}

TEMPLATE="lib/core/env/env_ci.dart"
OUT="lib/core/env/env_ci.g.dart"

if [ -z "\(ENV_NAME" ] || [ -z "\)BASE_URL" ] || [ -z "$ENCRYPTION_KEY" ]; then
  echo "Usage: $0 &lt;env-name&gt; &lt;base-url&gt; &lt;encryption-key&gt;"
  exit 2
fi

sed -e "s|&lt;&lt;BASE_URL&gt;&gt;|$BASE_URL|g" \
    -e "s|&lt;&lt;ENCRYPTION_KEY&gt;&gt;|$ENCRYPTION_KEY|g" \
    -e "s|&lt;&lt;ENV_NAME&gt;&gt;|$ENV_NAME|g" \
    "\(TEMPLATE" &gt; "\)OUT"

echo "Generated config for $ENV_NAME"
</code></pre>
<p>This script is responsible for injecting environment-specific configuration into the Flutter app at build time, without ever committing secrets to source control.</p>
<p>Let’s walk through it carefully.</p>
<h4 id="heading-1-shebang-choosing-the-shell">1. Shebang: Choosing the Shell</h4>
<pre><code class="language-yaml">#!/usr/bin/env bash
</code></pre>
<p>This line tells the system to execute the script using <strong>Bash</strong>, regardless of where Bash is installed on the machine.</p>
<p>Using <code>/usr/bin/env bash</code> instead of <code>/bin/bash</code> makes the script more portable across local machines, GitHub Actions runners, and Docker containers.</p>
<h4 id="heading-2-fail-fast-fail-loud">2. Fail Fast, Fail Loud</h4>
<pre><code class="language-yaml">set -euo pipefail
</code></pre>
<p>This is one of the most important lines in the script.</p>
<p>It enables three strict Bash modes:</p>
<ul>
<li><p><code>-e</code>: Exit immediately if any command fails</p>
</li>
<li><p><code>-u</code>: Exit if an undefined variable is used</p>
</li>
<li><p><code>-o pipefail</code>: Fail if any command in a pipeline fails, not just the last one</p>
</li>
</ul>
<p>This matters in CI because silent failures are dangerous, partial config generation can break production builds, and CI should stop immediately when something is wrong.</p>
<p>This line ensures that no broken config ever makes it into a build.</p>
<h4 id="heading-3-reading-input-arguments">3. Reading Input Arguments</h4>
<pre><code class="language-yaml">
ENV_NAME=${1:-}
BASE_URL=${2:-}
ENCRYPTION_KEY=${3:-}
</code></pre>
<p>These lines read <strong>positional arguments</strong> passed to the script:</p>
<ul>
<li><p><code>$1</code>: Environment name (<code>dev</code>, <code>staging</code>, <code>production</code>)</p>
</li>
<li><p><code>$2</code>: API base URL</p>
</li>
<li><p><code>$3</code>: Encryption or API key</p>
</li>
</ul>
<p>The <code>${1:-}</code> syntax means:</p>
<p><em>“If the argument is missing, default to an empty string instead of crashing.”</em></p>
<p>This works hand-in-hand with <code>set -u</code> , we control the failure explicitly instead of letting Bash explode unexpectedly.</p>
<h4 id="heading-4-defining-input-and-output-files">4. Defining Input and Output Files</h4>
<pre><code class="language-yaml">TEMPLATE="lib/core/env/env_ci.dart"
OUT="lib/core/env/env_ci.g.dart"
</code></pre>
<p>Here we define two files:</p>
<ul>
<li><p><strong>Template file (</strong><code>env_ci.dart</code><strong>)</strong></p>
<ul>
<li><p>Contains placeholder values like <code>&lt;&lt;BASE_URL&gt;&gt;</code></p>
</li>
<li><p>Safe to commit to Git</p>
</li>
</ul>
</li>
<li><p><strong>Generated file (</strong><code>env_ci.g.dart</code><strong>)</strong></p>
<ul>
<li><p>Contains real environment values</p>
</li>
<li><p>Must be ignored by Git (<code>.gitignore</code>)</p>
</li>
</ul>
</li>
</ul>
<p>At the heart of this approach are two Dart files with very different responsibilities. They may look similar, but they play completely different roles in the system.</p>
<h4 id="heading-envcidart"><code>env.ci.dart</code>:</h4>
<pre><code class="language-java">// lib/core/env/env_ci.dart

class EnvConfig {
  static const String baseUrl = '&lt;&lt;BASE_URL&gt;&gt;';
  static const String encryptionKey = '&lt;&lt;ENCRYPTION_KEY&gt;&gt;';
  static const String environment = '&lt;&lt;ENV_NAME&gt;&gt;';
}
</code></pre>
<p>This file is <strong>safe</strong>, <strong>static</strong>, and <strong>version-controlled</strong>. It contains placeholders, not real values.</p>
<p>Some of its key characteristics are:</p>
<ul>
<li><p>Contains no real secrets</p>
</li>
<li><p>Uses obvious placeholders (<code>&lt;&lt;BASE_URL&gt;&gt;</code>, etc.)</p>
</li>
<li><p>Safe to commit to Git</p>
</li>
<li><p>Reviewed like normal source code</p>
</li>
<li><p>Serves as the single source of truth for required config fields</p>
</li>
</ul>
<p>Think of this file as a contract:</p>
<p><em>“These are the configuration values the app expects at runtime.”</em></p>
<h4 id="heading-envcigdart"><code>env.ci.g.dart</code>:</h4>
<p>This file is created at <strong>build time</strong> by <code>generate_config.sh</code>. After substitution, it looks like this:</p>
<pre><code class="language-java">// lib/core/env/env_ci.g.dart
// GENERATED FILE — DO NOT COMMIT

class EnvConfig {
  static const String baseUrl = 'https://staging.api.example.com';
  static const String encryptionKey = 'sk_live_xxxxx';
  static const String environment = 'staging';
}
</code></pre>
<p>Key characteristics:</p>
<ul>
<li><p>Contains real environment values</p>
</li>
<li><p>Generated dynamically in CI</p>
</li>
<li><p>Differs per environment (dev / staging / production)</p>
</li>
<li><p>Must <strong>never</strong> be committed to source control</p>
</li>
</ul>
<p>This file exists only on a developer’s machine (if generated locally), inside the CI runner during a build. Once the job finishes, it disappears.</p>
<h4 id="heading-gitignore"><code>.gitignore</code>:</h4>
<p>To guarantee the generated file never leaks, it must be ignored:</p>
<h4 id="heading-why-this-separation-is-critical">Why This Separation Is Critical</h4>
<p>This design solves several hard problems at once.</p>
<p><strong>Security:</strong></p>
<ul>
<li><p>Secrets live <strong>only</strong> in GitHub Actions secrets</p>
</li>
<li><p>They never appear in the repository</p>
</li>
<li><p>They never appear in PRs</p>
</li>
<li><p>They never appear in Git history</p>
</li>
</ul>
<p><strong>Environment Isolation:</strong></p>
<p>Each environment gets its own generated config:</p>
<ul>
<li><p><code>develop</code>: dev API</p>
</li>
<li><p><code>staging</code>: staging API</p>
</li>
<li><p><code>production</code>: production API</p>
</li>
</ul>
<p>The same codebase behaves differently <strong>without branching logic in Dart</strong>.</p>
<p><strong>Deterministic Builds:</strong></p>
<p>Every build is fully reproducible, fully automated, and explicit about which environment it targets.</p>
<p>There are no “it worked locally” scenarios.</p>
<h4 id="heading-5-validating-required-arguments">5. Validating Required Arguments</h4>
<pre><code class="language-java">if [ -z "\(ENV_NAME" ] || [ -z "\)BASE_URL" ] || [ -z "$ENCRYPTION_KEY" ]; then
  echo "Usage: $0 &lt;env-name&gt; &lt;base-url&gt; &lt;encryption-key&gt;"
  exit 2
fi
</code></pre>
<p>This block enforces correct usage.</p>
<ul>
<li><p><code>-z</code> checks whether a variable is empty</p>
</li>
<li><p>If any required argument is missing:</p>
<ul>
<li><p>A helpful usage message is printed</p>
</li>
<li><p>The script exits with a non-zero status code</p>
</li>
</ul>
</li>
<li><p><code>0</code>: success</p>
</li>
<li><p><code>1+</code>: failure</p>
</li>
<li><p><code>2</code> conventionally means incorrect usage</p>
</li>
</ul>
<p>In CI, this immediately fails the job and prevents an invalid build.</p>
<h4 id="heading-6-injecting-environment-values">6. Injecting Environment Values</h4>
<pre><code class="language-java">sed -e "s|&lt;&lt;BASE_URL&gt;&gt;|$BASE_URL|g" \
    -e "s|&lt;&lt;ENCRYPTION_KEY&gt;&gt;|$ENCRYPTION_KEY|g" \
    -e "s|&lt;&lt;ENV_NAME&gt;&gt;|$ENV_NAME|g" \
    "\(TEMPLATE" &gt; "\)OUT"
</code></pre>
<p>This is the heart of the script.</p>
<p>What’s happening here:</p>
<ol>
<li><p><code>sed</code> performs <strong>stream editing</strong>: it reads text, transforms it, and outputs the result</p>
</li>
<li><p>Each <code>-e</code> flag defines a replacement rule:</p>
<ul>
<li><p>Replace <code>&lt;&lt;BASE_URL&gt;&gt;</code> with the actual API URL</p>
</li>
<li><p>Replace <code>&lt;&lt;ENCRYPTION_KEY&gt;&gt;</code> with the real key</p>
</li>
<li><p>Replace <code>&lt;&lt;ENV_NAME&gt;&gt;</code> with the environment label</p>
</li>
</ul>
</li>
<li><p>The transformed output is written to <code>env_ci.g.dart</code></p>
</li>
</ol>
<p>This entire operation happens <strong>at build time</strong>:</p>
<ul>
<li><p>No secrets are committed</p>
</li>
<li><p>No secrets are logged</p>
</li>
<li><p>No secrets persist beyond the CI run</p>
</li>
</ul>
<h4 id="heading-7-success-feedback">7. Success Feedback</h4>
<pre><code class="language-java">echo "Generated config for $ENV_NAME"
</code></pre>
<p>This line provides a clear success signal in CI logs.</p>
<p>It answers three important questions instantly:</p>
<ul>
<li><p>Did the script run?</p>
</li>
<li><p>Did it finish successfully?</p>
</li>
<li><p>Which environment was generated?</p>
</li>
</ul>
<p>In long CI logs, these small confirmations matter.</p>
<p>Alright, now let's move on to the second script.</p>
<h3 id="heading-script-2-qualitygatesh">Script #2: <code>quality_gate.sh</code></h3>
<p>This script defines what <em>“good code”</em> means for your team.</p>
<pre><code class="language-yaml">#!/usr/bin/env bash
set -euo pipefail

echo "Running quality checks"

dart format --output=none --set-exit-if-changed .
flutter analyze
flutter test --no-pub --coverage

if command -v dart_code_metrics &gt;/dev/null 2&gt;&amp;1; then
  dart_code_metrics analyze lib --reporter=console || true
fi

echo "Quality checks passed"
</code></pre>
<p>Lets break down this script bit by bit.</p>
<h4 id="heading-1-start-amp-end-log-markers">1. Start &amp; End Log Markers</h4>
<pre><code class="language-yaml">echo "Running quality checks"
...
echo "Quality checks passed"
</code></pre>
<p>These two lines act as <strong>visual boundaries</strong> in CI logs.</p>
<p>In large pipelines (especially when Android and iOS jobs run in parallel), logs can be very noisy. Clear markers:</p>
<ul>
<li><p>Help developers quickly find the quality phase</p>
</li>
<li><p>Make debugging faster</p>
</li>
<li><p>Confirm that the script completed successfully</p>
</li>
</ul>
<p>The final success message only prints if <strong>everything above it passed</strong>, because <code>set -e</code> would have terminated the script earlier on failure.</p>
<p>So this line effectively means: All quality gates passed. Safe to proceed.</p>
<h4 id="heading-2-running-the-test-suite">2. Running the Test Suite</h4>
<pre><code class="language-yaml">flutter test --no-pub --coverage
</code></pre>
<p>This line executes your entire Flutter test suite.</p>
<p>Let’s break it down carefully.</p>
<p>1. <code>flutter test</code></p>
<p>This runs unit tests, widget tests, and any test under the <code>test/</code> directory. If <strong>any test fails</strong>, the command exits with a non-zero status code.</p>
<p>Because we enabled <code>set -e</code> earlier, that immediately stops the script and fails the CI job.</p>
<p>2. <code>--coverage</code></p>
<p>This flag generates a coverage report at:</p>
<pre><code class="language-yaml">coverage/lcov.info
</code></pre>
<p>This file can later be uploaded to Codecov, used to enforce minimum coverage thresholds, and tracked over time for quality improvement.</p>
<p>Even if you’re not enforcing coverage yet, generating it now future-proofs your pipeline.</p>
<h4 id="heading-3-optional-code-metrics">3. Optional Code Metrics</h4>
<pre><code class="language-yaml">if command -v dart_code_metrics &gt;/dev/null 2&gt;&amp;1; then
  dart_code_metrics analyze lib --reporter=console || true
fi
</code></pre>
<p>This block is intentionally designed to be optional and non-blocking.</p>
<p><strong>Step 1 – Check If the Tool Exists:</strong></p>
<pre><code class="language-yaml">command -v dart_code_metrics &gt;/dev/null 2&gt;&amp;1
</code></pre>
<p>This checks whether <code>dart_code_metrics</code> is installed.</p>
<ul>
<li><p>If installed, proceed</p>
</li>
<li><p>If not installed, skip silently</p>
</li>
</ul>
<p>The redirection:</p>
<ul>
<li><p><code>&gt;/dev/null</code> hides normal output</p>
</li>
<li><p><code>2&gt;&amp;1</code> hides errors</p>
</li>
</ul>
<p>This makes the script portable:</p>
<ul>
<li><p>Developers without the tool can still run the script</p>
</li>
<li><p>CI can enforce it if configured</p>
</li>
</ul>
<p><strong>Step 2 – Run Metrics (Soft Enforcement):</strong></p>
<pre><code class="language-yaml">dart_code_metrics analyze lib --reporter=console || true
</code></pre>
<p>This analyzes the <code>lib/</code> directory and prints results in the console.</p>
<p>The important part is:</p>
<pre><code class="language-yaml">|| true
</code></pre>
<p>Because we enabled <code>set -e</code>, any failing command would normally stop the script.</p>
<p>Adding <code>|| true</code> overrides that behavior:</p>
<ul>
<li><p>If metrics report issues,</p>
</li>
<li><p>The script continues,</p>
</li>
<li><p>CI does not fail.</p>
</li>
</ul>
<p>Why design it this way? Because metrics are often gradual improvements, technical debt indicators, or advisory rather than blocking.</p>
<p>You can later remove <code>|| true</code> to make metrics mandatory.</p>
<h4 id="heading-4-final-success-message"><strong>4. Final Success Message</strong></h4>
<pre><code class="language-yaml">echo "✅ Quality checks passed"
</code></pre>
<p>This line only executes if formatting passed, static analysis passed, and tests passed.</p>
<p>If you see this in CI logs, it means the branch has successfully cleared the quality gate. It’s your automated approval before deployment steps begin.</p>
<h4 id="heading-what-this-script-guarantees">What This Script Guarantees</h4>
<p>With this in place, every branch must satisfy:</p>
<ul>
<li><p>Clean formatting</p>
</li>
<li><p>No analyzer errors</p>
</li>
<li><p>Passing tests</p>
</li>
<li><p>(Optional) Healthy metrics</p>
</li>
</ul>
<p>That’s how you move from <strong>“We try to maintain quality”</strong> to <strong>“Quality is enforced automatically.”</strong></p>
<p>Alright, on to the third script.</p>
<h3 id="heading-script-3-uploadsymbolssh-sentry"><strong>Script #3:</strong> <code>upload_symbols.sh</code> <strong>(Sentry)</strong></h3>
<p>This script is responsible for uploading <strong>obfuscation debug symbols</strong> to Sentry so production crashes remain readable.</p>
<pre><code class="language-yaml">#!/usr/bin/env bash
set -euo pipefail

RELEASE=${1:-}

[ -z "$RELEASE" ] &amp;&amp; exit 2

if ! command -v sentry-cli &gt;/dev/null 2&gt;&amp;1; then
  exit 0
fi

sentry-cli releases new "$RELEASE" || true

sentry-cli upload-dif build/symbols || true

sentry-cli releases finalize "$RELEASE" || true

echo "✅ Symbols uploaded for release $RELEASE"
</code></pre>
<p>Let's go through it step by step.</p>
<h4 id="heading-1-reading-the-release-identifier">1. Reading the Release Identifier</h4>
<pre><code class="language-yaml">RELEASE=${1:-}
</code></pre>
<p>This reads the first positional argument passed to the script.</p>
<p>When you call the script in CI, it typically looks like:</p>
<pre><code class="language-yaml">./scripts/upload_symbols.sh $(git rev-parse --short HEAD)
</code></pre>
<p>So <code>$1</code> becomes the short Git commit SHA.</p>
<p>Using <code>${1:-}</code> ensures:</p>
<ul>
<li><p>If no argument is passed, the variable becomes an empty string</p>
</li>
<li><p>The script does not crash due to <code>set -u</code></p>
</li>
</ul>
<p>This release value ties the uploaded symbols, deployed build, and crash reports all to the exact same commit. This linkage is critical for production debugging.</p>
<h4 id="heading-2-validating-the-release-argument">2. Validating the Release Argument</h4>
<pre><code class="language-yaml">[ -z "$RELEASE" ] &amp;&amp; exit 2
</code></pre>
<p>This is a compact validation check.</p>
<ul>
<li><p><code>-z</code> checks whether the string is empty</p>
</li>
<li><p>If it is empty → exit with status code 2</p>
</li>
</ul>
<p>Conventionally:</p>
<ul>
<li><p><code>0</code> = success</p>
</li>
<li><p><code>1+</code> = failure</p>
</li>
<li><p><code>2</code> = incorrect usage</p>
</li>
</ul>
<p>This prevents symbol uploads from running without a release identifier, which would break traceability in Sentry.</p>
<h4 id="heading-3-checking-if-sentry-cli-exists">3. Checking If <code>sentry-cli</code> Exists</h4>
<pre><code class="language-yaml">if ! command -v sentry-cli &gt;/dev/null 2&gt;&amp;1; then
  exit 0
fi
</code></pre>
<p>This block checks whether the <code>sentry-cli</code> tool is available in the environment.</p>
<p>What’s happening:</p>
<ul>
<li><p><code>command -v sentry-cli</code> checks if it exists</p>
</li>
<li><p><code>&gt;/dev/null 2&gt;&amp;1</code> suppresses all output</p>
</li>
<li><p><code>!</code> negates the condition</p>
</li>
</ul>
<p>So this reads as: <em>"If</em> <code>sentry-cli</code> <em>is NOT installed, exit successfully."</em></p>
<p>Why exit with <code>0</code> instead of failing?</p>
<p>Because not every environment needs symbol uploads. Also, dev builds may not install Sentry, and you don’t want CI to fail just because Sentry isn’t configured.</p>
<p>This makes symbol uploading <strong>environment-aware</strong> and <strong>optional</strong>.</p>
<p>Production environments can install <code>sentry-cli</code>, while dev environments skip it cleanly.</p>
<h4 id="heading-4-creating-a-new-release-in-sentry">4. Creating a New Release in Sentry</h4>
<pre><code class="language-yaml">sentry-cli releases new "$RELEASE" || true
</code></pre>
<p>This tells Sentry: “A new release exists with this version identifier.”</p>
<p>Even if the release already exists, the script continues because of:</p>
<pre><code class="language-yaml">|| true
</code></pre>
<p>This prevents the build from failing if:</p>
<ul>
<li><p>The release was already created</p>
</li>
<li><p>The command returns a non-critical error</p>
</li>
</ul>
<p>The goal is resilience, not strict enforcement.</p>
<h4 id="heading-5-uploading-debug-information-files-difs">5. Uploading Debug Information Files (DIFs)</h4>
<pre><code class="language-yaml">sentry-cli upload-dif build/symbols || true
</code></pre>
<p>This is the core step.</p>
<p><code>build/symbols</code> is generated when you build Flutter with:</p>
<pre><code class="language-yaml">--obfuscate --split-debug-info=build/symbols
</code></pre>
<p>When you obfuscate Flutter builds:</p>
<ul>
<li><p>Method names are renamed</p>
</li>
<li><p>Stack traces become unreadable</p>
</li>
</ul>
<p>The symbol files allow Sentry to reverse-map obfuscated stack traces and show readable crash reports.</p>
<p>Without this step, production crashes look like:</p>
<pre><code class="language-yaml">a.b.c.d (Unknown Source)
</code></pre>
<p>With this step, you get:</p>
<pre><code class="language-yaml">AuthRepository.login()
</code></pre>
<p>Again, <code>|| true</code> ensures the build doesn’t fail if:</p>
<ul>
<li><p>The directory doesn’t exist</p>
</li>
<li><p>No symbols were generated</p>
</li>
<li><p>Upload encounters a transient issue</p>
</li>
</ul>
<p>Symbol uploads should not block deployment.</p>
<h4 id="heading-6-finalizing-the-release">6. Finalizing the Release</h4>
<pre><code class="language-yaml">sentry-cli releases finalize "$RELEASE" || true
</code></pre>
<p>This marks the release as complete in Sentry.</p>
<p>Finalizing signals:</p>
<ul>
<li><p>The release is deployed</p>
</li>
<li><p>It can begin aggregating crash reports</p>
</li>
<li><p>It’s ready for production monitoring</p>
</li>
</ul>
<p>Like the previous steps, this is soft-failed with <code>|| true</code> to keep CI robust.</p>
<h4 id="heading-what-this-script-guarantees">What This Script Guarantees</h4>
<p>When everything is configured correctly:</p>
<ol>
<li><p>Production build is obfuscated</p>
</li>
<li><p>Debug symbols are generated</p>
</li>
<li><p>Symbols are uploaded to Sentry</p>
</li>
<li><p>Crashes map back to real source code</p>
</li>
<li><p>Release version matches commit SHA</p>
</li>
</ol>
<p>That’s production-grade crash observability.</p>
<p>Now that we've gone through the three helper scripts we've created to optimize and enhance this process, lets now dive into the three workflow .yaml files we're going to create.</p>
<h2 id="heading-workflow-1-prchecksyml">Workflow #1: <code>PR_CHECKS.YML</code></h2>
<p>This workflow will be designed to help ensure a certain standard is met once a PR is raised into a certain common or base branch. This will ensure that all quality checks in the incoming code pass before allowing any merge into the base branch.</p>
<p>This is basically a gate that verifies the quality of the code that's about to be merged into the base branch. If your pipeline allows unverified code into your base branch, then your CI becomes decorative, not protective.</p>
<p>Lets break down what's actually needed during every PR Check.</p>
<h3 id="heading-1-dependency-integrity">1. Dependency Integrity</h3>
<p>For Flutter apps, where we manage dependencies with the <strong>pub get</strong> command, it's important to make sure that the integrity of all dependencies are confirmed – up to date as well as compatible.</p>
<p>Every PR should begin with:</p>
<pre><code class="language-yaml">flutter pub get
</code></pre>
<p>This ensures:</p>
<ul>
<li><p><code>pubspec.yaml</code> is valid</p>
</li>
<li><p>Dependency constraints are consistent</p>
</li>
<li><p>Lockfiles are not broken</p>
</li>
<li><p>The project is buildable in a clean environment</p>
</li>
</ul>
<p>If this fails, the branch is not deployable.</p>
<h3 id="heading-2-static-analysis">2. Static Analysis</h3>
<p>This ensures code quality and architecture integrity. Static analysis helps prevent common issues like forgotten await, dead code, null safety violations, async misuse, and so on.</p>
<p>Most production bugs aren't business logic errors – they're structural carelessness. Static analysis helps enforce consistency automatically, so code reviews focus on intent, not linting.</p>
<pre><code class="language-yaml">flutter analyze --fatal-infos --fatal-warnings
</code></pre>
<h3 id="heading-3-formatting">3. Formatting</h3>
<p>This command ensures that your code is properly formatted based on your organization's coding standard and policies.</p>
<pre><code class="language-yaml">dart format --output=none --set-exit-if-changed .
</code></pre>
<h3 id="heading-4-tests">4. Tests</h3>
<p>This runs the unit, widget and business logic tests to ensure quality and avoid regression leaks, silent behavior changes and feature drift.</p>
<pre><code class="language-yaml">flutter test --coverage
</code></pre>
<h3 id="heading-5-test-coverage-enforcement">5. Test Coverage Enforcement</h3>
<p>Ideally, running tests is not enough. Your workflow should also enforce a minimum threshold:</p>
<pre><code class="language-yaml">if [ \((lcov --summary coverage/lcov.info | grep lines | awk '{print \)2}' | sed 's/%//') -lt 70 ]; then
  echo "Coverage too low"
  exit 1
fi
</code></pre>
<p>The command above ensures that a minimum test coverage of 70% is met, with this quality becomes measurable.</p>
<p>The five commands above must be checked (at least) for a <strong>quality gate</strong> to guarantee code quality, security, and integrity.</p>
<p>Now here is the full <strong>pr_checks.yml</strong> file:</p>
<pre><code class="language-yaml">name: PR Quality Gate

on:
  pull_request:
    branches: develop
    types: [opened, synchronize, reopened, ready_for_review]

jobs:
  pr-checks:
    name: Run quality checks on this pull request
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Setup Java
        uses: actions/setup-java@v1
        with:
          java-version: "12.x"

      - name: Setup Flutter
        uses: subosito/flutter-action@v1
        with:
          channel: "stable"

      - name: Install dependencies
        run: flutter pub get

      - name: Run quality checks
        run: ./scripts/quality_checks.sh

      - name: Notify Team (Success)
        if: success()
        run: |
          echo "PR Quality Checks PASSED"
          echo "PR: ${{ github.event.pull_request.html_url }}"
          echo "Branch: \({{ github.head_ref }} → \){{ github.base_ref }}"
          echo "By: @${{ github.actor }}"
          echo "Team notification: @foluwaseyi-dev @olabodegbolu"

      - name: Notify Team (Failure)
        if: failure()
        run: |
          echo "PR Quality Checks FAILED"
          echo "PR: ${{ github.event.pull_request.html_url }}"
          echo "Branch: \({{ github.head_ref }} → \){{ github.base_ref }}"
          echo "By: @${{ github.actor }}"
          echo "Please fix the issues before requesting review 🔧"
          echo "Team notification: @foluwaseyi-dev @olabodegbolu"
</code></pre>
<p>Every time a developer opens (or updates) a pull request targeting the <code>develop</code> branch, this workflow kicks in automatically. Think of it as a bouncer at the door: no code gets through without passing inspection first.</p>
<h3 id="heading-what-triggers-it">What Triggers it?</h3>
<p>The workflow fires on four events: when a PR is <code>opened</code>, <code>synchronized</code> (new commits pushed), <code>reopened</code>, or marked <code>ready_for_review</code>. So drafts won't trigger it – only PRs that are actually ready to be looked at.</p>
<h3 id="heading-what-does-it-actually-do">What Does it Actually Do?</h3>
<p>It spins up a fresh Ubuntu machine and runs five steps in sequence:</p>
<ol>
<li><p><strong>Checkout</strong>: pulls down the branch's code</p>
</li>
<li><p><strong>Setup Java 12</strong>: installs the JDK (likely a dependency for some tooling or build process)</p>
</li>
<li><p><strong>Setup Flutter (stable channel)</strong>: this is a Flutter project, so it grabs the stable Flutter SDK</p>
</li>
<li><p><strong>Install dependencies</strong>: runs <code>flutter pub get</code> to pull all Dart/Flutter packages</p>
</li>
<li><p><strong>Run quality checks</strong>: executes the helper shell script (<code>./scripts/quality_checks.sh</code>) that we created which runs linting, tests, formatting checks, or all of the above</p>
</li>
</ol>
<h3 id="heading-the-notification-layer">The Notification Layer</h3>
<p>After the checks run, the workflow reports the verdict and it's context-aware:</p>
<ul>
<li><p><strong>If everything passes</strong>, it logs a success message with the PR URL, branch info, and the person who opened it</p>
</li>
<li><p><strong>If something fails</strong>, it logs a failure message and nudges the author to fix issues before requesting a review</p>
</li>
</ul>
<p>Both outcomes tag <code>@foluwaseyi-dev</code> and <code>@olabodegbolu</code> – the two team members responsible for staying in the loop.</p>
<p>This workflow enforces a "fix it before you merge it" culture. No one can merge broken code into <code>develop</code> without the team knowing about it.</p>
<h2 id="heading-workflow-2-androidyml">Workflow #2: Android.yml</h2>
<p>It's a better practice to split your workflows based on platform. This helps you properly manage the instructions regarding each platform. This is the reason behind keeping the Android workflow separate.</p>
<p>Unlike <code>PR _Checks</code>, this workflow presumes that all checks for quality and standards have been done and the code that runs this workflow already meets the required standards.</p>
<p>Based on our predefined use case, let's create a workflow to handle test deployments when merged to develop or staging, and production level activities when merged to production.</p>
<pre><code class="language-yaml">name: Android Build &amp; Release

on:
  push:
    branches:
      - develop
      - staging
      - production

jobs:
  android:
    runs-on: ubuntu-latest
    env:
      FLUTTER_VERSION: 'stable'

    steps:
      - name: Checkout code
        uses: actions/checkout@v3

      - name: Setup Java
        uses: actions/setup-java@v3
        with:
          distribution: 'temurin'
          java-version: '11'

      - name: Setup Flutter
        uses: subosito/flutter-action@v2
        with:
          flutter-version: ${{ env.FLUTTER_VERSION }}

      - name: Install dependencies
        run: flutter pub get

      - name: Determine environment
        id: env
        run: |
          echo "branch=\({GITHUB_REF##*/}" &gt;&gt; \)GITHUB_OUTPUT
          if [ "${GITHUB_REF##*/}" = "develop" ]; then
            echo "ENV=dev" &gt;&gt; $GITHUB_OUTPUT
          elif [ "${GITHUB_REF##*/}" = "staging" ]; then
            echo "ENV=staging" &gt;&gt; $GITHUB_OUTPUT
          else
            echo "ENV=production" &gt;&gt; $GITHUB_OUTPUT
          fi

      # Dev uses hardcoded values no secrets needed
      - name: Generate config (dev)
        if: steps.env.outputs.ENV == 'dev'
        run: ./scripts/generate_config.sh dev "https://dev.api.example.com" "dev_dummy_key"

      # Staging and production inject real secrets
      - name: Generate config (staging/production)
        if: steps.env.outputs.ENV != 'dev'
        run: |
          if [ "${{ steps.env.outputs.ENV }}" = "staging" ]; then
            ./scripts/generate_config.sh staging \
              "${{ secrets.STAGING_BASE_URL }}" \
              "${{ secrets.STAGING_API_KEY }}"
          else
            ./scripts/generate_config.sh production \
              "${{ secrets.PROD_BASE_URL }}" \
              "${{ secrets.PROD_API_KEY }}"
          fi

      # Keystore is only needed for signed builds (staging &amp; production)
      - name: Restore Keystore
        if: steps.env.outputs.ENV != 'dev'
        run: |
          echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 --decode &gt; android/app/upload-keystore.jks

      # Production builds are obfuscated + split debug info for Play Store
      - name: Build artifact
        run: |
          if [ "${{ steps.env.outputs.ENV }}" = "production" ]; then
            flutter build appbundle --release \
              --obfuscate \
              --split-debug-info=build/symbols
          else
            flutter build appbundle --release
          fi

      # Dev and staging go to Firebase App Distribution for internal testing
      - name: Upload to Firebase App Distribution
        if: steps.env.outputs.ENV == 'dev' || steps.env.outputs.ENV == 'staging'
        env:
          FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
          FIREBASE_ANDROID_APP_ID: ${{ secrets.FIREBASE_ANDROID_APP_ID }}
          FIREBASE_GROUPS: ${{ secrets.FIREBASE_GROUPS }}
        run: |
          firebase appdistribution:distribute \
            build/app/outputs/bundle/release/app-release.aab \
            --app "$FIREBASE_ANDROID_APP_ID" \
            --groups "$FIREBASE_GROUPS" \
            --token "$FIREBASE_TOKEN"

      # Only production goes to the Play Store
      - name: Upload to Play Store
        if: steps.env.outputs.ENV == 'production'
        uses: r0adkll/upload-google-play@v1
        with:
          serviceAccountJsonPlainText: ${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_JSON }}
          packageName: com.your.package
          releaseFiles: build/app/outputs/bundle/release/app-release.aab
          track: production

      - name: Notify Team (Success)
        if: success()
        run: |
          echo "Android Build &amp; Release PASSED"
          echo "Environment: ${{ steps.env.outputs.ENV }}"
          echo "Branch: ${{ steps.env.outputs.branch }}"
          echo "By: @${{ github.actor }}"
          echo "Commit: ${{ github.sha }}"

      - name: Notify Team (Failure)
        if: failure()
        run: |
          echo "Android Build &amp; Release FAILED"
          echo "Environment: ${{ steps.env.outputs.ENV }}"
          echo "Branch: ${{ steps.env.outputs.branch }}"
          echo "By: @${{ github.actor }}"
          echo "Commit: ${{ github.sha }}"
          echo "Check the logs and fix the issue before retrying"
</code></pre>
<p>This workflow ensures that whenever code lands on the <strong>develop, staging or production</strong> branch, this action is triggered on a fresh Ubuntu machine.</p>
<p>This is triggered by a simple push to any of the tracked branches, no manual intervention needed.</p>
<p>Let's walk through it piece by piece.</p>
<h3 id="heading-1-the-setup-phase">1. The Setup Phase</h3>
<p>Before any Flutter-specific work happens, the workflow lays the foundation:</p>
<ol>
<li><p><strong>Checkout</strong>: grabs the latest code from the branch that triggered the run (using the more modern <code>actions/checkout@v3</code>).</p>
</li>
<li><p><strong>Java 11 via Temurin</strong>: this is an upgrade from the first workflow we created. Instead of a generic <code>setup-java@v1</code>, this uses the <code>temurin</code> distribution which is the Eclipse's open-source JDK build. It's the current industry standard for Android toolchains.</p>
</li>
<li><p><strong>Flutter (stable)</strong>: this pulls the stable Flutter SDK, version pinned via an environment variable (<code>FLUTTER_VERSION: 'stable'</code>) defined at the job level.</p>
</li>
<li><p><strong>Install dependencies</strong>: this ensures we run <code>flutter pub get</code> to pull all packages</p>
</li>
</ol>
<h3 id="heading-2-environment-detection">2. Environment Detection</h3>
<p>This is where it gets interesting. This workflow also checks and determines the environment which will help us define the next set of instructions to run.</p>
<p>This command reads the branch name from <strong>GITHUB REF</strong> and maps it to its environment label which we already created in one of our helper scripts.</p>
<ul>
<li><p>develop → ENV=dev</p>
</li>
<li><p>staging → ENV=staging</p>
</li>
<li><p>production → ENV=production</p>
</li>
</ul>
<p>It strips the branch name from the full ref path using <code>\({GITHUB_REF##*/}</code>, then writes both the branch name and the resolved <code>ENV</code> value to <code>\)GITHUB_OUTPUT</code>, making them available as named outputs (<code>steps.env.outputs.ENV</code>) for every subsequent step.</p>
<p>This means the rest of the pipeline can branch its behaviour based on which environment it's building for, different API keys, different signing configs, different targets – whatever the app needs.</p>
<h3 id="heading-3-config-injection">3. Config Injection</h3>
<p>With the environment resolved, the next step is injecting the right configuration into the app. This is where the <code>generate_config.sh</code> script we built earlier gets called directly from the workflow.</p>
<p>For the <code>dev</code> environment, hardcoded placeholder values are used. No real secrets are needed, since this build is only meant for internal developer testing:</p>
<pre><code class="language-yaml">- name: Generate config (dev)
  if: steps.env.outputs.ENV == 'dev'
  run: ./scripts/generate_config.sh dev "https://dev.api.example.com" "dev_dummy_key"
</code></pre>
<p>For staging and production, however, real secrets are pulled from GitHub Actions secrets and passed directly into the script:</p>
<pre><code class="language-yaml">- name: Generate config (staging/production)
  if: steps.env.outputs.ENV != 'dev'
  run: |
    if [ "${{ steps.env.outputs.ENV }}" = "staging" ]; then
      ./scripts/generate_config.sh staging \
        "${{ secrets.STAGING_BASE_URL }}" \
        "${{ secrets.STAGING_API_KEY }}"
    else
      ./scripts/generate_config.sh production \
        "${{ secrets.PROD_BASE_URL }}" \
        "${{ secrets.PROD_API_KEY }}"
    fi
</code></pre>
<p>Notice that these two steps use an <code>if</code> condition to make them mutually exclusive. Only one will ever run per job. This keeps the pipeline clean: no complicated branching logic inside the script itself, just a clear decision at the workflow level.</p>
<h3 id="heading-4-keystore-restoration">4. Keystore Restoration</h3>
<p>Android requires signed builds for distribution. The signing keystore file cannot be committed to the repository for obvious security reasons, so it's stored as a Base64-encoded GitHub secret and decoded at build time.</p>
<pre><code class="language-yaml">- name: Restore Keystore
  if: steps.env.outputs.ENV != 'dev'
  run: |
    echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 --decode &gt; android/app/upload-keystore.jks
</code></pre>
<p>This step is skipped entirely for the <code>dev</code> environment because dev builds are unsigned debug artifacts meant purely for internal testing on Firebase App Distribution. Only staging and production builds need to be properly signed.</p>
<p>To encode your keystore file as a Base64 string for storing in GitHub secrets, you have to run this locally:</p>
<pre><code class="language-yaml">base64 -i upload-keystore.jks | pbcopy
</code></pre>
<p>This copies the encoded string to your clipboard, which you can then paste directly into your GitHub repository secrets.</p>
<h3 id="heading-5-building-the-artifact">5. Building the Artifact</h3>
<p>With the environment configured and the keystore in place, the workflow builds the app bundle:</p>
<pre><code class="language-yaml">- name: Build artifact
  run: |
    if [ "${{ steps.env.outputs.ENV }}" = "production" ]; then
      flutter build appbundle --release \
        --obfuscate \
        --split-debug-info=build/symbols
    else
      flutter build appbundle --release
    fi
</code></pre>
<p>There's a deliberate difference between how production and non-production builds are compiled.</p>
<p>For production:</p>
<ul>
<li><p><code>--obfuscate</code> renames method and class names in the compiled output, making it significantly harder to reverse engineer the app</p>
</li>
<li><p><code>--split-debug-info=build/symbols</code> extracts the debug symbols into a separate directory at <code>build/symbols</code></p>
</li>
</ul>
<p>These symbols are what <code>upload_symbols.sh</code> later ships to Sentry, so obfuscated crash reports remain readable in your monitoring dashboard.</p>
<p>For dev and staging, neither flag is used. This keeps build times faster and makes local debugging easier since stack traces remain human-readable.</p>
<h3 id="heading-6-distributing-to-firebase-app-distribution">6. Distributing to Firebase App Distribution</h3>
<p>Once the app bundle is built, dev and staging builds are uploaded to Firebase App Distribution so testers can install them immediately:</p>
<pre><code class="language-yaml">- name: Upload to Firebase App Distribution
  if: steps.env.outputs.ENV == 'dev' || steps.env.outputs.ENV == 'staging'
  env:
    FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
    FIREBASE_ANDROID_APP_ID: ${{ secrets.FIREBASE_ANDROID_APP_ID }}
    FIREBASE_GROUPS: ${{ secrets.FIREBASE_GROUPS }}
  run: |
    firebase appdistribution:distribute \
      build/app/outputs/bundle/release/app-release.aab \
      --app "$FIREBASE_ANDROID_APP_ID" \
      --groups "$FIREBASE_GROUPS" \
      --token "$FIREBASE_TOKEN"
</code></pre>
<p>Three secrets power this step:</p>
<ul>
<li><p><code>FIREBASE_TOKEN</code>: the authentication token generated from <code>firebase login:ci</code></p>
</li>
<li><p><code>FIREBASE_ANDROID_APP_ID</code>: the app identifier from the Firebase console</p>
</li>
<li><p><code>FIREBASE_GROUPS</code>: the tester group(s) that should receive the build notification</p>
</li>
</ul>
<p>Once this step completes, every tester in the specified groups receives an email with a direct download link. No one needs to manually share an APK file over Slack or email.</p>
<h3 id="heading-7-deploying-to-the-play-store">7. Deploying to the Play Store</h3>
<p>Production builds skip Firebase entirely and goes straight to the Google Play Store:</p>
<pre><code class="language-yaml">- name: Upload to Play Store
  if: steps.env.outputs.ENV == 'production'
  uses: r0adkll/upload-google-play@v1
  with:
    serviceAccountJsonPlainText: ${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_JSON }}
    packageName: com.your.package
    releaseFiles: build/app/outputs/bundle/release/app-release.aab
    track: production
</code></pre>
<p>This uses the <code>r0adkll/upload-google-play</code> GitHub Action, which handles the Google Play API interaction under the hood. The only requirements are:</p>
<ul>
<li><p>A Google Play service account with the correct permissions, stored as a JSON secret</p>
</li>
<li><p>The correct package name matching what is registered in your Play Console</p>
</li>
<li><p>The <code>track</code> set to <code>production</code> (you can also use <code>internal</code>, <code>alpha</code>, or <code>beta</code> depending on your release strategy)</p>
</li>
</ul>
<p>Replace <code>com.your.package</code> with your actual application ID (the same one defined in your <code>build.gradle</code> file).</p>
<h3 id="heading-8-the-notification-layer">8. The Notification Layer</h3>
<p>Just like the PR checks workflow, this workflow reports its outcome clearly:</p>
<pre><code class="language-yaml">- name: Notify Team (Success)
  if: success()
  run: |
    echo "Android Build &amp; Release PASSED"
    echo "Environment: ${{ steps.env.outputs.ENV }}"
    echo "Branch: ${{ steps.env.outputs.branch }}"
    echo "By: @${{ github.actor }}"
    echo "Commit: ${{ github.sha }}"

- name: Notify Team (Failure)
  if: failure()
  run: |
    echo "Android Build &amp; Release FAILED"
    echo "Environment: ${{ steps.env.outputs.ENV }}"
    echo "Branch: ${{ steps.env.outputs.branch }}"
    echo "By: @${{ github.actor }}"
    echo "Commit: ${{ github.sha }}"
    echo "Check the logs and fix the issue before retrying 🔧"
</code></pre>
<p>The success notification includes the environment, branch, actor, and shares everything needed to trace exactly what was deployed and who triggered it.</p>
<p>The failure notification includes the same context, with a clear call to action.</p>
<h2 id="heading-workflow-3-iosyml">Workflow #3: iOS.yml</h2>
<p>iOS CI/CD is more complex than Android by nature. This is because Apple's signing requirements involve certificates, provisioning profiles, and entitlements that all need to be in the right place before Xcode will produce a valid archive.</p>
<p>Fastlane helps us handles all of that complexity, and the workflow simply calls into it.</p>
<p>Here is the full <code>ios.yml</code>:</p>
<pre><code class="language-yaml">name: iOS Build &amp; Release

on:
  push:
    branches:
      - develop
      - staging
      - production

jobs:
  ios:
    runs-on: macos-latest
    env:
      FLUTTER_VERSION: 'stable'

    steps:
      - name: Checkout code
        uses: actions/checkout@v3

      - name: Setup Flutter
        uses: subosito/flutter-action@v2
        with:
          flutter-version: ${{ env.FLUTTER_VERSION }}

      - name: Install dependencies
        run: flutter pub get

      - name: Determine environment
        id: env
        run: |
          echo "branch=\({GITHUB_REF##*/}" &gt;&gt; \)GITHUB_OUTPUT
          if [ "${GITHUB_REF##*/}" = "develop" ]; then
            echo "ENV=dev" &gt;&gt; $GITHUB_OUTPUT
          elif [ "${GITHUB_REF##*/}" = "staging" ]; then
            echo "ENV=staging" &gt;&gt; $GITHUB_OUTPUT
          else
            echo "ENV=production" &gt;&gt; $GITHUB_OUTPUT
          fi

      - name: Generate config (dev)
        if: steps.env.outputs.ENV == 'dev'
        run: ./scripts/generate_config.sh dev "https://dev.api.example.com" "dev_dummy_key"

      - name: Generate config (staging/production)
        if: steps.env.outputs.ENV != 'dev'
        run: |
          if [ "${{ steps.env.outputs.ENV }}" = "staging" ]; then
            ./scripts/generate_config.sh staging \
              "${{ secrets.STAGING_BASE_URL }}" \
              "${{ secrets.STAGING_API_KEY }}"
          else
            ./scripts/generate_config.sh production \
              "${{ secrets.PROD_BASE_URL }}" \
              "${{ secrets.PROD_API_KEY }}"
          fi

      - name: Install Fastlane
        run: |
          cd ios
          gem install bundler
          bundle install

      - name: Import signing certificate
        if: steps.env.outputs.ENV != 'dev'
        run: |
          echo "${{ secrets.IOS_CERTIFICATE_BASE64 }}" | base64 --decode &gt; ios/cert.p12
          security create-keychain -p "" build.keychain
          security import ios/cert.p12 -k build.keychain -P "${{ secrets.IOS_CERTIFICATE_PASSWORD }}" -T /usr/bin/codesign
          security list-keychains -s build.keychain
          security default-keychain -s build.keychain
          security unlock-keychain -p "" build.keychain
          security set-key-partition-list -S apple-tool:,apple: -s -k "" build.keychain

      - name: Install provisioning profile
        if: steps.env.outputs.ENV != 'dev'
        run: |
          echo "${{ secrets.IOS_PROVISIONING_PROFILE_BASE64 }}" | base64 --decode &gt; profile.mobileprovision
          mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
          cp profile.mobileprovision ~/Library/MobileDevice/Provisioning\ Profiles/

      - name: Build iOS (dev)
        if: steps.env.outputs.ENV == 'dev'
        run: flutter build ios --release --no-codesign

      - name: Build &amp; distribute to TestFlight (staging)
        if: steps.env.outputs.ENV == 'staging'
        env:
          APP_STORE_CONNECT_API_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ID }}
          APP_STORE_CONNECT_API_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_ISSUER_ID }}
          APP_STORE_CONNECT_API_KEY_CONTENT: ${{ secrets.APP_STORE_CONNECT_API_KEY_CONTENT }}
        run: |
          cd ios
          bundle exec fastlane beta

      - name: Build &amp; release to App Store (production)
        if: steps.env.outputs.ENV == 'production'
        env:
          APP_STORE_CONNECT_API_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ID }}
          APP_STORE_CONNECT_API_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_ISSUER_ID }}
          APP_STORE_CONNECT_API_KEY_CONTENT: ${{ secrets.APP_STORE_CONNECT_API_KEY_CONTENT }}
        run: |
          cd ios
          bundle exec fastlane release

      - name: Upload Sentry symbols (production only)
        if: steps.env.outputs.ENV == 'production'
        env:
          SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
          SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
          SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
        run: ./scripts/upload_symbols.sh $(git rev-parse --short HEAD)

      - name: Notify Team (Success)
        if: success()
        run: |
          echo "iOS Build &amp; Release PASSED"
          echo "Environment: ${{ steps.env.outputs.ENV }}"
          echo "Branch: ${{ steps.env.outputs.branch }}"
          echo "By: @${{ github.actor }}"
          echo "Commit: ${{ github.sha }}"

      - name: Notify Team (Failure)
        if: failure()
        run: |
          echo "iOS Build &amp; Release FAILED"
          echo "Environment: ${{ steps.env.outputs.ENV }}"
          echo "Branch: ${{ steps.env.outputs.branch }}"
          echo "By: @${{ github.actor }}"
          echo "Commit: ${{ github.sha }}"
          echo "Check the logs and fix the issue before retrying 🔧"
</code></pre>
<p>Let's walk through what is different about this workflow compared to that of android.</p>
<h3 id="heading-1-macos-runner">1. MacOS Runner</h3>
<pre><code class="language-yaml">runs-on: macos-latest
</code></pre>
<p>This is the major difference.</p>
<p>iOS builds require Xcode, which only runs on macOS. GitHub Actions provides hosted macOS runners, but they are significantly more expensive in terms of compute minutes than Ubuntu runners. Just keep that in mind when thinking about build frequency.</p>
<p>No Java setup is needed here. Flutter on iOS compiles through Xcode directly, so the toolchain requirements are different.</p>
<h3 id="heading-2-installing-fastlane">2. Installing Fastlane</h3>
<pre><code class="language-yaml">- name: Install Fastlane
  run: |
    cd ios
    gem install bundler
    bundle install
</code></pre>
<p>Fastlane is a Ruby-based automation tool that handles certificate management, building, and uploading to TestFlight and the App Store.</p>
<p>This step navigates into the <code>ios/</code> directory and installs Fastlane along with all its dependencies as defined in the project's <code>Gemfile</code>.</p>
<p>Your <code>ios/Gemfile</code> should look something like this:</p>
<pre><code class="language-ruby">source "https://rubygems.org"

gem "fastlane"
</code></pre>
<p>And your <code>ios/fastlane/Fastfile</code> should define at minimum two lanes: one for staging (TestFlight) and one for production (App Store):</p>
<pre><code class="language-ruby">default_platform(:ios)

platform :ios do
  lane :beta do
    build_app(scheme: "Runner", export_method: "app-store")
    upload_to_testflight(skip_waiting_for_build_processing: true)
  end

  lane :release do
    build_app(scheme: "Runner", export_method: "app-store")
    upload_to_app_store(force: true, skip_screenshots: true, skip_metadata: true)
  end
end
</code></pre>
<h3 id="heading-3-certificate-and-provisioning-profile-setup">3. Certificate and Provisioning Profile Setup</h3>
<p>This is the step that trips most teams up the first time. Apple's code signing requires two things to be present on the machine:</p>
<ol>
<li><p>The signing certificate (a <code>.p12</code> file)</p>
</li>
<li><p>The provisioning profile</p>
</li>
</ol>
<p>Both are stored as Base64-encoded GitHub secrets and restored at build time.</p>
<pre><code class="language-yaml">- name: Import signing certificate
  if: steps.env.outputs.ENV != 'dev'
  run: |
    echo "${{ secrets.IOS_CERTIFICATE_BASE64 }}" | base64 --decode &gt; ios/cert.p12
    security create-keychain -p "" build.keychain
    security import ios/cert.p12 -k build.keychain -P "${{ secrets.IOS_CERTIFICATE_PASSWORD }}" -T /usr/bin/codesign
    security list-keychains -s build.keychain
    security default-keychain -s build.keychain
    security unlock-keychain -p "" build.keychain
    security set-key-partition-list -S apple-tool:,apple: -s -k "" build.keychain
</code></pre>
<p>Breaking this down step by step:</p>
<ul>
<li><p>Decodes the Base64 certificate and write it to <code>cert.p12</code></p>
</li>
<li><p>Creates a temporary keychain called <code>build.keychain</code> with an empty password</p>
</li>
<li><p>Imports the certificate into that keychain, granting codesign access</p>
</li>
<li><p>Sets it as the default keychain so Xcode finds it automatically</p>
</li>
<li><p>Unlocks the keychain so it can be used non-interactively</p>
</li>
<li><p>Sets partition list to allow access without repeated prompts</p>
</li>
</ul>
<p>The provisioning profile step is simpler:</p>
<pre><code class="language-yaml">- name: Install provisioning profile
  if: steps.env.outputs.ENV != 'dev'
  run: |
    echo "${{ secrets.IOS_PROVISIONING_PROFILE_BASE64 }}" | base64 --decode &gt; profile.mobileprovision
    mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
    cp profile.mobileprovision ~/Library/MobileDevice/Provisioning\ Profiles/
</code></pre>
<p>It decodes the profile and copies it into the exact directory where Xcode expects to find provisioning profiles on any macOS system.</p>
<p>To encode your certificate and profile locally, you can run these:</p>
<pre><code class="language-bash">base64 -i Certificates.p12 | pbcopy   # for the certificate
base64 -i YourApp.mobileprovision | pbcopy   # for the provisioning profile
</code></pre>
<h3 id="heading-4-building-for-each-environment">4. Building for Each Environment</h3>
<p>Dev builds skip signing entirely. They're built without code signing just to verify the project compiles correctly on a clean machine:</p>
<pre><code class="language-yaml">- name: Build iOS (dev)
  if: steps.env.outputs.ENV == 'dev'
  run: flutter build ios --release --no-codesign
</code></pre>
<p>Staging builds go through Fastlane's <code>beta</code> lane, which builds and uploads to TestFlight. Production builds go through Fastlane's <code>release</code> lane, which submits directly to App Store Connect.</p>
<p>Both staging and production steps consume the same three App Store Connect API key secrets: the key ID, the issuer ID, and the key content itself.</p>
<p>Fastlane uses these to authenticate with Apple's API without requiring a manual Apple ID login.</p>
<h3 id="heading-5-sentry-symbol-upload">5. Sentry Symbol Upload</h3>
<p>On production iOS builds, the <code>upload_symbols.sh</code> script runs after the build completes, passing the current short commit SHA as the release identifier:</p>
<pre><code class="language-yaml">- name: Upload Sentry symbols (production only)
  if: steps.env.outputs.ENV == 'production'
  env:
    SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
    SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
    SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
  run: ./scripts/upload_symbols.sh $(git rev-parse --short HEAD)
</code></pre>
<p>This is the same script explained earlier in the helper scripts section. It creates a Sentry release, uploads the debug information files, and finalizes the release. Any production crash from this point forward will map back to real, readable source code in your Sentry dashboard.</p>
<h2 id="heading-secrets-and-configuration-reference">Secrets and Configuration Reference</h2>
<p>For this entire pipeline to work, you need to configure the following secrets in your GitHub repository. Go to <strong>Settings → Secrets and variables → Actions → New repository secret</strong> to add each one.</p>
<p><strong>Shared (used across environments):</strong></p>
<table>
<thead>
<tr>
<th>Secret</th>
<th>Description</th>
</tr>
</thead>
<tbody><tr>
<td><code>FIREBASE_TOKEN</code></td>
<td>Generated via <code>firebase login:ci</code> on your local machine</td>
</tr>
<tr>
<td><code>FIREBASE_ANDROID_APP_ID</code></td>
<td>Android app ID from your Firebase console</td>
</tr>
<tr>
<td><code>FIREBASE_GROUPS</code></td>
<td>Comma-separated tester group names in Firebase</td>
</tr>
<tr>
<td><code>SENTRY_AUTH_TOKEN</code></td>
<td>Auth token from your Sentry account settings</td>
</tr>
<tr>
<td><code>SENTRY_ORG</code></td>
<td>Your Sentry organization slug</td>
</tr>
<tr>
<td><code>SENTRY_PROJECT</code></td>
<td>Your Sentry project slug</td>
</tr>
</tbody></table>
<p><strong>Staging:</strong></p>
<table>
<thead>
<tr>
<th>Secret</th>
<th>Description</th>
</tr>
</thead>
<tbody><tr>
<td><code>STAGING_BASE_URL</code></td>
<td>Your staging API base URL</td>
</tr>
<tr>
<td><code>STAGING_API_KEY</code></td>
<td>Your staging API or encryption key</td>
</tr>
</tbody></table>
<p><strong>Production:</strong></p>
<table>
<thead>
<tr>
<th>Secret</th>
<th>Description</th>
</tr>
</thead>
<tbody><tr>
<td><code>PROD_BASE_URL</code></td>
<td>Your production API base URL</td>
</tr>
<tr>
<td><code>PROD_API_KEY</code></td>
<td>Your production API or encryption key</td>
</tr>
</tbody></table>
<p><strong>Android:</strong></p>
<table>
<thead>
<tr>
<th>Secret</th>
<th>Description</th>
</tr>
</thead>
<tbody><tr>
<td><code>ANDROID_KEYSTORE_BASE64</code></td>
<td>Base64-encoded <code>.jks</code> keystore file</td>
</tr>
<tr>
<td><code>GOOGLE_PLAY_SERVICE_ACCOUNT_JSON</code></td>
<td>Full JSON content of your Play Console service account</td>
</tr>
</tbody></table>
<p><strong>iOS:</strong></p>
<table>
<thead>
<tr>
<th>Secret</th>
<th>Description</th>
</tr>
</thead>
<tbody><tr>
<td><code>IOS_CERTIFICATE_BASE64</code></td>
<td>Base64-encoded <code>.p12</code> signing certificate</td>
</tr>
<tr>
<td><code>IOS_CERTIFICATE_PASSWORD</code></td>
<td>Password protecting the <code>.p12</code> file</td>
</tr>
<tr>
<td><code>IOS_PROVISIONING_PROFILE_BASE64</code></td>
<td>Base64-encoded <code>.mobileprovision</code> file</td>
</tr>
<tr>
<td><code>APP_STORE_CONNECT_API_KEY_ID</code></td>
<td>Key ID from App Store Connect → Users &amp; Access → Keys</td>
</tr>
<tr>
<td><code>APP_STORE_CONNECT_API_ISSUER_ID</code></td>
<td>Issuer ID from the same App Store Connect page</td>
</tr>
<tr>
<td><code>APP_STORE_CONNECT_API_KEY_CONTENT</code></td>
<td>The full content of the downloaded <code>.p8</code> key file</td>
</tr>
</tbody></table>
<p>None of these values should ever appear in your codebase. If any secret is accidentally committed, rotate it immediately.</p>
<h2 id="heading-end-to-end-flow">End-to-End Flow</h2>
<p>With all three workflows in place, here is exactly what happens from the moment a developer opens a pull request to the moment a user receives an update:</p>
<h3 id="heading-1-developer-opens-a-pr-into-develop">1. Developer Opens a PR into <code>develop</code></h3>
<p>The <code>pr_checks.yml</code> workflow fires. It runs formatting checks, static analysis, and the full test suite. If anything fails, the PR cannot be merged and the team is notified immediately. The developer fixes the issues and pushes again, which triggers a fresh run.</p>
<h3 id="heading-2-pr-is-approved-and-merged-into-develop">2. PR is Approved and Merged into <code>develop</code></h3>
<p>The <code>android.yml</code> and <code>ios.yml</code> workflows both fire on the push event. They detect the environment as <code>dev</code>, inject placeholder config, build unsigned artifacts, and upload them to Firebase App Distribution. Testers receive an email and can install the build on their devices within minutes – no one shared a file manually.</p>
<h3 id="heading-3-develop-is-merged-into-staging">3. <code>develop</code> is Merged into <code>staging</code></h3>
<p>Both platform workflows fire again. This time the environment resolves to <code>staging</code>. Real secrets are injected, builds are properly signed, and the artifacts go to Firebase App Distribution (Android) and TestFlight (iOS). QA begins testing the staging build against the staging API.</p>
<h3 id="heading-4-staging-is-merged-into-production">4. <code>staging</code> is merged into <code>production</code></h3>
<p>Both workflows fire one final time. Production secrets are injected, builds are obfuscated and signed, debug symbols are uploaded to Sentry, and the final artifacts are submitted to the Google Play Store and App Store Connect. The release goes live on Apple and Google's review timelines with no further human intervention required.</p>
<p>From that first PR to a production submission, not a single command was run manually.</p>
<h2 id="heading-conclusion">Conclusion</h2>
<p>Building this pipeline is an upfront investment that pays off from the very first release cycle. What used to be a sequence of error-prone manual steps building locally, signing, uploading, switching configs, and hoping nothing was mixed up is now a fully automated, auditable, and repeatable process that runs the moment code moves between branches.</p>
<p>The architecture we built here does more than just automate builds. The PR quality gate enforces team standards consistently, so code review becomes a conversation about intent rather than a hunt for formatting issues. The environment-aware config injection eliminates an entire class of production incidents where staging keys made it into a live release. The Sentry symbol upload means your team can debug production crashes with full source visibility even from an obfuscated binary.</p>
<p>Every piece of this pipeline also runs locally. The helper scripts in the <code>scripts/</code> folder are plain Bash so you can call them from your terminal the same way CI calls them. This eliminates the frustrating cycle of pushing a commit just to test a pipeline change.</p>
<p>As your team grows, this foundation scales with you. You can extend the <code>pr_checks.yml</code> to enforce code coverage thresholds, add a performance benchmarking job, or introduce a dedicated security scanning step. You can extend the platform workflows to support multiple flavors, multiple Firebase projects, or staged rollouts on the Play Store. The architecture stays the same – you're just adding new steps to an already working system.</p>
<p>This ensures that standards are met, code quality remains high, you have a proper team structure, clear process and automated post development activities are in place – and at the end of the day, you'll have an optimized engineering approach that will help your team in so many ways.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Key Metrics That Can Make or Break Your Startup ]]>
                </title>
                <description>
                    <![CDATA[ If you’ve built something worth pitching – something more than a fancy hobby with a login screen – you need to know your numbers. Not "I’ll get back to you" know them, know them like you know your co-founder's coffee order. I have seen too many found... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/key-metrics-that-can-make-or-break-your-startup/</link>
                <guid isPermaLink="false">6894eea1ba8a1138e41767a1</guid>
                
                    <category>
                        <![CDATA[ startup ]]>
                    </category>
                
                    <category>
                        <![CDATA[ finance ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Founder ]]>
                    </category>
                
                    <category>
                        <![CDATA[ ideas ]]>
                    </category>
                
                    <category>
                        <![CDATA[ business ]]>
                    </category>
                
                    <category>
                        <![CDATA[ beginner ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Business and Finance  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ metrics ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Product Management ]]>
                    </category>
                
                    <category>
                        <![CDATA[ performance ]]>
                    </category>
                
                    <category>
                        <![CDATA[ #reporting ]]>
                    </category>
                
                    <category>
                        <![CDATA[ ycombinator ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Aditya Vikram Kashyap ]]>
                </dc:creator>
                <pubDate>Thu, 07 Aug 2025 18:21:21 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1754590848364/2e68c07e-d5d8-4da7-bc41-3798c991bfbc.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>If you’ve built something worth pitching – something more than a fancy hobby with a login screen – you need to know your numbers. Not "I’ll get back to you" know them, know them like you know your co-founder's coffee order.</p>
<p>I have seen too many founders who are smart, legit, and ambitious get ghosted by investors simply because they couldn't walk through their unit economics.</p>
<p>It's not personal. It's math.</p>
<p>So here it is: Numbers that will either carry your pitch or quietly kill it, explained by someone who has sat through them time and time again, with examples, and no fluff.</p>
<h3 id="heading-heres-what-well-cover">Here’s what we’ll cover:</h3>
<ul>
<li><p><a class="post-section-overview" href="#heading-1-burn-rate-how-fast-are-you-lighting-your-cash-on-fire">1. Burn Rate: How Fast Are You Lighting Your Cash on Fire?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-2-cash-runway-how-long-before-you-run-out-of-cash">2. Cash Runway: How Long Before You Run Out of Cash?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-3-cac-customer-acquisition-cost-how-much-does-it-cost-to-convince-someone-to-pay-you">3. CAC (Customer Acquisition Cost): How Much Does it Cost to Convince Someone to Pay You?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-4-customer-lifetime-value-ltv-how-much-is-one-customer-worth-over-time">4. Customer Lifetime Value (LTV): How Much is One Customer Worth Over Time?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-5-gross-profit-margin-what-do-you-actually-keep-after-delivering-your-service-or-product">5. Gross Profit Margin: What Do You Actually Keep After Delivering Your Service or Product?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-6-monthly-annual-recurring-revenue-mrr-arr">6. Monthly / Annual Recurring Revenue (MRR / ARR)</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-7-churn-rate-how-fast-are-your-users-leaving">7. Churn Rate: How Fast Are Your Users Leaving</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-8-payback-period-how-long-before-you-recover-your-cac">8. Payback Period: How Long Before You Recover Your CAC?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-9-earnings-before-interest-taxes-depreciation-and-amortization-ebitda">9. Earnings Before Interest, Taxes, Depreciation, and Amortization (EBITDA)</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-10-valuation-whats-your-company-worth-and-what-supports-that-number">10. Valuation: What’s Your Company Worth – and What Supports that Number?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-real-talk-before-you-close-that-tab">Real Talk Before You Close That Tab</a></p>
<ul>
<li><p><a class="post-section-overview" href="#heading-real-experience">Real Experience</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-why-this-matters">Why This Matters</a></p>
</li>
</ul>
</li>
<li><p><a class="post-section-overview" href="#heading-conclusion-and-final-thoughts">Conclusion and Final Thoughts</a></p>
</li>
</ul>
<h2 id="heading-1-burn-rate-how-fast-are-you-lighting-your-cash-on-fire">1. Burn Rate: How Fast Are You Lighting Your Cash on Fire?</h2>
<p>Burn rate is the speed at which a startup is spending its cash. Basically, how fast are you consuming your venture capital to cover over overhead until you generate positive cash flow from operations? It’s a measure of negative cash flow.</p>
<p>If you’re spending $80K a month to keep the lights on (payroll, AWS, your workspace snacks, and so on), that’s how much cash you’re burning each month. But many startups calculate two different burn rates: gross burn (how much cash you’re spending, ignoring any revenue), and net burn (monthly operating experiences minus any cash you take in each month). Net burn basically measures how fast your cash is shrinking, and it’s often what investors care more about.</p>
<p>Real talk: investors want to know when the plane runs out of fuel before they board. Thats what this metric helps them understand – how fast you’re going through the money you have.</p>
<p>At some point, if a company has a high burn rate, it has to reduce structural costs by cutting expenditures on labor, rent, marketing, and/or capital equipment. The burn rate is an important metric for any company, but it's particularly important for startups that aren't yet generating revenue. It tells managers and investors how fast the company is spending its capital</p>
<p><a target="_blank" href="https://www.youtube.com/watch?v=BpS3shZI35A">Watch this video</a> to understand more about Burn Rate.</p>
<h2 id="heading-2-cash-runway-how-long-before-you-run-out-of-cash">2. Cash Runway: How Long Before You Run Out of Cash?</h2>
<p>Cash runway tells how long a startup can continue to operate at a certain burn rate until they are out of cash. For startups without revenue, you can calculate this by dividing available cash by total monthly expenses. Available cash is defined as the funds that are accessible now or can be accessed at a later time relatively quickly to pay for expenses.</p>
<p>When you’re making this calculation, it’s important to not include any anticipated fundraising and other uncertain sources of capital.</p>
<p>Actively managing cash runway is crucial for startup survival and growth. With a significant percentage of startups failing due to cash shortages, founders need to closely monitor their cash burn rate and runway.</p>
<p>The length of runway needed varies based on factors including the startup’s stage, industry, and milestones. In tighter venture capital markets, startups should plan for longer runways and consider strategies such as increasing revenue, reducing expenses, or raising additional capital. Regularly updating financial models and understanding metrics like the burn multiple can help you make informed decisions to extend your runway and align your growth ambitions with financial stability.</p>
<p>While it’s a simple calculation at face value, a cash runway analysis is nuanced and unique to every startup and can be impacted by a multitude of circumstances.</p>
<p>To calculate this, you just divide your total cash reserves by the amount you’re spending each month. Say you’ve got $250K in the bank and you’re spending $50K/month: 250/50 = 5. So you’ve got 5 months. Not 6. Not “it depends” – 5. That’s your runway.</p>
<p>Investors ask “If we don’t fund you, how long do you survive?” If you don’t know that answer, you're not fundraising – you’re freelancing with hope.</p>
<p><a target="_blank" href="https://youtu.be/vtaMwtQgFGE?si=-Hcf_h_LxKYChdBa">Here is a video</a> that explains cash runway with real world examples and the thought process behind it.</p>
<p>And <a target="_blank" href="https://www.jpmorgan.com/insights/business-planning/does-your-startup-have-enough-runway-to-survive">here’s an article</a> from JP Morgan breaking down cash runway, its importance, and what can you to to maximize it.</p>
<h3 id="heading-burn-rate-vs-runway">Burn Rate vs Runway</h3>
<p>So, let’s just make this super clear: burn rate is simply how much you spend each month to run your operation – that is, your negative cash flow. Runway is how many months there are left before your bank balance reaches zero.</p>
<p>So again, why do these numbers matter?</p>
<p>Because burn rate tells you how quickly you need to find more revenue or funding. Runway tells investors whether you are going to still be around by the time they finish their due diligence.</p>
<p>They are not just numbers. They are your survival clock.</p>
<p>Smart founders utilize these metrics to:</p>
<ul>
<li><p>Trim the fat without cutting muscle – know what to focus on and what to let go</p>
</li>
<li><p>Forecast hiring/fundraising deadlines – know the process and prep for it. Numbers don’t line but they sure can get you ghosted.</p>
</li>
<li><p>Assure investors you’re not going to come knocking again in 90 days – establishing credibility is key, make an investor realize its not just a hobby, you mean business.</p>
</li>
</ul>
<p>The goal: Extend runway without stalling momentum. Keep the plane in the air, while building a bigger engine.</p>
<h2 id="heading-3-cac-customer-acquisition-cost-how-much-does-it-cost-to-convince-someone-to-pay-you">3. CAC (Customer Acquisition Cost): How Much Does it Cost to Convince Someone to Pay You?</h2>
<p>Cost of acquisition refers to the entire cost that a business incurs to obtain a new client or asset. This includes the purchase price, shipping, installation, and marketing costs for the asset acquired. CAC takes into account the total expenditure on all marketing, advertising, and sales for the period, which you then divide by the number of new customers for the period.</p>
<p>In this case, all the upfront costs incurred to purchase a business asset, including equipment or inventory, are part of the cost of acquisition. Cost of acquisition includes:</p>
<ul>
<li><p>Purchase price of the item</p>
</li>
<li><p>Costs to ship it to its point of use</p>
</li>
<li><p>Costs to install the item</p>
</li>
<li><p>Costs to get it up and running (in the case of equipment) or ready for sale (in the case of inventory) condition</p>
</li>
<li><p>Marketing sales teams salaries</p>
</li>
<li><p>All sales and consulting marketing expenses geared to get new consumers should all be included</p>
</li>
</ul>
<p><strong>Formula:</strong><br>CAC = (Total Marketing + Sales Expenses) / Number of New Customers Acquired</p>
<p>Say you spent $10K last month across paid ads, content creation, outbound campaigns, and sales team costs. You onboarded 100 new customers, so your CAC = $100.</p>
<p>But is that good?</p>
<p>It depends on:</p>
<ul>
<li><p>Your pricing model (one-time vs. subscription)</p>
</li>
<li><p>Your margin (how much of that sale do you actually keep?)</p>
</li>
<li><p>Your customer retention (how long do they stick around?)</p>
</li>
</ul>
<p>If you’re selling a $20 product once, a $100 CAC is a non-starter. But if that customer brings in $50/month for 12 months, you’ve got a solid return.</p>
<p><strong>Watch for red flags:</strong></p>
<ul>
<li><p>CAC is rising but revenue isn’t</p>
</li>
<li><p>You’re overly reliant on paid ads (especially if organic/referral is flat)</p>
</li>
<li><p>You don’t know CAC by channel (averages hide leaks)</p>
</li>
</ul>
<p>A healthy CAC is one that pays itself back quickly and can be improved over time as you optimize funnels and messaging</p>
<p><a target="_blank" href="https://www.youtube.com/watch?v=KFJ3ip30QPM">Here is a video</a> that breaks down CAC for you.</p>
<h2 id="heading-4-customer-lifetime-value-ltv-how-much-is-one-customer-worth-over-time">4. Customer Lifetime Value (LTV): How Much is One Customer Worth Over Time?</h2>
<p>Customer Lifetime Value is the average monetary value of each customer to your business. LTV takes into account how much a unique customer is expected to spend with your business. It’s an important metric so you know how much new customers are worth to your business over their lifespan as a customer.</p>
<p>Let’s say you charge $25/month. The average customer sticks around 12 months.<br>LTV = $300.</p>
<p>In this case, if your CAC is $80? You’re in the green. But if it’s $350? You’re basically paying people to hang out (and losing money on them).</p>
<p>Now, let’s connect this to CAC.</p>
<p>Say your CAC is $80. You’re doing fine – your LTV is ~4x CAC. That’s what investors want to see.</p>
<p>Rule of thumb: you want your LTV to be at least 3x your CAC. A 1:1 ratio means you’re barely breaking even, before operational costs and the math stops working at scale. So if you can hit a 3:1 ratio, great – and based off my experience, your business will be much more appealing if it’s closer to 5:1.</p>
<p>And keep in mind that different models can have different thresholds. For example, a SaaS company with low churn can afford higher CACs, while an e-commerce platform might need faster payback. And marketplaces and freemium models may have lower LTV per user, but they can often more easily offset it with volume.</p>
<p>If you don’t know your LTV or can’t defend it with data, it becomes hard to justify spend – and easy for investors to walk.</p>
<p>If you want to know more, <a target="_blank" href="https://www.youtube.com/watch?v=vA1YX8963ts">this video</a> walks you through the basics.</p>
<p>And <a target="_blank" href="https://www.youtube.com/watch?v=773zBQVPx_Q">here’s a video</a> that beautifully explains the CAC and LTV relationship.</p>
<h2 id="heading-5-gross-profit-margin-what-do-you-actually-keep-after-delivering-your-service-or-product">5. Gross Profit Margin: What Do You Actually Keep After Delivering Your Service or Product?</h2>
<p>Gross profit margin shows the amount of money a business collects after it pays for all its expenses. It’s usually calculated as a percentage of sales. This specific metric is also referred to as the gross margin ratio.</p>
<p>Companies use gross margin as a measure of how production costs relate to revenue. If a company's gross margin falls because it is making less revenue, it may try to cut labor costs, find cheaper suppliers of materials, or increase prices to increase revenue.</p>
<p>Gross profit margins can also allow a business to measure how efficient a company is, or compare two very differently sized companies that share a common revenue stream or product</p>
<p>If you sell a subscription for $50/month and it costs you $10/month to host, maintain, and support it, your gross margin is 80%.</p>
<ul>
<li><p>Good: SaaS companies often hit 70–90%.</p>
</li>
<li><p>Bad: If you're below 30%, your "scalable" business will collapse under weight.</p>
</li>
</ul>
<p>Want to know the conceptual math behind this metric and how it differs from Profit Margin? <a target="_blank" href="https://www.youtube.com/watch?v=9xAMe0QBFhU&amp;t=45s">Here is a fantastic video</a> that easily breaks it down.</p>
<h2 id="heading-6-monthly-annual-recurring-revenue-mrr-arr">6. Monthly / Annual Recurring Revenue (MRR / ARR)</h2>
<p>Annual recurring revenue (ARR) is revenue a company expects to see from its product and service offerings, calculated over the course of a year. Companies that sell annual subscriptions like using ARR as a sales metric to track what they anticipate making in a year.</p>
<p>ARR tends to be used if companies sell a product or service in the software as a service (SaaS) space, but it can also be useful in terms of streaming services, cell phone bills, and (almost) anything else with a predictable, recurring charge.</p>
<p>ARR is calculated annually, whereas monthly recurring revenue (MRR) is calculated monthly. MRR is useful in that it shows what’s happening on a month-to-month basis. For example, if you change your price in April, you can see the immediate effects of that change in May. MRR also helps track fluctuations in revenue based on outside factors like holiday shopping seasons and economic conditions.</p>
<p>In a nutshell, Monthly / Annual Recurring Revenue = predictable income.</p>
<p>If you’re pulling $20K/month in subscriptions, that’s $240K ARR. Simple.</p>
<p>What investors care about:</p>
<ul>
<li><ul>
<li><p>Is it growing?</p>
<ul>
<li><p>How fast?</p>
</li>
<li><p>And how stable is it?</p>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<p><a target="_blank" href="https://youtu.be/qwo7WFWusO4?si=pCelTr2slb2OLuw9">Here is a founder breaking down the metric</a> and explaining the relationship between MRR/ARR.</p>
<h2 id="heading-7-churn-rate-how-fast-are-your-users-leaving">7. Churn Rate: How Fast Are Your Users Leaving</h2>
<p>The churn rate, also known as attrition rate, represents the rate at which a customer stops doing business with a company. Customer churn is typically expressed as the percentage of service subscribers that discontinue their service subscriptions within a time frame. Churn can also be expressed as the rate at which employees leave their jobs in a given time.</p>
<p>In order for a business to grow its number of clients, its growth rate (which takes into account new customers) must be higher than its churn rate.</p>
<p>The benefit of calculating a churn rate is that it can clarify how well a business is retaining its customers, which is a measure of the quality of service the business is providing and the usefulness of that service.</p>
<p>When a business can see its churn rate increasing from period to period, this suggests that a critical aspect of how it is running the business might be problematic or flawed.</p>
<p>It could be the result of:</p>
<ul>
<li><p>A faulty product(s)</p>
</li>
<li><p>Bad customer service</p>
</li>
<li><p>Costs exceed utility to customers</p>
</li>
</ul>
<p>And so on.</p>
<p>The churn rate will indicate to a business that it needs to learn why its customers are leaving, and where it needs to adjust its business. It’s more expensive to attract new customers than it is to retain them, so reducing the churn rate can save a business resources in the future.</p>
<p>Real talk: Say you had 500 users at the start of the month, and you lost 50 by the end of the month. That’s 10% churn – which is high! Annualize that and…ouch. You're not growing. You're replacing.</p>
<p>Make sure you fix this before you fundraise. Or at least explain why churn’s high and what you’re doing to plug the holes.</p>
<p><a target="_blank" href="https://www.youtube.com/watch?v=Jlg5J_Mpq7g">Here is a video</a> that beautifully explains Churn Rate.</p>
<h2 id="heading-8-payback-period-how-long-before-you-recover-your-cac">8. Payback Period: How Long Before You Recover Your CAC?</h2>
<p>The payback period is a popular tool for determining investment return. People invest money for the purpose of getting it back and generating a positive return on the money they invested. The shorter the payback period, the more beneficial the investment will be.</p>
<p>The payback period does not factor in the time value of money. You can determine it simply by counting the number of years until the principal paid in is returned.</p>
<p>This metric measures how quickly your customer pays you back for the cost of acquiring them. The payback period doesn’t take into account the total profitability of an investment. It’s just concerned with paying the investment back.</p>
<p>There are two common interpretations:</p>
<ol>
<li><p><strong>Customer-Level Payback:</strong> If your CAC is $250 and your customer pays $50/month, it’ll take 5 months to recover the acquisition cost.</p>
</li>
<li><p><strong>Investment-Level Payback:</strong> You spend $100,000 on a new sales hire, tool stack, or feature. You want to know how long it takes for that investment to generate $100,000 in profit.</p>
</li>
</ol>
<p>Both use the same principle: the shorter the payback period, the less cash you need to float your growth.</p>
<p>If you want a target, aim for 6 months for customer-level payback. Closer to 3-6 is ideal. Long payback periods mean you need deep pockets – or exceptional retention – to stay afloat.</p>
<p><a target="_blank" href="https://www.youtube.com/watch?v=KbtTk2azIjY">Here’s a video</a> where you can learn more.</p>
<h2 id="heading-9-earnings-before-interest-taxes-depreciation-and-amortization-ebitda">9. Earnings Before Interest, Taxes, Depreciation, and Amortization (EBITDA)</h2>
<p>EBITDA stands for Earning Before Interest, Taxes, Depreciation, and Amortization. You can think of this as just your company's operating profit if you wanted a very rudimentary way of referring to it.</p>
<p>It’s not flashy. It’s not fun. But it tells investors: “Here’s what we really make once the accounting fog clears.” and “Are we generating real profits from our actual operations?”</p>
<p>EBITDA is what investors look at because it is the best way of comparing apples to apples when considering startups. EBITDA can provide investors a measure of your operational health.</p>
<p>A negative EBITDA for an early stage company isn't going to raise any eyebrows. Just don’t act surprised when someone brings it up. You need to do that math before the pitch. But, if you have a growing early stage company that's moving from negative EBITDA to positive? Now your getting into grown folks business.</p>
<p><a target="_blank" href="https://www.youtube.com/watch?v=DH901SrBv9Q">Here’s a video</a> that explains the basics of EBITDA.</p>
<p>And <a target="_blank" href="https://www.youtube.com/watch?v=D58oCe_7BBM">here’s another video</a> that explains how investors look at EBITDA and its value in determining your business’s worth.</p>
<h2 id="heading-10-valuation-whats-your-company-worth-and-what-supports-that-number">10. Valuation: What’s Your Company Worth – and What Supports that Number?</h2>
<p>Valuation is a focused exercise that determines the value of an asset, investment, or company. So, how much your company’s worth. And the goal is typically to determine whether that value is a fair value.</p>
<p>Valuations can be conducted in one of two ways:</p>
<ul>
<li><p>an absolute valuation, which evaluates a company on its own merits and entirely independently of other factors/companies, or</p>
</li>
<li><p>a relative valuation, which evaluates the company relative to other similar firms, or assets, in the same sector or industry. This determines if the company, or asset, is worth that much relative to others.</p>
</li>
</ul>
<p>Depending on how the analysis and conclusions are reached, there are a variety of methods and techniques used to develop valuations. And as you’d expect, there’s often significant variability between outputs (or valuations) based on the inputs and context.</p>
<p>While valuations are predominantly quantitatively driven, there’s often a significant subjective influence that come from the assumptions and estimates made along the way. Valuations are also subject to developing situations and events outside of the analysis or the control of the analyst – for example, earnings reports or material news, or economic news – that can result in a change to a valuation stance.</p>
<p>If you’re pre-revenue and you’re saying $30M because a friend raised at that, please stop. Their experience likely has nothing to do with yours.</p>
<p>Valuation = traction + market comps + revenue + momentum + team.</p>
<p>Valuation isn’t just about what you want – it’s about what you can defend.</p>
<p>Startups are typically valued using:</p>
<ul>
<li><p><strong>Comparable Analysis (Comps):</strong> What similar companies are worth</p>
</li>
<li><p><strong>Discounted Cash Flow (DCF):</strong> Projecting future cash and discounting it back</p>
</li>
<li><p><strong>Revenue Multiples:</strong> Often 5x–10x for SaaS, but varies wildly</p>
</li>
<li><p><strong>Precedent Transactions:</strong> What investors paid in past rounds for similar startups</p>
</li>
</ul>
<p>But that’s the math.</p>
<p>Here’s the messy truth: <strong>Valuation = Traction + Team + TAM (total addressable market) + Timing + Storytelling.</strong></p>
<p>Hard factors:</p>
<ul>
<li><p>MRR/ARR</p>
</li>
<li><p>Growth rate</p>
</li>
<li><p>Churn</p>
</li>
<li><p>CAC:LTV</p>
</li>
<li><p>Gross margins</p>
</li>
</ul>
<p>Soft factors:</p>
<ul>
<li><p>Founding team’s track record</p>
</li>
<li><p>Market momentum</p>
</li>
<li><p>Hype or scarcity</p>
</li>
</ul>
<p>Don’t inflate. Don’t anchor to your friend’s raise. Know your comps. And show why <em>your</em> model is defensible, not just desirable. Inflated numbers make investors run. They don’t correct you – they just ghost you.</p>
<p>There are numerous books written on valuation and each technique could be its own PhD. But my role here is to give you a sneak peak into the metrics.</p>
<p>Here’s a <a target="_blank" href="https://www.youtube.com/watch?v=T3Ud5WQCrzQ">basic video on valuation</a> if you’re interested in a deeper dive.</p>
<p>And <a target="_blank" href="https://www.youtube.com/watch?v=znmQ7oMiQrM&amp;list=PLUkh9m2BorqnKWu0g5ZUps_CbQ-JGtbI9">here’s a more detailed video course</a> outlining different forms of valuation. Professor Damodaran from New York University is considered to be one of the aces and thought leaders when it comes to valuation. In this video course he explains stepwise and beautifully so you can understand and explore the fascinating world of valuations.</p>
<h2 id="heading-real-talk-before-you-close-that-tab">Real Talk Before You Close That Tab</h2>
<h3 id="heading-real-experience">Real Experience</h3>
<p>I met a founder once – early days, rough product, but you could tell he actually cared. He wasn't trying to look good. No buzzwords. No "disrupt" talk. Just someone trying to solve something annoying and important.</p>
<p>He walked into the room with a twinkle. Not swagger – just that gentle intensity. We were leaning in.</p>
<p>Then, in the middle of the pitch, someone asked, "So what's your monthly burn?" And I swear to you, he said, "Umm... I think my co-founder has that. I haven't looked in a while."</p>
<p>That was it.</p>
<p>No freak out. No awkward pause. Just... a cluck. Like a window closing in the background.</p>
<p>The product? Still smart. But the moment? Gone.</p>
<p>Nobody was mad. Nobody laughed. We even said thank you. But nobody followed up.</p>
<p>Why? Because it didn't feel like a business. It felt like a maybe.</p>
<h3 id="heading-why-this-matters">Why This Matters</h3>
<p>I’ve seen so many versions of that same scene play out. It’s never about charisma. It’s not even about the idea, half the time.</p>
<p>It’s about whether the person asking for money actually knows what they’re building. Not the dream, the mechanics. The guts, nuts and bolds of the business. The ugly Excel math nobody brags about on Twitter.</p>
<p>Unfortunately, no simple pitch deck will do that part for you. No co-founder can answer those questions on your behalf.</p>
<p>If it’s your vision, own the math. If it’s your company, learn the cost of keeping it alive.</p>
<p>The rest? The logos, the taglines, the “go-to-market” plans?.... All of that’s just packaging.</p>
<p>And you don’t have to be perfect either. You just have to be in it. Eyes open. Numbers in your head.<br>Because if you’re asking people to believe in what you’re building, you’d better believe in the scaffolding holding it up.</p>
<p>So yeah, know your CAC. Your LTV. Your margins. Your churn. Not to check some box on an investor’s sheet, but to prove to yourself and the investor that the thing you’re spending your life on…has legs. That it can stand. And run.</p>
<p>And maybe, someday, outlast you. Maybe!</p>
<h2 id="heading-conclusion-and-final-thoughts"><strong>Conclusion and Final Thoughts</strong></h2>
<p>I hope this was helpful to you, especially if you’re a founder or aspiring founder trying to build the next big thing. While there a many more ratios and concepts, these are the crux of them.</p>
<p>A lot of other complex ratios and valuations are either built using these metrics or refer them in some way. And each of these metrics could be an article of its own. But I wanted to give you my top 10 run down so that you could get a head start. Numbers are very much a part of the ideation stage itself, and omitting them from your strategy could prove to be a fatal mistake.</p>
<p>I’ll leave you with <a target="_blank" href="https://youtu.be/Pg72m3CjuK4?si=GtIFdvC5WzbKna79">one last video</a> on How to Start a Start Up with Michael Seibel (Reddit, YC, Twitch) that I hope you find valuable. It lays out, in a crash course format, the mindset of a founder who has been there and done that. The fun fact is that a lot of the themes he speaks of tie in to the metrics here, directly or indirectly.</p>
<p>I hope this gives you a perspective of being on the other side, evaluating your hard work and passion, and I hope it sets you up for success in your next Investor Review.</p>
<p>I look forward to your thoughts, comments, and feedback. If this was helpful, engaging, and informative, do share it – you never know who may need it, or could benefit from it. I wish you all the very best in your funding rounds.</p>
<p>Until then, keep learning, unlearning, and relearning, folks.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ A Beginner Developer's Guide to Kanban ]]>
                </title>
                <description>
                    <![CDATA[ First, a confession: When I was learning to code, my “workflow” was a mess. Sticky notes. Google Docs. Random Trello boards I never checked again. And a to-do list that somehow never got any shorter. Then I joined a real team. Suddenly, I was introdu... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/a-beginner-developers-guide-to-kanban/</link>
                <guid isPermaLink="false">68815e6054ad71fa4b3b7bb6</guid>
                
                    <category>
                        <![CDATA[ agile ]]>
                    </category>
                
                    <category>
                        <![CDATA[ agile methodology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Agile Software Development ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Career ]]>
                    </category>
                
                    <category>
                        <![CDATA[ interview ]]>
                    </category>
                
                    <category>
                        <![CDATA[ kanban ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Kanban boards ]]>
                    </category>
                
                    <category>
                        <![CDATA[ project management ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Product Management ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Product Design ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Beginner Developers ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Developer ]]>
                    </category>
                
                    <category>
                        <![CDATA[ workflow ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Aditya Vikram Kashyap ]]>
                </dc:creator>
                <pubDate>Wed, 23 Jul 2025 22:12:48 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1753300952223/508231c9-f0bc-4aa8-9c97-5ad4157891b9.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>First, a confession<strong>:</strong> When I was learning to code, my “workflow” was a mess. Sticky notes. Google Docs. Random Trello boards I never checked again. And a to-do list that somehow never got any shorter.</p>
<p>Then I joined a real team.</p>
<p>Suddenly, I was introduced to this thing called <strong>Kanban</strong> – and I realized I’d been treating software like a solo art project, not a process.</p>
<p>If that sounds familiar, you’re in the right place.</p>
<p>This guide will walk you through <strong>how Kanban actually works</strong>, how developers use it to track and prioritize work, and how it can help you stay sane when juggling bugs, features, and real-world deadlines.</p>
<p>Without further delay, lets get into it.</p>
<h3 id="heading-heres-what-well-cover">Here’s what we’ll cover:</h3>
<ul>
<li><p><a class="post-section-overview" href="#heading-so-what-is-kanban">So… What Is Kanban?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-the-classic-kanban-board-three-simple-columns">The Classic Kanban Board: Three Simple Columns</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-how-developers-use-kanban-in-real-life">How Developers Use Kanban in Real Life</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-kanban-vs-scrum-whats-the-difference">Kanban vs Scrum: What’s the Difference?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-so-which-one-should-you-use-scrum-or-kanban">So which one should you use Scrum or Kanban?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-what-tools-do-teams-use-for-kanban">What Tools Do Teams Use for Kanban?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-how-to-use-kanban-to-manage-your-own-coding-projects">How to Use Kanban to Manage Your Own Coding Projects</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-final-thoughts-why-kanban-isnt-just-a-board">Final Thoughts: Why Kanban Isn’t Just a Board</a></p>
</li>
</ul>
<h2 id="heading-so-what-is-kanban">So… What Is Kanban?</h2>
<p>At its core, Kanban is a <strong>visual way to manage work</strong>. It helps teams (or team members) see:</p>
<ul>
<li><p>What needs to get done</p>
</li>
<li><p>What’s in progress</p>
</li>
<li><p>What’s finished</p>
</li>
<li><p>Where things are getting stuck</p>
</li>
</ul>
<p>The concept comes from lean manufacturing, but in tech, it’s often used in Agile teams that need flexibility without the structure of Scrum sprints.</p>
<p>Think of Kanban like a whiteboard that tells a story. Not just what’s done, but how work flows.</p>
<h2 id="heading-the-classic-kanban-board-three-simple-columns">The Classic Kanban Board: Three Simple Columns</h2>
<p>So what exactly is a Kanban board? At its core, it’s a visual representation of your workflow – a board that shows all the work your team (or you, solo warrior) are juggling, and where each task stands.</p>
<p>It can be physical, like an actual whiteboard with sticky notes that move from one column to the next. Or digital, using tools like Trello, Jira, GitHub Projects, or Notion. The key is that it’s visual and up-to-date. You can walk into a room or open a tab and instantly understand: What’s being worked on? What’s ready to go? Where are things stuck?</p>
<p>It’s like having your brain on a wall, but organized. And slightly less chaotic.</p>
<p>The beauty of Kanban is how dead simple it is to get started. At minimum, your board has three columns:</p>
<table><tbody><tr><td><p><strong>&nbsp;To Do</strong></p></td><td><p><strong>In Progress</strong></p></td><td><p><strong>Done</strong></p></td></tr></tbody></table>

<p>Each task – or <strong>card</strong> – moves from left to right as it gets worked on.</p>
<p>Let’s say your team is building a blog platform. Your Kanban board might have cards like:</p>
<ul>
<li><p>“Create signup form”</p>
</li>
<li><p>“Fix image upload bug”</p>
</li>
<li><p>“Deploy staging build”</p>
</li>
</ul>
<p>Now, while Kanban is flexible, it can absolutely be taken too far.</p>
<p>I’ve seen boards with more columns than a Greek temple: “Needs Review,” “Pending Client Feedback,” “QA Rework Round 2,” “Blocked but Still Hopeful,” “In Existential Limbo,” and so on. Every card had six tags, three owners, two checklists, and one migraine.</p>
<p>The lesson? Don’t turn your board into a bureaucratic jungle.</p>
<p>You don’t need to account for every edge case. Start simple: “To Do,” “In Progress,” “Review,” “Done.” These basic stages cover most workflows. If you discover a real need for something more – like a dedicated “QA” column or “Blocked” column – add it intentionally, not because you feel like your board needs to look fancy.</p>
<p>Remember: A Kanban board should be helpful, not overwhelming. If you spend more time managing the board than doing the work on it… it’s doing the opposite of what it’s meant to do.</p>
<h2 id="heading-how-developers-use-kanban-in-real-life">How Developers Use Kanban in Real Life</h2>
<p>Here’s how you might interact with a Kanban board on a dev team:</p>
<ol>
<li><p>You pick up a card from “To Do” – let’s say, “Add dark mode toggle.”</p>
</li>
<li><p>You move it to “In Progress.”</p>
</li>
<li><p>When it’s ready for review, you might move it to a temporary “Review” or “Testing” column.</p>
</li>
<li><p>Once it’s merged, tested, and deployed, you move it to “Done.”</p>
</li>
<li><p>You smile, drink some coffee, and grab the next card.</p>
</li>
</ol>
<p>That’s it. But over time, this process helps the whole team:</p>
<ul>
<li><p>Spot bottlenecks</p>
</li>
<li><p>Prevent duplicate work</p>
</li>
<li><p>Reduce context switching</p>
</li>
<li><p>Keep everyone aligned</p>
</li>
</ul>
<h3 id="heading-whats-a-wip-limit-and-why-should-you-care">What’s a WIP Limit — And Why Should You Care?</h3>
<p>WIP = <strong>Work In Progress</strong>. This is the most important concept to keep us in check.</p>
<p>One of Kanban’s key principles is <strong>limiting how many things you’re working on at once</strong>. Because guess what? Multitasking kills momentum.</p>
<p>A typical WIP limit might look like:</p>
<ul>
<li><p>No more than 2–3 cards per person in “In Progress” Again this is best practice, but folks do pick up a lot and then they end up being the bottleneck.</p>
</li>
<li><p>No more than 5 tasks waiting on QA.</p>
</li>
</ul>
<p>Why? Because when everything’s urgent, nothing gets done. WIP limits force you to finish one thing before you start more – and that’s how real velocity happens.</p>
<p>If there are more than 5 tasks in the “To Do” column, the team doesn’t take up new ones. Instead, everyone chips in to see how they can help unclog the bottleneck. A bottleneck is your worst enemy in Kanban, and you want to resolve it so items move smoothly on time and on target.</p>
<p><a target="_blank" href="https://youtu.be/R8dYLbJiTUE?si=Hh00XXI4_1urv4Mp">Here’s a video</a> recapping key concepts.</p>
<h2 id="heading-kanban-vs-scrum-whats-the-difference"><strong>Kanban vs Scrum: What’s the Difference?</strong></h2>
<p>You’ve probably heard Scrum and Kanban mentioned in the same breath – and both are popular Agile frameworks. But they’re not interchangeable.</p>
<p>Scrum is structured, with roles like Product Owner and Scrum Master, and work gets organized into time-boxed sprints. It’s perfect for teams that benefit from rhythm and rituals – like sprint planning, daily standups, and retrospectives.</p>
<p>Kanban, on the other hand, is a little looser. No official roles, no set sprint timelines. Work flows continuously, and change can happen anytime. It’s perfect for teams who need more flexibility and fewer ceremonies.</p>
<p>So how do they compare in practice? Let’s break it down:</p>
<div class="hn-table">
<table>
<thead>
<tr>
<td><strong>Key Differentiating Factors</strong></td><td><strong>Scrum</strong></td><td><strong>Kanban</strong></td></tr>
</thead>
<tbody>
<tr>
<td>Time-based</td><td>Yes – 1–2 week sprints</td><td>No – continuous flow</td></tr>
<tr>
<td>Roles</td><td>PO, SM, Developers</td><td>No specific roles required</td></tr>
<tr>
<td>Planning</td><td>Sprint planning, retros, and so on</td><td>On-demand, just-in-time</td></tr>
<tr>
<td>Cadence</td><td>Fixed sprint cycle</td><td>Flexible, ongoing</td></tr>
<tr>
<td>Use case</td><td>Complex, structured teams</td><td>Continuous delivery teams</td></tr>
</tbody>
</table>
</div><p><strong>Bottom line:</strong></p>
<ul>
<li><p>Scrum is a scheduled loop. Kanban is a living flow.</p>
</li>
<li><p>One’s a playbook. The other’s a status window.</p>
</li>
</ul>
<p><a target="_blank" href="https://youtu.be/F5QIqFEDv2k?si=jvNoAiHmrv_iq-Lx">Here’s a video</a> on the main differences between Scrum and Kanban you can watch if you want more detail.</p>
<h2 id="heading-so-which-one-should-you-use-scrum-or-kanban"><strong>So which one should you use Scrum or Kanban?</strong></h2>
<p>So… which one should you use?</p>
<p>It really depends on your team, your product, and your pain points.</p>
<p>✔️ If you’re working on a brand-new product where requirements shift a lot, and your team thrives with structure and routines – Scrum is likely the better fit. Sprints give you a sense of pacing, and ceremonies help ensure alignment.</p>
<p>✔️ If you’re managing ongoing work like bug triage, tech debt, infrastructure tasks, or anything that’s more “whenever it comes in” than “we need to ship this in two weeks” – Kanban gives you flexibility and visibility without the overhead.</p>
<p>And yes, there’s such a thing as <strong>Scrumban</strong> – a hybrid approach where teams use visual boards and WIP limits from Kanban, but keep some of Scrum’s structure like standups and retros. It’s like Agile tapas: you get the flavors that work best for your appetite.</p>
<p><a target="_blank" href="https://youtu.be/kiI3IweyAeQ?si=M1mtS5HCCcGcT78J">Here is a detailed video</a> that’'ll teach you more about how Scrumban works in practice.</p>
<p>Watch the Scrumban video only when you are familiar and comfortable with both Scrum and Kanban – otherwise, you might get confused from the cross-pollination of ideas and frameworks.</p>
<p>I personally have never seen a Scrumban implementation thats scaled well – too many folks trying too many things and none of them work. But thats just based on my experience – it may work for you and your team. I’ll let you be the judge.</p>
<h2 id="heading-what-tools-do-teams-use-for-kanban"><strong>What Tools Do Teams Use for Kanban?</strong></h2>
<p>You’ve probably seen (or used) one already:</p>
<ul>
<li><p><strong>Trello</strong> – Simple and great for solo or small teams</p>
</li>
<li><p><strong>Jira</strong> – Enterprise-level, customizable workflows</p>
</li>
<li><p><strong>GitHub Projects</strong> – Lightweight but powerful for devs</p>
</li>
<li><p><strong>ClickUp / Asana / Notion</strong> – Integrated with docs/tasks</p>
</li>
</ul>
<p>Kanban isn’t tied to any one tool – you can use an app, a browser tab, or a whiteboard and a pack of sticky notes from the office supply closet. What matters is how you use it. But let’s walk through some of the most common tools and what they offer in a Kanban context:</p>
<h3 id="heading-trello">🟩 <strong>Trello</strong></h3>
<p>Trello is probably the easiest way to start with Kanban. It gives you a simple digital board with columns and cards you can drag and drop. It’s great for devs or small teams who don’t need tons of automation – just a clean place to track work visually.</p>
<h3 id="heading-jira">🟨 <strong>Jira</strong></h3>
<p>Jira is a heavyweight – and while it’s built for Scrum, it also supports robust Kanban boards. You can define custom workflows, use built-in reports like cumulative flow diagrams, enforce WIP limits, and manage team velocity. Ideal for large teams that need traceability, integrations, and permissions.</p>
<h3 id="heading-github-projects">🟦 <strong>GitHub Projects</strong></h3>
<p>If your code lives in GitHub, GitHub Projects is a clean way to stay close to your codebase. It lets you create Kanban-style boards with issues and pull requests as cards, so you’re never toggling between tools just to track what’s in progress.</p>
<h3 id="heading-clickup-asana-notion">🟧 <strong>ClickUp / Asana / Notion</strong></h3>
<p>These are all-in-one productivity platforms. They combine Kanban boards with documentation, team chat, calendars, and reporting. If your team needs more than just “move card left to right,” these tools let you manage projects, meetings, notes, and workflows in one place.</p>
<h3 id="heading-whiteboard-sticky-notes">🟪 <strong>Whiteboard + Sticky Notes</strong></h3>
<p>Don’t underestimate the analog approach. It’s fast. It’s visible. It’s tactile. Physically moving a task from “Doing” to “Done” gives you a sense of progress no digital tool can match. And when something’s blocked? Slap a red sticky on it and call it a day.</p>
<p>Bottom line: The best tool is the one your team will <em>actually</em> use. Fancy doesn’t beat consistent. And the actual tool doesn’t matter as much as the <strong>discipline</strong> your team has to actually use it.</p>
<h2 id="heading-how-to-use-kanban-to-manage-your-own-coding-projects"><strong>How to Use Kanban to Manage Your Own Coding Projects</strong></h2>
<p>Even if you're not on a team yet, Kanban is great for your own workflow. Here’s how you can use it to help yourself out:</p>
<ol>
<li><p>Create a basic 3-column board (To Do, In Progress, Done)</p>
</li>
<li><p>Write out every task, big or small</p>
</li>
<li><p>Set a WIP limit (for example, no more than 2 tasks at once)</p>
</li>
<li><p>Update it daily. Make it a ritual.</p>
</li>
<li><p>Review your flow weekly – What got stuck? What moved fast?</p>
</li>
</ol>
<p> Example:</p>
<div class="hn-table">
<table>
<thead>
<tr>
<td><strong>To-Do</strong></td><td><strong>In Progress</strong></td><td><strong>Done</strong></td></tr>
</thead>
<tbody>
<tr>
<td>Fix CSS Layout</td><td>Add blog search bar</td><td>Set up Netlify</td></tr>
<tr>
<td>Write README</td><td></td><td>Deploy v1</td></tr>
</tbody>
</table>
</div><p>You’ll be shocked how much clearer your thinking gets when you can <em>see</em> your work. It’s simple but super powerful to visualize your work it in this way.</p>
<h2 id="heading-final-thoughts-why-kanban-isnt-just-a-board"><strong>Final Thoughts: Why Kanban Isn’t Just a Board</strong></h2>
<p>Kanban isn’t just a tool – it’s a mindset.</p>
<p>It helps you focus. It helps your team collaborate. And it gives everyone – even non-technical folks – visibility into what’s going on.</p>
<p>If you’re learning to code and want to feel more confident working with others, <strong>learning Kanban is low-effort, high-impact</strong>.</p>
<p>So don’t wait until your first job. Start using it now – and show up to that standup with confidence.</p>
<p>I hope this small 101 Guide to Kanban was helpful to you all. My sole purpose to write this was to help beginner developers understand Kanban as a practical workflow system – especially for those transitioning from solo coding to collaborative, real-world development environments. It aims to demystify the methodology in a casual, beginner-friendly tone while still offering actionable guidance.</p>
<p>I hope you enjoyed my beginners guide to Kanban.</p>
<p>Until next time, keep Learning, Unlearning and Relearning, folks….</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ A Beginner Developer's Guide to Scrum ]]>
                </title>
                <description>
                    <![CDATA[ Let me guess: you’re learning to code…alone. You’ve been grinding through tutorials. You've built a portfolio site, maybe deployed a few projects on GitHub. And now you're trying to land a job or join a team. Then the interviews start. Suddenly, peop... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/a-beginner-developers-guide-to-scrum/</link>
                <guid isPermaLink="false">68813c7579e092b166d373b6</guid>
                
                    <category>
                        <![CDATA[ Scrum ]]>
                    </category>
                
                    <category>
                        <![CDATA[ agile development ]]>
                    </category>
                
                    <category>
                        <![CDATA[ project management ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Developer ]]>
                    </category>
                
                    <category>
                        <![CDATA[ interview ]]>
                    </category>
                
                    <category>
                        <![CDATA[ guide ]]>
                    </category>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ learning ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Product Management ]]>
                    </category>
                
                    <category>
                        <![CDATA[ software development ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Data Science ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Career ]]>
                    </category>
                
                    <category>
                        <![CDATA[ workflow ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Aditya Vikram Kashyap ]]>
                </dc:creator>
                <pubDate>Wed, 23 Jul 2025 19:48:05 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1753300058064/7046dd6c-1d9e-4f06-9ca1-65b3bb7eec83.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Let me guess: you’re learning to code…alone.</p>
<p>You’ve been grinding through tutorials. You've built a portfolio site, maybe deployed a few projects on GitHub. And now you're trying to land a job or join a team.</p>
<p>Then the interviews start.</p>
<p>Suddenly, people ask:</p>
<ul>
<li><p>"Are you familiar with Agile?"</p>
</li>
<li><p>"Have you worked in a Scrum environment?"</p>
</li>
<li><p>"What’s your experience with sprints?"</p>
</li>
</ul>
<p>Cue the imposter syndrome. Because no one teaches this stuff in JavaScript 101.</p>
<p>This guide is for you.</p>
<p>I’ll help make the Scrum process – a very common way developers work together – <em>make actual sense</em>. I’ll walk you through the basics, but also tell you what developers actually <em>do</em>, how standups feel when you're new, and what’s expected of you when you’re no longer coding in a vacuum.</p>
<p>Let’s break it down.</p>
<h3 id="heading-heres-what-well-cover">Here’s what we’ll cover:</h3>
<ul>
<li><p><a class="post-section-overview" href="#heading-what-even-is-scrum">What Even Is Scrum?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-the-three-roles-in-scrum-and-who-does-what">The Three Roles in Scrum (and Who Does What)</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-the-scrum-rhythm-what-a-sprint-actually-looks-like">The Scrum Rhythm: What a Sprint Actually Looks Like</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-who-attends-the-ceremonies">Who attends the Ceremonies:</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-standups-where-you-talk-like-a-human-not-a-robot">Standups: Where You Talk Like a Human, Not a Robot</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-sprint-planning">Sprint Planning</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-whats-a-user-story-and-why-does-it-sound-like-a-childrens-book">What’s a User Story and Why Does It Sound Like a Children’s Book?</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-what-counts-as-done-definition-of-done-and-why-its-important">What Counts as “Done”? Definition of Done and Why It’s Important</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-demos-retros-and-saying-the-hard-things">Demos, Retros, and Saying the Hard Things</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-tools-you-might-encounter">Tools You Might Encounter</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-if-youre-preparing-for-a-job-heres-what-you-can-do">If You’re Preparing for a Job, Here’s What You Can Do</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-final-thoughts">Final Thoughts</a></p>
</li>
</ul>
<h2 id="heading-what-even-is-scrum"><strong>What Even Is Scrum?</strong></h2>
<p>Scrum is not a tool. It’s not a software. It’s not some elite thing only PMs care about.</p>
<p>It’s a lightweight framework that helps software teams build things incrementally, together, in short focused cycles called sprints.</p>
<p>Scrum is used by everyone from FAANG teams to indie dev shops because it helps:</p>
<ul>
<li><p>Keep teams aligned</p>
</li>
<li><p>Deliver working software fast</p>
</li>
<li><p>Course-correct often</p>
</li>
<li><p>Spot problems early (before they go nuclear)</p>
</li>
</ul>
<p>It’s the opposite of the old-school “build for a year and pray it works” model.</p>
<h2 id="heading-the-three-roles-in-scrum-and-who-does-what"><strong>The Three Roles in Scrum (and Who Does What)</strong></h2>
<p>Scrum officially defines three roles. Here's what that means in practice:</p>
<h3 id="heading-1-product-owner-po"><strong>1. Product Owner (PO)</strong></h3>
<p>Think: Vision-holder. They decide <em>what</em> the team builds and <em>why</em>. A product owner:</p>
<ul>
<li><p>Writes user stories (think of these as feature requests written from a user’s point of view)</p>
</li>
<li><p>Prioritizes the work</p>
</li>
<li><p>Clarifies what success looks like</p>
</li>
<li><p>Says “yes” or “not yet” to features</p>
</li>
</ul>
<h3 id="heading-2-scrum-master-sm"><strong>2. Scrum Master (SM)</strong></h3>
<p>Think: Air-traffic controller meets therapist. They make sure the process works. The are master Facilitators, like between Dev and PO’s. A Scrum Master:</p>
<ul>
<li><p>Facilitates meetings</p>
</li>
<li><p>Removes blockers (“Your AWS access is stuck? I’ll escalate it.”)</p>
</li>
<li><p>Coaches the team on Scrum practices</p>
</li>
<li><p>Doesn’t manage people – manages <em>flow</em></p>
</li>
</ul>
<h3 id="heading-3-developers-you"><strong>3. Developers (YOU!)</strong></h3>
<p>Think: Builders. You write code, test it, ship it, fix it, and improve it. You also:</p>
<ul>
<li><p>Break down stories into tasks</p>
</li>
<li><p>Pick up work from the team board (like Jira or Trello)</p>
</li>
<li><p>Communicate progress</p>
</li>
<li><p>Demo what you’ve built at the end of the sprint</p>
</li>
</ul>
<p>You might also work with designers, testers, or DevOps folks – but within Scrum, you’re all “developers” building a product together.</p>
<h2 id="heading-the-scrum-rhythm-what-a-sprint-actually-looks-like"><strong>The Scrum Rhythm: What a Sprint Actually Looks Like</strong></h2>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1752809790048/253fd92b-1ebe-4f3e-bfbc-48719676dc82.png" alt="253fd92b-1ebe-4f3e-bfbc-48719676dc82" class="image--center mx-auto" width="900" height="530" loading="lazy"></p>
<p>Image Source: <a target="_blank" href="https://www.invensislearning.com/blog/what-are-scrum-ceremonies/">https://www.invensislearning.com/blog/what-are-scrum-ceremonies/</a></p>
<h3 id="heading-understanding-the-scrum-cycle"><strong>Understanding the Scrum Cycle</strong></h3>
<p>So, what does it <em>actually</em> look like when a team uses Scrum to build software?</p>
<p>Let’s walk through a full sprint – not just the buzzwords, but what really happens when a group of humans tries to plan, build, review, and improve together. Think of this as your backstage pass to the rhythm of modern teamwork.</p>
<h3 id="heading-step-1-build-and-refine-the-product-backlog">📦 Step 1: Build and Refine the Product Backlog</h3>
<p>Before any coding starts, the team needs to agree on <em>what</em> they might build – not just this week, but in the near future too.</p>
<p>That’s where the <strong>Product Backlog</strong> comes in. This is a big, running list of everything the product might need – features, bug fixes, improvements, ideas, and maybe a few wild dreams. It’s like the wishlist for the product, but more organized (ideally).</p>
<p>The Product Owner is responsible for maintaining and prioritizing this list. They decide what’s most important to work on based on customer needs, business goals, and feedback.</p>
<p>But the PO doesn’t do this in isolation. Enter the <strong>Backlog Refinement meeting</strong>.</p>
<p>In these sessions, the Scrum Team – that’s the PO, the Scrum Master (SM), and the Developers – come together to:</p>
<ul>
<li><p><strong>Review</strong> the most important upcoming items</p>
</li>
<li><p><strong>Clarify</strong> any vague or confusing parts of each task</p>
</li>
<li><p><strong>Break big items</strong> down into smaller, buildable pieces called <strong>user stories</strong></p>
</li>
<li><p><strong>Estimate effort</strong> (how much time or complexity is involved for each story)</p>
</li>
</ul>
<p>This meeting makes sure the team isn’t caught off guard in the sprint – that they understand the work ahead and can actually start sprinting when the time comes.</p>
<h3 id="heading-step-2-sprint-planning-what-are-we-building-this-time">🧭 Step 2: Sprint Planning – What Are We Building This Time?</h3>
<p>Now that we’ve got a solid backlog, it’s time to pick what to build <em>right now</em>.</p>
<p>At the start of each sprint (which typically lasts 1 to 4 weeks), the team holds a <strong>Sprint Planning meeting</strong>. This meeting sets the stage for the entire sprint – it’s like the huddle before the big game.</p>
<p>In Sprint Planning, the team:</p>
<ul>
<li><p>Reviews the top items from the backlog</p>
</li>
<li><p>Discusses what can realistically be completed based on their availability and capacity</p>
</li>
<li><p>Chooses a handful of these stories to commit to</p>
</li>
<li><p><strong>Defines a Sprint Goal</strong> – a simple statement that captures the purpose of this sprint</p>
</li>
</ul>
<p>For example, the Sprint Goal might be:<br>🎯 <em>“Allow users to reset their passwords.”</em></p>
<p>Every user story chosen should contribute to that goal. The collection of these stories becomes the <strong>Sprint Backlog</strong> – basically, the to-do list for the sprint.</p>
<p>So when we say:</p>
<p>“The team selects an ordered list of user stories to comprise the Sprint Backlog for the next sprint, which will be achievable to satisfy the Sprint Goal...”</p>
<p>We’re really just saying:<br>👉 <em>“Pick a realistic number of important tasks that, if completed, will help us hit our target for the sprint.”</em></p>
<p>Not too vague. Not too ambitious. Just achievable and focused.</p>
<h3 id="heading-step-3-daily-standups-stay-in-sync">☀️ Step 3: Daily Standups – Stay in Sync</h3>
<p>Now the sprint is underway! But how does everyone stay aligned and avoid working in silos?</p>
<p>That’s where the <strong>Daily Standup</strong> comes in. Every day – usually in the morning – the team has a quick check-in (about 15 minutes) where each person answers three questions:</p>
<ol>
<li><p><strong>What did I do yesterday?</strong></p>
</li>
<li><p><strong>What am I working on today?</strong></p>
</li>
<li><p><strong>Is anything blocking me?</strong> (that is, am I stuck?)</p>
</li>
</ol>
<p>Example:</p>
<p>“Yesterday I set up the login API integration. Today I’ll work on the UI validation. I’m blocked on getting access to the staging database — may need help.”</p>
<p>These standups keep the team in sync and surface blockers early so they can be addressed quickly. They’re not about micromanaging or showing off. They’re about visibility and support.</p>
<h3 id="heading-whats-a-sprint-burndown-chart">📉 What’s a Sprint Burndown Chart?</h3>
<p>You might hear your team mention a “burndown chart.” No, this isn’t about things going down in flames (hopefully).</p>
<p>A <strong>Sprint Burndown Chart</strong> is a graph that shows how much work is left in the sprint – day by day.</p>
<ul>
<li><p>The <strong>y-axis</strong> is the amount of work remaining (often measured in story points or tasks)</p>
</li>
<li><p>The <strong>x-axis</strong> is the number of days left in the sprint</p>
</li>
</ul>
<p>The line should ideally trend downward as work gets completed – hence “burning down.” If it flattens out or slopes up, that’s a red flag that the team might be stuck, behind schedule, or not updating the board.</p>
<p>Think of it as a visual heartbeat of the sprint. You can learn more via a practical example <a target="_blank" href="https://youtu.be/2K84aZn9AY8?si=tS8oMGxVD0CYtnlw">in this video</a>.</p>
<h3 id="heading-step-4-sprint-review-show-what-youve-built">🖥️ Step 4: Sprint Review – Show What You’ve Built</h3>
<p>At the end of the sprint, the team holds a <strong>Sprint Review</strong> (also called a “demo”). This is where you show what was actually built during the sprint.</p>
<ul>
<li><p>The <strong>Developers</strong> demo working features – live, not just screenshots</p>
</li>
<li><p>The <strong>Product Owner</strong> reviews whether the Sprint Goal was achieved</p>
</li>
<li><p>Stakeholders may ask questions, give feedback, or suggest tweaks</p>
</li>
</ul>
<p>This meeting isn’t just for show – it’s a feedback loop. It helps the team validate that what they built is useful, usable, and meets expectations. If changes are needed, those get added to the backlog for future sprints.</p>
<h3 id="heading-step-5-sprint-retrospective-look-back-to-move-forward">🔍 Step 5: Sprint Retrospective – Look Back to Move Forward</h3>
<p>Once the review is done, the team shifts focus from <em>what</em> they built to <em>how</em> they worked together.</p>
<p>Enter the <strong>Sprint Retrospective</strong> – a meeting to reflect on the process, not the product.</p>
<p>The team discusses:</p>
<ul>
<li><p>✅ What went well</p>
</li>
<li><p>❌ What didn’t go so well</p>
</li>
<li><p>🔁 What could be improved next time</p>
</li>
</ul>
<p>This isn’t about pointing fingers. It’s about learning, adapting, and continuously improving how the team collaborates.</p>
<p>The <strong>Scrum Master</strong> often facilitates this meeting and helps turn feedback into action items for the next sprint. For example:</p>
<p>“We underestimated testing time. Next sprint, let’s budget for QA earlier.”</p>
<p>The best teams take retros seriously. Why? Because even if your code is perfect, your <em>process</em> needs tuning too – and small process changes often lead to big gains.</p>
<h3 id="heading-scrum-is-a-loop">♻️ Scrum Is a Loop</h3>
<p>Here’s the rhythm:</p>
<ol>
<li><p>Plan the sprint</p>
</li>
<li><p>Check in daily</p>
</li>
<li><p>Build and demo the product</p>
</li>
<li><p>Reflect and improve</p>
</li>
</ol>
<p>Then do it all over again – with slightly better coordination and slightly more trust each time.</p>
<p>It’s not about being fast. It’s about being intentional, consistent, and collaborative.</p>
<h3 id="heading-example-sprint">Example Sprint</h3>
<p>Let’s say, for example, that your team does 4-week sprints. (Keep in mind that Sprints can differ by team, nature of product, release cycles, and so on.)</p>
<p>Here’s the rough beat:</p>
<div class="hn-table">
<table>
<thead>
<tr>
<td><strong>Week</strong></td><td><strong>What Happens (Sprint Ceremonies)</strong></td><td><strong>Your Role</strong></td></tr>
</thead>
<tbody>
<tr>
<td>1</td><td><strong>Sprint Planning</strong></td><td>Help estimate effort, pick what to build</td></tr>
<tr>
<td>1-4</td><td><strong>Daily Stand ups</strong> (15 mins)</td><td>Share what you’re doing &amp; any blockers</td></tr>
<tr>
<td>1-3</td><td><strong>Development Time</strong></td><td>Code, test, commit, fix, push, repeat</td></tr>
<tr>
<td>3.5-4</td><td><strong>Sprint Review</strong></td><td>Demo what you built</td></tr>
<tr>
<td>4</td><td><strong>Sprint Retrospective</strong></td><td>Reflect on how the sprint went as a team</td></tr>
</tbody>
</table>
</div><p>Scrum works in <strong>loops</strong>. Every 2-4 weeks (depending on your cadence and sprint cycle), your team should have working, demo-able software to show for it – even if it’s small.</p>
<p>And no, it’s not about “speed.” It’s about consistency, communication, and collaboration.</p>
<h2 id="heading-who-attends-the-ceremonies"><strong>Who attends the Ceremonies:</strong></h2>
<div class="hn-table">
<table>
<thead>
<tr>
<td><strong>Ceremony</strong></td><td><strong>Who Attends</strong></td><td><strong>Why They’re There</strong></td></tr>
</thead>
<tbody>
<tr>
<td><strong>Sprint Planning</strong></td><td>Product Owner (PO), Scrum Master (SM), Development Team</td><td>To define what will be delivered and how the work will be accomplished</td></tr>
<tr>
<td><strong>Daily Standup</strong></td><td>Development Team, Scrum Master (optional), PO (optional)</td><td>To sync on progress, share blockers, and coordinate efforts</td></tr>
<tr>
<td><strong>Sprint Review</strong></td><td>Development Team, Scrum Master, Product Owner, Stakeholders</td><td>To demo the work, get feedback, and assess if goals were met</td></tr>
<tr>
<td><strong>Sprint Retrospective</strong></td><td>Development Team, Scrum Master, Product Owner (optional)</td><td>To reflect on the process, identify what worked/what didn’t, and improve the next sprint</td></tr>
<tr>
<td><strong>Backlog Refinement</strong></td><td>Product Owner, Development Team, Scrum Master (optional)</td><td>To clarify upcoming stories, estimate work, and prepare for future sprint planning</td></tr>
</tbody>
</table>
</div><p>Now lets dive deeper and understand practically how each of these ceremonies work:</p>
<h2 id="heading-standups-where-you-talk-like-a-human-not-a-robot"><strong>Standups: Where You Talk Like a Human, Not a Robot</strong></h2>
<p>So how does the team actually stay connected day to day? That’s where standups come in.</p>
<p>Every morning, your team meets briefly – usually on Zoom or in a circle – and you answer 3 questions:</p>
<ol>
<li><p>What did I work on yesterday?</p>
</li>
<li><p>What will I work on today?</p>
</li>
<li><p>What’s blocking me? Any impediments?</p>
</li>
</ol>
<p>Example:</p>
<p>"Yesterday I cleaned up the signup validation logic. Today I’m working on the email verification flow. I’m stuck on SendGrid config – might need help setting up credentials."</p>
<p>It’s not about impressing anyone. It’s about keeping everyone in sync. Some days you’ll say, “I spent the whole day debugging a CSS bug that turned out to be a semicolon.” That’s okay.</p>
<p>How does it work?</p>
<p>The Scrum Master gathers everyone in a huddle room, the PO and Dev Team included, and opens the the Standup. They are the facilitator of the ceremony. Everyone gets a chance to answer the 3 questions above (usually about 2-5 minutes each). It’s not a full report – it’s quick. When one person is done, they pass it on to someone else.</p>
<p>This ensures there is team cohesion and transparency.</p>
<p><a target="_blank" href="https://youtu.be/q_R9wQY4G5I?si=W1AcvcLXB-mnUM1f">Here is a video example of a standup</a>.</p>
<h2 id="heading-sprint-planning"><strong>Sprint Planning</strong></h2>
<p>The goal of the planning meeting is to answer the questions “What are we going to work on, and how are we going to do it?” It is critical for the team to have a shared goal and a shared commitment to this goal before beginning this ceremony.</p>
<p>Participants should:</p>
<ul>
<li><p>Measure growth</p>
</li>
<li><p>Sync with the Scrum Master</p>
</li>
<li><p>Sync with the Product Owner</p>
</li>
</ul>
<p>Sprint planning happens just before the sprint starts, and usually lasts for an hour or two. In this meeting, the team goes over a collection of <strong>user stories</strong> and discuss, plan, measure, and prioritize. This is where they decide what is going to be in scope for their upcoming sprint cycle.</p>
<p>The Product Owner will have a prioritized view of things in the backlog. They work with the team on each object or customer experience. Together, as a group they go through and make calculations, deciding to what they can commit.</p>
<h2 id="heading-whats-a-user-story-and-why-does-it-sound-like-a-childrens-book"><strong>What’s a User Story and Why Does It Sound Like a Children’s Book?</strong></h2>
<p>So you might be wondering: how do you know what to work on? What to build? So much work, so little time? Thats where <strong>user stories</strong> come in.</p>
<p>In Scrum, teams don’t just write vague tasks like “code the login.” Instead, they write user stories – short, human-centered feature descriptions that describe what the user needs, why they need it, and what success looks like.</p>
<p>Here’s an example:</p>
<p><em>As a user, I want to be able to reset my password, so I can access my account if I forget it.</em></p>
<p>User stories are the scaffolding of teamwork. They’re written with empathy, not just efficiency. And each one comes with <strong>acceptance criteria</strong> – a checklist that clarifies what “done” actually means:</p>
<ul>
<li><p>A “Forgot Password” link is visible</p>
</li>
<li><p>Clicking it shows a form</p>
</li>
<li><p>An email gets sent with a reset link</p>
</li>
</ul>
<p>Once a story is agreed upon, developers break it down into tasks, like “build form,” “hook into backend,” or “handle email validation.” It’s collaborative, not prescriptive. And user stories have priority so you know what’s the most important and what’s the least.</p>
<p>A helpful rule of thumb many teams use is the <a target="_blank" href="https://medium.com/@nic/writing-user-stories-with-gherkin-dda63461b1d2"><strong>Gherkin</strong>-style "Given–When–Then"</a> format:</p>
<ul>
<li><p><strong>Given</strong> some initial context</p>
</li>
<li><p><strong>When</strong> an event occurs</p>
</li>
<li><p><strong>Then</strong> a specific outcome should happen</p>
</li>
</ul>
<p>This ensures that everyone – devs, testers, and product owners – shares the same understanding of behavior and expectations.</p>
<p><a target="_blank" href="https://www.youtube.com/watch?v=7hoGqhb6qAs">Here is a great video example</a> thats outlines how to draft effective and powerful user stories.</p>
<h2 id="heading-what-counts-as-done-definition-of-done-and-why-its-important"><strong>What Counts as “Done”? Definition of Done and Why It’s Important</strong></h2>
<p>Now you might be wondering – how do I know when a task is done and can be closed out?</p>
<p>The <strong>Definition of Done</strong> is a type of documentation in the form of a <strong>team agreement</strong>. The Definition of Done identifies the conditions that need to be achieved in order for the product to be considered done (as in <strong>potentially shippable</strong>).</p>
<p>This is how we know that we "did the thing right". Meaning, we built the correct level of quality into the product. The Definition of Done is not the same as the acceptance criteria, which are written by the product owner to help us know we did the "right thing".</p>
<p>Every team has a Definition of Done – it’s not just “I pushed code.” It could mean:</p>
<ul>
<li><p>Code is written</p>
</li>
<li><p>Reviewed by a peer</p>
</li>
<li><p>Merged into main</p>
</li>
<li><p>Tested on staging</p>
</li>
<li><p>Possibly deployed</p>
</li>
</ul>
<p>This clarity keeps teams honest and accountable. No “it works on my machine” energy here. The DoD sets a quality bar. It prevents ambiguity, rework, and “it works on my machine” moments. When every card on the board passes the same finish line, teams move faster – and trust each other more.</p>
<p>Everyone should know what done is in a team. Either its Done as per DoD standards or its not.</p>
<p><a target="_blank" href="https://youtu.be/pYOJyQoBT3U?si=nVygkQQx79NaAOo4">Here is a beautiful video</a> highlighting the impotence of DoD.</p>
<h2 id="heading-demos-retros-and-saying-the-hard-things"><strong>Demos, Retros, and Saying the Hard Things</strong></h2>
<p>Once you’ve built the product, then comes demos (showcasing your work) and retros (analysis as a team on what when well and what areas to improve on).</p>
<p>In the retro, everyone’s encouraged to speak up:</p>
<ul>
<li><p>What went well?</p>
</li>
<li><p>What didn’t?</p>
</li>
<li><p>What should we try next time?</p>
</li>
</ul>
<p>Example:</p>
<p>“We missed a lot of stories because we didn’t account for testing time. Maybe we buffer next sprint with fewer tasks.”</p>
<p>The goal is not to blame – it’s to <em>improve</em>. Over time, this feedback loop becomes gold. The Scrum Master usually facilitates, collects feedback (via tools like Parabol, Miro, or sticky notes), and helps turn insights into actionable experiments for the next sprint.</p>
<p>Over time, retros become the heartbeat of team evolution.</p>
<p><a target="_blank" href="https://youtu.be/5eu1HotNmWs?si=1DZaSmztB6rHyawj">Here is a video</a> highlighting the importance of a Retro and Sprint Review.</p>
<h3 id="heading-why-retrospection-matters-more-than-you-think">🧠 Why Retrospection Matters More Than You Think</h3>
<p>The Sprint Retrospective is more than just another meeting. It’s a mirror for your team – a safe, structured space to pause, reflect, and improve together.</p>
<p>You discuss:</p>
<p>✅ what went well</p>
<p>❌ what did not go well</p>
<p>🔁 what could we do better next time</p>
<p>Great teams don't just deliver great software, they continually deliver better ways of working.</p>
<p>This is why many experienced Scrum practitioners consider the retro to be the most important event in Scrum. Code is deployed once, but process improvements grow exponentially, sprint after sprint.</p>
<h2 id="heading-tools-you-might-encounter"><strong>Tools You Might Encounter</strong></h2>
<p>Scrum doesn’t require software, but real-world teams use a variety of tools:</p>
<ul>
<li><p><strong>Jira</strong> – Tracks sprints, issues, velocity</p>
</li>
<li><p><strong>Trello</strong> – Simple board, good for small teams</p>
</li>
<li><p><strong>Slack</strong> – Where standups often happen if async</p>
</li>
<li><p><strong>Notion / Confluence</strong> – Docs, retros, notes</p>
</li>
<li><p><strong>GitHub Projects</strong> – Lightweight planning for devs</p>
</li>
</ul>
<p>Don’t worry if you’re not fluent in these yet. They’re tools – you’ll learn them on the job.</p>
<h2 id="heading-if-youre-preparing-for-a-job-heres-what-you-can-do"><strong>If You’re Preparing for a Job, Here’s What You Can Do</strong></h2>
<ul>
<li><p>✍️ Practice writing user stories from your side projects</p>
</li>
<li><p>🧪 Run a mini-sprint: Plan your weekend project, set goals, and “review” it at the end</p>
</li>
<li><p>🤝 Contribute to an open-source project that uses Scrum or Agile workflows</p>
</li>
<li><p>🧾 Write about what you learned – maybe as a tutorial (<em>hint hint</em>)</p>
</li>
</ul>
<h2 id="heading-final-thoughts"><strong>Final Thoughts</strong></h2>
<p>So to recap, Scrum is a simple yet powerful way for teams to work together, stay organized, and deliver results quickly. It runs in short cycles called <strong>sprints</strong>, where the team plans what to do, checks in daily, shows their progress at the end, and reflects on how to improve.</p>
<p>The four key ceremonies – <strong>Sprint Planning</strong>, <strong>Daily Scrum</strong>, <strong>Sprint Review</strong>, and <strong>Sprint Retrospective</strong> – help keep everyone aligned and focused. With clear roles and regular feedback, Scrum makes it easier to handle changes, solve problems early, and continuously get better as a team.</p>
<p>But scrum isn’t a magic spell. It’s just a way for humans to build complex things – together – without falling apart.</p>
<p>You don’t need to be a Scrum Master. You don’t need a certification. But if you understand how sprints work, what’s expected of you, and how to show up to meetings with clarity and candor, you’re 10 steps ahead of most.</p>
<p>Scrum helps teams talk, plan, build, and learn. And now? You can too.</p>
<p>If you liked this, please do share. You never know who it might help out.</p>
<p>Until then…keep learning, unlearning, and relearning!!!</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Stop Chasing Productivity and Start Moving with Purpose ]]>
                </title>
                <description>
                    <![CDATA[ Most people know how to set goals. And many understand that developing good habits is key to reaching those goals. Yet, despite this knowledge, it's still easy to feel stuck – or worse, in motion with ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-set-goals-using-the-path-framework/</link>
                <guid isPermaLink="false">68654987cd4d0c286c5cc497</guid>
                
                    <category>
                        <![CDATA[ goals ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ habits ]]>
                    </category>
                
                    <category>
                        <![CDATA[ self-improvement  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Career development  ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Brandon Wozniewicz ]]>
                </dc:creator>
                <pubDate>Wed, 02 Jul 2025 15:00:23 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1750868906416/7cba189f-0c53-4beb-a0d6-cbb034fc73bb.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Most people know how to set goals. And many understand that developing good habits is key to reaching those goals. Yet, despite this knowledge, it's still easy to feel stuck – or worse, in motion without direction.</p>
<p>We chase productivity without asking a deeper question: <em>Are my actions actually moving me toward who I want to become?</em> Being busy feels good. It's a quick hit of dopamine every time we check something off our to-do list – even if that list has nothing to do with our actual goals.</p>
<p>In my own pursuit of reaching my goals, I began developing a simple framework to help me align my daily actions with the person I wanted to be. This isn't a radically new concept here. It is more like a refined mental model that’s built from things you've probably heard and read before. But it’s designed to fit together in a clear, usable way.</p>
<p>The goal is to help bridge the gap between big-picture intentions and everyday behavior. I call it <strong>PATH</strong>.</p>
<p>It stands for:</p>
<ul>
<li><p><strong>Purpose</strong> – your <em>why</em></p>
</li>
<li><p><strong>Aspirations</strong> – the vision of who you want to become</p>
</li>
<li><p><strong>Targets</strong> – clear, measurable goals</p>
</li>
<li><p><strong>Habits</strong> – the consistent actions that support those goals</p>
</li>
</ul>
<p>This is the framework I use to stay oriented. Not just to be productive, but to be <em>intentional</em>. I still get off track, but I find my way back a bit quicker.</p>
<p>In this article, you’ll learn how to apply the PATH framework to clarify your direction, set meaningful goals, and build habits that stick.</p>
<h3 id="heading-table-of-contents">Table of Contents</h3>
<ol>
<li><p><a href="#heading-busy-doesnt-mean-effective">Busy Doesn't Mean Effective</a></p>
</li>
<li><p><a href="#heading-the-power-of-frameworks">The Power of Frameworks</a></p>
</li>
<li><p><a href="#heading-a-framework-for-reaching-your-goals">A Framework For Reaching Your Goals</a></p>
</li>
<li><p><a href="#heading-complexity-and-difficulty-are-not-synonyms">Complexity and Difficulty Are Not Synonyms</a></p>
</li>
<li><p><a href="#heading-summary">Summary</a></p>
</li>
</ol>
<h2 id="heading-busy-doesnt-mean-effective">Busy Doesn't Mean Effective</h2>
<p>Being busy can feel like progress. Sometimes it is – you're moving toward your goals, checking boxes, staying active. But other times, it's just noise. A way to avoid sitting still. A way to avoid asking the harder question: <em>Is this making a meaningful difference?</em></p>
<p>Sometimes, we chase productivity not because we're clear, but because, in fact, we're <em>uncertain</em>. And doing something – anything – feels better than acknowledging we might be lost.</p>
<p>On the other hand, you can have clear goals and develop effective habits. But if someone asked you why you picked those goals, would you have an answer? Why do you want to lose ten pounds? Why do you want to start that company? What are you really aiming for?</p>
<p>Here's a thought experiment: Imagine your funeral. You get to pick one person to give your eulogy – and they can only say one sentence about you. What do you hope they'll say?</p>
<p>This is a personal question. And I know my answer very clearly. Do you know yours?</p>
<h2 id="heading-the-power-of-frameworks">The Power of Frameworks</h2>
<blockquote>
<p>You do not rise to the level of your goals. You fall to the level of your systems.</p>
<p>— James Clear</p>
</blockquote>
<p>In programming, a framework is predefined code that helps developers build software more efficiently and effectively. It abstracts away the implementation details of common problems – things you <em>could</em> handle yourself, but probably don't need to. The tradeoff? You give up some flexibility in exchange for speed. In other words, frameworks help you solve your problem faster by <em>deciding a few things for you</em>.</p>
<p>Developers lean on frameworks like React or .NET because they help us focus on solving meaningful problems, rather than wrestling with boilerplate code. PATH works the same way: it abstracts the structure so you can spend more time executing on what matters.</p>
<p>When it comes to setting goals, it's no different. It's easy to get lost in these implementation details and end up overcomplicating the process. We want the perfect strategy or the ideal plan. But in reality, progress almost always beats perfection. Initially, we don't need the most elegant system – we need one that we can follow.</p>
<p>That's where frameworks shine. They reduce friction and help you stop tinkering with the <em>how</em> and start taking action on the <em>what</em>. They free up mental energy, allowing you to focus on actually solving the problem.</p>
<p>This isn't new. Every great tool – whether it's a budgeting app, a productivity system, or a JavaScript library – obscures just enough complexity to help you move towards a solution faster.</p>
<h2 id="heading-a-framework-for-reaching-your-goals">A Framework For Reaching Your Goals</h2>
<p>PATH is a framework I've used for years to align my actions with my desired future self. Most goal-setting systems start with habits or outcomes, but PATH begins a bit further back: your purpose.</p>
<h3 id="heading-p-is-for-purpose"><strong>P is for Purpose</strong></h3>
<p>Purpose is the core of who you are and what matters most. It is your mission statement, no more than a sentence or two. It should be <em>you.</em> A strong purpose will help you get back on track when you veer off course.</p>
<h3 id="heading-a-is-for-aspirations"><strong>A is for Aspirations</strong></h3>
<p>Once you've decided on your purpose, the next step is to dream a little. This is the fun part.</p>
<p>Where do you want to be in the next 5 to 10 years? Try to picture a typical day of your ideal future – not necessarily what you own, but what you experience and do.</p>
<ul>
<li><p>Where do you live?</p>
</li>
<li><p>What time do you wake up?</p>
</li>
<li><p>What do you do during the day?</p>
</li>
<li><p>Who are you with?</p>
</li>
</ul>
<p>Here is an example:</p>
<p><em>I live by a beautiful lake in the mountains. I get up around 7 am, go for a long run, and then eat a healthy breakfast. I spend my day writing. Evenings are slow, spent laughing on the porch with friends and family.</em></p>
<p>Now, let's break that down into aspirations – broad themes that define the kind of life you're building. From that vision, here are three I see:</p>
<ul>
<li><p>Be in good shape</p>
</li>
<li><p>Be a writer</p>
</li>
<li><p>Spend quality time with friends and family</p>
</li>
</ul>
<p>These are your <strong>aspirations</strong> – the "A" in PATH. And they're <em>not</em> meant to be specific or time-bound. Think of them as a compass, not a destination. Their job is to give you something to aim at over and over again.</p>
<h3 id="heading-t-is-for-targets"><strong>T is for Targets</strong></h3>
<p>Targets are the specific goals we aim to achieve.</p>
<p>Each aspiration should have one or more targets – clear, time-bound goals that move you in the direction of your aspiration.</p>
<p>These targets should follow the SMART framework:</p>
<ul>
<li><p>Specific</p>
</li>
<li><p>Measurable</p>
</li>
<li><p>Attainable</p>
</li>
<li><p>Realistic</p>
</li>
<li><p>Time-bound</p>
</li>
</ul>
<p>For example, if you aspire to become a software developer, a target might be:</p>
<p><em>Contribute one fix or update to an open-source project by the end of the month.</em></p>
<p>If aspirations are our compass, targets are the destination. They let you measure progress and know when you've arrived.</p>
<h3 id="heading-h-is-for-habits"><strong>H is for Habits</strong></h3>
<p>Habits are where the rubber meets the road.</p>
<p>Every target should have one or more supporting habits – things you do consistently that move you towards your goal. While they will generally be daily or weekly routines, one-off tasks are also acceptable. The idea is these are things that <strong>move the needle.</strong></p>
<p>For example, if your target is to run a 5k event, a habit might be:</p>
<p><em>Run 3 miles every other day.</em></p>
<p>Or, if you're just starting, you may want to create a one-off task such as:</p>
<p><em>Map out a running route.</em></p>
<p>Again, these habits (or tasks) are <strong>needle-movers</strong>. Following them – <em>actually</em> following them – should almost guarantee that you reach your targets.</p>
<p>When it comes to building a habit, the key is to start small, sometimes <em>really</em> small. In the beginning, the goal isn’t performance, it’s momentum. And while momentum can be hard to start, once it’s moving, it’s even harder to stop.</p>
<p>If you’re trying to build a writing habit, begin with two sentences. If you want to exercise more, start by putting on your workout clothes. Or just drive to the gym. The point is to make starting frictionless.</p>
<p>Consistency also depends on cues. Every habit needs a reliable trigger – something that prompts you to take action. It might be a specific time of day, walking in the door after work, or finishing your morning coffee. Over time, that cue becomes automatic, and so does the habit.</p>
<h2 id="heading-complexity-and-difficulty-are-not-synonyms">Complexity and Difficulty Are Not Synonyms</h2>
<p>There's a moment in the boxing film <em>Bleed for This</em> where the main character is asked, "What's the biggest lie you've ever been told?" He answers:</p>
<p><em>"It's not that simple."</em></p>
<p>The interviewer tries to clarify – as if she believes the main character doesn't understand the question – but he cuts her off and essentially says:</p>
<p><em>"No, that's the lie. It</em> <em><strong>is</strong></em> <em>that simple."</em></p>
<p>That line stuck with me, because we often treat life like it requires a perfect plan before we can begin. However, sometimes the hardest part is simply deciding.</p>
<p>Don't confuse something <em>hard</em> with something that's <em>complex</em>. In my experience, the most meaningful things in life are often simple yet challenging.</p>
<p>Knowing what to do isn't the challenge. It's doing it – over and over again, especially when it's boring, inconvenient, or the outcome is uncertain. That's why clarity matters, and frameworks can help.</p>
<p>There's the person who spends their entire life looking for an elevator. And then there's the person who starts climbing the stairs.</p>
<p>Figure out who you want to be, and filter your goals and actions through that lens.</p>
<p>I'd bet almost anyone reading this could name a few things that would take less than an hour a day that would completely change their life over time. The difference – the <em>only</em> difference –&nbsp;is that the person who gets clear on what they want and then actually does those things every day...gets there.</p>
<p>At the end of the day, the goal isn't to be productive. It's to be <em>intentional</em>. To align your daily actions with your goals and ensure those goals are pushing you toward the person you want to become. That's the idea behind PATH – a framework for being intentional.</p>
<h2 id="heading-summary"><strong>Summary</strong></h2>
<p>If you remember nothing else, here’s the heart of PATH:</p>
<ul>
<li><p><strong>Purpose</strong> – Define your <em>why</em>. A short, personal mission statement that keeps you grounded.</p>
</li>
<li><p><strong>Aspirations</strong> – Paint a picture of who you want to become. Think 5–10 years out, focused on experience, not possessions.</p>
</li>
<li><p><strong>Targets</strong> – Turn aspirations into SMART goals with clear deadlines. These give your vision structure.</p>
</li>
<li><p><strong>Habits</strong> – Identify consistent, meaningful actions that drive progress toward your targets – daily, weekly, or even one-off tasks.</p>
</li>
</ul>
<p>I’ve created a free Notion template to help you get started with the PATH framework.<br>→ <a href="https://www.notion.com/templates/path-goal-tracker-essentials">PATH Goal Tracker Essentials</a></p>
<p>There’s also an upgraded version available for those who want habit tracking, progress calculations, and more.<br>→ <a href="https://www.notion.com/templates/path-goal-tracker-plus">PATH Goal Tracker Plus</a></p>
<p>Found this helpful? I write about practical automation, productivity systems, and building smarter workflows — without the jargon. Visit me at <a href="http://brandonwoz.com">brandonwoz.com</a>.</p>
 ]]>
                </content:encoded>
            </item>
        
            <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[ How to Automate CI/CD with GitHub Actions and Streamline Your Workflow ]]>
                </title>
                <description>
                    <![CDATA[ CI/CD stands for Continuous Integration and Continuous Delivery. It is a system or set of processes and methodologies that help developers quickly update codebases and deploy applications. The Continuous Integration (CI) part of CI/CD means that deve... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/automate-cicd-with-github-actions-streamline-workflow/</link>
                <guid isPermaLink="false">67fd2db6c741f3f1aec5ecd2</guid>
                
                    <category>
                        <![CDATA[ github-actions ]]>
                    </category>
                
                    <category>
                        <![CDATA[ GitHub ]]>
                    </category>
                
                    <category>
                        <![CDATA[ workflow ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Chidiadi Anyanwu ]]>
                </dc:creator>
                <pubDate>Mon, 14 Apr 2025 15:45:58 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1744638276204/5cf04403-6bf0-4bf1-b9d3-89722bd90425.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>CI/CD stands for Continuous Integration and Continuous Delivery. It is a system or set of processes and methodologies that help developers quickly update codebases and deploy applications.</p>
<p>The Continuous Integration (CI) part of CI/CD means that developers can always integrate or merge their changes into the shared repository without breaking anything. Continuous Delivery, on the other hand, means that the code changes are automatically prepared for release after testing and validation.</p>
<p>CI/CD primarily involves various stages like building, testing, staging and deployment.</p>
<ul>
<li><p><strong>Build phase:</strong> This is where the code and its dependencies are compiled into a single executable. This is the first phase of Continuous Integration, and is triggered by an event like pushing code to the repository.</p>
</li>
<li><p><strong>Test phase:</strong> Here, the built artifacts are tested to be sure that the code runs as expected.</p>
</li>
<li><p><strong>Staging:</strong> Here, the application is run in a production-like environment so as to be sure it is production ready.</p>
</li>
<li><p><strong>Deployment:</strong> Here, the application is automatically deployed to the end-users.</p>
</li>
</ul>
<p>In this article, I’m going to explain how GitHub Actions works. I’ll also talk about basic GitHub Actions concepts, and then we’ll use it to build an example CI/CD pipeline.</p>
<h2 id="heading-what-is-github-actions">What is GitHub Actions?</h2>
<p>GitHub Actions is a service or feature of the GitHub platform that lets developers create their own CI/CD workflows directly on GitHub. It runs jobs on containers hosted by GitHub. The tasks are executed as defined in a YAML file called a workflow. This workflow file has to live on the <em>.github/workflows</em> folder on the repository for it to work.</p>
<h2 id="heading-basic-github-actions-concepts">Basic GitHub Actions Concepts</h2>
<p>GitHub Actions consists of events, jobs, tasks, runners, workflows, and various other features. Here is a brief explanation of the main concepts:</p>
<p><strong>Events:</strong> An event is basically something that happened. With GitHub, an event can be a push (when you push your code to the repository), a pull request, or even a cron job. These events trigger the CI/CD process.</p>
<p><strong>Tasks:</strong> When you use CI/CD, you want to be able to trigger an activity that should be done automatically. That activity is known as a task or step in GitHub. It could be building your code or testing it or deploying it.</p>
<p>Each of those tasks has to be defined by commands. A GitHub Actions task usually consists of the name, and the instructions on what to do in the form of a command which starts with  <code>- run:</code> or an Action which starts with <code>- uses:</code>.</p>
<pre><code class="lang-yaml"><span class="hljs-attr">steps:</span>
  <span class="hljs-bullet">-</span> <span class="hljs-attr">name:</span> <span class="hljs-string">Checkout</span> <span class="hljs-string">code</span>
    <span class="hljs-attr">uses:</span> <span class="hljs-string">actions/checkout@v3</span>

  <span class="hljs-bullet">-</span> <span class="hljs-attr">name:</span> <span class="hljs-string">Set</span> <span class="hljs-string">up</span> <span class="hljs-string">Node.js</span>
    <span class="hljs-attr">uses:</span> <span class="hljs-string">actions/setup-node@v3</span>
    <span class="hljs-attr">with:</span>
      <span class="hljs-attr">node-version:</span> <span class="hljs-number">16</span>

  <span class="hljs-bullet">-</span> <span class="hljs-attr">name:</span> <span class="hljs-string">Install</span> <span class="hljs-string">dependencies</span>
    <span class="hljs-attr">run:</span> <span class="hljs-string">npm</span> <span class="hljs-string">install</span>

  <span class="hljs-bullet">-</span> <span class="hljs-attr">name:</span> <span class="hljs-string">Run</span> <span class="hljs-string">tests</span>
    <span class="hljs-attr">run:</span> <span class="hljs-string">npm</span> <span class="hljs-string">test</span>

  <span class="hljs-bullet">-</span> <span class="hljs-attr">name:</span> <span class="hljs-string">Build</span> <span class="hljs-string">project</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-bullet">-</span> <span class="hljs-attr">name:</span> <span class="hljs-string">Deploy</span>
    <span class="hljs-attr">run:</span> <span class="hljs-string">echo</span> <span class="hljs-string">"Deploy step goes here"</span>
</code></pre>
<p><strong>Runner:</strong> A GitHub runner is a server that runs your tasks. It executes what is defined in your GitHub workflow. You can use your own runners or you can use the GitHub runners.</p>
<p><strong>Job:</strong> A job is a collection of steps that are being executed on the same runner. Jobs are defined in a file called the workflow.</p>
<p><strong>Workflow:</strong> The GitHub workflow is a series of jobs defined in a YAML file, that are triggered upon an event. The events do not trigger individual tasks. They can only trigger workflows. Then the tasks in the jobs of the workflow are executed.</p>
<p><strong>Contexts:</strong> These provide a way to access information about workflows, jobs, and environments in GitHub. They are accessed with the expression <code>$${{ &lt;context&gt; }}</code>. Examples include <code>github</code>, <code>env</code>, <code>vars</code>, and <code>secrets</code>. The <code>github</code> context is used to access information about the workflow. For example:</p>
<pre><code class="lang-yaml"><span class="hljs-string">$${{github.repository}}</span> <span class="hljs-comment"># should tell the name of the repository</span>

<span class="hljs-string">$${{github.actor}}</span>  <span class="hljs-comment"># should tell the username of user that initially triggered the workflow</span>
</code></pre>
<p><strong>Secrets:</strong> This is used to store and access sensitive information that’s used by, and is available to, the workflow. Secrets are redacted when printed to the log. An example is $${{secrets.GITHUB_TOKEN}}.</p>
<h2 id="heading-how-to-build-a-simple-cicd-pipeline">How to Build a Simple CI/CD Pipeline</h2>
<p>Here, we’re going to build an example workflow to deploy a simple HTML and CSS website to GitHub Pages. Follow the steps below:</p>
<ol>
<li><p>Go to the sample code in my repository and fork it from <a target="_blank" href="https://github.com/chidiadi01/StaticPage-Starter">here</a>.</p>
</li>
<li><p>Go to the settings tab in the GitHub repository:</p>
</li>
</ol>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1744220928970/d2f62ae0-49be-4770-b931-59e5bc28e20e.png" alt="Settings tab" class="image--center mx-auto" width="908" height="39" loading="lazy"></p>
<ol start="3">
<li><p>Go to the Pages settings:</p>
<p> <img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1744220974335/4aeac1df-be0d-493d-98d3-fb9ea4d48ca0.png" alt="Pages settings menu" class="image--center mx-auto" width="347" height="480" loading="lazy"></p>
</li>
<li><p>Set the deployment source to the <code>main</code> branch:</p>
<p> <img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1744290941501/365d8b5d-1265-42be-9de4-d3a07b984736.png" alt="Setting deployment source to main branch in GitHub pages" class="image--center mx-auto" width="858" height="369" loading="lazy"></p>
</li>
<li><p>Go to the General Actions settings and scroll down to the bottom:</p>
</li>
<li><p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1744221468786/d94fe477-65a3-49dc-85ea-6ab8cb2f9c63.png" alt="Find General Actions setting" class="image--center mx-auto" width="355" height="568" loading="lazy"></p>
<p> At the bottom, set the Workflow permissions to read and write:</p>
</li>
</ol>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1744221589612/4f5b1cf2-8343-4da8-ad61-21ba76319ffc.png" alt="Set workflow permissions to read and write" class="image--center mx-auto" width="898" height="394" loading="lazy"></p>
<ol start="7">
<li><p>In the GitHub repository, you can clone it to your PC or press the fullstop (.) on your keyboard to open GitHub Codespaces, the online version of VS Code.</p>
</li>
<li><p>Go to the sidebar and click on create a new file:</p>
<p> <img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1744292745424/a3ca0a1e-13cf-4182-8425-9c3500e01e3d.png" alt="Creating new file" class="image--center mx-auto" width="924" height="394" loading="lazy"></p>
</li>
<li><p>Create a workflows folder and file. You can call it <code>deploy.yaml</code>.</p>
<p> <img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1744292931628/300665a5-d517-46b1-9b30-21dd4bc228a6.png" alt="Creating a workflows folder and file named deploy.yaml" class="image--center mx-auto" width="335" height="215" loading="lazy"></p>
</li>
<li><p>Copy this code into the file:</p>
</li>
</ol>
<pre><code class="lang-yaml"><span class="hljs-attr">name:</span> <span class="hljs-string">Deploy</span> <span class="hljs-string">Static</span> <span class="hljs-string">HTML</span> <span class="hljs-string">and</span> <span class="hljs-string">CSS</span> <span class="hljs-string">to</span> <span class="hljs-string">GitHub</span> <span class="hljs-string">Pages</span>

<span class="hljs-comment"># Trigger the workflow on push to the main branch</span>

<span class="hljs-attr">on:</span>
  <span class="hljs-attr">push:</span>
    <span class="hljs-attr">branches:</span>
      <span class="hljs-bullet">-</span> <span class="hljs-string">main</span>
<span class="hljs-comment"># Define what operating system the job should run on</span>
<span class="hljs-attr">jobs:</span>
  <span class="hljs-attr">deploy:</span>
    <span class="hljs-attr">runs-on:</span> <span class="hljs-string">ubuntu-latest</span>
    <span class="hljs-attr">permissions:</span>
      <span class="hljs-attr">contents:</span> <span class="hljs-string">write</span>

    <span class="hljs-attr">steps:</span>
    <span class="hljs-comment"># Step 1: Checkout the repository</span>
    <span class="hljs-bullet">-</span> <span class="hljs-attr">name:</span> <span class="hljs-string">Checkout</span> <span class="hljs-string">Code</span>
      <span class="hljs-attr">uses:</span> <span class="hljs-string">actions/checkout@v4</span>

    <span class="hljs-comment"># Step 2: Check the files that have been checked out</span>
    <span class="hljs-bullet">-</span> <span class="hljs-attr">name:</span> <span class="hljs-string">Display</span> <span class="hljs-string">files</span>
      <span class="hljs-attr">run:</span> <span class="hljs-string">ls</span>

    <span class="hljs-comment"># Step 3: Deploy to GitHub Pages</span>
    <span class="hljs-bullet">-</span> <span class="hljs-attr">name:</span> <span class="hljs-string">Deploy</span>
      <span class="hljs-attr">uses:</span> <span class="hljs-string">peaceiris/actions-gh-pages@v4</span>
      <span class="hljs-attr">with:</span>
        <span class="hljs-attr">github_token:</span> <span class="hljs-string">${{</span> <span class="hljs-string">secrets.GITHUB_TOKEN</span> <span class="hljs-string">}}</span>
        <span class="hljs-attr">publish_dir:</span> <span class="hljs-string">./</span> <span class="hljs-comment"># The HTML and CSS files lie in the root directory, hence that should be the publish directory</span>
</code></pre>
<ol start="11">
<li>Commit the code. You should see the job running when you go back to the repo:</li>
</ol>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1744292376966/93d6078c-02c3-41f4-a4b5-09639522bbbe.png" alt="Running job" class="image--center mx-auto" width="904" height="53" loading="lazy"></p>
<p>When you’re done, go back to the home page of the repository and click on the Deployments section. There, you will see the GitHub Pages link to the deployment:</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1744293345646/e523a2b9-73a6-4ecf-9df8-99e03b457ad1.png" alt="GitHub Pages link" class="image--center mx-auto" width="516" height="338" loading="lazy"></p>
<p>When you’re done, your repository should look like <a target="_blank" href="https://github.com/chidiadi01/StaticPage-Final">this</a>.</p>
<h2 id="heading-conclusion">Conclusion</h2>
<p>In this article, you learned about how the CI/CD process works. We also covered the basic concepts of GitHub Actions. Finally, we created an example CI/CD pipeline with GitHub Actions. If you enjoyed this article, share it with others. You can also reach me on <a target="_blank" href="https://linkedin.com/in/chidiadi-anyanwu">LinkedIn</a> or <a target="_blank" href="https://x.com/chidiadi01">X</a>.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Secure Ways to Access DeepSeek Using Third-Party Apps ]]>
                </title>
                <description>
                    <![CDATA[ AI-powered coding assistants have changed the way developers write software. They help automate repetitive tasks, catch errors early, and speed up development. But not all AI coding tools are built with security in mind. One of the most promising fre... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/secure-ways-to-access-deepseek-using-third-party-apps/</link>
                <guid isPermaLink="false">67b746282e12c8160896e071</guid>
                
                    <category>
                        <![CDATA[ Deepseek ]]>
                    </category>
                
                    <category>
                        <![CDATA[ AI ]]>
                    </category>
                
                    <category>
                        <![CDATA[ #ChatGPT #AI #MachineLearning #CodingAssistance #Programming #ArtificialIntelligence #CodeGeneration #SoftwareDevelopment #Technology #AIAssistance #DeveloperTools #NaturalLanguageProcessing #OpenAI #CodingTips #Innovation ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Programming Blogs ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Oluwadamisi Samuel ]]>
                </dc:creator>
                <pubDate>Thu, 20 Feb 2025 15:11:36 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1740064259806/efd0af33-1df9-415e-8944-6311e75391d0.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>AI-powered coding assistants have changed the way developers write software. They help automate repetitive tasks, catch errors early, and speed up development. But not all AI coding tools are built with security in mind.</p>
<p>One of the most promising free AI coding assistants is DeepSeek. It’s been hailed as a game changer and has a reasoning model on par with or even better than OpenAI o1. It offers advanced code suggestions and supports multiple programming languages.</p>
<p>But here’s the problem—do you know what happens to your code after you enter it? Many free AI models operate as black boxes, with little transparency about how they handle user data. This raises serious concerns about code privacy, intellectual property security, and compliance with industry regulations.</p>
<p>For developers working on proprietary software or handling sensitive data, these risks aren’t just theoretical—they can lead to source code leaks, compliance violations, or even unauthorized AI training on your data.</p>
<p>That’s why third-party AI coding assistants are becoming the preferred choice. Unlike free tools, these alternatives offer better data protection, stronger security measures, and compliance-friendly environments without sacrificing performance.</p>
<p>In this article, we’ll break down how free AI coding assistants like DeepSeek pose security risks and why third-party alternatives provide a safer, more reliable solution for developers at all levels. I’ll also share with you my personal choices and discuss their features and strengths.</p>
<h2 id="heading-benefits-of-deepseek">Benefits of DeepSeek</h2>
<p>AI coding assistants have improved a lot recently, and DeepSeek-R1 is one of the most advanced free tools available. It goes beyond simple autocomplete, offering intelligent code suggestions, multi-language support, and AI-powered debugging—all for free.</p>
<p>Its model leverages technologies like Retrieval-Augmented Generation (RAG) to achieve context-awareness and it uses reinforcement learning to approach tasks with reasoning rather than simply predicting the most likely outcome and shows the user it’s chain of thought and process by which it came to a conclusion or carried out the task given to it.</p>
<h3 id="heading-what-makes-deepseek-stand-out">What Makes DeepSeek Stand Out?</h3>
<ul>
<li><p>DeepSeek understands context and intent, generating full functions instead of just completing words or lines. It also incorporates reinforcement learning to give better and more accurate responses, much like human reasoning. This makes the code it outputs more accurate.</p>
</li>
<li><p>Deepseek has ‘chain of thought” capabilities and it shows users it’s reasoning process while completing tasks or user inputs.</p>
</li>
<li><p>DeepSeek has support for multiple languages, and works seamlessly across Python, JavaScript, Go, Rust, and more.</p>
</li>
<li><p>DeepSeek is also very fast, giving you near-instant recommendations and helping you write code faster without breaking your flow.</p>
</li>
<li><p>DeepSeek is also a helpful debugger, as it not only suggests code but can also identify errors and recommend fixes. It can achieve this because the model is context-aware.</p>
</li>
<li><p>Finally, it’s free. Unlike some AI tools locked behind paywalls, DeepSeek provides all these features at no cost.</p>
</li>
</ul>
<p>With these capabilities, it’s no surprise that DeepSeek is gaining traction among developers looking for a free AI-powered coding assistant reported as the <a target="_blank" href="https://www.yahoo.com/tech/deepseek-hits-no-1-apples-023959452.html">Most downloaded app within Apple’s Top Free App category</a>. But does free always mean safe?</p>
<h2 id="heading-the-security-risks-of-free-ai-models-like-deepseek">The Security Risks of Free AI Models Like DeepSeek</h2>
<p>For all its benefits, DeepSeek—like most free AI coding assistants—comes with security risks that can’t be ignored.</p>
<p>First of all, do you know what happens to your code when you input it? DeepSeek doesn’t clearly disclose whether it stores or analyzes user input, raising concerns about data privacy and proprietary code exposure.</p>
<p>During a call with members of her subscription training, Heather Murray, an AI consultant for major corporations and the U.K. government who serves on the ISO committee for AI security, expressed concerns about DeepSeek’s policies regarding user data:</p>
<blockquote>
<p>“It keeps your data as long as it wants to, and even after users leave the app, it doesn’t delete their data. It’s going to hang on to that. That is a massive worry. All of that data is then transmitted and stored on servers in China. So that removes user data from under U.S., U.K. or European law — moving it under Chinese law, which is very, very different.”</p>
</blockquote>
<p>There are also potential intellectual property risks to think about. If DeepSeek retains input data, could fragments of your code appear in suggestions to other users? This is a real risk with AI models trained on user data. This means that any proprietary code you submit could become a suggestion for competitors using the same platform.</p>
<p>DeepSeek also hasn’t implemented any enterprise security standards. Unlike paid enterprise-grade AI solutions, DeepSeek does not provide guarantees of compliance with security frameworks like GDPR, SOC 2, or HIPAA.</p>
<p>Finally, there’s no guaranteed data isolation. Enterprise AI solutions often provide private model deployments or air-gapped environments, while free AI tools rely on centralized cloud processing, increasing exposure risks. This means your code is sent to external servers, increasing the risk of leaks or unauthorized access.</p>
<p>These risks don’t mean DeepSeek isn’t useful—but they do mean developers working on proprietary projects, enterprise applications, or sensitive data should think twice before relying on it alone.</p>
<h2 id="heading-secure-alternatives-to-free-ai-coding-assistants">Secure Alternatives to Free AI Coding Assistants</h2>
<p>If you rely on free AI coding assistants, you’ll need to balance performance, usability, and security. While free models like DeepSeek offer powerful code suggestions, they lack key security features required for professional and enterprise use.</p>
<p>Third-party AI tools provide a safer alternative, ensuring data privacy, enterprise compliance, and secure code processing.</p>
<p>So you might wonder: how do these third party apps achieve this higher level of security? Well, they do it by hosting the service on their local/personal servers which are under US and EU regulations and data protection laws. This is unlike the free DeepSeek API, which may route queries through shared infrastructure, which comes with unspecified backdoor access.</p>
<p>Here are two confirmed DeepSeek-powered AI assistants that address the security limitations of free models:</p>
<h3 id="heading-1-qodogen"><strong>1. QodoGen</strong></h3>
<p>QodoGen has a secure DeepSeek-powered AI assistant. It’s built for security-conscious developers and enterprises who want the advantages of DeepSeek without exposing sensitive code.</p>
<p>Some of its features are:</p>
<ul>
<li><p>Built-in security: Unlike the free DeepSeek model, QodoGen does not store, log, or use code for training.</p>
</li>
<li><p>Enterprise-grade protection: It’s designed to meet data privacy regulations like GDPR, SOC 2, and HIPAA.</p>
</li>
<li><p>Seamless IDE integration: QodoGen provides the same intuitive, real-time assistance as DeepSeek but with enhanced security controls. It’s available on your favorite IDEs like VSCode and JetBrains IDE.</p>
</li>
<li><p>Optional Data Sharing: Allows organizations and developers to fine-tune security settings and host the model on-premises or in a private cloud. It also provides users with the choice to Opt Out of data sharing with it’s servers all together( Go to the extension's settings and check the box <code>Opt out of sharing my data with Qodo</code>.)</p>
</li>
<li><p>Custom AI model options: It also has other AI models you can choose from to suit your personal or organization’s needs like OpenAI o1, GPT-4, Claude Sonnet 3.5, Gemini 2.0 flash and so on.</p>
</li>
<li><p>Guaranteed data isolation: QodoGen provides private model deployments / air-gapped environments which prevent unauthorized data collection.</p>
</li>
</ul>
<h3 id="heading-example-of-deepseek-r1-showing-chain-of-thought-on-qodogen">Example of Deepseek-R1 showing chain of thought on QodoGen</h3>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1739948742414/ea062034-6fcb-4ab3-93e3-cbc3f519369a.webp" alt="ea062034-6fcb-4ab3-93e3-cbc3f519369a" class="image--center mx-auto" width="600" height="400" loading="lazy"></p>
<h3 id="heading-how-to-get-qodogen">How to get QodoGen</h3>
<p>To get QodoGen set up, visit its page on <a target="_blank" href="https://marketplace.visualstudio.com/items?itemName=Codium.codium">Visual Studio Marketplace</a> to install it.</p>
<p>Alternatively, follow these steps to install the plugin from within VSCode:</p>
<ol>
<li><p>In VSCode, open the Extensions menu. You can do this by either:</p>
<ul>
<li><p>Clicking the Extensions icon in the Activity Bar on the left side.</p>
</li>
<li><p>Using the keyboard shortcut: <code>Cmd+Shift+X</code> for macOS. <code>Ctrl+Shift+X</code> for Windows and Linux.</p>
</li>
</ul>
</li>
<li><p>Type <strong>Qodo Gen</strong> in the search bar.</p>
</li>
<li><p>Click the Install button.</p>
</li>
<li><p>Sign Up with your email.</p>
</li>
</ol>
<p>To login to the Teams plan, after you have received an invitation, login using the email to which the invitation was sent. Team plans start at $15/month, while Enterprise solutions start at $45/month.</p>
<p>QodoGen also has a free plan for individual developers. <a target="_blank" href="https://www.qodo.ai/pricing/">You can check out their pricing here</a>.</p>
<h3 id="heading-2-perplexity-ai"><strong>2. Perplexity AI</strong></h3>
<p>Perplexity AI integrates DeepSeek-R1 while implementing security safeguards to minimize data risks. It originally served as a search engine for researchers, so it comes with cited sources for the output it generates. This means you can check, confirm, and further research any output it generates.</p>
<p>Some of its key features are:</p>
<ul>
<li><p>Data hosting security: User queries are processed in US/EU data centers, reducing risks associated with external data exposure.</p>
</li>
<li><p>Privacy-focused AI responses: Unlike free DeepSeek, Perplexity AI’s infrastructure prevents unauthorized data collection.</p>
</li>
<li><p>Available via web platform: Developers can access AI-assisted coding with DeepSeek’s capabilities without having to download the any application.</p>
</li>
<li><p>Gives you sources along with the output it generates, so you can be rest assured that the output is accurate (which you can confirm for yourself).</p>
</li>
<li><p>It has a free plan for individual developers, as well as a Teams subscription (starting at $20/month) and Enterprise subscription (with customizable plans). <a target="_blank" href="https://www.wheelhouse.com/products/perplexity-ai/pricing">You can check out their pricing here</a>.</p>
</li>
</ul>
<p><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXebbFPOo2iiGADXDNZSFrpRTwnaFC9ejCynScRQ9meDecqXlAqUmC6Lt20TecAHpU3LcJltaOvMzo_jzK0rqV3WEwln7eBj3mQubVoF38jfBahNwqvRPYW3TQDPjO-TdhqUNf8gag?key=J4IEKT06wkZslHq1SUCJyk0g" alt="AD_4nXebbFPOo2iiGADXDNZSFrpRTwnaFC9ejCynScRQ9meDecqXlAqUmC6Lt20TecAHpU3LcJltaOvMzo_jzK0rqV3WEwln7eBj3mQubVoF38jfBahNwqvRPYW3TQDPjO-TdhqUNf8gag?key=J4IEKT06wkZslHq1SUCJyk0g" width="600" height="400" loading="lazy"></p>
<h3 id="heading-example-of-deepseek-r1-showing-chain-of-thought-on-perplexcity-ai">Example of Deepseek-R1 showing chain of thought on Perplexcity AI</h3>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1739949029656/94879bc2-b10d-4d98-9364-14017f5728b9.png" alt="94879bc2-b10d-4d98-9364-14017f5728b9" class="image--center mx-auto" width="600" height="400" loading="lazy"></p>
<p>The above screenshot shows how it produced the output step by step. You can also see the option to read further with the dropdown buttons with sources for confirmation and resources for further study.</p>
<h2 id="heading-how-to-choose-the-right-ai-coding-assistant">How to Choose the Right AI Coding Assistant</h2>
<p>With the growing number of AI coding assistants available, selecting the right one comes down to security, data privacy, and usability. Whether you’re an individual developer or part of an enterprise team, your AI assistant should offer:</p>
<ul>
<li><p>Strong security measures</p>
</li>
<li><p>Enterprise-ready compliance</p>
</li>
<li><p>High-quality AI models</p>
</li>
<li><p>Seamless accessibility</p>
</li>
</ul>
<p>Both QodoGen and Perplexity AI have demonstrated a commitment to these principles. By integrating DeepSeek-R1, they provide cutting-edge AI assistance while maintaining security and ease of access for developers.</p>
<h3 id="heading-my-recommendation-qodogen-for-developers-perplexity-for-quick-access">My Recommendation: QodoGen for Developers, Perplexity for Quick Access</h3>
<p>For developers, teams, and enterprises, <code>QodoGen</code> is the best choice. It’s designed specifically for developers, integrating directly into popular IDEs like VS Code and JetBrains IDE. This ensures a smooth, secure, and efficient coding experience without data privacy concerns.</p>
<p>QodoGen delivers the power of DeepSeek-R1 and other top AI models while keeping your code protected within your development environment.</p>
<p>For individuals looking for an easy, web-based solution without installing an extension, <code>Perplexity AI</code> offers a good alternative. Without the need for installations, it provides AI-assisted coding in a browser, making it an accessible option if you prefer quick and hassle-free access to DeepSeek-R1 and don’t need deep IDE integration.</p>
<h2 id="heading-conclusion">Conclusion</h2>
<p>AI coding assistants have become essential tools for developers, but not all solutions prioritize security and data privacy. While free models like DeepSeek offer impressive capabilities, they come with potential risks that developers and enterprises cannot afford to overlook.</p>
<p>Third-party AI coding assistants provide a secure and reliable alternative, ensuring that code remains private while still delivering state-of-the-art AI performance. Among them, QodoGen and Perplexity AI stand out by integrating DeepSeek-R1 into their platforms before others while maintaining a strong commitment to security and accessibility.</p>
<p>For developers, teams, and enterprises, QodoGen is the ideal choice, offering a seamless IDE experience with enterprise-grade security. Meanwhile, if you prefer quick, web-based access, Perplexity AI provides a hassle-free way to leverage DeepSeek-R1 without installation.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Simple Tips to Help You Write Clean Code ]]>
                </title>
                <description>
                    <![CDATA[ Being a developer isn’t as straightforward as many people think. It’s not just about learning a programming language and typing out code to build software. There’s a lot more to it. And one of the most confusing (and often frustrating) topics for dev... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/tips-for-writing-clean-code/</link>
                <guid isPermaLink="false">67a2380b9af7e36332fde944</guid>
                
                    <category>
                        <![CDATA[ programming ]]>
                    </category>
                
                    <category>
                        <![CDATA[ clean code ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Productivity ]]>
                    </category>
                
                    <category>
                        <![CDATA[ software development ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Nitin Sharma ]]>
                </dc:creator>
                <pubDate>Tue, 04 Feb 2025 15:53:47 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1738684292390/6e844cd5-28f8-42e9-b9e3-cc6ded9ec72f.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Being a developer isn’t as straightforward as many people think.</p>
<p>It’s not just about learning a programming language and typing out code to build software. There’s a lot more to it. And one of the most confusing (and often frustrating) topics for developers is clean code.</p>
<p>So, what is clean code?</p>
<p>Simply put, it’s about writing code that’s so clear and well-organized that neither you nor anyone else will get frustrated trying to understand it six months later.</p>
<p>Think of clean code as the programming equivalent of great design — it’s functional, beautiful, and easy to work with.</p>
<p>And today, I won’t spend a lot of time explaining why clean code is important — you probably already know that. Instead, I’ll get straight to the point and share seven powerful hacks to help you write cleaner, better code.</p>
<h2 id="heading-table-of-contents"><strong>Table of Contents</strong></h2>
<ul>
<li><p><a class="post-section-overview" href="#heading-1-write-code-like-youre-explaining-it-to-a-5-year-old">1. Write Code Like You’re Explaining it to a 5-Year Old</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-2-use-ai-tools-or-an-ai-code-reviewer">2. Use AI Tools (or an AI Code Reviewer)</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-3-get-rid-of-unnecessary-comments">3. Get Rid of Unnecessary Comments</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-4-follow-the-dry-principle">4. Follow the DRY Principle</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-5-fix-your-code-formatting-amp-follow-a-consistent-style">5. Fix Your Code Formatting &amp; Follow a Consistent Style</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-6-dont-let-your-functions-do-too-much">6. Don’t Let Your Functions Do Too Much</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-7-organize-your-files-and-folders-properly">7. Organize Your Files and Folders Properly</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-wrapping-up">Wrapping Up</a></p>
</li>
</ul>
<h2 id="heading-1-write-code-like-youre-explaining-it-to-a-5-year-old"><strong>1. Write Code Like You’re Explaining it to a 5-Year Old</strong></h2>
<p>Let me be honest — if you are writing exceedingly clever code that your teammates or someone else can’t easily read, it won’t be helpful to anyone.</p>
<p>You need to write code so simple that anyone, including someone who just opened the file for the first time, can easily go through it.</p>
<p>For example, if your variable names look like this:</p>
<pre><code class="lang-plaintext">let x = y + z;
</code></pre>
<p>This isn’t helpful. No one will know what x, y, and z mean — not even you, three weeks later.</p>
<p>Variables should describe what they hold. Think of them as self-documenting comments. Here’s a better example:</p>
<pre><code class="lang-plaintext">let totalPrice = productPrice + shippingCost;
</code></pre>
<p>This simple best practice can be applied even when writing functions, comments, and more.</p>
<p>Here’s an example of hard to understand code:</p>
<pre><code class="lang-plaintext">function calc(itm) {
 let t = 0;
 for (let i = 0; i &lt; itm.length; i++) {
 t += itm[i].p;
 }
 return t;
}
</code></pre>
<p>You see, it doesn’t give you a proper idea about the function other than the logic.</p>
<p>Instead, try to write it like this:</p>
<pre><code class="lang-plaintext">function calculateTotalPrice(cartItems) {
    let totalPrice = 0;
    for (let i = 0; i &lt; cartItems.length; i++) {
        totalPrice += cartItems[i].price;
    }
    return totalPrice;
}
</code></pre>
<p>Now it’s clear just from looking at the code what’s going on.</p>
<h2 id="heading-2-use-ai-tools-or-an-ai-code-reviewer">2. Use AI Tools (or an AI Code Reviewer)</h2>
<p>AI is evolving quickly and is being used in almost every industry.</p>
<p>Well, as a developer, you can use AI to help you write clean and readable code — all thanks to AI tools like <a target="_blank" href="https://chatgpt.com/">ChatGPT</a>, <a target="_blank" href="https://claude.ai/">Claude</a>, and <a target="_blank" href="https://github.com/features/copilot">GitHub Copilot</a>.</p>
<p>For starters, you can copy and paste your code into an LLM and ask it to review your code. </p>
<p>Here’s an example of a request I made to ChatGPT:</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1738673389541/558c64b6-f92e-4ede-bd00-8fe9c98623c0.png" alt="558c64b6-f92e-4ede-bd00-8fe9c98623c0" class="image--center mx-auto" width="1146" height="826" loading="lazy"></p>
<p>And here’s what ChatGPT recommended:</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1738673434670/badadf50-2e1f-46f9-9f3b-c9b189dfaeeb.png" alt="badadf50-2e1f-46f9-9f3b-c9b189dfaeeb" class="image--center mx-auto" width="1696" height="1078" loading="lazy"></p>
<p>It even provided me with an improved version of the code. Here it is as follows:</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1738673489244/3cf70568-a418-460b-9aa6-768a544965c2.png" alt="3cf70568-a418-460b-9aa6-768a544965c2" class="image--center mx-auto" width="1566" height="1178" loading="lazy"></p>
<p>Along with that, you can also use AI-powered code reviewers like <a target="_blank" href="https://www.coderabbit.ai/">CodeRabbit AI</a>, which integrates with your pull requests to offer automated code reviews, walkthroughs, and more.</p>
<p>In simple terms, when you install CodeRabbit AI, add it to your pull request, and then create a pull request, CodeRabbit AI provides you with summaries, code reviews, walkthroughs, and more.</p>
<p>Here’s an example from an open-source repository “<a target="_blank" href="https://github.com/bitbomdev/minefield/pull/158">minefield</a>” of a summary generated by CodeRabbit AI:</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1738675580325/ef823a77-6969-4e8a-a141-640468d0169d.png" alt="ef823a77-6969-4e8a-a141-640468d0169d" class="image--center mx-auto" width="1600" height="967" loading="lazy"></p>
<p>In the above examples, CodeRabbit AI simply goes through the code and provides a great summary highlighting the new features, bug fixes, and unit tests added via a pull request.</p>
<p>If you want to learn more, <a target="_blank" href="https://docs.coderabbit.ai/getting-started/quickstart/">here’s</a> a quickstart guide that provides more info on how to get started and use CodeRabbit AI.</p>
<p>Note that, AI tools can be a great help in improving your code, but they should never replace your own thinking.</p>
<p>When AI suggests changes, always ask yourself: Does this actually make sense?</p>
<p>After all, AI isn’t perfect—it can generate incorrect code. It might also miss important details that only a human can fully understand.</p>
<p>So instead of blindly accepting AI’s suggestions, take a moment to understand why they were made.</p>
<p>Remember, the goal is to use AI to speed up your workflow, catch errors, and more—while keeping full control over your code.</p>
<h2 id="heading-3-get-rid-of-unnecessary-comments">3. Get Rid of Unnecessary Comments</h2>
<p>Writing good code comments can help others understand why your code is doing what it’s doing.</p>
<p>But I see developers writing too many comments, even where there is no need.</p>
<p>I believe that, whenever possible, good code should document itself.</p>
<p>Here’s an example of a not so helpful comment:</p>
<pre><code class="lang-plaintext">// Adding 10 to the result 
total = total + 10;
</code></pre>
<p>You see, here the comment doesn’t make sense, and it doesn’t really add anything to the code (or our understanding of it).</p>
<p>It’s a better practice to write comments only if they’re important in helping a reviewer understand why you did something in particular or if there’s some ambiguity that needs explaining.</p>
<p>Here’s an example:</p>
<pre><code class="lang-plaintext">// Adding 10 because the client requires a 10% buffer for calculations 
total = total + 10;
</code></pre>
<p>Now you can see that here the comment gives a clear idea about why the programmer added 10 to the total.</p>
<h2 id="heading-4-follow-the-dry-principle">4. Follow the DRY Principle</h2>
<p>I’ve seen a lot of programmers repeating the same logic or adding the same functionality in different files.</p>
<p>Well, you don’t need to repeat the same code everywhere because it makes the process much more complex. Keep your code DRY (Don’t Repeat Yourself).</p>
<p>Instead, abstract that logic into a single reusable function.</p>
<p>For example, instead of writing the same logic in different files:</p>
<pre><code class="lang-plaintext">if (user.age &gt; 18 &amp;&amp; user.age &lt; 65) { 
 // Do something 
}

if (user.age &gt; 18 &amp;&amp; user.age &lt; 65) { 
 // Do something else 
}
</code></pre>
<p>You can create a reusable function so that you can use the logic everywhere, as shown below:</p>
<pre><code class="lang-plaintext">function isWorkingAge(age) { 
 return age &gt; 18 &amp;&amp; age &lt; 65; 
}

if (isWorkingAge(user.age)) { 
 // Do something 
}
</code></pre>
<p>In short — write once, and use everywhere.</p>
<h2 id="heading-5-fix-your-code-formatting-amp-follow-a-consistent-style">5. Fix Your Code Formatting &amp; Follow a Consistent Style</h2>
<p>This is another simple hack, but many devs don’t even think about it.</p>
<p>First of all, you need to format your code with proper indentation.</p>
<p>You can just install a VS Code extension/linters like <a target="_blank" href="https://prettier.io/">Prettier</a>, <a target="_blank" href="https://eslint.org/">ESLint</a>, or <a target="_blank" href="https://pypi.org/project/flake8/">Flake8</a>, depending on the programming language you use. Configure a few settings, and you’re good to go.</p>
<p>These linters can help you write better code by finding mistakes, helping you follow coding rules, and keeping your code consistent. They can also catch errors, make your code easier to read, and save time on fixing bugs and reviews.</p>
<p>But fixing your formatting doesn’t just mean it’s clean code – it’s way more than that.</p>
<p>Beyond formatting, you should stick to a consistent style guide for things like function names or variable names.</p>
<p>For example, here’s some code that has an inconsistent style:</p>
<pre><code class="lang-plaintext">let total_price;  
let UserData;  
function getuser() {}
</code></pre>
<p>But some of you may ask, why is the code inconsistent?</p>
<p>Well, it uses several different naming conventions – like <code>total_price</code> uses snake_case, <code>UserData</code> uses PascalCase, and <code>getuser()</code> is in lowercase instead of camelCase.</p>
<p>This makes your code harder to read and more confusing. Instead, you can follow a consistent style. Here’s how:</p>
<pre><code class="lang-plaintext">let userData; 
let totalPrice; 
function getUser() {}
</code></pre>
<p>And just to let you know, JavaScript typically follows camelCase for variables and functions, so names like <code>getUser(), userData, and totalPrice</code> would be more consistent.</p>
<p>No matter whether you’re working in a team or solo, sticking to one style is a good idea. It makes the code clean, and the reviewer can easily go through it.</p>
<h2 id="heading-6-dont-let-your-functions-do-too-much">6. Don’t Let Your Functions Do Too Much</h2>
<p>As a programmer, I know that sometimes you need to write complex logic inside a function.</p>
<p>But most often, programmers include too much logic in a single function, causing it to do more than one thing at a time. These functions become too complex, making them hard to read or understand.</p>
<p>It’s better to create multiple smaller functions, with each function handling a single responsibility.</p>
<p>Here’s an example of a slightly too complex function:</p>
<pre><code class="lang-plaintext">function calculateCart(items) {
 let total = 0;
 for (let i = 0; i &lt; items.length; i++) {
 total += items[i].price * items[i].quantity;
 }
 return total &gt; 100 ? total * 0.9 : total;
}
</code></pre>
<p>You see, this single function does too much—it applies discounts if applicable, and calculates the total price based on quantity, making it hard to reuse for specific use cases.</p>
<p>A better way is to split it into three functions:</p>
<ul>
<li><p>One to apply the discount (if applicable).</p>
</li>
<li><p>One to calculate the total price based on quantity.</p>
</li>
<li><p>One to get the total and apply the discount if needed.</p>
</li>
</ul>
<p>This makes the code cleaner and easier to manage. Here’s an improved version:</p>
<pre><code class="lang-plaintext">function calculateCart(items) {
 const total = getCartTotal(items);
 return applyDiscount(total);
}

function getCartTotal(items) {
 return items.reduce((sum, item) =&gt; sum + item.price * item.quantity, 0);
}

function applyDiscount(total) {
 return total &gt; 100 ? total * 0.9 : total;
}
</code></pre>
<p>You see, instead of writing everything in one long block, the logic is broken into smaller, clearer functions.</p>
<p>And that’s what makes it easier for you (and everyone else) to understand.</p>
<h2 id="heading-7-organize-your-files-and-folders-properly">7. Organize Your Files and Folders Properly</h2>
<p>Now comes the most important part.</p>
<p>When you’re working on a big project, it makes no sense to dump all your code into one single folder with a bunch of random files. It’s become a nightmare for anyone trying to review the code or find a specific file.</p>
<p>Think about it — going through 50 files just to fix a bug. Nobody wants that.</p>
<p>Instead, try organizing your project into multiple folders based on pages or features.</p>
<p>And don’t stop there — break large files into smaller, specific modules based on functionality. This way, everything is neat, easy to find, and makes sense at first glance.</p>
<p>Here’s a bad example of a project structure: </p>
<pre><code class="lang-plaintext">project-folder/  
│  
├── index.html  
├── app.js  
├── helpers.js  
├── data.js  
├── user.js  
├── product.js
</code></pre>
<p>It’s messy, right? Now, here’s how you can improve it:</p>
<pre><code class="lang-plaintext">project-folder/  
│  
├── pages/  
│   ├── home/  
│   │   ├── HomePage.js  
│   │   ├── HomePage.css  
│   │   └── HomePage.test.js  
│   ├── user/  
│   │   ├── UserPage.js  
│   │   ├── UserPage.css  
│   │   └── UserPage.test.js  
│   └── product/  
│       ├── ProductPage.js  
│       ├── ProductPage.css  
│       └── ProductPage.test.js  
├── components/  
│   ├── Header.js  
│   ├── Footer.js  
│   └── Button.js  
├── utils/  
│   └── api.js  
└── index.js
</code></pre>
<p>See how simple this is?</p>
<p>You have separate folders for pages, components, and utilities. Inside each folder, files are organized by purpose and given clear names.</p>
<p>For example, if you need something for the product page, you’ll know exactly where to find it.</p>
<h2 id="heading-wrapping-up">Wrapping Up</h2>
<p>In this article, you learned the basics you need to get started writing clean, efficient, and maintainable code.</p>
<p>We discussed how to write clean code, use AI tools, apply proper code formatting techniques, structure functions effectively, and follow other best practices.</p>
<p>If you apply these tips consistently, you’ll significantly improve your coding skills and write cleaner code.</p>
<p>I hope you liked it.</p>
<p>You can connect with me on <a target="_blank" href="https://substack.com/@nitinfab">Substack</a>, and <a target="_blank" href="https://x.com/Nitinfab">Twitter</a>.</p>
<p>Also, if you're interested in learning more about AI, you can subscribe to my newsletter, <a target="_blank" href="https://aimadesimple0.substack.com/">AI Made Simple</a>, where I dive deeper into practical AI strategies for everyday people.</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>
        
    </channel>
</rss>
