<?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[ education - 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[ education - freeCodeCamp.org ]]>
            </title>
            <link>https://www.freecodecamp.org/news/</link>
        </image>
        <generator>Eleventy</generator>
        <lastBuildDate>Thu, 21 May 2026 10:21:22 +0000</lastBuildDate>
        <atom:link href="https://www.freecodecamp.org/news/tag/education/rss.xml" rel="self" type="application/rss+xml" />
        <ttl>60</ttl>
        
            <item>
                <title>
                    <![CDATA[ How to Build a Voice AI Agent Using Open-Source Tools ]]>
                </title>
                <description>
                    <![CDATA[ Voice is the next frontier of conversational AI. It is the most natural modality for people to chat and interact with another intelligent being. In the past year, frontier AI labs such as OpenAI, xAI, Anthropic, Meta, and Google have all released rea... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-build-a-voice-ai-agent-using-open-source-tools/</link>
                <guid isPermaLink="false">68f7d890413573e1d65bb331</guid>
                
                    <category>
                        <![CDATA[ AI ]]>
                    </category>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ stem ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Voice ]]>
                    </category>
                
                    <category>
                        <![CDATA[ agentic AI ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Open Source ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Rust ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Michael Yuan ]]>
                </dc:creator>
                <pubDate>Tue, 21 Oct 2025 19:01:36 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1761073279608/a73ce2cd-c95e-4f8b-b529-8774ce39a43f.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Voice is the next frontier of conversational AI. It is the most natural modality for people to chat and interact with another intelligent being.</p>
<p>In the past year, frontier AI labs such as OpenAI, xAI, Anthropic, Meta, and Google have all released real-time voice services. Yet voice apps also have the highest requirements for latency, privacy, and customization. It’s difficult to have a one-size-fits-all voice AI solution.</p>
<p>In this article, we’ll explore how to use open-source technologies to create <a target="_blank" href="https://echokit.dev/">voice AI agents</a> that utilize your custom knowledge base, voice style, actions, fine-tuned AI models, and run on your own computer.</p>
<h2 id="heading-what-well-cover">What We’ll Cover:</h2>
<ul>
<li><p><a class="post-section-overview" href="#heading-prerequisites">Prerequisites</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-what-it-looks-like">What it Looks Like</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-two-voice-ai-approaches">Two Voice AI Approaches</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-the-voice-ai-orchestrator">The Voice AI Orchestrator</a></p>
<ul>
<li><p><a class="post-section-overview" href="#heading-configure-an-asr">Configure an ASR</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-run-and-configure-a-vad">Run and configure a VAD</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-configure-an-llm">Configure an LLM</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-configure-a-tts">Configure a TTS</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-configure-mcp-and-actions">Configure MCP and actions</a></p>
</li>
</ul>
</li>
<li><p><a class="post-section-overview" href="#heading-local-ai-with-llamaedge">Local AI With LlamaEdge</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-conclusion">Conclusion</a></p>
</li>
</ul>
<h2 id="heading-prerequisites">Prerequisites</h2>
<p>You’ll need to have and know a few things to most effectively follow along with this tutorial:</p>
<ul>
<li><p>Access to a Linux-like system. Mac or Windows WSL suffice too.</p>
</li>
<li><p>Be comfortable with command line (CLI) tools.</p>
</li>
<li><p>Be able to run server applications on the Linux system.</p>
</li>
<li><p>Have/get free API keys from <a target="_blank" href="https://console.groq.com/keys">Groq</a> and <a target="_blank" href="https://elevenlabs.io/app/sign-in?redirect=%2Fapp%2Fdevelopers%2Fapi-keys">ElevenLabs</a>.</p>
</li>
<li><p>Optional: be able to compile and build Rust source code.</p>
</li>
<li><p>Optional: have/get an <a target="_blank" href="https://echokit.dev/echokit_diy.html">EchoKit device</a> or assemble your own.</p>
</li>
</ul>
<h2 id="heading-what-it-looks-like">What it Looks Like</h2>
<p>The key software component we will cover is the <a target="_blank" href="https://github.com/second-state/echokit_server">echokit_server</a> project. It is an open-source agent orchestrator for voice AI applications. That means it coordinates services such as LLMs, ASR, TTS, VAD, MCP, search, knowledge/vector databases, and others to generate intelligent voice responses from user prompts.</p>
<p>The EchoKit server provides a WebSocket interface that allows compatible clients to send and receive voice data to and from it. The <a target="_blank" href="https://github.com/second-state/echokit_box">echokit_box</a> project provides an ESP32-based firmware that can act as a client to collect audio from the user and play TTS-generated voice from the EchoKit server. You can see a couple of demos here. You can assemble your own EchoKit device or <a target="_blank" href="https://echokit.dev/echokit_diy.html">purchase one</a>.</p>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/XroT7a0DLkw" 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> </p>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/Zy-rLT4EgZQ" 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> </p>
<p>Of course, you can also use a pure software client that conforms to the <a target="_blank" href="https://github.com/second-state/echokit_server">echokit_server</a> WebSocket interface. The project publishes a <a target="_blank" href="https://echokit.dev/chat/">JavaScript web page</a> that you can run locally to connect to your own EchoKit server as a reference.</p>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/Eyd9ToflccY" 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> </p>
<p>In the rest of the article, I will discuss how it’s implemented and how to deploy the system for your own voice AI applications.</p>
<h2 id="heading-two-voice-ai-approaches">Two Voice AI Approaches</h2>
<p>When OpenAI released its “realtime voice” services in October 2024, the consensus was that voice AI required “end-to-end” AI models. Traditional LLMs take text as input and then respond in text. The voice end-to-end models take voice audio data as input and respond in voice audio data as well. The end-to-end models could reduce latency since the voice processing, understanding, and generation are done in a single step.</p>
<p>But an end-to-end model is very difficult to customize. For example, it’s impossible to add your own prompt and knowledge to the context for each LLM request, or to act on the LLM's thinking or tool-call responses, or to clone your own voice for the response.</p>
<p>The second approach is to use an “agent orchestration” service to tie together multiple AI models, using one model’s output as the input for the next model. This allows us to customize or select each model and manipulate or supplement the model input at every step.</p>
<ul>
<li><p>The VAD model is used to detect conversation turns in the user's speech. It determines when the user is finished speaking and is now expecting a response.</p>
</li>
<li><p>The ASR/STT model turns user speech into text.</p>
</li>
<li><p>The LLM model generates a text response, including MCP tool calls.</p>
</li>
<li><p>The TTS model turns the response text into voice.</p>
</li>
</ul>
<p>The issue with multi-model and multi-step orchestration is that it can be slow. A lot of optimizations are needed for this approach to work well. For example, a useful technique is to utilize streaming input and output wherever possible. This way, each model doesn’t have to wait for the complete response from the upstream model.</p>
<p>The <a target="_blank" href="https://github.com/second-state/echokit_server">EchoKit server</a> is a stream-everything, highly efficient AI model orchestrator. It is entirely written in Rust for stability, safety, and speed.</p>
<h2 id="heading-the-voice-ai-orchestrator">The Voice AI Orchestrator</h2>
<p>The EchoKit server project is an open-source AI service orchestrator focused on real-time voice use cases. It starts up a WebSocket server that listens for streaming audio input and returns streaming audio responses.</p>
<p>You can build the <a target="_blank" href="https://github.com/second-state/echokit_server">echokit_server</a> project yourself using the Rust toolchain. Or, you can simply download the pre-built binary for your computer.</p>
<pre><code class="lang-bash"><span class="hljs-comment"># for x86 / AMD64 CPUs</span>
curl -LO https://github.com/second-state/echokit_server/releases/download/v0.1.0/echokit_server-v0.1.0-x86_64-unknown-linux-gnu.tar.gz
unzip echokit_server-v0.1.0-x86_64-unknown-linux-gnu.tar.gz

<span class="hljs-comment"># for arm64 CPUs</span>
curl -LO https://github.com/second-state/echokit_server/releases/download/v0.1.0/echokit_server-v0.1.0-aarch64-unknown-linux-gnu.tar.gz
unzip echokit_server-v0.1.0-aarch64-unknown-linux-gnu.tar.gz
</code></pre>
<p>Then, run it as follows:</p>
<pre><code class="lang-bash">nohup ./echokit_server &amp;
</code></pre>
<p>It reads the <code>config.toml</code> file from the current directory. At the top of the file, you can configure the port on which the WebSocket server listens. You can also specify a WAV file that is downloaded to the connected <a target="_blank" href="https://echokit.dev/echokit_diy.html">EchoKit client device</a> as a welcome message.</p>
<pre><code class="lang-ini"><span class="hljs-attr">addr</span> = <span class="hljs-string">"0.0.0.0:8000"</span>
<span class="hljs-attr">hello_wav</span> = <span class="hljs-string">"hello.wav"</span>
</code></pre>
<h3 id="heading-configure-an-asr">Configure an ASR</h3>
<p>When the EchoKit server receives the user's voice data, it first sends the data to an ASR service to convert it into text.</p>
<p>There are many compelling ASR models available today. The EchoKit server can work with any OpenAI-compatible API providers, such as OpenAI itself, x.ai, OpenRouter, and Groq.</p>
<p>In our example, we use Groq’s Whisper ASR service. Whisper is a state-of-the-art ASR model released by OpenAI. Groq provides specialized hardware chips to run it very fast. You will first get <a target="_blank" href="https://console.groq.com/keys">a free API key from Groq</a>. Then, configure the ASR service as follows. Notice the “prompt” for the Whisper model. It is a tried-and-true prompt to reduce hallucination of the Whisper model.</p>
<pre><code class="lang-ini"><span class="hljs-section">[asr]</span>
<span class="hljs-attr">url</span> = <span class="hljs-string">"https://api.groq.com/openai/v1/audio/transcriptions"</span>
<span class="hljs-attr">api_key</span> = <span class="hljs-string">"gsk_XYZ"</span>
<span class="hljs-attr">model</span> = <span class="hljs-string">"whisper-large-v3"</span>
<span class="hljs-attr">lang</span> = <span class="hljs-string">"en"</span>
<span class="hljs-attr">prompt</span> = <span class="hljs-string">"Hello\n你好\n(noise)\n(bgm)\n(silence)\n"</span>
</code></pre>
<h3 id="heading-run-and-configure-a-vad">Run and configure a VAD</h3>
<p>In order to carry out a voice conversation, participants must detect each other's intentions and speak only when a turn arises. VAD (Voice Activity Detection) is a specialized AI model used to detect activities and, in particular, when the speaker has finished and expects an answer.</p>
<p>In EchoKit, we have VAD detection on both the device and the server.</p>
<ul>
<li><p>Device-side VAD: It detects human language. The device ignores background noise, music, keyboard sounds, and dog barking. It only sends human voice to the server.</p>
</li>
<li><p>Server-side VAD: It processes the audio stream in 100ms (0.1s) chunks. Once it detects that the speaker has finished, it sends all transcribed text to the LLM and starts waiting for the LLM’s response stream.</p>
</li>
</ul>
<p>The server-side VAD is optional, since the device-side VAD can also generate “conversation turn” signals. But due to the limited computing resources on the device, adding the server-side VAD can dramatically improve the overall VAD performance.</p>
<p>We’re porting the popular <a target="_blank" href="https://github.com/snakers4/silero-vad">Silero VAD</a> project from Python to Rust, and creating the <a target="_blank" href="https://github.com/second-state/silero_vad_server">silero_vad_server</a> project. Build the project <a target="_blank" href="https://github.com/second-state/silero_vad_server?tab=readme-ov-file#build-the-api-server">as instructed</a>. You can start the VAD server on your EchoKit server’s port 9094 as follows:</p>
<pre><code class="lang-bash">VAD_LISTEN=0.0.0.0:9094 nohup target/release/silero_vad_server &amp;
</code></pre>
<p>You might be wondering: why port to Rust? While many AI projects are written in Python for ease of development, Rust applications are often much lighter, faster, and safer at deployment. So, we’ll leverage AI tools like <a target="_blank" href="https://github.com/cardea-mcp/RustCoder">RustCoder</a> to port as much Python code as possible to Rust. The EchoKit software stack is largely written in Rust.</p>
<p>The VAD server is a WebSocket service that listens on port 9094. As we discussed, the EchoKit server will stream audio to this WebSocket and stop the ASR when a conversation turn is detected. Therefore, we’ll add the VAD service to the EchoKit server’s ASR config section in <code>config.toml</code>.</p>
<pre><code class="lang-ini"><span class="hljs-section">[asr]</span>
<span class="hljs-attr">url</span> = <span class="hljs-string">"https://api.groq.com/openai/v1/audio/transcriptions"</span>
<span class="hljs-attr">api_key</span> = <span class="hljs-string">"gsk_XYZ"</span>
<span class="hljs-attr">model</span> = <span class="hljs-string">"whisper-large-v3"</span>
<span class="hljs-attr">lang</span> = <span class="hljs-string">"en"</span>
<span class="hljs-attr">prompt</span> = <span class="hljs-string">"Hello\n你好\n(noise)\n(bgm)\n(silence)\n"</span>
<span class="hljs-attr">vad_realtime_url</span> = <span class="hljs-string">"ws://localhost:9094/v1/audio/realtime_vad"</span>
</code></pre>
<h3 id="heading-configure-an-llm">Configure an LLM</h3>
<p>Once the ASR service transcribes the user's voice into text, the next step in the pipeline is the LLM (Large Language Model). It’s the AI service that actually “thinks” and generates an answer in text.</p>
<p>Again, the EchoKit server can work with any OpenAI-compatible API providers for LLMs, such as OpenAI itself, x.ai, OpenRouter, and Groq. Since the voice service is highly sensitive to speed, we’ll choose Groq again. Groq supports a number of open-source LLMs. We’ll choose the <code>gpt-oss-20b</code> model released by OpenAI.</p>
<pre><code class="lang-ini"><span class="hljs-section">[llm]</span>
<span class="hljs-attr">llm_chat_url</span> = <span class="hljs-string">"https://api.groq.com/openai/v1/chat/completions"</span>
<span class="hljs-attr">api_key</span> = <span class="hljs-string">"gsk_XYZ"</span>
<span class="hljs-attr">model</span> = <span class="hljs-string">"openai/gpt-oss-20b"</span>
<span class="hljs-attr">history</span> = <span class="hljs-number">20</span>
</code></pre>
<p>The “history” field indicates how many messages should be kept in the context. Another crucial feature of an LLM application is the “system prompt,” where you instruct the LLM how it should “behave.” You can specify the system prompt in the EchoKit server config as well.</p>
<pre><code class="lang-ini"><span class="hljs-section">[[llm.sys_prompts]]</span>
<span class="hljs-attr">role</span> = <span class="hljs-string">"system"</span>
<span class="hljs-attr">content</span> = <span class="hljs-string">"""
You are a comedian. Engage in lighthearted and humorous conversation with the user. Tell jokes when appropriate.

"""</span>
</code></pre>
<p>Since Groq is very fast, it can process very large system prompts in under one second. You can add a lot more context and instructions to the system prompt. For example, you can give the application “knowledge” about a specific field by putting entire books into the system prompt.</p>
<h3 id="heading-configure-a-tts">Configure a TTS</h3>
<p>Finally, once the LLM generates a text response, the EchoKit server will call a TTS (text to speech) service to convert the text into voice and stream it back to the client device.</p>
<p>While Groq has a TTS service, it’s not particularly compelling. ElevenLabs is a leading TTS provider that offers hundreds of voice characters. It can express emotions and supports easy voice cloning. In the config below, you’ll put in your <a target="_blank" href="https://elevenlabs.io/app/sign-in?redirect=%2Fapp%2Fdevelopers%2Fapi-keys">ElevenLabs API key</a> and select a voice.</p>
<pre><code class="lang-ini"><span class="hljs-section">[tts]</span>
<span class="hljs-attr">platform</span> = <span class="hljs-string">"Elevenlabs"</span>
<span class="hljs-attr">token</span> = <span class="hljs-string">"sk_xyz"</span>
<span class="hljs-attr">voice</span> = <span class="hljs-string">"VOICE-ID-ABCD"</span>
</code></pre>
<p>The ElevenLabs TTS models and API services are all great, but they are not open-source. A very compelling open-source TTS, known as GPT-SoVITS, is also available.</p>
<p>You can port GPT-SoVITS from Python to Rust and create an open-source API server project called <a target="_blank" href="https://github.com/second-state/gsv_tts">gsv_tts</a>. It allows easy cloning of any voice. You can run a <a target="_blank" href="https://github.com/second-state/gsv_tts">gsv_tts</a> API server by following its instructions. Then, you can configure the EchoKit server to stream text to it and receive streaming audio from it.</p>
<pre><code class="lang-ini"><span class="hljs-section">[tts]</span>
<span class="hljs-attr">platform</span> = <span class="hljs-string">"StreamGSV"</span>
<span class="hljs-attr">url</span> = <span class="hljs-string">"http://gsv_tts.server:port/v1/audio/stream_speech"</span>
<span class="hljs-attr">speaker</span> = <span class="hljs-string">"michael"</span>
</code></pre>
<h3 id="heading-configure-mcp-and-actions">Configure MCP and actions</h3>
<p>Of course, an “AI agent” is not just about chatting. It is about performing actions on specific tasks. For example, the <a target="_blank" href="https://www.youtube.com/watch?v=Zy-rLT4EgZQ">“US civics test prep”</a> use case, which I shared as an example video at the beginning of this article, requires the agent to get exam questions from a database, and then generate responses that guide the user toward the official answer. This is accomplished using LLM tools and actions.</p>
<ul>
<li><p>The LLM detects that the user is requesting a new question.</p>
</li>
<li><p>Instead of responding in natural language, it responds with a JSON structure that instructs the agent to "get a new question and answer."</p>
</li>
<li><p>The EchoKit server intercepts this JSON response and retrieves the question and answer from a database.</p>
</li>
<li><p>The EchoKit server sends the question and answer back to the LLM.</p>
</li>
<li><p>The LLM formulates a natural language response based on the question and answer.</p>
</li>
<li><p>The EchoKit server generates a voice response using its TTS service.</p>
</li>
</ul>
<p>As you can see, the EchoKit server needs to perform a few extra steps behind the scenes before it responds in voice. The EchoKit server leverages the MCP protocol for this. The function to look up questions and answers is provided by an open-source MCP server called <a target="_blank" href="https://github.com/cardea-mcp/ExamPrepAgent">ExamPrepAgent</a>.</p>
<p>The MCP protocol standardizes the tools and functions for LLMs to call. There are many MCP servers available for all kinds of different tasks. ExamPrepAgent is just one of them.</p>
<p>We are running this MCP server on port 8003. With the MCP server up and running, you only need to add the following configuration to EchoKit server’s <code>config.toml</code>.</p>
<pre><code class="lang-ini"><span class="hljs-section">[[llm.mcp_server]]</span>
<span class="hljs-attr">server</span> = <span class="hljs-string">"http://localhost:8003/mcp"</span>
<span class="hljs-attr">type</span> = <span class="hljs-string">"http_streamable"</span>
</code></pre>
<p>With MCP integration, the EchoKit AI agent can now perform actions. It can call APIs to send messages, make payments, or even turn electronic devices on or off.</p>
<h2 id="heading-local-ai-with-llamaedge">Local AI With LlamaEdge</h2>
<p>You’ve now seen the open-source EchoKit device working with the open-source EchoKit server to understand and respond to users in voice. But the AI models we use, while also open-source, run on commercial cloud providers. Can we run AI models using open-source technologies at home?</p>
<p><a target="_blank" href="https://github.com/LlamaEdge/LlamaEdge">LlamaEdge</a> is an open-source, cross-platform API server for AI models. It <a target="_blank" href="https://llamaedge.com/docs/ai-models/">supports many mainstream LLM, ASR, and TTS models</a> across Linux, Mac, Windows, and many CPU/GPU architectures. It’s perfect for running AI models on home or office computers. It also provides OpenAI-compatible API endpoints, which makes them very easy to integrate into the EchoKit server.</p>
<p>To install LlamaEdge and its dependencies, run the following shell command. It will detect your hardware and install the appropriate software that can fully take advantage of your GPUs (if any).</p>
<pre><code class="lang-bash">curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install_v2.sh | bash -s
</code></pre>
<p>Then, download an open-source LLM model. I am using Google's Gemma model as an example.</p>
<pre><code class="lang-bash">curl -LO https://huggingface.co/second-state/gemma-3-4b-it-GGUF/resolve/main/gemma-3-4b-it-Q5_K_M.gguf
</code></pre>
<p>Download the cross-platform LlamaEdge API server.</p>
<pre><code class="lang-bash">curl -LO https://github.com/second-state/LlamaEdge/releases/latest/download/llama-api-server.wasm
</code></pre>
<p>Start an LLamaEdge API server with the Google Gemma LLM model. by default, it listens on localhost port 8080.</p>
<pre><code class="lang-bash">wasmedge --dir .:. --nn-preload default:GGML:AUTO:gemma-3-4b-it-Q5_K_M.gguf llama-api-server.wasm -p gemma-3
</code></pre>
<p>Test the OpenAI compatible API on that server.</p>
<pre><code class="lang-bash">curl -X POST http://localhost:8080/v1/chat/completions \
  -H <span class="hljs-string">'accept: application/json'</span> \
  -H <span class="hljs-string">'Content-Type: application/json'</span> \
  -d <span class="hljs-string">'{"messages":[{"role":"system", "content": "You are a helpful assistant. Try to be as brief as possible."}, {"role":"user", "content": "Where is the capital of Texas?"}]}'</span>
</code></pre>
<p>Now, you can add this local LLM service to your EchoKit server configuration.</p>
<pre><code class="lang-ini"><span class="hljs-section">[llm]</span>
<span class="hljs-attr">llm_chat_url</span> = <span class="hljs-string">"http://localhost:8080/v1/chat/completions"</span>
<span class="hljs-attr">api_key</span> = <span class="hljs-string">"NONE"</span>
<span class="hljs-attr">model</span> = <span class="hljs-string">"default"</span>
<span class="hljs-attr">history</span> = <span class="hljs-number">20</span>
</code></pre>
<p>The LlamaEdge project supports more than LLMs. It runs the <a target="_blank" href="https://github.com/LlamaEdge/whisper-api-server">Whisper ASR model</a> and the <a target="_blank" href="https://github.com/LlamaEdge/tts-api-server">Piper TTS model</a> as OpenAI-compatible API servers as well.</p>
<h2 id="heading-conclusion">Conclusion</h2>
<p>The voice AI agent software stack is complex and deep. EchoKit is an open-source platform that ties together and coordinates all those components. It provides a good vantage point for us to learn about the entire stack.</p>
<p>I can’t wait to see what you build!</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ The Case for End-to-End Engineering Education: Preparing Institutions for a Dynamic Future ]]>
                </title>
                <description>
                    <![CDATA[ The pace of innovation in artificial intelligence, automation, and hyper-connected systems is accelerating, placing software engineers at the very center of a global transformation. They are the architects of our digital future, wielding the code tha... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/the-case-for-end-to-end-engineering-education-preparing-institutions-for-a-dynamic-future/</link>
                <guid isPermaLink="false">688d3feaca868b4a3cde38aa</guid>
                
                    <category>
                        <![CDATA[ Software Engineering ]]>
                    </category>
                
                    <category>
                        <![CDATA[ engineering ]]>
                    </category>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ AI ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Vahe Aslanyan ]]>
                </dc:creator>
                <pubDate>Fri, 01 Aug 2025 22:30:02 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1754087387765/35f364bd-84f6-47e1-812b-b8b2508837c8.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>The pace of innovation in artificial intelligence, automation, and hyper-connected systems is accelerating, placing software engineers at the very center of a global transformation. They are the architects of our digital future, wielding the code that powers everything from global logistics to personal devices.</p>
<p>Yet, a critical paradox lies at the heart of their software engineer training: most university programs still prepare them for “middle-layer” duties – wiring together pre-built libraries, cloud services, and hardware they rarely see or touch, treating the physical world as a distant abstraction.</p>
<p>This narrow educational focus has tangible consequences. It can blunt creativity and problem-solving skills, leaving graduates ill-prepared to design the complete, resilient solutions that society urgently needs.</p>
<p>This disconnect is reflected in surprising employment statistics, where computer science graduates can face higher unemployment rates than those in some non-technical fields. More importantly, it creates a generation of specialists who understand software in isolation but may lack the holistic perspective to build systems that are secure, robust, and seamlessly integrated with the physical world.</p>
<p>This handbook argues for a necessary evolution: a new, <strong>end-to-end engineering education</strong> that fuses software, hardware, robotics, mechanics, and cybersecurity into a single, coherent toolkit. It provides a blueprint for educators, industry leaders, and aspiring engineers to build a new generation of creators who can think across disciplines, solve complex problems from concept to deployment, and drive meaningful, sustainable progress. The moment demands not just programmers, but true system architects.</p>
<p>By the end of this handbook, you’ll be able to:</p>
<ol>
<li><p>Articulate why traditional "middle integration" software education is no longer sufficient for today's technological challenges.</p>
</li>
<li><p>Define the core principles of End-to-End Engineering and how it integrates software with hardware, robotics, and mechanics.</p>
</li>
<li><p>Analyze the economic, societal, and demographic forces that demand a new, more versatile type of engineer.</p>
</li>
<li><p>Incorporate cybersecurity and ethical design as foundational pillars of system development, not as afterthoughts.</p>
</li>
<li><p>Develop a framework for overseeing and validating AI-driven systems to ensure they are reliable and secure.</p>
</li>
<li><p>Outline a practical, year-by-year curriculum for implementing an end-to-end engineering program.</p>
</li>
<li><p>Identify the benefits of this holistic approach for graduates, industry, and society as a whole.</p>
</li>
<li><p>Formulate strategies for overcoming common challenges in implementation, from faculty training to infrastructure investment.</p>
</li>
</ol>
<h3 id="heading-table-of-contents">Table of Contents</h3>
<ol>
<li><p><a class="post-section-overview" href="#heading-inspiration-for-this-handbook">Inspiration for this Handbook</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-why-end-to-end-engineering-matters">Why End‑to‑End Engineering Matters</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-understanding-end-to-end-vs-middle-integration-in-engineering">Understanding End-to-End vs. Middle Integration in Engineering</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-economic-challenges-and-opportunities-for-software-engineers">Economic Challenges and Opportunities for Software Engineers</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-the-role-of-institutions-in-cultivating-end-to-end-engineers">The Role of Institutions in Cultivating End‑to‑End Engineers</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-proposed-reforms-designing-end-to-end-programs">Proposed Reforms: Designing End-to-End Programs</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-benefits-for-graduates-and-society">Benefits for Graduates and Society</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-overcoming-challenges-in-implementation">Overcoming Challenges in Implementation</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-conclusion-a-path-forward-for-engineering-education">Conclusion: A Path Forward for Engineering Education</a></p>
</li>
<li><p><a class="post-section-overview" href="#heading-further-resources">Further Resources</a></p>
</li>
</ol>
<p><a target="_blank" href="https://www.lunartech.ai/programs/ai-for-executives"><img src="https://images.unsplash.com/photo-1752408494691-a254a06a7eba?fm=jpg&amp;q=60&amp;w=3000&amp;ixlib=rb-4.1.0&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Symmetrical buildings against a bright sky." width="3000" height="2259" loading="lazy"></a></p>
<h2 id="heading-inspiration-for-this-handbook">Inspiration for this Handbook</h2>
<h3 id="heading-the-current-educational-landscape">The current educational landscape</h3>
<p>In our complex and rapidly evolving digital world, the role of higher education as a foundation for innovation and societal progress is more crucial than ever. The rigorous systems established by universities are essential for cultivating the expertise that drives our economies forward.</p>
<p>At the same time, the current educational landscape presents significant opportunities for growth and adaptation. The financial model for higher education is a subject of ongoing discussion, as substantial investments from grants and endowments exist alongside rising levels of student debt. This is causing many to wonder how to best align resources with student outcomes and evolving industry needs.</p>
<p>This dynamic is contributing to a noticeable shift in how learners approach higher education. University degrees are no longer always seen as the exclusive pathway to a skilled career – and this trend is reflected in enrollment data across the globe.</p>
<p>In regions from the United States to Canada and Armenia and beyond, a significant number of university positions that were once highly competitive now remain unfilled. In response, many prospective students are diversifying their educational portfolios, pursuing industry-recognized certifications from technology leaders like Google, AWS, and Microsoft, or engaging in self-directed learning.</p>
<p>This suggests a broader re-evaluation of educational return on investment, as the traditional assumption of a guaranteed path from a degree to employment comes under greater scrutiny.</p>
<h3 id="heading-evolving-educational-systems">Evolving educational systems</h3>
<p>Established institutions, by their nature, often take a measured approach to curricular change. This can sometimes create a gap between traditional programs and the fast-paced innovation occurring in the technology sector, where open-source knowledge and new learning platforms are becoming increasingly prevalent.</p>
<p>We should consider diverse global strategies in this conversation. For example, China’s model of offering extensive scholarships to international students highlights an approach focused on attracting global talent. Likewise, its emergence as a leading contributor to open-source projects and academic research demonstrates a powerful commitment to widespread knowledge sharing.</p>
<p>The ultimate goal of any educational system is to equip graduates with durable and relevant skills. A student’s education can be viewed as their professional operating system. A strong foundation provides the essential hardware, while a modern, integrated curriculum installs the powerful, adaptable software needed to solve complex problems and create value.</p>
<p>This presents a compelling opportunity for a strategic evolution in higher education. By fostering greater collaboration between academia and industry and thoughtfully integrating new hands-on learning models, we can enhance the impact and accessibility of our educational systems. The path forward lies in building a more responsive, inclusive, and sustainable framework that empowers the next generation of innovators to meet the challenges of the future.</p>
<p>You can download a free copy of the ebook version of this handbook <a target="_blank" href="https://www.lunartech.ai/download/end-to-end-engineering-manifesto">here</a>.</p>
<p>And you can listen to it as a podcast here:</p>
<div class="embed-wrapper">
        <iframe width="100%" height="152" src="https://open.spotify.com/embed/episode/7BHmd70EzloV85vRgRiixs" style="" title="Spotify embed" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" allowfullscreen="" loading="lazy"></iframe></div>
<p> </p>
<p><a target="_blank" href="https://www.lunartech.ai/programs/ai-for-executives"><img src="https://images.unsplash.com/photo-1682687982167-d7fb3ed8541d?fm=jpg&amp;q=60&amp;w=3000&amp;ixlib=rb-4.1.0&amp;ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="a scuba diver swims through an underwater cave" width="3000" height="2000" loading="lazy"></a></p>
<h2 id="heading-why-endtoend-engineering-matters">Why End‑to‑End Engineering Matters</h2>
<p>Employment data tell a cautionary tale. Computer science graduates currently face about 6.1% unemployment, while computer engineering majors experience a 7.5% rate – higher than fields like art history (3%) or journalism (4.4%). This mismatch stems from curricula that prize isolated coding skills over the interdisciplinary fluency modern industry expects.</p>
<p>Big-tech titans such as Apple, Amazon, Alphabet, Meta, Microsoft, Nvidia, and Tesla push the frontier of AI and automation, but they also expose society to new vulnerabilities – from misinformation cascades to brittle supply-chain software. And there are valid criticisms of universities – such as outdated approaches that reinforce these vulnerabilities in various ways. For example, many university programs focus courses on stitching together third-party APIs or cloud SDKs, leading students to depend on vendor ecosystems rather than building foundational technologies themselves. But, these institutions remain invaluable assets for any country.</p>
<p>MIT is still MIT, and Stanford continues to produce some of the world's best engineers, driving innovation through cutting-edge programs. Universities overall generate a massive workforce that transforms fields, along with groundbreaking research papers that advance global knowledge.</p>
<p>But many universities are being left behind due to insufficient investment in the education system and systemic inefficiencies, which are causing huge troubles for the entire world. For instance, nations need to keep pace with aging populations, where rising old-age dependency ratios – projected to increase significantly by 2055 – mean fewer workers supporting more retirees. This will potentially requiring two people to effectively pay for one non-worker through higher taxes and social security burdens.</p>
<p>This is evident in aging societies like Japan, Denmark, and Finland, where top personal income tax rates exceed 55%, and citizens face mounting fiscal pressures to fund pensions and healthcare.</p>
<p>Security is another critical concern: even nuclear agencies are being hacked, as seen in the July 2025 breach of the U.S. National Nuclear Security Administration (NNSA) by Chinese state-sponsored hackers exploiting Microsoft SharePoint vulnerabilities.</p>
<p>These issues highlight the urgent need for universities to foster resilient, skilled talent that can safeguard economies and societies. What this likely means is a shift away from traditional models – like over-relying on international student tuition and exorbitant fees – toward hands-on, open-source styles that democratize learning.</p>
<p>For example, organizations like freeCodeCamp, alongside tech giants such as Google, Microsoft, and Amazon, are open-sourcing vast engineering content that rivals entire university curricula, all without massive endowments or campus infrastructures.</p>
<p>Google's AI tools, like NotebookLM for generating educational content, OpenAI's agents for interactive learning, and productivity boosters such as Cursor (despite its limitations in studies showing 19% slower task completion due to bugs) are unlocking doors previously locked by institutional barriers.</p>
<p>These innovations allow single engineers to achieve more, as industry can no longer afford inefficiencies. This has been made clear by companies rapidly adopting alternatives to traditional systems, swapping locked gates for open pathways to boost output and adaptability.</p>
<p>In the context of educational institutions, end-to-end curricula offer a different path. By combining rigorous software foundations with hardware prototyping, robotics labs, mechanical design, and embedded security, universities can graduate engineers who understand an entire system’s life cycle – from concept sketches and circuit diagrams to secure deployment in the field.</p>
<p>Such breadth does more than widen a résumé. It also empowers graduates to spot hidden failure points, slash integration overhead, and create novel products that are both robust and ethically sound. The payoff is twofold. First, students gain adaptability: a graduate who can write control firmware, machine-learning inference code, and penetration tests is far harder to automate or outsource.</p>
<p>Second, industry gains innovators who can push technology forward without leaning exclusively on closed-source toolchains. This reduces systemic risk and diversifies the ecosystem.</p>
<p>This handbook sets out the full case for such a transformation. We will examine the economic and societal forces demanding new skills, survey pioneering institutions already leading the charge, and map a practical blueprint for universities ready to pivot.</p>
<p>The goal is simple: equip tomorrow’s engineers to build end-to-end solutions that drive progress responsibly – and ensure they share equitably in the value they create.</p>
<p><a target="_blank" href="https://www.lunartech.ai/programs/ai-for-executives"><img src="https://images.unsplash.com/photo-1682687221006-b7fd60cf9dd0?fm=jpg&amp;q=60&amp;w=3000&amp;ixlib=rb-4.1.0&amp;ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="a lone person standing in the middle of a desert" width="3000" height="2000" loading="lazy"></a></p>
<h2 id="heading-understanding-end-to-end-vs-middle-integration-in-engineering">Understanding End-to-End vs. Middle Integration in Engineering</h2>
<h3 id="heading-the-scope-of-traditional-software-engineering">The Scope of Traditional Software Engineering</h3>
<p>Traditional software engineering education focuses on intermediary roles, where engineers develop software to bridge users and systems – such as connecting databases to applications, devices to networks, or algorithms to outputs.</p>
<p>This "middle" integration approach often involves working with pre-existing hardware, such as laptops from manufacturers like Dell or Apple, and leveraging APIs or cloud services provided by leading tech companies.</p>
<p>While it’s effective in specific contexts, this focus can lead to inefficiencies, as engineers dedicate significant time to managing integrations rather than creating innovative solutions. Also, reliance on third-party tools can introduce complexities, including compatibility issues or security vulnerabilities, which require ongoing maintenance and can limit creative problem-solving.</p>
<p>For example, engineers working with cloud platforms may spend considerable effort resolving version conflicts or debugging third-party APIs, diverting resources from developing new features. This dynamic can also expose systems to risks, as external tools may contain outdated libraries or vulnerabilities that require constant updates.</p>
<p>The 2020 SolarWinds hack, which compromised organizations through a supply chain attack, illustrates the challenges of fragmented development, where reliance on external components can introduce unforeseen risks.</p>
<h3 id="heading-the-vision-of-end-to-end-engineering">The Vision of End-to-End Engineering</h3>
<p>End-to-end engineering education adopts a holistic approach, training students to oversee every stage of system development, from ideation to deployment. This encompasses software development, hardware prototyping, mechanical engineering for physical systems like robotics, and cybersecurity to ensure system integrity.</p>
<p>For instance, an end-to-end engineer might design a robotic arm’s software, optimize its mechanical components for precision and durability, and embed security protocols to protect against cyber threats. This comprehensive skill set helps engineers create integrated, resilient systems that minimize reliance on external tools and enhance system reliability.</p>
<p>The benefits of this approach are multifaceted. Robotics training equips engineers to address physical constraints, such as sensor accuracy, motor efficiency, or material strength, fostering innovation in fields like autonomous vehicles, industrial automation, and medical robotics.</p>
<p>Mechanical engineering bridges the digital and physical realms, enabling engineers to design systems that interact seamlessly with the real world.</p>
<p>Cybersecurity integration is critical in an era of increasing connectivity, as devices like robots and IoT systems face growing risks of cyber threats. For example, industrial robots designed with embedded security can prevent disruptions like the Stuxnet attack, which targeted control systems, ensuring operational continuity and safety.</p>
<h3 id="heading-addressing-curriculum-gaps">Addressing Curriculum Gaps</h3>
<p>Current software engineering curricula, typically spanning 120-130 credits over four years, cover foundational topics such as mathematics (calculus, linear algebra), programming languages (Python, Java, C++), data structures, and software design principles. While these are essential, programs often include courses like introductory chemistry or unrelated electives that may not align with modern industry needs, consuming valuable time and resources.</p>
<p>Meanwhile, key interdisciplinary skills – robotics, mechanical engineering, and cybersecurity – are often underrepresented, leaving graduates less prepared for real-world challenges where software must integrate with hardware under security constraints.</p>
<p>This curriculum gap can impact graduates’ economic outcomes. At companies like Meta, engineers earn competitive salaries ($210,000 to $3.67 million annually, including bonuses and stock), yet the broader distribution of corporate profits, such as Meta’s $39 billion in 2023, tends to favor executives and shareholders.</p>
<p>Similarly, Vivaro, an online casino platform based in Armenia, has leveraged the country’s relatively low labor costs and favorable government relations to achieve rapid growth with minimal regulatory oversight, highlighting how companies can benefit from localized economic advantages.</p>
<p>This dynamic underscores how reliance on integration-focused roles can limit engineers’ ability to capture the full value of their work, as companies maximize profits through strategic labor and regulatory practices.</p>
<p>End-to-end education addresses this by equipping engineers with versatile skills to innovate independently, pursue entrepreneurial ventures, or lead multidisciplinary projects, enabling them to contribute meaningfully and share more equitably in the value they create.</p>
<h3 id="heading-pioneering-models-for-the-future">Pioneering Models for the Future</h3>
<p>Institutions like MIT are leading the way with programs that integrate computer science, electrical engineering, robotics, and cybersecurity.</p>
<p>MIT’s Department of Electrical Engineering and Computer Science (EECS) offers courses like "Robotics: Science and Systems," where students design complete robotic solutions, blending software, hardware, and security. These programs produce graduates who excel in diverse roles, from developing secure autonomous systems to founding innovative startups.</p>
<p>Similarly, Stanford’s AI and Robotics track combines software development with mechanical engineering and cybersecurity, preparing students for complex challenges like secure drone navigation.</p>
<p>By adopting such models, educational institutions can better prepare students for a rapidly evolving industry, ensuring they are equipped to navigate and contribute to a technology-driven world.</p>
<p><a target="_blank" href="https://www.lunartech.ai/programs/ai-for-executives"><img src="https://images.unsplash.com/photo-1752784365268-72d68673f9e3?fm=jpg&amp;q=60&amp;w=3000&amp;ixlib=rb-4.1.0&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Swirling, light blue ribbons create an abstract design." width="3000" height="2000" loading="lazy"></a></p>
<h2 id="heading-economic-challenges-and-opportunities-for-software-engineers">Economic Challenges and Opportunities for Software Engineers</h2>
<p>Today’s software engineers face a complex landscape of economic and societal pressures that are fundamentally reshaping their roles. Much of the work has shifted from pure invention to integration, often centering on stitching together proprietary clouds and third-party APIs.</p>
<p>This moves engineering effort toward upkeep – resolving version conflicts, debugging vendor libraries, and managing deployment pipelines – rather than creating foundational technology. This dynamic not only suppresses an engineer's individual earning potential, as disproportionate profits flow to leadership and investors, but also leaves businesses vulnerable to vendor lock-in and supply-chain shocks.</p>
<h3 id="heading-dual-nature-of-ai">Dual Nature of AI</h3>
<p>Compounding this challenge is the dual nature of modern artificial intelligence. While AI tools promise to accelerate code generation, their practical application reveals significant limitations and challenges. Real-world studies, such as the <a target="_blank" href="https://metr.org/blog/2025-07-10-early-2025-ai-experienced-os-dev-study/">METR study</a>, show that developers often overestimate AI's productivity benefits and can face slowdowns of nearly 20% due to the time spent fixing flawed or inefficient code.</p>
<p>This highlights that human oversight remains indispensable, especially when AI outputs must interface with custom hardware or meet strict safety standards.</p>
<p>The opportunity lies with engineers who understand the full system – electronics, mechanics, and secure architecture – and can effectively validate and harden AI-driven solutions.</p>
<h3 id="heading-societal-challenges">Societal Challenges</h3>
<p>Simultaneously, society is placing new and urgent demands on the engineering profession. An aging global population and declining birth rates are tightening the economic noose, with fewer workers supporting more retirees. This demographic headwind necessitates greater automation in manufacturing, food production, and healthcare.</p>
<p>The engineers who can deliver these solutions – by designing robotic arms for harvesting, smart greenhouses for urban farming, or humanoid helpers for elder care – will be at the forefront of tackling this challenge and opening new economic frontiers.</p>
<p>Beyond this, in a world flooded by misinformation and clickbait, engineers have an ethical duty to build systems that prioritize truth and transparency, embedding features like content-verification protocols and secure data handling to foster a trustworthy digital environment.</p>
<h3 id="heading-changing-demands">Changing Demands</h3>
<p>These evolving demands expose a critical disconnect in traditional education. Costly four-year degrees too often leave graduates with narrow skill sets and surprisingly high unemployment rates (6-7.5%) that rival non-technical fields. This mismatch arises from curricula that prioritize isolated foundational skills or include unrelated electives over the practical, interdisciplinary training modern industry requires.</p>
<p>The path forward is through a more streamlined and relevant education that acts as a catalyst for resilience. By replacing less applicable courses with accelerated, hands-on projects, institutions can transform learners from passive code-integrators into formidable innovators.</p>
<p>Globally, leading institutions are already recognizing this need. In Nordic countries like Sweden and Finland, programs that integrate sustainability, ethics, and interdisciplinary skills are producing graduates who excel at innovation.</p>
<p>By adopting similar approaches – offering real-world modules in robotics prototyping, embedded security, and end-to-end system integration – we can empower engineers to meet today's complex demands and build the resilient, automated, and trustworthy systems our world urgently needs.</p>
<p><a target="_blank" href="https://www.lunartech.ai/programs/ai-for-executives"><img src="https://images.unsplash.com/photo-1752856188307-f93c2820db04?fm=jpg&amp;q=60&amp;w=3000&amp;ixlib=rb-4.1.0&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Dark clouds surround a beautiful, fiery sunset." width="3000" height="2000" loading="lazy"></a></p>
<h2 id="heading-the-role-of-institutions-in-cultivating-endtoend-engineers"><strong>The Role of Institutions in Cultivating End‑to‑End Engineers</strong></h2>
<p>As technology shifts ever faster – reintegrating software with custom hardware, AI-driven automation, and secure connected systems – traditional universities risk obsolescence unless they reinvent themselves. Beyond breaking down academic silos, forward‑looking institutions will need to embrace four key strategies:</p>
<h3 id="heading-1-embrace-agility-through-continuous-curriculum-evolution">1. Embrace Agility Through Continuous Curriculum Evolution</h3>
<p><strong>Modular, Stackable Credentials</strong><br>Universities should offer micro‑certificates in robotics prototyping, embedded security, or systems integration alongside full degrees. Students and professionals can assemble just the modules they need, when they need them – mirroring the on‑demand model of platforms like Coursera or Google’s own AI toolkits.</p>
<p><strong>Real‑Time Industry Feedback Loops</strong><br>They should also have rolling curriculum reviews with employer advisory boards. If a new sensor technology or cloud‑native inference engine emerges, courses can pivot within months, not years, ensuring graduates never learn outdated tools.</p>
<h3 id="heading-2-partner-with-edtech-leaders-dont-compete-alone">2. Partner with EdTech Leaders – Don’t Compete Alone</h3>
<p><strong>Leverage Existing Toolchains</strong><br>Rather than ignoring Google’s free AI labs or Microsoft’s cloud credits, universities can integrate them directly into their coursework. Assignments could require deploying a hardware‑accelerated model on Google Coral or securing an Azure‑hosted IoT network.</p>
<p><strong>Co‑Create Open Educational Resources</strong><br>Institutions could also collaborate on open‑source textbooks, interactive labs, and tutorial videos – both to amplify institutional reach and to demonstrate that the university is part of, not apart from, today’s creator economy.</p>
<h3 id="heading-3-prioritize-usercentric-design-in-education">3. Prioritize User‑Centric Design in Education</h3>
<p><strong>Student and Employer Needs First</strong><br>Schools should also treat their “customers” (students and hiring companies) as co‑designers. Conduct regular surveys and job‑task analyses: What exact blend of Linux kernel debugging, CAD design, and cryptographic key management does the next‑gen engineer need? Then build courses to match.</p>
<p><strong>Flexible Delivery Modalities</strong><br>They could also combine in‑person maker‑space workshops with online simulators (for example, Gazebo robotics, virtual FPGA labs) so that learners worldwide can participate – reducing geographic and economic barriers.</p>
<h3 id="heading-4-cultivate-an-ecosystem-of-lifelong-learning">4. Cultivate an Ecosystem of Lifelong Learning</h3>
<p><strong>Alumni‑for‑Credit Programs</strong><br>Universities could offer discounted, advanced modules for graduates to return and upskill as hardware standards or threat landscapes evolve. This continuous‑learning pathway turns one‑off degrees into multi‑decade partnerships.</p>
<p><strong>Innovation Incubators and Industry Challenges</strong><br>They could also host hackathons, sponsored capstone projects, and startup incubators right on campus. When students design and pitch end‑to‑end solutions for real companies – say, a secure medical‑robotics prototype – they graduate not just with a diploma, but with market‑tested experience and potential investors.</p>
<h3 id="heading-5-staying-relevant-and-un-gatekeeping">5. Staying Relevant – and Un-gatekeeping</h3>
<p>With Google, Apple, and a legion of online platforms freely distributing cutting‑edge AI, robotics toolkits, and interactive tutorials, any institution that clings to century‑old lecture halls and fixed curricula looks increasingly like a barrier, not a gateway. To avoid that fate:</p>
<p><strong>Shift from “Seat Time” to “Skill Proof”</strong>: Replace rigid credit hours with outcomes‑based assessments – portfolios, live demos, and secure system audits prove mastery far better than final exams.</p>
<p><strong>Align incentives around impact, not enrollment</strong>: Reward faculty for evolving courses, publishing open resources, and mentoring student startups rather than gatekeeping admissions or ballooning class sizes.</p>
<p>By viewing themselves not as ivory‑tower knowledge guardians but as agile partners in an ever‑changing tech ecosystem, educational institutions can remain indispensable. They’ll graduate engineers who wield software and hardware with equal fluency, who adapt on the fly, and who drive innovation – and who never fear being “left behind” by the next big Google toolkit.</p>
<p><a target="_blank" href="https://www.lunartech.ai/programs/ai-for-executives"><img src="https://images.unsplash.com/photo-1752606402432-9eeb131c6101?fm=jpg&amp;q=60&amp;w=3000&amp;ixlib=rb-4.1.0&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Wavy blue lines against a dark background." width="3000" height="2000" loading="lazy"></a></p>
<h2 id="heading-proposed-reforms-designing-end-to-end-programs">Proposed Reforms: Designing End-to-End Programs</h2>
<h3 id="heading-curriculum-transformation">Curriculum Transformation</h3>
<p>To implement end-to-end engineering education, institutions should redesign curricula to prioritize interdisciplinary skills across a structured timeline like the following:</p>
<ol>
<li><p><strong>Year 1: Core Foundations</strong> – Focus on mathematics (calculus, linear algebra, probability) and programming (Python, C++, JavaScript), introducing systems thinking, basic robotics concepts, and an overview of cybersecurity principles. This foundational year ensures students build a strong technical base while gaining exposure to interdisciplinary applications.</p>
</li>
<li><p><strong>Year 2: Software and Hardware Integration</strong> – Combine software development with mechanical engineering, emphasizing hands-on projects like robot prototyping. Courses might include designing simple robotic systems, such as a sensor-based navigation device, to connect digital and physical systems and introduce students to hardware constraints.</p>
</li>
<li><p><strong>Year 3: Cybersecurity and Ethics</strong> – Teach cybersecurity principles, such as encryption and secure system design, alongside AI ethics to promote responsible technology development. Projects could involve securing IoT devices or analyzing AI-generated code for vulnerabilities, preparing students for real-world challenges.</p>
</li>
<li><p><strong>Year 4: Capstone Projects</strong> – Require students to design and deploy real-world systems, such as secure IoT devices, autonomous robots, or energy-efficient automation systems, integrating all learned disciplines. These projects should involve collaboration with industry partners or research labs to ensure practical relevance.</p>
</li>
</ol>
<p>This structure prioritizes practical, relevant skills, replacing less applicable courses with interdisciplinary modules that align with industry needs.</p>
<h3 id="heading-faculty-and-resources">Faculty and Resources</h3>
<p>Recruiting faculty with expertise in robotics, mechanical engineering, and cybersecurity is essential for delivering a robust curriculum. Institutions can support collaboration through training programs, workshops, and incentives like joint research grants. For example, faculty from computer science and mechanical engineering could co-teach courses on robotic system design, fostering an interdisciplinary approach.</p>
<p>Investments in infrastructure, such as robotics labs, 3D printing facilities, and cybersecurity simulation environments, are necessary but can be costly. Institutions can implement phased rollouts, starting with virtual simulations or open-source tools to reduce initial expenses.</p>
<p>Grants from organizations like the National Science Foundation (NSF) or partnerships with industry can offset costs, ensuring long-term sustainability. For instance, virtual robotics platforms like Gazebo allow students to simulate robot designs before building physical prototypes, making training more accessible.</p>
<h3 id="heading-industry-collaboration">Industry Collaboration</h3>
<p>Partnerships with industry provide hands-on experience, ensuring students gain practical skills aligned with market needs. These collaborations should prioritize ethical practices, focusing on projects that address societal challenges, such as sustainable technology, secure systems, or healthcare robotics.</p>
<p>For example, joint labs with companies developing energy-efficient automation systems can enhance learning while fostering responsible development. Institutions must ensure partnerships emphasize student development and societal benefit, avoiding scenarios where corporate priorities overshadow educational goals.</p>
<h3 id="heading-accessible-and-flexible-pathways">Accessible and Flexible Pathways</h3>
<p>To make end-to-end education accessible, institutions can offer accelerated programs, such as three-year degrees or modular bootcamps, incorporating AI tools to enhance efficiency.</p>
<p>For example, once they’ve learned key programming concepts, students could use AI-assisted coding platforms to prototype systems, learning to validate outputs for accuracy and security. Online platforms can broaden access, enabling diverse populations to benefit from comprehensive training. Partnerships with community colleges and vocational programs can create pathways for underrepresented groups, fostering an inclusive engineering workforce.</p>
<h3 id="heading-continuous-curriculum-evolution">Continuous Curriculum Evolution</h3>
<p>To remain relevant, institutions must continuously evolve their curricula to reflect emerging technologies and industry trends. This includes incorporating advancements in AI, such as generative models or reinforcement learning, and addressing new cybersecurity threats, like quantum computing risks. Regular feedback from alumni, industry partners, and students can ensure curricula stay aligned with real-world needs, preparing graduates for long-term success.</p>
<p><a target="_blank" href="https://www.lunartech.ai/programs/ai-for-executives"><img src="https://images.unsplash.com/photo-1682686581295-7364cabf5511?fm=jpg&amp;q=60&amp;w=3000&amp;ixlib=rb-4.1.0&amp;ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="a person swimming in a deep blue ocean" width="3000" height="2001" loading="lazy"></a></p>
<h2 id="heading-benefits-for-graduates-and-society">Benefits for Graduates and Society</h2>
<h3 id="heading-enhancing-graduate-outcomes">Enhancing Graduate Outcomes</h3>
<p>End-to-end education prepares graduates for a competitive market, reducing unemployment risks and enabling higher earnings. With skills in AI oversight, robotics, and hardware design, graduates can pursue roles in high-demand fields like healthcare robotics, secure IoT systems, or autonomous vehicle development, commanding 10-20% higher salaries due to their interdisciplinary expertise.</p>
<p>For example, engineers trained in robotics and cybersecurity can design secure medical robots, addressing the growing demand for healthcare automation.</p>
<p>By launching startups or freelancing, end-to-end engineers can innovate independently, bypassing traditional corporate structures and sharing more directly in the value they create.</p>
<h3 id="heading-societal-contributions">Societal Contributions</h3>
<p>Society benefits significantly from resilient, secure systems designed by end-to-end engineers. Secure robots and IoT devices protect critical infrastructure, such as manufacturing plants, hospitals, or transportation networks, from cyber threats.</p>
<p>For example, a secure robotic system in a hospital could ensure reliable operation of surgical robots, improving patient outcomes. Training in AI ethics ensures graduates prioritize societal good, mitigating risks like misinformation by designing platforms with robust content verification.</p>
<p>Accessible, accelerated programs promote equity, fostering diverse talent pools and countering job polarization, where AI enhances 25% of roles but automates others. By making education more inclusive, institutions can reduce disparities, ensuring underrepresented groups have access to high-demand careers in engineering.</p>
<h3 id="heading-sustainability-and-global-impact">Sustainability and Global Impact</h3>
<p>Sustainability is a key benefit of end-to-end education. Engineers trained in holistic design can create energy-efficient systems, such as optimized robots for logistics or manufacturing, aligning with global environmental goals.</p>
<p>For instance, a robotic system designed to minimize energy consumption in a warehouse could reduce carbon emissions, contributing to sustainability efforts. Institutions adopting this model produce leaders who drive innovation and inclusive growth, addressing global challenges like climate change and digital equity.</p>
<h3 id="heading-ethical-technology-development">Ethical Technology Development</h3>
<p>End-to-end education fosters ethical awareness, equipping graduates to combat societal challenges like misinformation and system vulnerabilities. By integrating AI ethics and cybersecurity, graduates can design technologies that prioritize public good, ensuring platforms and systems are trustworthy and resilient. This approach aligns with the growing demand for ethical technology, as emphasized by many in the field who believe in the importance of critical thinking and responsibility in engineering.</p>
<p><a target="_blank" href="https://www.lunartech.ai/programs/ai-for-executives"><img src="https://images.unsplash.com/photo-1752213355138-7d08b01d2d0e?fm=jpg&amp;q=60&amp;w=3000&amp;ixlib=rb-4.1.0&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Abstract background of white vertical bars." width="3000" height="2000" loading="lazy"></a></p>
<h2 id="heading-overcoming-challenges-in-implementation">Overcoming Challenges in Implementation</h2>
<h3 id="heading-faculty-engagement-and-training">Faculty Engagement and Training</h3>
<p>Transitioning to end-to-end programs may face resistance from faculty accustomed to traditional, siloed teaching. Institutions can address this through training workshops, collaborative research opportunities, and incentives like joint research grants.</p>
<p>For example, as mentioned above, faculty from computer science and mechanical engineering could co-develop courses on robotic system design, fostering interdisciplinary collaboration. Hiring experts in robotics, cybersecurity, and mechanical engineering ensures a capable teaching staff equipped to deliver comprehensive curricula.</p>
<h3 id="heading-infrastructure-investment">Infrastructure Investment</h3>
<p>The cost of infrastructure, such as robotics labs, 3D printing facilities, and cybersecurity simulation environments, poses a significant hurdle. Institutions can implement phased rollouts, starting with virtual simulations using tools like ROS (Robot Operating System) or Gazebo, which allow students to prototype systems without physical hardware. Grants from organizations like the NSF or partnerships with industry can offset costs, while open-source tools enhance accessibility, ensuring equitable access to training.</p>
<h3 id="heading-curriculum-and-accreditation">Curriculum and Accreditation</h3>
<p>Redesigning curricula to meet accreditation standards, such as those set by ABET, requires a modular approach that integrates interdisciplinary skills while maintaining compliance. Institutions can pilot programs to test reforms, gradually incorporating modules like robotics or cybersecurity into existing curricula.</p>
<p>For example, a pilot program might introduce a robotics module in year two, allowing institutions to assess outcomes before full implementation. Regular reviews ensure curricula remain aligned with industry needs and accreditation requirements.</p>
<h3 id="heading-building-stakeholder-support">Building Stakeholder Support</h3>
<p>Securing stakeholder support requires demonstrating the benefits of end-to-end education, including lower unemployment rates (potentially dropping below 3% with holistic training), higher graduate earnings (10-20% above traditional programs), and societal impact through secure, sustainable systems.</p>
<p>Engaging alumni, industry partners, and students in curriculum design builds trust and ensures relevance. For instance, advisory boards with industry representatives can provide insights into emerging trends, aligning programs with market demands.</p>
<h3 id="heading-promoting-equity-and-access">Promoting Equity and Access</h3>
<p>To ensure equitable access, institutions should leverage online platforms and modular degrees, reducing costs and reaching diverse populations. Partnerships with community colleges and vocational programs can create pathways for underrepresented groups, fostering an inclusive engineering workforce.</p>
<p>For example, online courses in robotics or cybersecurity can provide access to students in remote or underserved areas, while modular bootcamps allow working professionals to upskill efficiently.</p>
<h3 id="heading-addressing-scalability">Addressing Scalability</h3>
<p>Scaling end-to-end programs requires strategic planning to balance quality and accessibility. Institutions can start with small cohorts, refining curricula based on feedback before expanding. Collaborations with other universities or online education platforms can share resources, reducing costs and increasing reach. For instance, a consortium of universities could develop shared virtual labs, enabling cost-effective training across institutions.</p>
<p><a target="_blank" href="https://www.lunartech.ai/programs/ai-for-executives"><img src="https://images.unsplash.com/photo-1752254091842-3f26af77d5f2?fm=jpg&amp;q=60&amp;w=3000&amp;ixlib=rb-4.1.0&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Symmetrical pattern of white flowers frames a black space." width="3000" height="2259" loading="lazy"></a></p>
<h2 id="heading-conclusion-a-path-forward-for-engineering-education">Conclusion: A Path Forward for Engineering Education</h2>
<p>The case for end-to-end engineering education is compelling in a world shaped by AI, interconnected systems, and evolving societal needs. Traditional software engineering programs, with their focus on intermediary roles, must evolve to prepare graduates for the complexities of modern industries.</p>
<p>By integrating software development with robotics, mechanical engineering, and cybersecurity, institutions can produce versatile, innovative engineers who lead in a technology-driven world.</p>
<p>Reforms require bold action: transforming curricula to prioritize interdisciplinary skills, investing in faculty and infrastructure, fostering ethical industry partnerships, and promoting accessible pathways.</p>
<p>Case studies from MIT, Stanford, Vanderbilt, and global institutions like those in Nordic countries demonstrate the transformative potential of this approach, with graduates excelling in diverse roles, founding startups, and building resilient systems. Emerging programs at institutions like ETH Zurich and the University of Toronto further highlight the global applicability of end-to-end education.</p>
<p>Challenges like faculty resistance, infrastructure costs, and accreditation hurdles can be addressed through strategic planning, including phased rollouts, grants, and stakeholder engagement. Online platforms and partnerships with community colleges ensure equity, fostering a diverse talent pool that drives inclusive growth.</p>
<p>End-to-end education is not just an opportunity – it’s a necessity for equipping engineers to navigate a complex, technology-driven world. By embracing this model, institutions can empower the next generation to build innovative, secure, and sustainable systems that benefit society, ensuring a resilient and equitable future for all.</p>
<h2 id="heading-further-resources">Further Resources:</h2>
<p>Ready to become an End-to-End Engineer – mastering software, hardware, AI deployment, robotics, and cybersecurity to build complete systems from the ground up?</p>
<p>Don't just integrate – innovate and lead. You can enroll in <a target="_blank" href="https://www.lunartech.ai/programs/ai-for-executives">LUNARTECH AI for Executives</a>, tailored for leaders who want to strategize, fund, and deploy cutting-edge AI solutions without falling behind in the fast-evolving tech landscape.</p>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/7uidSyymA-Q" 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> </p>
<h3 id="heading-lunartech-ai-for-executives"><strong>LunarTech AI for Executives</strong></h3>
<p>For leaders and frontline professionals who <em>feel the pressure to “get AI” but don’t speak code</em>, this 1- to 3-day program delivers exactly what you need: no fluff, no jargon. In clear language, we unpack how generative AI, large-language models, and regulatory frameworks such as the EU AI Act are reshaping compliance, risk, and client service.</p>
<p>Next, we roll up our sleeves. You’ll practice with ChatGPT, Phoenix, Gemini<strong>,</strong> and other curated tools to summarize 200-page reports in minutes, flag hidden risks, and automate repetitive workflows. Expect live demos, breakout labs, and case studies drawn straight from banking, asset management, and insurance.</p>
<p>By the final session you’ll have a road-ready playbook for piloting AI safely – from data-governance checklists to ROI metrics your CFO will love<em>.</em> Graduates leave with a certificate, a toolkit of prompts, and the confidence to champion AI initiatives inside their own departments.</p>
<ul>
<li><p><strong>Format:</strong> Online or on-site, 1–3 days</p>
</li>
<li><p><strong>Cost:</strong> $997 per participant</p>
</li>
</ul>
<p>Apply Here: <a target="_blank" href="https://www.lunartech.ai/programs/ai-for-executives">https://www.lunartech.ai/programs/ai-for-executives</a></p>
<h3 id="heading-other-resources">Other Resources</h3>
<ul>
<li><p>Lens | LUNARTECH - <a target="_blank" href="https://lens.lunartech.ai/">https://lens.lunartech.ai/</a></p>
</li>
<li><p>YouTube | LUNARTECH - <a target="_blank" href="https://www.youtube.com/@lunartech_ai">https://www.youtube.com/@lunartech_ai</a></p>
</li>
<li><p>Linkedin | LUNARTECH - <a target="_blank" href="https://www.linkedin.com/company/lunartechai/">https://www.linkedin.com/company/lunartechai/</a></p>
</li>
<li><p>Substack | LUNARTECH - <a target="_blank" href="https://lunartech.substack.com/">https://lunartech.substack.com/</a></p>
</li>
</ul>
 ]]>
                </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[ 1200 Free Computer Science Courses from the World’s Top Universities ]]>
                </title>
                <description>
                    <![CDATA[ In this article, we’ve compiled 1000+ online courses offered by the 60 best universities in the world for studying computer science in 2025. We first built the list in 2020 using a data-driven approac ]]>
                </description>
                <link>https://www.freecodecamp.org/news/free-courses-top-cs-universities/</link>
                <guid isPermaLink="false">66c376aef278f15f931a3431</guid>
                
                    <category>
                        <![CDATA[ Computer Science ]]>
                    </category>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ self-improvement  ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Manoel ]]>
                </dc:creator>
                <pubDate>Tue, 28 Jan 2025 06:00:00 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1738170135222/602b9c8f-09ff-42ca-ad26-cec5fc06a7ef.jpeg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>In this article, we’ve compiled 1000+ online courses offered by the 60 best universities in the world for studying computer science in 2025.</p>
<p>We first built the list in 2020 using a data-driven approach that we have used each year, including 2025. You can find the methodology below.</p>
<h2 id="heading-methodology"><strong>Methodology</strong></h2>
<p>First, we identified the&nbsp;<a href="https://en.wikipedia.org/wiki/College_and_university_rankings#Global_rankings"><strong>leading world university rankings</strong></a>. Since we were interested in computer science specifically, he looked at their latest computer science rankings.</p>
<p>For the 2025 update, Suparn, my colleague used the same sources and methodology to find the top 60 universities offering online computer science courses.</p>
<p>Here are the rankings used:</p>
<ul>
<li><p><strong>QS:</strong> <a href="https://www.topuniversities.com/university-subject-rankings/computer-science-information-systems"><strong>World University Ranking 2025 — Computer Science &amp; IT</strong></a></p>
</li>
<li><p><strong>Times Higher Education:</strong> <a href="https://www.timeshighereducation.com/world-university-rankings/2025/subject-ranking/computer-science"><strong>World University Ranking 2025 — Computer Science</strong></a></p>
</li>
</ul>
<p>Then, we crawled and scraped each ranking.</p>
<p>Now that we had some data, we used&nbsp;<a href="https://jupyter.org/"><strong>Jupyter</strong></a> with Python to process it. We combined the two rankings into one by averaging the position of each university in each ranking. Then, we filtered out the universities that didn’t offer online courses, and limited the list to the top 60 institutions — the cream of the crop.</p>
<img src="https://cdn.hashnode.com/uploads/covers/67609e10de2c94d89bd72b33/72627f3f-8db1-41a9-a00f-5f50ec8e5d48.png" alt="72627f3f-8db1-41a9-a00f-5f50ec8e5d48" style="display:block;margin:0 auto" width="644" height="706" loading="lazy">

<p><em>Combined ranking: top 10 universities for studying computer science in 2024</em></p>
<p>As you can see above, we found that the top three institutions are <strong>#1</strong>&nbsp;<a href="https://www.classcentral.com/university/mit"><strong>MIT</strong></a>, &nbsp;<strong>#2</strong> <a href="https://www.classcentral.com/university/oxford"><strong>Oxford</strong></a> , and <strong>#3</strong> <a href="https://www.classcentral.com/university/stanford"><strong>Stanford</strong></a>.</p>
<p>Finally, we used the&nbsp;<a href="https://www.classcentral.com/subjects"><strong>Class Central database</strong></a>, with its 250K online courses, to find all the computer science courses offered by the universities in the ranking.</p>
<p>The end result is a list of 1000+ online courses offered by the 60 best universities in the world for studying computer science in 2025.</p>
<h2 id="heading-stats"><strong>Stats</strong></h2>
<ul>
<li><p>Enrollments range from 10 to over 13 million, with 14 courses exceeding 1 million enrollments</p>
</li>
<li><p>Altogether, they have over 81M enrollments, with an average of 222K enrollments</p>
</li>
<li><p>921 courses are in English, 114 Chinese, 5 Spanish, and 3 French</p>
</li>
<li><p>Together, they account for more than 78K reviews at Class Central, with an average of 216 reviews</p>
</li>
<li><p>Average rating: 4.37 out of 5.0</p>
</li>
<li><p>All these courses are free or can be audited for free</p>
</li>
<li><p>104 courses are beginner level, 111 are intermediate level, and 49 are advanced level.</p>
</li>
</ul>
<h2 id="heading-more-courses"><strong>More Courses</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>The full list is split into subjects. With over 1000 courses to pick from, I hope you find something you like. But if these aren’t enough, check out&nbsp;<a href="https://www.classcentral.com/"><strong>Class Central’s catalog</strong></a> of 250K online courses or our thematic collections:</p>
<ul>
<li><p><a href="https://www.classcentral.com/report/free-developer-it-certifications/"><strong>2000+ Free Developer and IT Certifications</strong></a></p>
</li>
<li><p><a href="https://www.classcentral.com/report/harvard-cs50-guide/"><strong>Harvard Computer Science Courses with Free Certificate</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/free-codesignal-certificates/"><strong>800+ Free Certificates: Master Tech &amp; Soft Skills with CodeSignal Learn</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>
<h2 id="heading-computer-science-727"><strong>Computer Science (727)</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> ★★★★★(1012)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-harvard-university-cs50-s-introd-442?ref=freecodecamp"><strong>CS50's Introduction to Computer Science</strong></a> from <em>Harvard University</em> ★★★★★(204)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-034-artificial-intelligence-fall-2010-40938?ref=freecodecamp"><strong>Artificial Intelligence</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(182)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-01sc-introduction-to-electrical-engineering-and-computer-science-i-spring-2011-40932?ref=freecodecamp"><strong>Introduction to Electrical Engineering and Computer Science I</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(58)</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> ★★★★★(35)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-introduction-to-artificial-intelligence-301?ref=freecodecamp"><strong>Introduction to Artificial Intelligence</strong></a> from <em>Stanford University</em> ★★★★☆(31)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/machine-learning-massachusetts-institute-of-techn-11483?ref=freecodecamp"><strong>Machine Learning with Python: from Linear Models to Deep Learning.</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★☆☆(30)</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> ★★★★★(29)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-structures-the-georgia-institute-of-technolo-23256?ref=freecodecamp"><strong>Data Structures &amp; Algorithms I: ArrayLists, LinkedLists, Stacks and Queues</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(28)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-006-introduction-to-algorithms-spring-2020-66373?ref=freecodecamp"><strong>Introduction to Algorithms</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(25)</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> ★★★★★(21)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-intro-to-machine-learning-2996?ref=freecodecamp"><strong>Intro to Machine Learning</strong></a> from <em>Stanford University</em> ★★★★☆(20)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/coding-stanford-university-automata-theory-376?ref=freecodecamp"><strong>Automata Theory</strong></a> from <em>Stanford University</em> ★★★★☆(20)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-introduction-to-deep-learning-53113?ref=freecodecamp"><strong>Introduction to Deep Learning</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(20)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-stanford-university-computer-sci-2175?ref=freecodecamp"><strong>Computer Science 101</strong></a> from <em>Stanford University</em> ★★★★☆(19)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-mas-s62-cryptocurrency-engineering-and-design-spring-2018-40972?ref=freecodecamp"><strong>Cryptocurrency Engineering and Design</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(19)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/human-computer-interaction-the-georgia-institute--14444?ref=freecodecamp"><strong>Human-Computer Interaction I: Fundamentals &amp; Design Principles</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(15)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/coding-university-of-british-columbia-how-to-code-3465?ref=freecodecamp"><strong>How to Code: Simple Data</strong></a> from <em>The University of British Columbia</em> ★★★★☆(15)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-design-of-computer-programs-323?ref=freecodecamp"><strong>Design of Computer Programs</strong></a> from <em>Stanford University</em> ★★★★☆(14)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/unix-delft-university-of-technology-unix-tools-da-18180?ref=freecodecamp"><strong>Unix Tools: Data, Software and Production Engineering</strong></a> from <em>Delft University of Technology</em> ★★★★★(13)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ai-for-clinical-trials-and-precision-medicine-ruishan-liu-132489?ref=freecodecamp"><strong>AI for Clinical Trials and Precision Medicine - Ruishan Liu</strong></a> from <em>Stanford University</em> ★★★★★(11)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-learning-from-data-introductory-machine-learning-course-366?ref=freecodecamp"><strong>Learning from Data (Introductory Machine Learning course)</strong></a> from <em>California Institute of Technology</em> ★★★★★(10)</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> ★★★★★(8)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/information-technology-the-georgia-institute-of-t-5898?ref=freecodecamp"><strong>Information and Communication Technology (ICT) Accessibility</strong></a> from <em>Georgia Institute of Technology</em> ★★★★☆(8)</p>
</li>
<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/machine-learning-the-university-of-california-san-8216?ref=freecodecamp"><strong>Machine Learning Fundamentals</strong></a> from <em>University of California, San Diego</em> ★★★★☆(8)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016-40930?ref=freecodecamp"><strong>Introduction to Computer Science and Programming in Python</strong></a> from <em>Massachusetts Institute of Technology</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-introduction-to-computer-vision-1022?ref=freecodecamp"><strong>Introduction to Computer Vision</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-structures-the-georgia-institute-of-technolo-23255?ref=freecodecamp"><strong>Data Structures &amp; Algorithms II: Binary Trees, Heaps, SkipLists and HashMaps</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-172-performance-engineering-of-software-systems-fall-2018-40943?ref=freecodecamp"><strong>Performance Engineering of Software Systems</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-lecture-collection-convolutional-neural-networks-for-visual-recognition-spring-2017-53111?ref=freecodecamp"><strong>Convolutional Neural Networks for Visual Recognition</strong></a> from <em>Stanford University</em> ★★★★☆(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-advanced-operating-systems-1016?ref=freecodecamp"><strong>Advanced Operating Systems</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-introduction-to-computer-architecture-642?ref=freecodecamp"><strong>Introduction to Computer Architecture</strong></a> from <em>Carnegie Mellon University</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-computer-networking-2336?ref=freecodecamp"><strong>Computer Networking</strong></a> from <em>Georgia Institute of Technology</em> ★★★★☆(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-structures-the-georgia-institute-of-technolo-23283?ref=freecodecamp"><strong>Data Structures &amp; Algorithms III: AVL and 2-4 Trees, Divide and Conquer Algorithms</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-s897-machine-learning-for-healthcare-spring-2019-40955?ref=freecodecamp"><strong>Machine Learning for Healthcare</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-824-distributed-systems-spring-2020-53357?ref=freecodecamp"><strong>MIT 6.824 Distributed Systems - Spring 2020</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-structures-the-university-of-california-san--10436?ref=freecodecamp"><strong>Data Structures: An Active Learning Approach</strong></a> from <em>University of California, San Diego</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/coding-university-of-british-columbia-how-to-code-3464?ref=freecodecamp"><strong>How to Code: Complex Data</strong></a> from <em>The University of British Columbia</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-structures-the-georgia-institute-of-technolo-23282?ref=freecodecamp"><strong>Data Structures &amp; Algorithms IV: Pattern Matching, Dijkstra’s, MST, and Dynamic Programming Algorithms</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-distributed-systems-lecture-series-53062?ref=freecodecamp"><strong>Distributed Systems</strong></a> from <em>University of Cambridge</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ece-252-53359?ref=freecodecamp"><strong>Electrical and Computer Engineering - Systems Programming and Concurrency</strong></a> from <em>University of Waterloo</em> ★★★★☆(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/human-computer-interaction-the-georgia-institute--14445?ref=freecodecamp"><strong>Human-Computer Interaction II: Cognition, Context &amp; Culture</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-6-s191-introduction-to-deep-learning-8083?ref=freecodecamp"><strong>6.S191: Introduction to Deep Learning</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★☆(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-0002-introduction-to-computational-thinking-and-data-science-fall-2016-40931?ref=freecodecamp"><strong>Introduction to Computational Thinking and Data Science</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2025-ai-education-summit-welcome-remarks-433719?ref=freecodecamp"><strong>AI and Education Summit: Transforming Learning and Workforce Readiness</strong></a> from <em>Stanford University</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-software-architecture-design-3418?ref=freecodecamp"><strong>Software Architecture &amp; Design</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/logic-stanford-university-language-proof-and-logi-2340?ref=freecodecamp"><strong>Language, Proof and Logic</strong></a> from <em>Stanford University</em> ★★★★☆(3)</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/algorithms-the-university-of-california-san-diego-10241?ref=freecodecamp"><strong>Algorithmic Design and Techniques</strong></a> from <em>University of California, San Diego</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-using-electronic-health-records-for-better-care-110035?ref=freecodecamp"><strong>Using Electronic Health Records for Better Care</strong></a> from <em>Stanford University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-design-ai-envisioning-ai-augmented-products-191650?ref=freecodecamp"><strong>Design &amp; AI - Envisioning AI-Augmented Products</strong></a> from <em>Stanford University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-security-and-the-software-defined-network-110036?ref=freecodecamp"><strong>Stanford Seminar - Security and the Software Defined Network</strong></a> from <em>Stanford University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-self-driving-cars-for-everyone-191985?ref=freecodecamp"><strong>Stanford Seminar - Self-Driving Cars for Everyone</strong></a> from <em>Stanford University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-practical-blockchain-applications-steven-pu-108719?ref=freecodecamp"><strong>Stanford Seminar - Practical Blockchain Applications - Steven Pu</strong></a> from <em>Stanford University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-iot-from-smart-sensors-to-smart-networks-110007?ref=freecodecamp"><strong>Stanford Webinar - IOT: From Smart Sensors to Smart Networks</strong></a> from <em>Stanford University</em> ★★★★★(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-gender-disparities-in-software-engineering-191916?ref=freecodecamp"><strong>Stanford Seminar - Gender Disparities in Software Engineering</strong></a> from <em>Stanford University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-introduction-to-operating-systems-3419?ref=freecodecamp"><strong>Introduction to Operating Systems</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/human-computer-interaction-the-georgia-institute--14447?ref=freecodecamp"><strong>Human-Computer Interaction IV: Evaluation, Agile Methods &amp; Beyond</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-deep-learning-for-natural-language-processing-8097?ref=freecodecamp"><strong>Deep Learning for Natural Language Processing</strong></a> from <em>University of Oxford</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/software-engineering-university-of-british-columb-8205?ref=freecodecamp"><strong>Software Engineering: Introduction</strong></a> from <em>The University of British Columbia</em> ★★★☆☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-knowledge-based-ai-cognitive-systems-1025?ref=freecodecamp"><strong>Knowledge-Based AI: Cognitive Systems</strong></a> from <em>Georgia Institute of Technology</em> ★★★☆☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/quantum-computing-delft-university-of-technology--9760?ref=freecodecamp"><strong>The Quantum Internet and Quantum Computers: How Will They Change the World?</strong></a> from <em>Delft University of Technology</em> ★★★☆☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-6-s094-deep-learning-for-self-driving-cars-8132?ref=freecodecamp"><strong>6.S094: Deep Learning for Self-Driving Cars</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-046j-introduction-to-algorithms-sma-5503-fall-2005-40942?ref=freecodecamp"><strong>Introduction to Algorithms (SMA 5503)</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-opencourseware-introduction-to-computer-science-and-programming-fall-2008-40929?ref=freecodecamp"><strong>Introduction to Computer Science and Programming (Fall 2008)</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs547-human-computer-interaction-seminar-series-107766?ref=freecodecamp"><strong>Stanford - Human-Computer Interaction Seminar Series</strong></a> from <em>Stanford University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-how-to-compute-with-schroedinger-s-cat-an-introduction-to-quantum-computing-110031?ref=freecodecamp"><strong>How to Compute with Schrödinger's Cat - An Introduction to Quantum Computing</strong></a> from <em>Stanford University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-web3-considered-possible-futures-for-decentralization-and-digital-ownership-191575?ref=freecodecamp"><strong>Web3 Considered - Possible Futures for Decentralization and Digital Ownership</strong></a> from <em>Stanford University</em> ★★★★☆(2)</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> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-deepmind-x-ucl-deep-learning-lecture-series-2020-45714?ref=freecodecamp"><strong>Deep Learning Lecture Series</strong></a> from <em>University College London</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-unsupervised-biomedical-image-segmentation-using-hyperbolic-representations-jeffrey-gu-132501?ref=freecodecamp"><strong>Towards Unsupervised Biomedical Image Segmentation Using Hyperbolic Representations - Jeffrey Gu</strong></a> from <em>Stanford University</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-creating-human-computer-partnerships-269978?ref=freecodecamp"><strong>Creating Human-Computer Partnerships - Stanford Seminar</strong></a> from <em>Stanford University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs25-i-stanford-seminar-2022-decision-transformer-reinforcement-learning-via-sequence-modeling-191606?ref=freecodecamp"><strong>Stanford Seminar - Decision Transformer: Reinforcement Learning via Sequence Modeling</strong></a> from <em>Stanford University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-computability-complexity-algorithms-1024?ref=freecodecamp"><strong>Computability, Complexity &amp; Algorithms</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-high-performance-computer-architecture-1018?ref=freecodecamp"><strong>High Performance Computer Architecture</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/health-informatics-the-georgia-institute-of-techn-13541?ref=freecodecamp"><strong>Health Informatics: A Current and Historical Perspective</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/human-computer-interaction-the-georgia-institute--14446?ref=freecodecamp"><strong>Human-Computer Interaction III: Ethics, Needfinding &amp; Prototyping</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-stanford-university-compilers-2716?ref=freecodecamp"><strong>Compilers</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-introduction-to-graduate-algorithms-10625?ref=freecodecamp"><strong>Introduction to Graduate Algorithms</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/object-oriented-programming-university-of-british-8201?ref=freecodecamp"><strong>Software Construction: Object-Oriented Design</strong></a> from <em>The University of British Columbia</em> ★★☆☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/machine-learning-purdue-university-introduction-t-47957?ref=freecodecamp"><strong>Introduction to Scientific Machine Learning</strong></a> from <em>Purdue University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/java-university-of-british-columbia-software-cons-8200?ref=freecodecamp"><strong>Software Construction: Data Abstraction</strong></a> from <em>The University of British Columbia</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/machine-learning-delft-university-of-technology-m-204582?ref=freecodecamp"><strong>Machine Learning for Semiconductor Quantum Devices</strong></a> from <em>Delft University of Technology</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-structures-tsinghua-university-data-structur-5720?ref=freecodecamp"><strong>Data Structures and Algorithm Design Part II | 数据结构与算法设计(下)</strong></a> from <em>Tsinghua University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-programming-massachusetts-institute-of-t-192616?ref=freecodecamp"><strong>Introduction to Computational Science and Engineering</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/javascript-ecole-polytechnique-federale-de-lausan-6881?ref=freecodecamp"><strong>Nature, in Code: Biology in JavaScript</strong></a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-006-introduction-to-algorithms-fall-2011-40936?ref=freecodecamp"><strong>Introduction to Algorithms</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-042j-mathematics-for-computer-science-fall-2010-40941?ref=freecodecamp"><strong>Mathematics for Computer Science</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-046j-design-and-analysis-of-algorithms-spring-2015-70694?ref=freecodecamp"><strong>Design and Analysis of Algorithms</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-opencourseware-introduction-to-computer-science-and-programming-spring-2011-40928?ref=freecodecamp"><strong>Introduction to Computer Science and Programming (Spring 2011)</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/engineering-purdue-university-boltzmann-law-physi-21012?ref=freecodecamp"><strong>Boltzmann Law: Physics to Computing</strong></a> from <em>Purdue University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-deep-learning-for-computer-vision-46762?ref=freecodecamp"><strong>Deep Learning for Computer Vision</strong></a> from <em>University of Michigan</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/quantum-computing-university-of-chicago-quantum-c-56654?ref=freecodecamp"><strong>Quantum Computer Systems Design III: Working with Noisy Systems</strong></a> from <em>The University of Chicago</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-science-massachusetts-institute-of-technolog-107514?ref=freecodecamp"><strong>Understanding the World Through Data</strong></a> from <em>Massachusetts Institute of Technology</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-beyond-cryptocurrency-blockchain-for-the-real-world-110002?ref=freecodecamp"><strong>Beyond Cryptocurrency: Blockchain for the Real World</strong></a> from <em>Stanford University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/blockchain-university-of-toronto-blockchain-princ-292544?ref=freecodecamp"><strong>Dive Into the World of Blockchain: Principles, Mechanics, and Tokens</strong></a> from <em>University of Toronto</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-rethinking-the-ai-ux-boundary-for-designing-human-ai-experiences-108697?ref=freecodecamp"><strong>Rethinking the AI-UX Boundary for Designing Human-AI Experiences</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-how-chatgpt-and-generative-ai-will-shape-the-future-of-work-191522?ref=freecodecamp"><strong>How ChatGPT and Generative AI Will Shape the Future of Work</strong></a> from <em>Stanford University</em> ★☆☆☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-how-not-to-generate-random-numbers-110037?ref=freecodecamp"><strong>Stanford Seminar - How Not to Generate Random Numbers</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-building-the-smartest-and-open-virtual-assistant-to-protect-privacy-monica-lam-108721?ref=freecodecamp"><strong>Stanford Seminar - Building the Smartest and Open Virtual Assistant to Protect Privacy - Monica Lam</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ei-seminar-grey-yang-tuning-gpt-3-on-a-single-gpu-via-zero-shot-hyperparameter-transfer-127043?ref=freecodecamp"><strong>Tuning GPT-3 on a Single GPU via Zero-Shot Hyperparameter Transfer</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2019-recurrent-neural-networks-128111?ref=freecodecamp"><strong>MIT: Recurrent Neural Networks</strong></a> from <em>Alexander Amini</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-wireless-above-100ghz-132468?ref=freecodecamp"><strong>Wireless Above 100GHz</strong></a> from <em>New York University (NYU)</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-generalization-and-personalization-in-federated-learning-karan-singhal-132497?ref=freecodecamp"><strong>Generalization and Personalization in Federated Learning - Karan Singhal</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-graph-based-modeling-in-computational-pathology-siyi-tang-132509?ref=freecodecamp"><strong>MedAI- Graph-Based Modeling in Computational Pathology - Siyi Tang</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hai-seminar-with-erik-altman-synthetic-data-sets-for-the-financial-industry-454143?ref=freecodecamp"><strong>Synthetic Data Sets for the Financial Industry</strong></a> from <em>Stanford University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ei-seminar-martin-riedmiller-learning-controllers-from-engineering-to-agi-127044?ref=freecodecamp"><strong>Learning Controllers - From Engineering to AGI</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-google-s-multilingual-neural-machine-translation-system-192015?ref=freecodecamp"><strong>Stanford Seminar - Google's Multilingual Neural Machine Translation System</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2021-deep-generative-modeling-128090?ref=freecodecamp"><strong>Deep Generative Modeling</strong></a> from <em>Alexander Amini</em> ★★★★★(1)</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> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-edge-computing-in-autonomous-vehicles-panel-discussion-191812?ref=freecodecamp"><strong>Edge Computing in Autonomous Vehicles - Panel Discussion</strong></a> from <em>Stanford 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-stanford-seminar-exploring-the-implications-of-machine-learning-for-cognitive-disabilities-191925?ref=freecodecamp"><strong>Exploring the Implications of Machine Learning for Cognitive Disabilities</strong></a> from <em>Stanford University</em> ★★★★★(1)</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> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-toward-scalable-autonomy-aleksandra-faust-108695?ref=freecodecamp"><strong>Stanford Seminar - Toward Scalable Autonomy - Aleksandra Faust</strong></a> from <em>Stanford University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-pioneering-the-science-of-information-179114?ref=freecodecamp"><strong>Pioneering the Science of Information - IBM's Role in Shaping Information Technology</strong></a> from <em>University of Melbourne</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-the-soul-of-a-new-machine-rethinking-the-computer-191784?ref=freecodecamp"><strong>The Soul of a New Machine - Rethinking the Computer</strong></a> from <em>Stanford University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-2-prefix-free-codes-289250?ref=freecodecamp"><strong>Data Compression I - Lecture 2: Prefix Free Codes</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-ei-seminar-russ-tedrake-feedback-control-from-pixels-127056?ref=freecodecamp"><strong>Feedback Control from Pixels</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2019-visualization-for-machine-learning-google-brain-128104?ref=freecodecamp"><strong>Visualization for Machine Learning - Google Brain</strong></a> from <em>Alexander Amini</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2025-ai-education-summit-daniel-schwartz-the-information-age-the-age-of-creation-438141?ref=freecodecamp"><strong>The Information Age and The Age of Creation</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/algorithms-stanford-university-algorithms-design--8984?ref=freecodecamp"><strong>Algorithms: Design and Analysis, Part 1</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-cyber-physical-systems-design-analysis-10473?ref=freecodecamp"><strong>Cyber-Physical Systems Design &amp; Analysis</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-artificial-intelligence-8565?ref=freecodecamp"><strong>Artificial Intelligence</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/quantum-computing-university-of-british-columbia--120532?ref=freecodecamp"><strong>Introduction to Quantum Computing</strong></a> from <em>The University of British Columbia</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-human-computer-interaction-8567?ref=freecodecamp"><strong>Human-Computer Interaction</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-hacker-tools-13160?ref=freecodecamp"><strong>Hacker Tools</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-high-performance-computing-1028?ref=freecodecamp"><strong>High Performance Computing</strong></a> from <em>Georgia Institute of Technology</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/artificial-intelligence-the-georgia-institute-of--274065?ref=freecodecamp"><strong>AI for Teacher Assistance</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/algorithms-stanford-university-algorithms-design--19393?ref=freecodecamp"><strong>Algorithms: Design and Analysis, Part 2</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/introduction-to-blockchain-dlt-54642?ref=freecodecamp"><strong>Introduction to Blockchain Technology and Applications</strong></a> from <em>University College London</em></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></p>
</li>
<li><p><a href="https://www.classcentral.com/course/artificial-intelligence-delft-university-of-techn-146908?ref=freecodecamp"><strong>AI skills: Introduction to Unsupervised, Deep and Reinforcement Learning</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/health-informatics-the-georgia-institute-of-techn-13542?ref=freecodecamp"><strong>Health Informatics: Data and Interoperability Standards</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-delft-university-of-technology-d-204583?ref=freecodecamp"><strong>Development and Applications of Germanium Quantum Technologies</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/ethics-delft-university-of-technology-ethics-in-a-190753?ref=freecodecamp"><strong>Ethics in AI Design</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/artificial-intelligence-purdue-university-compute-52912?ref=freecodecamp"><strong>Computer Applications of Artificial Intelligence and e-Construction</strong></a> from <em>Purdue University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/artificial-intelligence-delft-university-of-techn-146907?ref=freecodecamp"><strong>AI skills for Engineers: Supervised Machine Learning</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-arm-education-ai-at-the-edge-on--440497?ref=freecodecamp"><strong>AI at the Edge on Arm: Understanding and Deploying LLMs for Mobile Devices</strong></a> from <em>Arm Education</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-compilers-theory-and-practice-8572?ref=freecodecamp"><strong>Compilers: Theory and Practice</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/image-analysis-ecole-polytechnique-federale-de-la-12066?ref=freecodecamp"><strong>Image Processing and Analysis for Life Scientists</strong></a> from <em>École Polytechnique Fédérale de Lausanne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/artificial-intelligence-the-georgia-institute-of--274063?ref=freecodecamp"><strong>Assessment Design with AI</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/engineering-purdue-university-introduction-to-dee-33404?ref=freecodecamp"><strong>Introduction to Deep Learning</strong></a> from <em>Purdue University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/chatbots-the-georgia-institute-of-technology-chat-274064?ref=freecodecamp"><strong>Chatbots for Instruction</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/problem-solving-delft-university-of-technology-co-284459?ref=freecodecamp"><strong>Complex Problem Structuring: a Socio-Technical Perspective</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/machine-learning-the-georgia-institute-of-technol-9695?ref=freecodecamp"><strong>Machine Learning</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/health-informatics-the-georgia-institute-of-techn-13543?ref=freecodecamp"><strong>Health Informatics: The Cutting Edge</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-the-university-of-california-san-302383?ref=freecodecamp"><strong>Computer Graphics II: Rendering</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-graphics-the-university-of-california-sa-127752?ref=freecodecamp"><strong>Computer Graphics</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/iot-internet-of-things-ecole-polytechnique-federa-47956?ref=freecodecamp"><strong>IoT Systems and Industrial Applications with Design Thinking</strong></a> from <em>École Polytechnique Fédérale de Lausanne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/quantum-computing-university-of-chicago-introduct-24327?ref=freecodecamp"><strong>Introduction to Quantum Computing for Everyone</strong></a> from <em>The University of Chicago</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-statistical-machine-learning-8509?ref=freecodecamp"><strong>Statistical Machine Learning</strong></a> from <em>Carnegie Mellon University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/quantum-computing-delft-university-of-technology--34203?ref=freecodecamp"><strong>Fundamentals of Quantum Information</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/engineering-purdue-university-quantum-computing-i-21183?ref=freecodecamp"><strong>Applied Quantum Computing I: Fundamentals</strong></a> from <em>Purdue University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/gamification-the-georgia-institute-of-technology--9485?ref=freecodecamp"><strong>Accessible Gamification</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/engineering-purdue-university-quantum-computing-i-21186?ref=freecodecamp"><strong>Applied Quantum Computing III: Algorithm and Software</strong></a> from <em>Purdue University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-structures-the-university-of-california-san--10246?ref=freecodecamp"><strong>Data Structures Fundamentals</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/embedded-systems-purdue-university-computer-visio-96635?ref=freecodecamp"><strong>Computer Vision for Embedded Systems</strong></a> from <em>Purdue University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/algorithms-the-university-of-california-san-diego-10247?ref=freecodecamp"><strong>Graph Algorithms</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/technology-eth-zurich-self-driving-cars-with-duck-21872?ref=freecodecamp"><strong>Self-Driving Cars with Duckietown</strong></a> from <em>ETH Zurich</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/machine-learning-universite-de-montreal-machine-l-126091?ref=freecodecamp"><strong>Machine Learning Use Cases in Finance</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/engineering-purdue-university-quantum-detectors-a-21181?ref=freecodecamp"><strong>Quantum Detectors and Sensors</strong></a> from <em>Purdue 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/quantum-computing-university-of-chicago-introduct-25375?ref=freecodecamp"><strong>Introduction to Quantum Computing for Everyone 2</strong></a> from <em>The University of Chicago</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/deep-learning-universite-de-montreal-deep-learnin-18145?ref=freecodecamp"><strong>Deep Learning Essentials</strong></a> from <em>Université de Montréal</em></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></p>
</li>
<li><p><a href="https://www.classcentral.com/course/engineering-purdue-university-quantum-computing-i-21185?ref=freecodecamp"><strong>Applied Quantum Computing II: Hardware</strong></a> from <em>Purdue 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/artificial-intelligence-ku-leuven-ai-in-healthcar-274285?ref=freecodecamp"><strong>AI in Healthcare. Hype or Help?</strong></a> from <em>KU Leuven University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-delft-university-of-technology-q-291676?ref=freecodecamp"><strong>Quantum Communication and the Quantum Network Explorer</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/communication-delft-university-of-technology-towa-435910?ref=freecodecamp"><strong>Quantum-safe Digital Infrastructures: Technical Challenges and Solutions</strong></a> from <em>Delft University of Technology</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/quantum-computing-university-of-chicago-quantum-c-56652?ref=freecodecamp"><strong>Quantum Computer Systems Design I: Intro to Quantum Computation and Programming</strong></a> from <em>The University of Chicago</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-universite-de-montreal-introduct-286617?ref=freecodecamp"><strong>Introduction à l'éthique de l’IA</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/artificial-intelligence-universite-de-montreal-bi-18144?ref=freecodecamp"><strong>Bias and Discrimination in AI</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/economics-university-of-toronto-trading-and-lendi-292545?ref=freecodecamp"><strong>Explore Trading and Lending in Decentralized Finance</strong></a> from <em>University of Toronto</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/quantum-computing-university-of-chicago-quantum-c-56653?ref=freecodecamp"><strong>Quantum Computer Systems Design II: Principles of Quantum Architecture</strong></a> from <em>The University of Chicago</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-programming-tsinghua-university-data-str-1646?ref=freecodecamp"><strong>Data Structures and Algorithm Design Part I | 数据结构与算法设计(上)</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/communication-delft-university-of-technology-quan-435911?ref=freecodecamp"><strong>Quantum-safe Digital infrastructures: Challenges and Solutions for Governance</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/artificial-intelligence-delft-university-of-techn-21197?ref=freecodecamp"><strong>AI in Practice: Preparing for AI</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-programming-the-university-of-texas-at-a-13675?ref=freecodecamp"><strong>LAFF-On Programming for High Performance</strong></a> from <em>The University of Texas at Austin</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-delft-university-of-technology-m-96687?ref=freecodecamp"><strong>Modern Distributed Systems</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-gt-refresher-advanced-os-4734?ref=freecodecamp"><strong>GT - Refresher - Advanced OS</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-universite-de-montreal-biais-et--295042?ref=freecodecamp"><strong>Biais et discrimination en IA</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-universite-de-montreal-technique-291683?ref=freecodecamp"><strong>Techniques d’intelligence artificielle : des fondements aux applications</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-868j-the-society-of-mind-fall-2011-40953?ref=freecodecamp"><strong>The Society of Mind</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-universite-de-montreal-introduct-295043?ref=freecodecamp"><strong>Introduction à l'apprentissage profond</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-851-advanced-data-structures-spring-2012-40951?ref=freecodecamp"><strong>Advanced Data Structures</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/algorithms-the-university-of-california-san-diego-10275?ref=freecodecamp"><strong>NP-Complete Problems</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/algorithms-the-university-of-california-san-diego-10248?ref=freecodecamp"><strong>String Processing and Pattern Matching Algorithms</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/blockchain-university-of-toronto-blockchain-techn-292552?ref=freecodecamp"><strong>Blockchain Technology and the Future of FinTech</strong></a> from <em>University of Toronto</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-delft-university-of-technology-q-363693?ref=freecodecamp"><strong>Quantum Hardware and its Applications with Quantum Inspire</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/geometry-tsinghua-university-ji-suan-ji-he-comput-5434?ref=freecodecamp"><strong>计算几何 | Computational Geometry</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-programming-the-university-of-texas-at-a-7852?ref=freecodecamp"><strong>LAFF – On Programming for Correctness</strong></a> from <em>The University of Texas at Austin</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-universite-de-montreal-l-essenti-295558?ref=freecodecamp"><strong>L'essentiel de l'apprentissage profond</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-universite-de-montreal-vision-ar-294709?ref=freecodecamp"><strong>Vision artificielle et exploitation intelligente des ressources naturelles</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-universite-de-montreal-les-couli-295044?ref=freecodecamp"><strong>Les coulisses des systèmes de recommandation</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-mas-s62-cryptocurrency-engineering-and-design-spring-2018-53942?ref=freecodecamp"><strong>Cryptocurrency Engineering and Design - Spring 2018</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/humanities-ku-leuven-ai-to-understand-and-connect-459314?ref=freecodecamp"><strong>AI to Understand and Connect People</strong></a> from <em>KU Leuven University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/artificial-intelligence-delft-university-of-techn-21198?ref=freecodecamp"><strong>AI in Practice: Applying AI</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/big-data-tsinghua-university-big-data-machine-lea-12739?ref=freecodecamp"><strong>Big Data Machine Learning | 大数据机器学习</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs105-introduction-to-computers-full-course-107758?ref=freecodecamp"><strong>Introduction to Computers - Stanford University</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-statistics-university-of-cambridge--446362?ref=freecodecamp"><strong>Navigating complex health data challenges</strong></a> from <em>University of Cambridge</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/machine-learning-universite-de-montreal-recommend-22799?ref=freecodecamp"><strong>Recommender Systems: Behind the Screen</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/blockchain-university-of-toronto-decentralized-de-292546?ref=freecodecamp"><strong>Navigating Decentralized Derivatives and Governance in Blockchain</strong></a> from <em>University of Toronto</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-how-you-can-use-chatgpt-to-increase-your-creative-output-191521?ref=freecodecamp"><strong>How You Can Use ChatGPT to Increase Your Creative Output</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/math-ecole-polytechnique-federale-de-lausanne-opt-22236?ref=freecodecamp"><strong>Optimization: principles and algorithms - Network and discrete optimization</strong></a> from <em>École Polytechnique Fédérale de Lausanne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs229-machine-learning-full-course-taught-by-andrew-ng-autumn-2018-107761?ref=freecodecamp"><strong>Stanford CS229 - Machine Learning Full Course Taught by Andrew Ng - Autumn 2018</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-deep-learning-in-life-sciences-spring-2021-48202?ref=freecodecamp"><strong>Deep Learning in Life Sciences - Spring 2021</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/algorithms-peking-university-suan-fa-ji-chu-funda-3244?ref=freecodecamp"><strong>算法基础 | Fundamental Algorithms</strong></a> from <em>Peking University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/algorithms-ecole-polytechnique-federale-de-lausan-22237?ref=freecodecamp"><strong>Optimization: principles and algorithms - Unconstrained nonlinear optimization</strong></a> from <em>École Polytechnique Fédérale de Lausanne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computationalthinking-spring-21-94397?ref=freecodecamp"><strong>Introduction to Computational Thinking</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs221-artificial-intelligence-principles-and-techniques-autumn-2019-107762?ref=freecodecamp"><strong>Artificial Intelligence - Principles and Techniques - Autumn 2019</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-01sc-introduction-to-eecs-i-90334?ref=freecodecamp"><strong>Introduction to EECS I</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-370-the-battlecode-programming-competition-january-iap-2013-40945?ref=freecodecamp"><strong>The Battlecode Programming Competition</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-849-geometric-folding-algorithms-linkages-origami-polyhedra-fall-2012-40950?ref=freecodecamp"><strong>Geometric Folding Algorithms: Linkages, Origami, Polyhedra</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ai-and-law-i-mariano-florentino-cuellar-president-of-the-carnegie-endowment-for-international-peace-191623?ref=freecodecamp"><strong>AI and Law: Implications for Society and Legal Systems</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-artificial-intelligence-for-business-leaders-191600?ref=freecodecamp"><strong>Artificial Intelligence for Business Leaders</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-opencourseware-programming-for-the-puzzled-january-iap-2018-40946?ref=freecodecamp"><strong>Programming for the Puzzled (January IAP 2018)</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-software-defined-networking-at-the-crossroads-110069?ref=freecodecamp"><strong>Stanford Seminar - Software-Defined Networking at the Crossroads</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-15-566-information-technology-as-an-integrating-force-in-manufacturing-spring-2003-292253?ref=freecodecamp"><strong>Information Technology as an Integrating Force in Manufacturing</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-189-multicore-programming-primer-january-iap-2007-40944?ref=freecodecamp"><strong>Multicore Programming Primer</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-programming-peking-university-li-lun-ji--2436?ref=freecodecamp"><strong>理论计算机科学基础 | Introduction to Theoretical Computer Science</strong></a> from <em>Peking University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-artificial-intelligence-current-and-future-paradigms-and-implications-191912?ref=freecodecamp"><strong>Artificial Intelligence - Current and Future Paradigms and Implications</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-18-404j-theory-of-computation-fall-2020-90333?ref=freecodecamp"><strong>Theory of Computation, Fall 2020</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-cryptocurrencies-and-blockchains-the-science-behind-the-technology-dan-boneh-191601?ref=freecodecamp"><strong>Cryptocurrencies and Blockchains - The Science Behind the Technology</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-100l-introduction-to-cs-and-programming-using-python-fall-2022-292230?ref=freecodecamp"><strong>Introduction to CS and Programming using Python</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-deep-learning-for-medical-diagnoses-108742?ref=freecodecamp"><strong>Stanford Seminar - Deep Learning for Medical Diagnoses</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs25-i-stanford-seminar-transformers-in-language-the-development-of-gpt-models-including-gpt3-109963?ref=freecodecamp"><strong>Stanford Seminar - Transformers in Language: The Development of GPT Models Including GPT-3</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs154-stanford-introduction-to-the-theory-of-computing-107760?ref=freecodecamp"><strong>Introduction to the Theory of Computing - Stanford</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-the-fate-of-ai-ethics-anna-bethke-108692?ref=freecodecamp"><strong>Stanford Seminar - The FATE of AI Ethics, Anna Bethke</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-designing-assistive-technologies-for-agency-109976?ref=freecodecamp"><strong>Stanford Seminar - Designing Assistive Technologies for Agency</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-890-algorithmic-lower-bounds-fun-with-hardness-proofs-fall-2014-40954?ref=freecodecamp"><strong>Algorithmic Lower Bounds: Fun with Hardness Proofs</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-software-centric-visible-light-communication-for-the-internet-of-things-110011?ref=freecodecamp"><strong>Software-Centric Visible Light Communication for the Internet of Things</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-part-two-how-you-can-use-chatgpt-to-increase-your-creative-output-203279?ref=freecodecamp"><strong>How to Use ChatGPT to Increase Your Creative Output - Part Two</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-introduction-to-deep-learning-6-s191-128081?ref=freecodecamp"><strong>MIT Introduction to Deep Learning</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs330-deep-multi-task-and-meta-learning-107765?ref=freecodecamp"><strong>Stanford CS330: Deep Multi-Task and Meta Learning</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-machine-learning-course-cs-156-48196?ref=freecodecamp"><strong>Machine Learning Course</strong></a> from <em>California Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-using-data-for-increased-realism-with-haptic-modeling-and-devices-108685?ref=freecodecamp"><strong>Using Data for Increased Realism with Haptic Modeling and Devices</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-deep-learning-in-speech-recognition-108769?ref=freecodecamp"><strong>Stanford Seminar - Deep Learning in Speech Recognition</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-the-future-of-blockchain-and-cryptocurrencies-dan-boneh-191706?ref=freecodecamp"><strong>The Future of Blockchain and Cryptocurrencies - Dan Boneh</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-ai-in-the-workplace-rethinking-skill-development-310939?ref=freecodecamp"><strong>AI in the Workplace: Rethinking Skill Development</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-ai-bias-and-fairness-128086?ref=freecodecamp"><strong>AI Bias and Fairness</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-natural-language-processing-for-production-level-conversational-interfaces-109992?ref=freecodecamp"><strong>Stanford Seminar - Natural Language Processing for Conversational Interfaces</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-bugs-in-crypto-implementations-110004?ref=freecodecamp"><strong>Stanford Seminar - Bugs in Crypto Implementations</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ge-wang-the-artful-design-of-interactive-ai-systems-158532?ref=freecodecamp"><strong>The Artful Design of Interactive AI Systems</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-artificial-intelligence-planning-53358?ref=freecodecamp"><strong>Artificial Intelligence Planning</strong></a> from <em>University of Edinburgh</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-deep-generative-modeling-128078?ref=freecodecamp"><strong>Deep Generative Modeling</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-reinforcement-learning-128077?ref=freecodecamp"><strong>MIT: Reinforcement Learning</strong></a> from <em>Alexander Amini</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-stanford-cs234-reinforcement-learning-winter-2019-107764?ref=freecodecamp"><strong>Stanford CS234: Reinforcement Learning - Winter 2019</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-representation-learning-for-autonomous-robots-anima-anandkumar-108691?ref=freecodecamp"><strong>Stanford Seminar - Representation Learning for Autonomous Robots, Anima Anandkumar</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-creating-interfaces-with-rich-physical-properties-through-digital-fabricationity-109982?ref=freecodecamp"><strong>Stanford Seminar - Creating Interfaces with Rich Physical Properties Through Digital Fabrication</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-chris-re-how-machine-learning-is-changing-software-158564?ref=freecodecamp"><strong>How Machine Learning is Changing Software</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-ai-in-healthcare-128082?ref=freecodecamp"><strong>AI in Healthcare</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs224w-machine-learning-with-graphs-fall-2019-107763?ref=freecodecamp"><strong>Machine Learning with Graphs - Fall 2019</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-enabling-nlp-machine-learning-few-shot-learning-using-associative-processing-108770?ref=freecodecamp"><strong>Stanford Seminar - Enabling NLP, Machine Learning, and Few-Shot Learning Using Associative Processing</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-smart-physical-systems-from-the-standpoint-of-an-ai-company-109997?ref=freecodecamp"><strong>Smart Physical Systems from the Standpoint of an AI Company</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-can-the-brain-do-back-propagation-110023?ref=freecodecamp"><strong>Stanford Seminar - Can the Brain Do Back-Propagation?</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-frontiers-of-medical-ai-therapeutics-and-workflows-andre-esteva-132514?ref=freecodecamp"><strong>Frontiers of Medical AI - Therapeutics and Workflows</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-agentic-ai-a-progression-of-language-model-usage-428258?ref=freecodecamp"><strong>Agentic AI: A Progression of Language Model Usage</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ei-seminar-rob-fergus-data-augmentation-for-image-based-reinforcement-learning-127045?ref=freecodecamp"><strong>Data Augmentation for Image-Based Reinforcement Learning</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-ei-seminar-phillip-isola-emergent-intelligence-getting-more-out-of-agents-than-you-bake-in-127057?ref=freecodecamp"><strong>MIT EI Seminar - Phillip Isola - Emergent Intelligence- Getting More Out of Agents Than You Bake In</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-automatic-speech-recognition-128076?ref=freecodecamp"><strong>MIT 6.S191 - Automatic Speech Recognition</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-18-404j-theory-of-computation-fall-2020-292268?ref=freecodecamp"><strong>Theory of Computation</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/algorithms-peking-university-suan-fa-she-ji-yu-fe-6364?ref=freecodecamp"><strong>算法设计与分析(高级) | Advanced Design and Analysis of Algorithms</strong></a> from <em>Peking University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-deep-maths-machine-learning-and-mathematics-142787?ref=freecodecamp"><strong>Deep Maths - Machine Learning and Mathematics</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-forecasting-and-aligning-ai-jacob-steinhardt-108686?ref=freecodecamp"><strong>Forecasting and Aligning AI - Jacob Steinhardt</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-deep-learning-for-symbolic-mathematics-guillaume-lample-francois-charton-108720?ref=freecodecamp"><strong>Deep Learning for Symbolic Mathematics - Guillaume Lample &amp; Francois Charton</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-neural-networks-on-chip-design-from-the-user-perspective-108736?ref=freecodecamp"><strong>Stanford Seminar - Neural Networks on Chip Design from the User Perspective</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-solana-larsen-who-has-power-over-ai-158512?ref=freecodecamp"><strong>Solana Larsen- Who Has Power Over AI?</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-rebooting-the-internet-191779?ref=freecodecamp"><strong>Stanford Seminar - Rebooting the Internet</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-federated-learning-in-medicine-breaking-down-silos-to-advance-medical-research-191811?ref=freecodecamp"><strong>Federated Learning in Medicine - Breaking Down Silos to Advance Medical Research</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ei-seminar-luke-zettlemoyer-large-language-models-will-they-keep-getting-bigger-127042?ref=freecodecamp"><strong>Large Language Models - Will They Keep Getting Bigger?</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ei-seminar-jacob-andreas-natural-language-explanations-of-deep-networks-127052?ref=freecodecamp"><strong>Jacob Andreas - Natural Language Explanations of Deep Networks</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-ei-seminar-lerrel-pinto-diverse-data-and-efficient-algorithms-for-robot-learning-127055?ref=freecodecamp"><strong>Diverse Data and Efficient Algorithms for Robot Learning</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-towards-ai-for-3d-content-creation-128083?ref=freecodecamp"><strong>Towards AI for 3D Content Creation</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-6-036-introduction-to-machine-learning-277819?ref=freecodecamp"><strong>6.036 Introduction to Machine Learning</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-creativity-code-marcus-du-sautoy-142826?ref=freecodecamp"><strong>The Creativity Code - Marcus du Sautoy</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-training-classifiers-with-natural-language-explanations-108753?ref=freecodecamp"><strong>Stanford Seminar - Training Classifiers with Natural Language Explanations</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-new-golden-age-for-computer-architecture-john-hennessy-110000?ref=freecodecamp"><strong>Stanford Seminar - New Golden Age for Computer Architecture - John Hennessy</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-applying-theory-to-practice-and-practice-to-theory-110043?ref=freecodecamp"><strong>Stanford Seminar - Applying Theory to Practice and Practice to Theory</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-weakly-supervised-large-scale-computational-pathology-for-diagnosis-prognosis-max-lu-132496?ref=freecodecamp"><strong>Weakly-Supervised, Large-Scale Computational Pathology for Diagnosis and Prognosis - Max Lu</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-federated-hyperparameters-tuning-challenges-baselines-connections-mikhail-khodak-132498?ref=freecodecamp"><strong>Federated Hyperparameter Tuning - Challenges, Baselines, and Connections</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-what-s-next-for-blockchain-in-china-191915?ref=freecodecamp"><strong>Stanford Seminar - What's Next for Blockchain in China?</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-opening-remarks-artificial-intelligence-the-future-of-medicine-health-care-is-here-312415?ref=freecodecamp"><strong>Artificial Intelligence - The Future of Medicine and Health Care Is Here</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2020-neurosymbolic-ai-128097?ref=freecodecamp"><strong>Neurosymbolic AI</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2018-beyond-deep-learning-learning-reasoning-128116?ref=freecodecamp"><strong>Beyond Deep Learning - Learning+Reasoning</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2018-sequence-modeling-with-neural-networks-128115?ref=freecodecamp"><strong>Sequence Modeling with Neural Networks</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-lenia-biology-of-artificial-life-bert-wang-chak-chan-108731?ref=freecodecamp"><strong>Stanford Seminar - Lenia- Biology of Artificial Life, Bert Wang-Chak Chan</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-scalable-intelligent-systems-build-and-deploy-by-2025-108757?ref=freecodecamp"><strong>Stanford Seminar - Scalable Intelligent Systems Build and Deploy by 2025</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-erudite-prototype-system-for-computational-intelligence-108758?ref=freecodecamp"><strong>Stanford Seminar - Erudite: Prototype System for Computational Intelligence</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-safe-passwords-made-easy-to-use-108762?ref=freecodecamp"><strong>Stanford Seminar - Safe Passwords Made Easy to Use</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-computational-memory-a-stepping-stone-to-non-von-neumann-computing-108766?ref=freecodecamp"><strong>Computational Memory - A Stepping-Stone to Non-Von Neumann Computing?</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-the-quest-for-low-storage-latency-changes-everything-108771?ref=freecodecamp"><strong>Stanford Seminar - The Quest for Low Storage Latency Changes Everything</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-the-rex-neo-architecture-an-energy-efficient-new-processor-architecture-110014?ref=freecodecamp"><strong>Stanford Seminar - The REX Neo Architecture - An Energy Efficient New Processor Architecture</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-citadel-of-one-individuality-and-the-rise-of-the-machines-suzanne-sadedin-110034?ref=freecodecamp"><strong>Stanford Seminar - Citadel of One- Individuality and the Rise of the Machines, Suzanne Sadedin</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-dynamic-code-optimization-and-the-nvidia-denver-processor-110041?ref=freecodecamp"><strong>Dynamic Code Optimization and the NVIDIA Denver Processor</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-instruction-sets-should-be-free-the-case-for-risc-v-110050?ref=freecodecamp"><strong>Stanford Seminar - Instruction Sets Should Be Free- The Case for RISC-V</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-multimodal-opportunistic-risk-assessment-for-ischemic-heart-disease-juan-manuel-132511?ref=freecodecamp"><strong>Multimodal Opportunistic Risk Assessment for Ischemic Heart Disease - Juan Manuel</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-rethinking-architecture-design-for-data-heterogeneity-in-fl-liangqiong-qu-132513?ref=freecodecamp"><strong>Rethinking Architecture Design for Data Heterogeneity in FL - Liangqiong Qu</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-few-shot-chest-x-ray-diagnosis-using-clinical-literature-images-angshuman-paul-132520?ref=freecodecamp"><strong>Few-Shot Chest X-Ray Diagnosis Using Clinical and Literature Images</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-akshay-chaudhari-data-efficient-ai-for-accelerating-mri-acquisition-158543?ref=freecodecamp"><strong>Data-Efficient AI for Accelerating MRI Acquisition</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-with-dan-boneh-hacking-ai-security-privacy-of-machine-learning-models-191718?ref=freecodecamp"><strong>Hacking AI - Security &amp; Privacy of Machine Learning Models</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs229-machine-learning-summer-2019-lecture-8-kernel-methods-support-vector-machine-191744?ref=freecodecamp"><strong>Stanford CS229 - Machine Learning - Summer 2019 - Kernel Methods &amp; Support Vector Machine</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-create-a-better-user-experience-through-ai-michael-bernstein-191767?ref=freecodecamp"><strong>Create a Better User Experience Through AI - Michael Bernstein</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-nvidia-gpu-computing-a-journey-from-pc-gaming-to-deep-learning-191963?ref=freecodecamp"><strong>NVIDIA GPU Computing - A Journey from PC Gaming to Deep Learning</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ai-transforms-health-care-artificial-intelligence-the-future-of-medicine-health-care-is-here-312413?ref=freecodecamp"><strong>AI Transforms Health Care - The Future of Medicine and Health Care</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-computer-science-and-it-faculty-of-engineering-and-information-technology-deep-dive-178938?ref=freecodecamp"><strong>Computer Science and IT at the University of Melbourne - Faculty of Engineering and IT Overview</strong></a> from <em>University of Melbourne</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-ei-seminar-recent-papers-in-embodied-intelligence-127046?ref=freecodecamp"><strong>EI Seminar - Recent Papers in Embodied Intelligence</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-daniel-wolpert-computational-principles-underlying-the-learning-of-sensorimotor-repertoires-127049?ref=freecodecamp"><strong>Computational Principles Underlying the Learning of Sensorimotor Repertoires</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ei-seminar-yejin-choi-intuitive-reasoning-as-un-supervised-neural-generation-127051?ref=freecodecamp"><strong>Intuitive Reasoning as Unsupervised Neural Generation</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ei-seminar-michael-carbin-the-lottery-ticket-hypothesis-127053?ref=freecodecamp"><strong>The Lottery Ticket Hypothesis - Michael Carbin</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-recurrent-neural-networks-and-transformers-128080?ref=freecodecamp"><strong>Recurrent Neural Networks and Transformers</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2019-introduction-to-deep-learning-128112?ref=freecodecamp"><strong>MIT: Introduction to Deep Learning</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2020-introduction-to-deep-learning-128103?ref=freecodecamp"><strong>Introduction to Deep Learning</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-5630-advanced-topics-in-cryptography-fall-2023-426580?ref=freecodecamp"><strong>Advanced Topics in Cryptography</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-failures-where-to-find-them-considering-safety-as-a-function-of-structure-108684?ref=freecodecamp"><strong>Stanford Seminar - Failures &amp; Where to Find Them: Considering Safety as a Function of Structure</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-denoising-diffusion-models-for-denoising-diffusion-mri-tiange-xiang-132484?ref=freecodecamp"><strong>Denoising Diffusion Models for Denoising Diffusion MRI - Tiange Xiang</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-real-time-seizure-detection-using-eeg-hyewon-jeong-132488?ref=freecodecamp"><strong>Real-Time Seizure Detection Using EEG - Hyewon Jeong</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-deep-learning-methods-for-electrocardiograms-and-echocardiograms-weston-hughes-132500?ref=freecodecamp"><strong>Deep Learning Methods for Electrocardiograms and Echocardiograms</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-towards-generalist-imaging-using-multimodal-self-supervised-learning-mars-huang-132505?ref=freecodecamp"><strong>Towards Generalist Imaging Using Multimodal Self-Supervised Learning - Mars Huang</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-karen-liu-the-new-role-of-physics-simulation-in-ai-158551?ref=freecodecamp"><strong>The New Role of Physics Simulation in AI</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-human-ai-interaction-under-societal-disagreement-191518?ref=freecodecamp"><strong>Stanford Seminar - Human-AI Interaction Under Societal Disagreement</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-talk-inequality-in-healthcare-ai-data-science-to-reduce-inequality-improve-healthcare-191620?ref=freecodecamp"><strong>Inequality in Healthcare: Using AI and Data Science to Reduce Disparities</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-taraxa-io-a-globalized-blockchain-protocol-startup-191904?ref=freecodecamp"><strong>Stanford Seminar -</strong></a> <a href="http://Taraxa.io"><strong>Taraxa.io</strong></a><a href="https://www.classcentral.com/course/youtube-stanford-seminar-taraxa-io-a-globalized-blockchain-protocol-startup-191904?ref=freecodecamp"><strong>: A Globalized Blockchain Protocol Startup</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-cybersecurity-in-modern-era-zero-knowledge-proofs-explained-270417?ref=freecodecamp"><strong>Cybersecurity in the Modern Era - Zero Knowledge Proofs Explained</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hai-seminar-with-sheng-wang-generative-ai-for-multimodal-biomedicine-378286?ref=freecodecamp"><strong>Generative AI for Multimodal Biomedicine</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ei-seminar-ruslan-salakhutdinov-building-embodied-autonomous-agents-127041?ref=freecodecamp"><strong>Building Embodied Autonomous Agents</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2020-machine-learning-for-scent-128094?ref=freecodecamp"><strong>Machine Learning for Scent</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2021-introduction-to-deep-learning-128093?ref=freecodecamp"><strong>Introduction to Deep Learning</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-convolutional-neural-networks-128079?ref=freecodecamp"><strong>Convolutional Neural Networks</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2018-convolutional-neural-networks-128118?ref=freecodecamp"><strong>Convolutional Neural Networks</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2018-introduction-to-deep-learning-128119?ref=freecodecamp"><strong>Introduction to Deep Learning - MIT 2018</strong></a> from <em>Alexander Amini</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/chatgpt-universite-de-montreal-chatgpt-pour-tous-289214?ref=freecodecamp"><strong>ChatGPT pour tous</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-leela-a-semantic-intelligent-agent-108761?ref=freecodecamp"><strong>Stanford Seminar - Leela: A Semantic Intelligent Agent</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-an-architect-s-point-of-view-on-emerging-technologies-108768?ref=freecodecamp"><strong>Stanford Seminar - An Architect's Point of View on Emerging Technologies</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-dialog-markets-110015?ref=freecodecamp"><strong>Stanford Seminar - Dialog Markets</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-time-traveling-hardware-and-software-systems-110017?ref=freecodecamp"><strong>Stanford Seminar - Time Traveling Hardware and Software Systems</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-concepts-and-questions-as-programs-110019?ref=freecodecamp"><strong>Stanford Seminar - Concepts and Questions as Programs</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-david-robinson-voices-in-the-code-a-story-about-people-their-values-and-the-algorithm-they-made-158508?ref=freecodecamp"><strong>Voices in the Code - A Story About People, Their Values, and the Algorithm They Made</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-against-ethical-robots-with-ron-chrisley-158577?ref=freecodecamp"><strong>Against Ethical Robots with Ron Chrisley</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-is-google-search-is-dying-191648?ref=freecodecamp"><strong>Stanford Seminar - Is Google Search Dying?</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-race-for-technological-supremacy-emerging-technologies-and-global-implications-191655?ref=freecodecamp"><strong>The Race for Technological Supremacy - Emerging Technologies and Global Implications</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-fastai-a-layered-api-for-deep-learning-191785?ref=freecodecamp"><strong>Stanford Seminar - Fastai: A Layered API for Deep Learning</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs230-deep-learning-autumn-2018-lecture-1-class-introduction-logistics-andrew-ng-191860?ref=freecodecamp"><strong>Deep Learning - Class Introduction and Logistics - Lecture 1</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-how-is-ai-evolving-a-look-at-the-startup-landscape-in-the-u-s-and-asia-191877?ref=freecodecamp"><strong>How is AI Evolving? A Look at the Startup Landscape in the U.S. and Asia</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-entrepreneurial-lessons-from-self-driving-cars-191944?ref=freecodecamp"><strong>Entrepreneurial Lessons from Self-Driving Cars</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs25-i-stanford-seminar-transformers-united-neuroscience-inspired-artificial-intelligence-206680?ref=freecodecamp"><strong>Stanford Seminar - Transformers United: Neuroscience-Inspired Artificial Intelligence</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs25-v4-i-overview-of-transformers-289569?ref=freecodecamp"><strong>Overview of Transformers - Stanford CS25: Lecture 1</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-language-models-as-temporary-training-wheels-to-facilitate-learning-366883?ref=freecodecamp"><strong>Language Models as Temporary Training Wheels to Facilitate Learning</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-can-you-trust-a-computer-algorithm-how-and-why-179019?ref=freecodecamp"><strong>Can You Trust a Computer Algorithm - How and Why</strong></a> from <em>University of Melbourne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ei-seminar-recent-papers-in-embodied-intelligence-i-127047?ref=freecodecamp"><strong>Recent Papers in Embodied Intelligence I</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2020-deep-learning-new-frontiers-128098?ref=freecodecamp"><strong>Deep Learning New Frontiers</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2018-deep-learning-limitations-and-new-frontiers-128117?ref=freecodecamp"><strong>Deep Learning Limitations and New Frontiers</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2018-computer-vision-meets-social-networks-128114?ref=freecodecamp"><strong>Computer Vision Meets Social Networks</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2019-deep-reinforcement-learning-128108?ref=freecodecamp"><strong>MIT: Deep Reinforcement Learning</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2019-deep-learning-limitations-and-new-frontiers-128107?ref=freecodecamp"><strong>MIT 6.S191 - Deep Learning Limitations and New Frontiers</strong></a> from <em>Alexander Amini</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-ideas-for-a-complex-world-anna-seigal-142808?ref=freecodecamp"><strong>Ideas for a Complex World - Anna Seigal</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ggp-course-videos-107769?ref=freecodecamp"><strong>GGP Course Videos</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-persistent-and-unforgeable-watermarks-for-deepneural-networks-108735?ref=freecodecamp"><strong>Stanford Seminar - Persistent and Unforgeable Watermarks for Deep Neural Networks</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-mips-open-wave-computing-108741?ref=freecodecamp"><strong>Stanford Seminar - MIPS Open, Wave Computing</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-efficient-and-resilient-systems-in-the-cognitive-era-108763?ref=freecodecamp"><strong>Stanford Seminar - Efficient and Resilient Systems in the Cognitive Era</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-distributed-perception-and-learning-between-robots-and-the-cloud-109978?ref=freecodecamp"><strong>Stanford Seminar - Distributed Perception and Learning Between Robots and the Cloud</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-computational-ecosystems-110006?ref=freecodecamp"><strong>Stanford Seminar: Computational Ecosystems</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-hpc-opportunities-in-deep-learning-greg-diamos-baidu-110020?ref=freecodecamp"><strong>Stanford Seminar - HPC Opportunities in Deep Learning - Greg Diamos, Baidu</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-mostly-missless-memory-in-the-mill-cpu-110065?ref=freecodecamp"><strong>Stanford Seminar - Mostly Missless Memory in the Mill CPU</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-gans-in-medical-image-synthesis-translation-and-augmentation-jason-jeong-132502?ref=freecodecamp"><strong>GANs in Medical Image Synthesis, Translation, and Augmentation - Jason Jeong</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-self-training-weak-supervision-untrained-neural-nets-for-mr-recon-beliz-gunel-132510?ref=freecodecamp"><strong>Self-Training - Weak Supervision Using Untrained Neural Nets for MR Reconstruction - Beliz Gunel</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-segmentation-and-quantification-of-breast-arterial-calcifications-xiaoyuan-guo-132519?ref=freecodecamp"><strong>Segmentation and Quantification of Breast Arterial Calcifications - Xiaoyuan Guo</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-carlos-guestrin-how-can-you-trust-machine-learning-158529?ref=freecodecamp"><strong>How Can You Trust Machine Learning?</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-jiajun-wu-learning-to-see-the-physical-world-158567?ref=freecodecamp"><strong>Learning to See the Physical World</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-optimizing-the-internet-191557?ref=freecodecamp"><strong>Optimizing the Internet</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-lessons-from-evaluating-and-debugging-healthcare-ai-in-deployment-191615?ref=freecodecamp"><strong>Lessons From Evaluating and Debugging Healthcare AI in Deployment</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-how-can-you-trust-machine-learning-carlos-guestrin-191627?ref=freecodecamp"><strong>How Can You Trust Machine Learning?</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-safety-and-liveness-of-robot-behaviors-191632?ref=freecodecamp"><strong>Safety and Liveness of Robot Behaviors</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-4004-microprocessors-191658?ref=freecodecamp"><strong>Stanford Seminar - Microprocessors</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs230-deep-learning-autumn-2018-lecture-3-full-cycle-deep-learning-projects-191858?ref=freecodecamp"><strong>Deep Learning Full-Cycle Projects - Lecture 3</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs230-deep-learning-autumn-2018-lecture-2-deep-learning-intuition-191859?ref=freecodecamp"><strong>Deep Learning Intuition - Lecture 2</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-virtual-human-agent-for-smart-city-191887?ref=freecodecamp"><strong>Stanford Seminar - Virtual Human Agent for Smart City</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-leveraging-social-theories-to-enhance-human-ai-interaction-261460?ref=freecodecamp"><strong>Leveraging Social Theories to Enhance Human-AI Interaction</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-lecture-don-knuth-twintrees-baxter-permutations-and-floorplans-2022-263283?ref=freecodecamp"><strong>Twintrees, Baxter Permutations, and Floorplans in Computer Science - Lecture 2022</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-the-state-of-design-knowledge-in-human-ai-interaction-286234?ref=freecodecamp"><strong>The State of Design Knowledge in Human-AI Interaction</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-124-sleepfm-multi-modal-representation-learning-for-sleep-rahul-thapa-302757?ref=freecodecamp"><strong>SleepFM - Multi-modal Representation Learning for Sleep Across Brain Activity, ECG and Respiratory Signals</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ai-s-global-impact-on-democracy-and-governance-306772?ref=freecodecamp"><strong>AI's Global Impact on Democracy and Governance</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-panel-ai-s-role-in-improving-health-care-services-in-our-communities-312412?ref=freecodecamp"><strong>AI's Role in Improving Health Care Services in Our Communities</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hai-seminar-with-google-learning-sd-480p-353192?ref=freecodecamp"><strong>Learn About: Google's AI-Powered Learning Tool - HAI Seminar</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-accounting-for-human-engagement-behavior-to-enhance-ai-assisted-decision-making-355299?ref=freecodecamp"><strong>Accounting for Human Engagement Behavior to Enhance AI-Assisted Decision Making</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-ei-seminar-pulkit-agrawal-the-task-specification-problem-127050?ref=freecodecamp"><strong>The Task Specification Problem</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2020-generalizable-autonomy-for-robot-manipulation-128096?ref=freecodecamp"><strong>Generalizable Autonomy for Robot Manipulation</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2021-recurrent-neural-networks-128092?ref=freecodecamp"><strong>MIT 6.S191 - Recurrent Neural Networks</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2021-reinforcement-learning-128089?ref=freecodecamp"><strong>Reinforcement Learning</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2019-convolutional-neural-networks-128110?ref=freecodecamp"><strong>Convolutional Neural Networks</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2019-deep-generative-modeling-128109?ref=freecodecamp"><strong>Deep Generative Modeling</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2019-biologically-inspired-neural-networks-ibm-128106?ref=freecodecamp"><strong>Biologically Inspired Neural Networks</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2020-deep-generative-modeling-128100?ref=freecodecamp"><strong>Deep Generative Modeling</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2020-reinforcement-learning-128099?ref=freecodecamp"><strong>Reinforcement Learning</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367102?ref=freecodecamp"><strong>计算机文化基础</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-ai-and-industrial-innovation-463886?ref=freecodecamp"><strong>AI and Industrial Innovation</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/machine-learning-universite-de-montreal-apprivois-142758?ref=freecodecamp"><strong>Apprivoiser l’apprentissage automatique</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-smile-synchronized-multi-sensory-integrated-learning-environment-109981?ref=freecodecamp"><strong>Stanford Seminar - SMILE- Synchronized, Multi-sensory Integrated Learning Environment</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-instruction-execution-on-the-mill-cpu-110059?ref=freecodecamp"><strong>Instruction Execution on the Mill CPU</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-opioid-use-disorder-prediction-using-ai-and-existing-risk-models-sajjad-fouladvand-132483?ref=freecodecamp"><strong>Opioid Use Disorder Prediction Using AI and Existing Risk Models</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-explaining-model-decisions-and-fixing-them-through-human-feedback-ramprasaath-selvaraju-132486?ref=freecodecamp"><strong>Explaining Model Decisions and Fixing Them Through Human Feedback</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-fairness-in-representation-learning-natalie-dullerud-132487?ref=freecodecamp"><strong>Fairness in Representation Learning - Natalie Dullerud</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-generative-models-with-domain-knowledge-for-weakly-supervised-clustering-laura-manduchi-132491?ref=freecodecamp"><strong>Generative Models With Domain Knowledge for Weakly Supervised Clustering</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-domain-adaptation-with-invariant-representation-learning-petar-stojanov-132494?ref=freecodecamp"><strong>Domain Adaptation with Invariant Representation Learning - What Transformations to Learn?</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-optimizing-for-interpretability-in-deep-neural-networks-mike-wu-132499?ref=freecodecamp"><strong>Optimizing for Interpretability in Deep Neural Networks - Mike Wu</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-adversarial-debiasing-with-partial-learning-medical-image-studies-ramon-correa-132503?ref=freecodecamp"><strong>Adversarial Debiasing With Partial Learning - Medical Image Studies</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-training-medical-image-segmentation-models-with-less-labeled-data-sarah-hooper-132506?ref=freecodecamp"><strong>MedAI - Training Medical Image Segmentation Models with Less Labeled Data - Sarah Hooper</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-observational-supervision-for-medical-image-classification-khaled-saab-132507?ref=freecodecamp"><strong>Observational Supervision for Medical Image Classification</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-multimodal-medical-research-of-vision-and-language-jean-benoit-delbrouck-132508?ref=freecodecamp"><strong>Multimodal Medical Research of Vision and Language - Jean-Benoit Delbrouck</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-style-transfer-augmentations-for-computational-pathology-rikiya-yamashita-132515?ref=freecodecamp"><strong>Style Transfer Augmentations for Computational Pathology - Rikiya Yamashita</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-learning-the-structure-of-ehr-with-graph-convolutional-transformer-edward-choi-132516?ref=freecodecamp"><strong>Learning the Structure of EHR with Graph Convolutional Transformer - Edward Choi</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-why-would-we-want-a-multi-agent-system-unstable-191534?ref=freecodecamp"><strong>Why Would We Want a Multi-Agent System Unstable</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-lecture-don-knuth-twintrees-baxter-permutations-and-floorplans-2022-191539?ref=freecodecamp"><strong>Stanford Lecture - Don Knuth - Twintrees, Baxter Permutations, and Floorplans (2022)</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs25-i-stanford-seminar-2022-self-attention-and-non-parametric-transformers-npts-191603?ref=freecodecamp"><strong>Stanford Seminar 2022 - Self Attention and Non-Parametric Transformers</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-accelerating-ml-recommendation-with-over-a-thousand-risc-v-tensor-processors-191644?ref=freecodecamp"><strong>Stanford Seminar - Accelerating ML Recommendation with Over a Thousand RISC-V-Tensor Processors</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-finding-the-great-problems-191816?ref=freecodecamp"><strong>Stanford Seminar - Finding the Great Problems</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs230-deep-learning-autumn-2018-lecture-4-adversarial-attacks-gans-191857?ref=freecodecamp"><strong>Deep Learning - Adversarial Attacks and GANs - Lecture 4</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-information-theory-of-deep-learning-naftali-tishby-191928?ref=freecodecamp"><strong>Information Theory of Deep Learning - Naftali Tishby</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-scoring-automatically-news-articles-to-fight-misinformation-191929?ref=freecodecamp"><strong>Scoring News Articles to Fight Misinformation</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-the-evolution-of-public-key-cryptography-191933?ref=freecodecamp"><strong>The Evolution of Public Key Cryptography</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-lecture-don-knuth-a-conjecture-that-had-to-be-true-2017-191946?ref=freecodecamp"><strong>Stanford Lecture - Don Knuth - "A Conjecture That Had To Be True"</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-time-well-spent-tristan-harris-191952?ref=freecodecamp"><strong>Stanford Seminar - Time Well Spent, Tristan Harris</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-swiss-computer-systems-192032?ref=freecodecamp"><strong>Stanford Seminar - Swiss Computer Systems</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-challenges-in-secure-messaging-192057?ref=freecodecamp"><strong>Stanford Seminar - Challenges in Secure Messaging</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-bradford-parkinson-gps-for-humanity-stanford-engineering-hero-lecture-192284?ref=freecodecamp"><strong>GPS for Humanity - Stanford Engineering Hero Lecture</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-algorithmic-governance-auditing-search-rec-algorithms-for-problematic-content-274189?ref=freecodecamp"><strong>Algorithmic Governance: Auditing Search and Recommendation Algorithms for Problematic Content</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs25-v3-i-beyond-llms-agents-emergent-abilities-intermediate-guided-reasoning-babylm-274383?ref=freecodecamp"><strong>Beyond LLMs - Agents, Emergent Abilities, Intermediate-Guided Reasoning, and BabyLM - Stanford CS25</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-16-score-based-diffusion-models-291226?ref=freecodecamp"><strong>Stanford CS236: Deep Generative Models - Score Based Diffusion Models - Lecture 16</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-4-maximum-likelihood-learning-291227?ref=freecodecamp"><strong>Deep Generative Models - Maximum Likelihood Learning - Lecture 4</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs25-v4-i-jason-wei-hyung-won-chung-of-openai-291240?ref=freecodecamp"><strong>Intuitions on Language Models and Shaping AI's Future - Stanford CS25 Lecture</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-the-human-factors-of-formal-methods-291464?ref=freecodecamp"><strong>The Human Factors of Formal Methods - Stanford Seminar</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs25-v4-i-from-large-language-models-to-large-multimodal-models-294136?ref=freecodecamp"><strong>From Large Language Models to Large Multimodal Models - Stanford CS25 - Lecture 4</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-when-design-planning-295053?ref=freecodecamp"><strong>When Design Equals Planning - Computational Approaches to Robot Design</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-120-holistic-or-domain-modeling-with-large-vision-language-models-ege-oezsoy-302761?ref=freecodecamp"><strong>Holistic OR Domain Modeling with Large Vision Language Models - MedAI #120</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-119-ai-driven-advancements-in-mammogram-analysis-aisha-urooj-302762?ref=freecodecamp"><strong>AI-Driven Advancements in Mammogram Analysis - MedAI #119</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-125-role-of-instruction-tuning-and-prompt-engineering-in-clinical-domain-mihir-parmar-310891?ref=freecodecamp"><strong>Role of Instruction-Tuning and Prompt Engineering in Clinical Domain - MedAI 125</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-129-large-scale-multi-microscope-datasets-and-their-challenges-waqas-sultani-360986?ref=freecodecamp"><strong>Large Scale Multi-Microscope Datasets and Their Challenges in Medical AI</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-open-world-segmentation-and-tracking-in-3d-362743?ref=freecodecamp"><strong>Open-world Segmentation and Tracking in 3D</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-130-me-llama-medical-foundation-llms-for-text-analysis-and-beyond-qianqian-xie-366873?ref=freecodecamp"><strong>Me-LLaMA - Medical Foundation Large Language Models for Comprehensive Text Analysis and Beyond</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-creating-fair-useful-and-reliable-ai-in-healthcare-408656?ref=freecodecamp"><strong>Creating Fair, Useful, and Reliable AI in Healthcare</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hai-seminar-with-david-engstrom-ai-and-access-to-justice-433361?ref=freecodecamp"><strong>AI and Access to Justice</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-christopher-manning-large-language-models-in-2025-how-much-understanding-and-intelligence-434121?ref=freecodecamp"><strong>Large Language Models in 2025 - How Much Understanding and Intelligence?</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-a-billion-medical-devices-using-far-from-perfect-ml-to-help-patients-434459?ref=freecodecamp"><strong>Using Far from Perfect ML to Help Patients - A Billion Medical Devices</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-public-ai-assistant-to-worldwide-knowledge-performing-interactive-tasks-under-developer-control-434525?ref=freecodecamp"><strong>Public AI Assistant to Worldwide Knowledge - Performing Interactive Tasks Under Developer Control</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-ecole-polytechnique-federale-de--207601?ref=freecodecamp"><strong>Information, Calcul, Communication: Introduction à la pensée informatique</strong></a> from <em>École Polytechnique Fédérale de Lausanne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-getting-robust-securing-neural-networks-against-adversarial-attacks-178971?ref=freecodecamp"><strong>Getting Robust - Securing Neural Networks Against Adversarial Attacks</strong></a> from <em>University of Melbourne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2021-convolutional-neural-networks-128091?ref=freecodecamp"><strong>Convolutional Neural Networks</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2021-deep-learning-new-frontiers-128088?ref=freecodecamp"><strong>Deep Learning New Frontiers</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-evidential-deep-learning-and-uncertainty-128087?ref=freecodecamp"><strong>Evidential Deep Learning and Uncertainty</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-deep-cpcfg-for-information-extraction-128085?ref=freecodecamp"><strong>Deep CPCFG for Information Extraction</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-taming-dataset-bias-via-domain-adaptation-128084?ref=freecodecamp"><strong>Taming Dataset Bias via Domain Adaptation</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2020-recurrent-neural-networks-128102?ref=freecodecamp"><strong>MIT 6.S191 - Recurrent Neural Networks</strong></a> from <em>Alexander Amini</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/economics-tsinghua-university-qu-kuai-lian-he-jia-271777?ref=freecodecamp"><strong>区块链和加密数字货币</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367098?ref=freecodecamp"><strong>软件工程</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-data-structures-and-algorithm-design-part-i-367359?ref=freecodecamp"><strong>Data Structures and Algorithm Design Part I</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-ai-and-ethical-governance-463895?ref=freecodecamp"><strong>AI and Ethical Governance</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-peter-carr-brooklyn-quant-experience-bqe-seminar-series-bruno-kamdem-132412?ref=freecodecamp"><strong>A Reinforcement Learning Mechanism for Trading Wind Power Futures</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-evolution-of-public-key-cryptography-132469?ref=freecodecamp"><strong>The Evolution of Public Key Cryptography</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-era-of-artificial-intelligence-132470?ref=freecodecamp"><strong>The Era of Artificial Intelligence</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ece-ai-seminar-statistical-physics-neural-networks-and-neuroscience-from-then-to-now-424856?ref=freecodecamp"><strong>Statistical Physics, Neural Networks, and Neuroscience: From Then to Now</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-information-theory-lecture-7-huffman-and-arithmetic-codes-oxford-mathematics-3rd-year-lecture-436443?ref=freecodecamp"><strong>Information Theory: Huffman and Arithmetic Codes - Lecture 7</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-actionable-machine-learning-for-tackling-distribution-shift-huaxiu-yao-132490?ref=freecodecamp"><strong>Actionable Machine Learning for Tackling Distribution Shift - Huaxiu Yao</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-efficiently-modeling-long-sequences-with-structured-state-spaces-albert-gu-132495?ref=freecodecamp"><strong>Efficiently Modeling Long Sequences with Structured State Spaces - Albert Gu</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-assignment-control-plots-for-causal-inference-study-design-rocky-aikens-132504?ref=freecodecamp"><strong>Assignment Control Plots for Causal Inference Study Design - Rocky Aikens</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mandoline-model-evaluation-under-distribution-shift-mayee-chen-132512?ref=freecodecamp"><strong>Mandoline - Model Evaluation under Distribution Shift</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-self-supervision-contrastive-frameworks-a-vision-based-review-nandita-bhaskhar-132518?ref=freecodecamp"><strong>Self-Supervision &amp; Contrastive Frameworks - A Vision-Based Review</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-kathleen-creel-picking-on-the-same-person-does-algorithmic-monoculture-homogenize-outcomes-158516?ref=freecodecamp"><strong>Picking on the Same Person - Does Algorithmic Monoculture Homogenize Outcomes?</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hai-weekly-seminar-with-jeff-ding-the-rise-and-fall-of-great-technologies-and-powers-158535?ref=freecodecamp"><strong>HAI Weekly Seminar with Jeff Ding - The Rise and Fall of Great Technologies and Powers</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-agrim-gupta-towards-understanding-and-building-embodied-intelligence-158544?ref=freecodecamp"><strong>Towards Understanding and Building Embodied Intelligence</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-leonidas-guibas-joint-learning-over-visual-and-geometric-data-158562?ref=freecodecamp"><strong>Joint Learning Over Visual and Geometric Data</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-statistical-learning-10-r-1-neural-networks-in-r-and-the-mnist-data-191599?ref=freecodecamp"><strong>Neural Networks in R and the MNIST Data - Lecture 10.R.1</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-computing-with-physical-systems-191614?ref=freecodecamp"><strong>Stanford Seminar - Computing with Physical Systems</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-recent-progress-in-verifying-neural-networks-zico-kolter-191631?ref=freecodecamp"><strong>Stanford Seminar - Recent Progress in Verifying Neural Networks, Zico Kolter</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-emerging-risks-and-opportunities-from-large-language-models-tatsu-hashimoto-191636?ref=freecodecamp"><strong>Stanford Seminar - Emerging Risks and Opportunities From Large Language Models</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-interactive-imitation-learning-planning-alongside-humans-191657?ref=freecodecamp"><strong>Interactive Imitation Learning: Planning Alongside Humans</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-improving-natural-language-understanding-through-adversarial-testing-191770?ref=freecodecamp"><strong>Improving Natural Language Understanding Through Adversarial Testing</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-computer-designed-organisms-josh-bongard-191774?ref=freecodecamp"><strong>Stanford Seminar - Computer-Designed Organisms - Josh Bongard</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-current-status-of-tinyml-and-the-enormous-opportunities-ahead-panel-discussion-191810?ref=freecodecamp"><strong>Current Status of TinyML and the Enormous Opportunities Ahead - Panel Discussion</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-new-chip-technologies-for-ai-and-for-asia-the-edge-is-where-the-action-is-191818?ref=freecodecamp"><strong>Stanford Seminar - New Chip Technologies for AI and for Asia - The Edge is Where the Action Is</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-lecture-don-knuth-dancing-links-2018-191876?ref=freecodecamp"><strong>Stanford Lecture - Don Knuth - "Dancing Links" 2018</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-petascale-deep-learning-on-a-single-chip-191947?ref=freecodecamp"><strong>Petascale Deep Learning on a Single Chip</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-multiscale-dataflow-computing-competitive-advantage-at-the-exascale-frontier-191964?ref=freecodecamp"><strong>Multiscale Dataflow Computing - Competitive Advantage at the Exascale Frontier</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-unethical-algorithms-of-massive-scale-191971?ref=freecodecamp"><strong>Unethical Algorithms of Massive Scale</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-autonomous-driving-are-we-there-yet-technology-business-legal-considerations-192012?ref=freecodecamp"><strong>Stanford Seminar - Autonomous Driving, Are We There Yet? - Technology, Business, Legal Considerations</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-deep-learning-in-the-age-of-zen-vega-and-beyond-192028?ref=freecodecamp"><strong>Deep Learning in the Age of Zen, Vega, and Beyond</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-the-time-less-datacenter-192058?ref=freecodecamp"><strong>Stanford Seminar - The Time-Less Datacenter</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-engineering-hero-lecture-marcian-ted-hoff-192117?ref=freecodecamp"><strong>Technology for Today's Problems - Addressing Global Challenges with Semiconductor Advancements</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-input-with-deeply-custom-interfaces-269622?ref=freecodecamp"><strong>Input with Deeply Custom Interfaces</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-democratizing-model-discovery-with-neural-networks-276901?ref=freecodecamp"><strong>Democratizing Model Discovery with Neural Networks</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs25-v3-i-retrieval-augmented-language-models-278149?ref=freecodecamp"><strong>Retrieval Augmented Language Models - Stanford CS25 Lecture</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-towards-safe-and-efficient-learning-in-the-physical-world-289247?ref=freecodecamp"><strong>Towards Safe and Efficient Learning in the Physical World - Stanford Seminar</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-4-huffman-codes-289253?ref=freecodecamp"><strong>Data Compression I - Lecture 4: Huffman Codes</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-13-score-based-models-291224?ref=freecodecamp"><strong>Stanford CS236: Deep Generative Models - Lecture 13 - Score Based Models</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-2-background-291229?ref=freecodecamp"><strong>Deep Generative Models - Lecture 2: Background</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-12-energy-based-models-291230?ref=freecodecamp"><strong>Deep Generative Models - Energy Based Models - Lecture 12</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-9-normalizing-flows-291231?ref=freecodecamp"><strong>Deep Generative Models - Normalizing Flows - Lecture 9</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-14-energy-based-models-291233?ref=freecodecamp"><strong>Deep Generative Models - Energy Based Models - Lecture 14</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-6-vaes-291235?ref=freecodecamp"><strong>Deep Generative Models - Lecture 6: Variational Autoencoders</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-15-evaluation-of-generative-models-291236?ref=freecodecamp"><strong>Evaluation of Generative Models - Stanford CS236 Deep Generative Models Lecture 15</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-7-normalizing-flows-291238?ref=freecodecamp"><strong>Stanford CS236: Deep Generative Models - Lecture 7 - Normalizing Flows</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-1-introduction-291239?ref=freecodecamp"><strong>Stanford CS236 - Deep Generative Models - Lecture 1: Introduction</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs25-v4-i-aligning-open-language-models-291768?ref=freecodecamp"><strong>Aligning Open Language Models - Stanford CS25 Lecture</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-121-hector-multimodal-dl-model-for-recurrence-risk-in-endometrial-cancer-sarah-volinsky-302760?ref=freecodecamp"><strong>HECTOR - Multimodal Deep Learning Model for Predicting Recurrence Risk in Endometrial Cancer</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-soma-design-intertwining-aesthetics-movement-and-emotion-in-design-work-379160?ref=freecodecamp"><strong>Soma Design: Intertwining Aesthetics, Movement and Emotion in Design Work</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-michael-rau-using-pose-and-action-estimation-to-analyze-theater-performances-431750?ref=freecodecamp"><strong>Using Pose and Action Estimation to Analyze Theater Performances</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-public-ai-assistant-to-worldwide-knowledge-21st-century-knowledge-preservation-access-with-ai-434119?ref=freecodecamp"><strong>Public AI Assistant to Worldwide Knowledge: 21st Century Knowledge Preservation and Access with AI</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-creating-a-public-ai-assistant-to-worldwide-knowledge-434120?ref=freecodecamp"><strong>Creating a Public AI Assistant to Worldwide Knowledge</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-public-ai-assistant-to-worldwide-knowledge-exploring-a-corpus-from-paper-to-multilingual-chatbots-434528?ref=freecodecamp"><strong>Exploring a Corpus - From Paper to Multilingual Chatbots</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hai-seminar-with-angela-aristidou-deploying-ai-in-organizations-society-436720?ref=freecodecamp"><strong>Deploying AI in Organizations and Society</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-137-toward-relieving-clinician-burden-by-auto-generating-progress-notes-sarvesh-soni-443710?ref=freecodecamp"><strong>Toward Relieving Clinician Burden by Automatically Generating Progress Notes</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hai-seminar-with-karen-hao-in-conversation-with-patrick-hynes-empire-of-ai-457293?ref=freecodecamp"><strong>Empire of AI - The Rise of OpenAI and the Future of Artificial Intelligence</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hai-seminar-with-andy-konwinski-and-dave-patterson-shaping-ai-s-impact-on-billions-of-lives-461534?ref=freecodecamp"><strong>Shaping AI's Impact on Billions of Lives</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ai-in-healthcare-series-accelerating-the-ai-revolution-in-medicine-with-peter-lee-microsoft-471875?ref=freecodecamp"><strong>Accelerating the AI Revolution in Medicine</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-140-using-physics-informed-nns-to-build-digital-twins-of-cardiac-hemodynamics-frances-dean-475884?ref=freecodecamp"><strong>Using Physics Informed Neural Networks to Build Digital Twins of Cardiac Hemodynamics</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ai-in-healthcare-series-empowering-patients-with-kimberly-powell-nvidia-479485?ref=freecodecamp"><strong>AI in Healthcare Series - Empowering Patients</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-charting-the-future-open-innovation-in-an-era-of-global-ai-competition-484077?ref=freecodecamp"><strong>Charting the Future - Open Innovation in an Era of Global AI Competition</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-150-collaboration-between-clinicians-and-vlms-in-radiology-report-generation-david-barret-486700?ref=freecodecamp"><strong>Collaboration Between Clinicians and Vision-Language Models in Radiology Report Generation</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-tractable-novelty-exploration-over-continuous-and-discrete-sequential-decision-problems-178973?ref=freecodecamp"><strong>Tractable Novelty Exploration Over Continuous and Discrete Sequential Decision Problems</strong></a> from <em>University of Melbourne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2020-neural-rendering-128095?ref=freecodecamp"><strong>MIT: Neural Rendering</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-gtc-2018-learning-steering-for-parallel-autonomy-alexander-amini-128113?ref=freecodecamp"><strong>Learning Steering for Parallel Autonomy</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2019-image-domain-transfer-nvidia-128105?ref=freecodecamp"><strong>MIT: Image Domain Transfer - NVIDIA Guest Lecture</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-6-s191-2020-convolutional-neural-networks-128101?ref=freecodecamp"><strong>Convolutional Neural Networks</strong></a> from <em>Alexander Amini</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-akarsh-kumar-automating-the-search-for-artificial-life-with-foundation-models-435105?ref=freecodecamp"><strong>Automating the Search for Artificial Life with Foundation Models</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-jehanzeb-mirza-glov-guided-large-language-models-as-implicit-optimizers-for-vision-language-models-436777?ref=freecodecamp"><strong>GLOV: Guided Large Language Models as Implicit Optimizers for Vision Language Models</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-andrew-rouditchenko-giving-sight-to-speech-models-445714?ref=freecodecamp"><strong>Giving Sight to Speech Models</strong></a> from <em>Massachusetts Institute of Technology</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-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-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-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-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-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/xuetangx-367095?ref=freecodecamp"><strong>人工智能原理</strong></a> from <em>Peking University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367090?ref=freecodecamp"><strong>数据结构(上)</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367091?ref=freecodecamp"><strong>数据结构(下)</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367092?ref=freecodecamp"><strong>操作系统</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367106?ref=freecodecamp"><strong>算法设计与分析</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367118?ref=freecodecamp"><strong>区块链和加密数字货币</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367126?ref=freecodecamp"><strong>大数据机器学习</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367131?ref=freecodecamp"><strong>计算几何</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367154?ref=freecodecamp"><strong>机器学习概论</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-data-structures-and-algorithm-design-part-ii-367418?ref=freecodecamp"><strong>Data Structures and Algorithm Design Part II</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367455?ref=freecodecamp"><strong>分布式数据系统应用实战-入门</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-computational-geometry-370333?ref=freecodecamp"><strong>Computational Geometry</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-373015?ref=freecodecamp"><strong>信息素养——学术研究的必修课</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-376427?ref=freecodecamp"><strong>软件需求工程</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-2020-367371?ref=freecodecamp"><strong>计算未来云讲坛（2020）——清华大学计算机系前沿系列讲座</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-ai-and-sustainable-convergence-463889?ref=freecodecamp"><strong>AI and Sustainable Convergence</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-machine-learning-for-personalised-healthcare-opportunities-challenges-and-insights-132434?ref=freecodecamp"><strong>Machine Learning for Personalized Healthcare - Opportunities, Challenges and Insights</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-brooklyn-quant-experience-lecture-series-sandrine-ungari-132445?ref=freecodecamp"><strong>Brooklyn Quant Experience: A Brief History of Quant Investing - From Traditional Equity Factors to Machine Learning</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-machine-learning-for-personalization-132465?ref=freecodecamp"><strong>Machine Learning for Personalization</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ece-ai-seminar-curiosity-styles-in-the-natural-artificial-wild-438455?ref=freecodecamp"><strong>Curiosity Styles in the Natural and Artificial Wild</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367193?ref=freecodecamp"><strong>软件设计模式</strong></a> from <em>University of Science and Technology of China</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-linux-367215?ref=freecodecamp"><strong>Linux操作系统分析</strong></a> from <em>University of Science and Technology of China</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-information-theory-defining-entropy-and-information-oxford-mathematics-3rd-year-student-lecture-425381?ref=freecodecamp"><strong>Information Theory: Defining Entropy and Information - Lecture 1</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-information-theory-basic-properties-of-information-oxford-mathematics-3rd-year-student-lecture-427095?ref=freecodecamp"><strong>Basic Properties of Information Theory - Lecture 2</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-information-theory-lecture-3-introducing-codes-oxford-mathematics-3rd-year-student-lecture-429715?ref=freecodecamp"><strong>Introducing Codes in Information Theory - Lecture 3</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-information-theory-lecture-4-typical-sequences-oxford-mathematics-3rd-year-student-lecture-430723?ref=freecodecamp"><strong>Information Theory: Typical Sequences and the Kraft-McMillan Inequality - Lecture 4</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-information-theory-lecture-5-optimal-codes-and-block-coding-3rd-year-student-lecture-432535?ref=freecodecamp"><strong>Information Theory: Optimal Codes and Block Coding - Lecture 5</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-information-theory-lecture-6-shannon-s-code-oxford-mathematics-3rd-year-student-lecture-433845?ref=freecodecamp"><strong>Information Theory: Shannon's Code - Lecture 6</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-information-theory-lecture-8-tunstall-s-code-oxford-mathematics-3rd-year-student-lecture-438440?ref=freecodecamp"><strong>Information Theory: Tunstall's Code - Lecture 8</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-kathleen-creel-arbitrariness-fairness-and-opportunity-in-algorithmic-decision-making-systems-158563?ref=freecodecamp"><strong>Kathleen Creel- Arbitrariness, Fairness, and Opportunity in Algorithmic Decision-Making Systems</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-highly-optimized-quantum-circuits-synthesized-via-data-flow-engines-191549?ref=freecodecamp"><strong>Highly Optimized Quantum Circuits Synthesized via Data-Flow Engines</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs25-i-stanford-seminar-2022-transformer-circuits-induction-heads-in-context-learning-191602?ref=freecodecamp"><strong>Stanford Seminar 2022 - Transformer Circuits, Induction Heads, In-Context Learning</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs25-i-stanford-seminar-2022-deepmind-s-perceiver-and-perceiver-io-new-data-family-architecture-191604?ref=freecodecamp"><strong>Stanford Seminar 2022 - DeepMind's Perceiver and Perceiver IO: New Data Family Architecture</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs25-i-stanford-seminar-2022-mixture-of-experts-moe-paradigm-and-the-switch-transformer-191605?ref=freecodecamp"><strong>Stanford Seminar - Mixture of Experts Paradigm and the Switch Transformer</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs25-i-stanford-seminar-2022-transformers-in-vision-tackling-problems-in-computer-vision-191607?ref=freecodecamp"><strong>Stanford Seminar 2022 - Transformers in Vision: Tackling Problems in Computer Vision</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-dataflow-for-convergence-of-ai-and-hpc-groqchip-191629?ref=freecodecamp"><strong>Stanford Seminar - Dataflow for Convergence of AI and HPC - GroqChip</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-universal-intelligent-systems-by-2030-carl-hewitt-and-john-perry-191680?ref=freecodecamp"><strong>Stanford Seminar - Universal Intelligent Systems by 2030 - Carl Hewitt and John Perry</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-centaur-technology-s-deep-learning-coprocessor-191788?ref=freecodecamp"><strong>Stanford Seminar - Centaur Technology's Deep Learning Coprocessor</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-nanosecond-level-clock-synchronization-in-a-data-center-191841?ref=freecodecamp"><strong>Nanosecond-Level Clock Synchronization in a Data Center</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-extending-the-theory-of-ml-for-human-centric-applications-191862?ref=freecodecamp"><strong>Extending the Theory of ML for Human-Centric Applications</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-autonomous-driving-ai-s-biggest-endeavor-james-peng-of-pony-ai-191883?ref=freecodecamp"><strong>Autonomous Driving - AI's Biggest Endeavor, James Peng of</strong></a> <a href="http://Pony.ai"><strong>Pony.ai</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-the-case-for-learned-index-structures-191893?ref=freecodecamp"><strong>The Case for Learned Index Structures</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-tiny-functions-for-codecs-compilation-and-maybe-soon-everything-191939?ref=freecodecamp"><strong>Tiny Functions for Codecs, Compilation, and - Maybe - Soon Everything</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-computing-with-high-dimensional-vectors-191956?ref=freecodecamp"><strong>Stanford Seminar - Computing with High-Dimensional Vectors</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-generalized-reversible-computing-and-the-unconventional-computing-landscape-191958?ref=freecodecamp"><strong>Generalized Reversible Computing and the Unconventional Computing Landscape</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-beyond-floating-point-next-generation-computer-arithmetic-192027?ref=freecodecamp"><strong>Stanford Seminar - Beyond Floating Point - Next Generation Computer Arithmetic</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-lecture-don-knuth-the-analysis-of-algorithms-2015-recreating-1969-192030?ref=freecodecamp"><strong>The Analysis of Algorithms - 2015 Recreation of 1969 Lecture</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-designing-the-iphone-s-magic-flute-ge-wang-192052?ref=freecodecamp"><strong>Designing the iPhone's Magic Flute - Ge Wang</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-runway-a-new-tool-for-distributed-systems-design-192060?ref=freecodecamp"><strong>Runway - A New Tool for Distributed Systems Design</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs109-i-fairness-i-2022-i-lecture-26-261761?ref=freecodecamp"><strong>Stanford CS109 - Fairness in Probability for Computer Scientists - Lecture 26</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs25-v3-i-how-i-learned-to-stop-worrying-and-love-the-transformer-277547?ref=freecodecamp"><strong>How I Learned to Stop Worrying and Love the Transformer - Stanford CS25 Lecture</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-lecture-dancing-cells-dr-don-knuth-i-2023-277832?ref=freecodecamp"><strong>Dancing Cells - Efficient Data Structures for Combinatorial Problem Solving</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-18-video-compression-289248?ref=freecodecamp"><strong>Data Compression - Video Compression - Lecture 18</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-1-course-intro-lossless-data-compression-basics-289249?ref=freecodecamp"><strong>Data Compression I - Course Introduction and Lossless Compression Basics - Lecture 1</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-5-asymptotic-equipartition-property-289251?ref=freecodecamp"><strong>Data Compression I - Lecture 5: Asymptotic Equipartition Property</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-9-context-based-ac-llm-compression-289252?ref=freecodecamp"><strong>Context-based Arithmetic Coding and LLM Compression - Stanford EE274 Lecture 9</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-3-kraft-inequality-entropy-introduction-to-scl-289255?ref=freecodecamp"><strong>Data Compression I - Lecture 3: Kraft Inequality, Entropy, and Introduction to SCL</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-8-beyond-iid-distributions-conditional-entropy-289256?ref=freecodecamp"><strong>Stanford EE274: Data Compression - Beyond IID Distributions: Conditional Entropy - Lecture 8</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-10-lz-and-universal-compression-289257?ref=freecodecamp"><strong>LZ and Universal Compression - Lecture 10</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-6-arithmetic-coding-289258?ref=freecodecamp"><strong>Arithmetic Coding - Stanford EE274 Data Compression I Lecture 6</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-16-learnt-image-compression-289259?ref=freecodecamp"><strong>Learnt Image Compression - Lecture 16</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-11-lossy-compression-basics-quantization-289260?ref=freecodecamp"><strong>Lossy Compression Basics and Quantization - Lecture 11</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-ee274-data-compression-i-2023-i-lecture-7-ans-289261?ref=freecodecamp"><strong>Asymmetric Numeral Systems (ANS) - Data Compression Lecture 7</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-3-autoregressive-models-291222?ref=freecodecamp"><strong>Deep Generative Models - Autoregressive Models - Lecture 3</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-17-discrete-latent-variable-models-291223?ref=freecodecamp"><strong>Deep Generative Models - Discrete Latent Variable Models - Lecture 17</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-5-vaes-291225?ref=freecodecamp"><strong>Deep Generative Models - Lecture 5: Variational Autoencoders</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-18-diffusion-models-for-discrete-data-291228?ref=freecodecamp"><strong>Deep Generative Models - Diffusion Models for Discrete Data - Lecture 18</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-10-gans-291232?ref=freecodecamp"><strong>Deep Generative Models - Lecture 10: GANs</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-8-gans-291234?ref=freecodecamp"><strong>Deep Generative Models - Lecture 8: GANs</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs236-deep-generative-models-i-2023-i-lecture-11-energy-based-models-291237?ref=freecodecamp"><strong>Deep Generative Models - Energy Based Models - Lecture 11</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs25-v4-i-demystifying-mixtral-of-experts-292561?ref=freecodecamp"><strong>Demystifying Mixtral of Experts - Stanford CS25 Lecture</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs25-v4-i-transformers-that-transform-well-enough-to-support-near-shallow-architectures-293446?ref=freecodecamp"><strong>Transformers that Transform Well Enough to Support Near-Shallow Architectures - Stanford CS25 Lecture</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs25-v4-i-hyung-won-chung-of-openai-295461?ref=freecodecamp"><strong>Shaping the Future of AI from the History of Transformer Architectures - Stanford CS25</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-ms-e447-zkp-panel-with-dan-boneh-jens-groth-daniel-marin-and-ravi-mhatre-299352?ref=freecodecamp"><strong>Zero Knowledge Proofs for Verifiable Computation on Blockchain Systems - Panel Discussion</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-126-divide-conquer-concept-based-models-for-efficient-transfer-learning-shantanu-ghosh-312449?ref=freecodecamp"><strong>Divide and Conquer - Concept-based Models for Efficient Transfer Learning</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-127-improving-llms-for-clinical-named-entity-recognition-via-prompt-engineering-yan-hu-352640?ref=freecodecamp"><strong>Improving Large Language Models for Clinical Named Entity Recognition via Prompt Engineering</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-131-analyzing-and-exposing-vulnerabilities-in-language-models-yibo-wang-366872?ref=freecodecamp"><strong>Analyzing and Exposing Vulnerabilities in Language Models - Session 131</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-public-ai-assistant-to-worldwide-knowledge-21st-century-knowledge-preservation-access-with-ai-434523?ref=freecodecamp"><strong>Public AI Assistant to Worldwide Knowledge: 21st Century Knowledge Preservation and Access with AI</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-public-ai-assistant-to-worldwide-knowledge-answering-queries-of-structured-and-unstructured-data-434524?ref=freecodecamp"><strong>Public AI Assistant to Worldwide Knowledge: Answering Queries of Structured and Unstructured Data</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ai-in-healthcare-series-from-decision-support-to-drug-prescriptions-dr-graham-walker-kaiser-439631?ref=freecodecamp"><strong>AI in Healthcare Series: From Decision Support to Drug Prescriptions</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-ai-audits-and-autonomy-446987?ref=freecodecamp"><strong>AI Audits and Autonomy in Sociotechnical Systems</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs25-v5-i-transformers-in-diffusion-models-for-image-generation-and-beyond-462484?ref=freecodecamp"><strong>Transformers in Diffusion Models for Image Generation and Beyond</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ai-in-healthcare-series-the-future-of-personalized-healthcare-technology-with-dr-jessica-mega-465831?ref=freecodecamp"><strong>The Future of Personalized Healthcare Technology with AI</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-146-the-limited-impact-of-medical-adaptation-of-llms-and-vlms-daniel-p-jeong-475876?ref=freecodecamp"><strong>The Limited Impact of Medical Adaptation of Large Language and Vision-Language Models</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-145-managed-by-ai-artificial-pancreas-contemporary-treatment-of-diabetes-boris-jacopo-475879?ref=freecodecamp"><strong>Managed by AI - Artificial Pancreas and Contemporary Treatment of Diabetes</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-139-lorkd-low-rank-knowledge-decomposition-for-medical-foundation-models-jiangchao-yao-475880?ref=freecodecamp"><strong>LoRKD - Low-Rank Knowledge Decomposition for Medical Foundation Models</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-143-diffusion-models-in-medical-imaging-onkar-kishor-susladkar-gayatri-deshmukh-475881?ref=freecodecamp"><strong>Diffusion Models in Medical Imaging</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-141-adaptive-federated-knowledge-injection-into-medical-foundation-models-xiaochen-wang-475882?ref=freecodecamp"><strong>Adaptive Federated Knowledge Injection into Medical Foundation Models</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-142-how-can-we-diagnose-treat-bias-in-llms-for-clinical-decision-making-kenza-benkirane-475883?ref=freecodecamp"><strong>How Can We Diagnose and Treat Bias in LLMs for Clinical Decision-Making - MedAI #142</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-role-of-business-policy-implications-of-industry-leadership-in-artificial-intelligence-484078?ref=freecodecamp"><strong>The Role of Business - Policy Implications of Industry Leadership in Artificial Intelligence</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ai-in-healthcare-series-leveraging-gpt-5-cosmos-and-predictive-models-for-better-outcomes-485592?ref=freecodecamp"><strong>AI in Healthcare Series - Leveraging GPT-5, Cosmos, and Predictive Models for Better Outcomes</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-medai-149-opportunistic-screening-for-pancreatic-cancer-multimodal-ai-fusion-david-le-486698?ref=freecodecamp"><strong>Opportunistic Screening for Pancreatic Cancer - Multimodal AI Fusion of CT Imaging and Radiology Reports</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-cs230-autumn-2025-lecture-1-introduction-to-deep-learning-488187?ref=freecodecamp"><strong>Introduction to Deep Learning - Lecture 1</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-new-dbfication-of-ml-ai-178970?ref=freecodecamp"><strong>The New DBification of ML-AI</strong></a> from <em>University of Melbourne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-convolutions-in-image-processing-week-1-mit-18-s191-fall-2020-grant-sanderson-112342?ref=freecodecamp"><strong>Convolutions in Image Processing - MIT 18.S191 Fall 2020 - Week 1</strong></a> from <em>The Julia Programming Language</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ei-seminar-mengzhou-xia-aligning-language-models-with-less-data-and-a-simple-simpo-objective-361199?ref=freecodecamp"><strong>Aligning Language Models with LESS Data and Simple Preference Optimization (SimPO)</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ei-seminar-tim-dettmers-the-promises-and-pitfalls-of-open-source-agent-systems-380809?ref=freecodecamp"><strong>The Promises and Pitfalls of Open-source Agent Systems</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-18-226-probabilistic-methods-in-combinatorics-fall-2022-387981?ref=freecodecamp"><strong>Probabilistic Methods in Combinatorics</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-sharut-gupta-redefining-context-for-powerful-test-time-adaptation-using-unlabeled-data-392169?ref=freecodecamp"><strong>Redefining Context for Powerful Test-Time Adaptation Using Unlabeled Data</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-felix-yanwei-wang-inference-time-policy-customization-through-interactive-task-specification-412708?ref=freecodecamp"><strong>Inference-Time Policy Customization Through Interactive Task Specification</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-zhaofeng-wu-the-semantic-hub-hypothesis-435104?ref=freecodecamp"><strong>The Semantic Hub Hypothesis: Language Models Share Semantic Representations Across Languages and Modalities</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-liming-wang-can-diffusion-model-disentangle-a-theoretical-perspective-436776?ref=freecodecamp"><strong>Can Diffusion Model Disentangle? A Theoretical Perspective</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-philip-schroeder-mit-ei-seminar-recursive-reasoning-with-llms-and-vlms-455863?ref=freecodecamp"><strong>Recursive Reasoning with LLMs and VLMs</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-yung-sung-chuang-reducing-hallucinations-in-llms-via-decoding-detection-and-citation-455864?ref=freecodecamp"><strong>Reducing Hallucinations in LLMs via Decoding, Detection, and Citation</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hongyin-lou-quantifying-generalization-complexity-for-large-language-models-455865?ref=freecodecamp"><strong>Quantifying Generalization Complexity for Large Language Models</strong></a> from <em>Massachusetts Institute of Technology</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-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-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-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-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-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-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-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-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-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-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/xuetangx-367301?ref=freecodecamp"><strong>移动图形概论</strong></a> from <em>Peking University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367315?ref=freecodecamp"><strong>推荐系统</strong></a> from <em>Peking University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367712?ref=freecodecamp"><strong>低资源场景下的对话系统任务的模型定制</strong></a> from <em>Peking University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-375411?ref=freecodecamp"><strong>算法初步</strong></a> from <em>Peking University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-473154?ref=freecodecamp"><strong>护理信息学</strong></a> from <em>Peking University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367112?ref=freecodecamp"><strong>大数据平台核心技术</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367120?ref=freecodecamp"><strong>物联网概论</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367145?ref=freecodecamp"><strong>高级大数据系统</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367178?ref=freecodecamp"><strong>软件理论基础</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367223?ref=freecodecamp"><strong>高级操作系统</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-risc-v-367260?ref=freecodecamp"><strong>操作系统(RISC-V)</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367278?ref=freecodecamp"><strong>计算机是如何实现智能的</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367400?ref=freecodecamp"><strong>学堂在线×快手《新知如师说》清华名师系列讲座</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-ai-367439?ref=freecodecamp"><strong>闲话AI：自然语言理解难在哪儿？</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367458?ref=freecodecamp"><strong>机器学习训练营</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367513?ref=freecodecamp"><strong>深度学习训练营</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367520?ref=freecodecamp"><strong>分布式数据系统应用实战-进阶</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367534?ref=freecodecamp"><strong>计算机系统架构的新挑战</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367538?ref=freecodecamp"><strong>邓公漫谈数据结构-「疾风计划」导师专属直播【限时开放】</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367551?ref=freecodecamp"><strong>操作系统专题训练课</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-ai-367553?ref=freecodecamp"><strong>AI肖像画大师：生成对抗网络驱动的多风格艺术肖像画创作</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367570?ref=freecodecamp"><strong>推荐系统中的用户理解：偏好、意图、行为与满意度</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367602?ref=freecodecamp"><strong>人工智能基础核心技术之事件检测</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-nlp-367606?ref=freecodecamp"><strong>当微信邂逅NLP基础研究</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367614?ref=freecodecamp"><strong>“神威·太湖之光”超级计算机优化方法与应用简介</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367623?ref=freecodecamp"><strong>基于图神经网络的事实验证</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367624?ref=freecodecamp"><strong>为网络化系统设计智能可靠的优化算法</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367626?ref=freecodecamp"><strong>算法支撑的赛博智能经济</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367636?ref=freecodecamp"><strong>浅谈面试中的算法题</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-engineering-responsible-ai-367648?ref=freecodecamp"><strong>Engineering Responsible AI</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367662?ref=freecodecamp"><strong>非易失内存在分布式存储领域的应用</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367668?ref=freecodecamp"><strong>融合知识的预训练语言模型</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367677?ref=freecodecamp"><strong>复杂场景下的机器阅读理解</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367723?ref=freecodecamp"><strong>任务导向对话的数据和平台建设</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-368176?ref=freecodecamp"><strong>区块链助力小微企业融资</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-368940?ref=freecodecamp"><strong>智慧医疗创新体验</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-1-374731?ref=freecodecamp"><strong>电子信息科学与技术导引(1)</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-374803?ref=freecodecamp"><strong>应用信息论基础</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-375450?ref=freecodecamp"><strong>大数据与机器智能</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-376959?ref=freecodecamp"><strong>清华大学计算机科学与技术系六十周年系庆学术报告（一）理论</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-376985?ref=freecodecamp"><strong>清华大学计算机科学与技术系六十周年系庆学术报告（三）人工智能</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-377039?ref=freecodecamp"><strong>清华大学计算机科学与技术系六十周年系庆学术报告（二）系统</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-441027?ref=freecodecamp"><strong>城市人工智能理论与方法</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-ai-medical-and-health-applications-innovative-practices-and-inclusive-design-463891?ref=freecodecamp"><strong>AI Medical and Health Applications: Innovative Practices and Inclusive Design</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-ai-480624?ref=freecodecamp"><strong>清华大学祝武：AI+金融</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-ai-480630?ref=freecodecamp"><strong>杨斌×里德·霍夫曼：驾驭AI浪潮重塑未来竞争力</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-online-education-dialogue-2025-480803?ref=freecodecamp"><strong>Online Education Dialogue 2025</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367282?ref=freecodecamp"><strong>自然语言处理</strong></a> from <em>Shanghai Jiao Tong University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367459?ref=freecodecamp"><strong>深度强化学习导论</strong></a> from <em>Fudan University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-374912?ref=freecodecamp"><strong>人工智能导论</strong></a> from <em>Fudan University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-generative-models-for-image-synthesis-132460?ref=freecodecamp"><strong>Generative Models for Image Synthesis</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-learning-representations-using-causal-invariance-132463?ref=freecodecamp"><strong>Learning Representations Using Causal Invariance</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-information-knot-tying-sensing-action-emergence-theory-of-representation-learning-132472?ref=freecodecamp"><strong>The Information Knot - Tying Sensing and Action; Emergence Theory of Representation Learning</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ece-ai-seminar-spectral-transformers-424857?ref=freecodecamp"><strong>Spectral Transformers for Long-Range Sequence Modeling and Prediction</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ece-ai-seminar-towards-robust-and-reliable-autonomous-vehicles-with-foundation-models-424858?ref=freecodecamp"><strong>Towards Robust and Reliable Autonomous Vehicles with Foundation Models</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367309?ref=freecodecamp"><strong>互联网体系结构</strong></a> from <em>University of Science and Technology of China</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-andrew-wiles-talks-to-hannah-fry-142841?ref=freecodecamp"><strong>Andrew Wiles Talks to Hannah Fry</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-375076?ref=freecodecamp"><strong>信息与电子工程导论</strong></a> from <em>Zhejiang University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-375974?ref=freecodecamp"><strong>知识图谱导论</strong></a> from <em>Zhejiang University</em></p>
</li>
</ul>
<h2 id="heading-programming-151"><strong>Programming (151)</strong></h2>
<ul>
<li><p><a href="https://www.classcentral.com/course/python-the-georgia-institute-of-technology-comput-11469?ref=freecodecamp"><strong>Computing in Python I: Fundamentals and Procedural Programming</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(272)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs106b-programming-abstraction-in-c-107759?ref=freecodecamp"><strong>Programming Abstractions in C++ - Stanford University</strong></a> from <em>Stanford University</em> ★★★★★(199)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/python-the-georgia-institute-of-technology-comput-11472?ref=freecodecamp"><strong>Computing in Python IV: Objects &amp; Algorithms</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(116)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/python-the-georgia-institute-of-technology-comput-11470?ref=freecodecamp"><strong>Computing in Python II: Control Structures</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(60)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/python-the-georgia-institute-of-technology-comput-11471?ref=freecodecamp"><strong>Computing in Python III: Data Structures</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(52)</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> ★★★★★(42)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/kadenze-introduction-to-programming-for-the-visual-arts-with-p5-js-3770?ref=freecodecamp"><strong>Introduction to Programming for the Visual Arts with p5.js</strong></a> from <em>University of California, Los Angeles</em> ★★★★★(36)</p>
</li>
<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> ★★★★★(36)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/python-the-university-of-michigan-programming-for-13096?ref=freecodecamp"><strong>Programming for Everybody (Getting Started with Python)</strong></a> from <em>University of Michigan</em> ★★★★★(20)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/python-the-university-of-michigan-python-data-str-13097?ref=freecodecamp"><strong>Python Data Structures</strong></a> from <em>University of Michigan</em> ★★★★★(15)</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/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> ★★★★★(11)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-programming-delft-university-of-technolo-2147?ref=freecodecamp"><strong>Introduction to Functional Programming</strong></a> from <em>Delft University of Technology</em> ★★★★☆(11)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/matlab-ecole-polytechnique-federale-de-lausanne-m-7376?ref=freecodecamp"><strong>MATLAB and Octave for Beginners</strong></a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★☆(8)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-opencourseware-introduction-to-matlab-programming-fall-2011-40968?ref=freecodecamp"><strong>Introduction To MATLAB Programming (Fall 2011)</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(8)</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> ★★★★☆(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-cms-611j-creating-video-games-fall-2014-40923?ref=freecodecamp"><strong>Creating Video Games</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★☆(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs-193a-android-app-development-winter-2019-107767?ref=freecodecamp"><strong>Android App Development Winter 2019</strong></a> from <em>Stanford University</em> ★★★★★(6)</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/kadenze-web-coding-fundamentals-html-css-and-javascript-3781?ref=freecodecamp"><strong>Web Coding Fundamentals: HTML, CSS and Javascript</strong></a> from <em>National University of Singapore</em> ★★★★★(5)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-software-development-process-2335?ref=freecodecamp"><strong>Software Development Process</strong></a> from <em>Georgia Institute of Technology</em> ★★★★☆(5)</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/relational-databases-stanford-university-database-19468?ref=freecodecamp"><strong>Databases: Relational Databases and SQL</strong></a> from <em>Stanford University</em> ★★★★☆(3)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-cloud-computing-what-s-on-the-horizon-with-dr-timothy-chou-191581?ref=freecodecamp"><strong>Cloud Computing - What’s on the Horizon with Dr. Timothy Chou</strong></a> from <em>Stanford University</em> ★★★★☆(3)</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/udacity-database-systems-concepts-design-8573?ref=freecodecamp"><strong>Database Systems Concepts &amp; Design</strong></a> from <em>Georgia Institute of Technology</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/software-testing-delft-university-of-technology-a-12039?ref=freecodecamp"><strong>Automated Software Testing: Model and State-based Testing</strong></a> from <em>Delft University of Technology</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/django-javascript-jquery-json-20951?ref=freecodecamp"><strong>Using JavaScript, JQuery, and JSON in Django</strong></a> from <em>University of Michigan</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/relational-databases-stanford-university-database-20360?ref=freecodecamp"><strong>Databases: Semistructured Data</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/python-the-university-of-michigan-programacion-pa-14379?ref=freecodecamp"><strong>Programación para todos (empezando con Python)</strong></a> from <em>University of Michigan</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-seven-databases-in-seven-weeks-fall-2014-91055?ref=freecodecamp"><strong>Seven Databases in Seven Weeks - Fall 2014</strong></a> from <em>Carnegie Mellon University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-721-advanced-database-systems-spring-2019-91062?ref=freecodecamp"><strong>Advanced Database Systems - Spring 2019</strong></a> from <em>Carnegie Mellon University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-optional-static-typing-for-python-110003?ref=freecodecamp"><strong>Stanford Seminar - Optional Static Typing for Python</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-721-advanced-database-systems-spring-2017-91056?ref=freecodecamp"><strong>Advanced Database Systems - Spring 2017</strong></a> from <em>Carnegie Mellon University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-rocket-securing-the-web-at-compile-time-191901?ref=freecodecamp"><strong>Rocket- Securing the Web at Compile-Time</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-kutrace-2020-191791?ref=freecodecamp"><strong>Stanford Seminar - KUtrace</strong></a> from <em>Stanford 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/software-testing-delft-university-of-technology-a-12038?ref=freecodecamp"><strong>Automated Software Testing: Unit Testing, Coverage Criteria and Design for Testability</strong></a> from <em>Delft University of Technology</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/udacity-cs-6340-software-analysis-testing-8568?ref=freecodecamp"><strong>CS 6340: Software Analysis &amp; Testing</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/sql-stanford-university-databases-advanced-topics-20361?ref=freecodecamp"><strong>Databases: Advanced Topics in SQL</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/databases-the-university-of-michigan-database-des-58329?ref=freecodecamp"><strong>Database Design and Basic SQL in PostgreSQL</strong></a> from <em>University of Michigan</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/r-programming-stanford-university-r-programming-f-40742?ref=freecodecamp"><strong>R Programming Fundamentals</strong></a> from <em>Stanford University</em></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></p>
</li>
<li><p><a href="https://www.classcentral.com/course/virtual-reality-the-university-of-california-san--8515?ref=freecodecamp"><strong>Creating Virtual Reality (VR) Apps</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/virtual-reality-the-university-of-california-san--8514?ref=freecodecamp"><strong>How Virtual Reality Works</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/object-oriented-programming-the-georgia-institute-23281?ref=freecodecamp"><strong>Introduction to Object-Oriented Programming with Java III: Exceptions, Data Structures, Recursion, and GUIs</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/databases-stanford-university-databases-modeling--20362?ref=freecodecamp"><strong>Databases: Modeling and Theory</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/django-the-university-of-michigan-using-javascrip-22251?ref=freecodecamp"><strong>Using JavaScript and JSON in Django</strong></a> from <em>University of Michigan</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mobile-development-massachusetts-institute-of-tec-7840?ref=freecodecamp"><strong>Mobile Application Experiences</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/software-engineering-ku-leuven-uml-class-diagrams-7837?ref=freecodecamp"><strong>UML Class Diagrams for Software Engineering</strong></a> from <em>KU Leuven University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/video-game-writing-university-of-british-columbia-40673?ref=freecodecamp"><strong>Worldbuilding for Video Games</strong></a> from <em>The University of British Columbia</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/kadenze-real-time-audio-signal-processing-in-faust-10144?ref=freecodecamp"><strong>Real-Time Audio Signal Processing in Faust</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/natural-language-processing-the-university-of-mic-58697?ref=freecodecamp"><strong>JSON and Natural Language Processing in PostgreSQL</strong></a> from <em>University of Michigan</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/software-development-delft-university-of-technolo-9119?ref=freecodecamp"><strong>Global Software Development</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/python-stanford-university-statistical-learning-w-272341?ref=freecodecamp"><strong>Statistical Learning with Python</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/databases-stanford-university-databases-olap-and--20359?ref=freecodecamp"><strong>Databases: OLAP and Recursion</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/java-the-georgia-institute-of-technology-introduc-23280?ref=freecodecamp"><strong>Introduction to Object-Oriented Programming with Java II: Object-Oriented Programming and Algorithms</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/java-the-georgia-institute-of-technology-introduc-23279?ref=freecodecamp"><strong>Introduction to Object-Oriented Programming with Java I: Foundations and Syntax Basics</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/sql-the-university-of-michigan-intermediate-postg-58347?ref=freecodecamp"><strong>Intermediate PostgreSQL</strong></a> from <em>University of Michigan</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/kids-coding-language-the-university-of-california-7480?ref=freecodecamp"><strong>Minecraft, Coding and Teaching</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/scala-ecole-polytechnique-federale-de-lausanne-pr-12571?ref=freecodecamp"><strong>Programming Reactive Systems</strong></a> from <em>École Polytechnique Fédérale de Lausanne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/django-the-university-of-michigan-building-web-ap-22252?ref=freecodecamp"><strong>Building Web Applications in Django</strong></a> from <em>University of Michigan</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/nosql-the-university-of-michigan-database-archite-58698?ref=freecodecamp"><strong>Database Architecture, Scale, and NoSQL with Elasticsearch</strong></a> from <em>University of Michigan</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/django-the-university-of-michigan-web-application-22250?ref=freecodecamp"><strong>Web Application Technologies and Django</strong></a> from <em>University of Michigan</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-science-universite-de-montreal-introduction--286603?ref=freecodecamp"><strong>Introduction à la science des données sociales avec R</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/django-the-university-of-michigan-django-features-22253?ref=freecodecamp"><strong>Django Features and Libraries</strong></a> from <em>University of Michigan</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/matlab-ecole-polytechnique-federale-de-lausanne-m-4759?ref=freecodecamp"><strong>MATLAB et Octave pour débutants</strong></a> from <em>École Polytechnique Fédérale de Lausanne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/python-the-university-of-michigan-estructuras-de--20113?ref=freecodecamp"><strong>Estructuras de Datos con Python</strong></a> from <em>University of Michigan</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/c-programming-peking-university-c-programming-c-c-3243?ref=freecodecamp"><strong>C++ Programming | C++程序设计</strong></a> from <em>Peking University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/java-peking-university-javacheng-xu-she-ji-java-p-4904?ref=freecodecamp"><strong>Java程序设计 | Java Programming</strong></a> from <em>Peking University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/cs193p-developing-apps-ios-98573?ref=freecodecamp"><strong>CS193p - Developing Apps for iOS</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-computer-science-virtual-reality-47915?ref=freecodecamp"><strong>Virtual Reality</strong></a> from <em>University of Illinois at Urbana-Champaign</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-how-to-design-addictive-games-191982?ref=freecodecamp"><strong>How to Design Addictive Games</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-cs193p-iphone-application-development-spring-2020-107768?ref=freecodecamp"><strong>iPhone Application Development Spring 2020</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/edx-2143?ref=freecodecamp"><strong>程序设计基础</strong></a> from <em>Peking University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-programing-should-be-more-than-coding-110038?ref=freecodecamp"><strong>Stanford Seminar - Programming Should Be More Than Coding</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-stories-from-cocolab-probabilistic-programs-cognative-modeling-smart-web-pages-110053?ref=freecodecamp"><strong>Stanford Seminar - Stories from CoCoLab: Probabilistic Programs, Cognitive Modeling, &amp; Smart Web Pages</strong></a> from <em>Stanford 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-stanford-seminar-extended-reality-for-everybody-michael-nebeling-108698?ref=freecodecamp"><strong>Extended Reality for Everybody - Michael Nebeling</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/cs241-cs-illinois-edu-coursebook-92973?ref=freecodecamp"><strong>CS 241: System Programming</strong></a> from <em>University of Illinois at Urbana-Champaign</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-c-367089?ref=freecodecamp"><strong>C++语言程序设计基础</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-accessible-virtual-reality-for-people-with-limited-mobility-109975?ref=freecodecamp"><strong>Stanford Seminar - Accessible Virtual Reality for People with Limited Mobility</strong></a> from <em>Stanford University</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>
<li><p><a href="https://www.classcentral.com/course/learncs-online-learn-computer-science-online-99171?ref=freecodecamp"><strong>Learn Computer Science Online</strong></a> from <em>University of Illinois at Urbana-Champaign</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-035-computer-language-engineering-sma-5502-fall-2005-292229?ref=freecodecamp"><strong>Computer Language Engineering (SMA 5502)</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-721-advanced-database-systems-spring-2016-91053?ref=freecodecamp"><strong>Advanced Database Systems - Spring 2016</strong></a> from <em>Carnegie Mellon University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-user-experience-ux-design-human-factors-and-culture-in-design-375337?ref=freecodecamp"><strong>User Experience (UX) Design: Human Factors and Culture in Design</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-445-645-intro-to-database-systems-fall-2017-91057?ref=freecodecamp"><strong>Intro to Database Systems - Fall 2017</strong></a> from <em>Carnegie Mellon University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-mind-your-state-for-your-state-of-mind-109999?ref=freecodecamp"><strong>Stanford Seminar - Mind Your State for Your State of Mind</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-making-teamwork-an-objective-discipline-sid-sijbrandij-ceo-chairman-of-gitlab-191570?ref=freecodecamp"><strong>Making Teamwork an Objective Discipline - Sid Sijbrandij CEO &amp; Chairman of GitLab</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-concatenative-programming-from-ivory-to-metal-191951?ref=freecodecamp"><strong>Stanford Seminar - Concatenative Programming- From Ivory to Metal</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-programming-languages-the-fundamental-tools-of-the-computer-age-178972?ref=freecodecamp"><strong>Programming Languages - The Fundamental Tools of the Computer Age</strong></a> from <em>University of Melbourne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-445-645-intro-to-database-systems-fall-2018-91060?ref=freecodecamp"><strong>Intro to Database Systems - Fall 2018</strong></a> from <em>Carnegie Mellon University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-721-advanced-database-systems-spring-2018-91059?ref=freecodecamp"><strong>Advanced Database Systems - Spring 2018</strong></a> from <em>Carnegie Mellon 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/independent-latex-course-142181?ref=freecodecamp"><strong>LaTeX course</strong></a> from <em>University of Amsterdam</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-445-645-intro-to-database-systems-fall-2021-91065?ref=freecodecamp"><strong>Intro to Database Systems - Fall 2021</strong></a> from <em>Carnegie Mellon University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-721-advanced-database-systems-spring-2020-91064?ref=freecodecamp"><strong>Advanced Database Systems - Spring 2020</strong></a> from <em>Carnegie Mellon University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hardware-accelerated-database-lectures-fall-2018-91061?ref=freecodecamp"><strong>Hardware Accelerated Database Lectures - Fall 2018</strong></a> from <em>Carnegie Mellon University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367104?ref=freecodecamp"><strong>程序设计基础</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367116?ref=freecodecamp"><strong>学做小程序——基础篇</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367199?ref=freecodecamp"><strong>计算机程序设计基础</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-the-future-of-edge-computing-from-an-international-perspective-191822?ref=freecodecamp"><strong>Stanford Seminar - The Future of Edge Computing from an International Perspective</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-missing-semester-iap-2020-203198?ref=freecodecamp"><strong>Missing Semester IAP 2020</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-001-structure-and-interpretation-of-computer-programs-spring-2005-292228?ref=freecodecamp"><strong>Structure and Interpretation of Computer Programs</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-ec-s01-internet-technology-in-local-and-global-communities-spring-2005-summer-2005-292286?ref=freecodecamp"><strong>Internet Technology in Local and Global Communities</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-15-445-645-intro-to-database-systems-fall-2019-91063?ref=freecodecamp"><strong>Intro to Database Systems - Fall 2019</strong></a> from <em>Carnegie Mellon University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-time-series-database-lectures-fall-2017-91058?ref=freecodecamp"><strong>Time Series Database Lectures</strong></a> from <em>Carnegie Mellon University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-databaseology-lectures-fall-2015-91054?ref=freecodecamp"><strong>The Databaseology Lectures - Fall 2015</strong></a> from <em>Carnegie Mellon 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/xuetangx-java-367093?ref=freecodecamp"><strong>Java程序设计</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-designing-the-interactive-paper-191529?ref=freecodecamp"><strong>Designing the Interactive Paper</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-pywren-pushing-microservices-to-teraflops-192001?ref=freecodecamp"><strong>Stanford Seminar - PyWren - Pushing Microservices to Teraflops</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-living-in-information-everywhere-192006?ref=freecodecamp"><strong>Living in Information Everywhere</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-wearing-a-vr-headset-while-driving-to-improve-vehicle-safety-293638?ref=freecodecamp"><strong>Wearing a VR Headset While Driving to Improve Vehicle Safety</strong></a> from <em>Stanford 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-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/xuetangx-c-367096?ref=freecodecamp"><strong>C++语言程序设计进阶</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367161?ref=freecodecamp"><strong>学做小程序——实战篇：树洞小程序</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367253?ref=freecodecamp"><strong>学做小程序--云开发篇：近义词小程序</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-jeremy-bailenson-your-mind-on-the-metaverse-158531?ref=freecodecamp"><strong>Jeremy Bailenson: Your Mind on the Metaverse</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-techfail-from-intersectional-in-accessibility-to-inclusive-design-191525?ref=freecodecamp"><strong>Stanford Seminar - TechFail: From Intersectional Inaccessibility to Inclusive Design</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-understanding-the-utility-of-haptic-feedback-in-telerobotic-devices-191540?ref=freecodecamp"><strong>Understanding the Utility of Haptic Feedback in Telerobotic Devices</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-i-forgot-i-invented-hypertext-ted-nelson-191617?ref=freecodecamp"><strong>Stanford Seminar - I Forgot, I Invented Hypertext - Ted Nelson</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-edge-computing-and-the-evolution-of-ar-vr-panel-discussion-191801?ref=freecodecamp"><strong>Edge Computing and the Evolution of AR-VR - Panel Discussion</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-virtual-mixed-reality-for-security-of-critical-city-scale-cyber-physical-systems-191837?ref=freecodecamp"><strong>Stanford Seminar - Virtual &amp; Mixed Reality for Security of Critical City-Scale Cyber-Physical Systems</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-graph-analysis-of-russian-twitter-trolls-using-neo4j-191934?ref=freecodecamp"><strong>Graph Analysis of Russian Twitter Trolls Using Neo4j</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-an-alternative-to-the-american-way-of-innovation-191977?ref=freecodecamp"><strong>An Alternative to the American Way of Innovation</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-integrating-interactive-devices-with-the-user-s-body-284649?ref=freecodecamp"><strong>Integrating Interactive Devices with the User's Body</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hai-seminar-with-sanmi-koyejo-beyond-benchmarks-building-a-science-of-ai-measurement-443584?ref=freecodecamp"><strong>Beyond Benchmarks – Building a Science of AI Measurement</strong></a> from <em>Stanford 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/computer-science-tsinghua-university-javacheng-xu-292123?ref=freecodecamp"><strong>JAVA程序设计进阶</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-web-367111?ref=freecodecamp"><strong>Web前端攻城狮</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-r-369989?ref=freecodecamp"><strong>基于R语言的社会统计分析</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-making-the-invisible-visible-observing-complex-software-dynamics-191641?ref=freecodecamp"><strong>Making the Invisible Visible - Observing Complex Software Dynamics</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-robosion-software-platform-for-lifelike-humanoids-191885?ref=freecodecamp"><strong>Stanford Seminar - Robosion: Software Platform for Lifelike Humanoids</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-from-flat-to-phantasmal-283624?ref=freecodecamp"><strong>From Flat to Phantasmal: Enhancing User Experiences Through Spatial Computing Advancements</strong></a> from <em>Stanford 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/xuetangx-vc-windows-367113?ref=freecodecamp"><strong>VC++面向对象与可视化程序设计（上）：Windows编程基础</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-vc-mfc-367114?ref=freecodecamp"><strong>VC++面向对象与可视化程序设计（下）：MFC编程基础</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367117?ref=freecodecamp"><strong>汇编语言程序设计</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-linux-c-367119?ref=freecodecamp"><strong>基于Linux的C++</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-java-367124?ref=freecodecamp"><strong>JAVA程序设计进阶</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-c-367127?ref=freecodecamp"><strong>面向对象程序设计（C++）</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367236?ref=freecodecamp"><strong>游戏程序设计</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-c-367525?ref=freecodecamp"><strong>C++编程训练营</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-5g-367611?ref=freecodecamp"><strong>低时延网络挑战赛：从5G和边缘计算到互联网</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-372078?ref=freecodecamp"><strong>界面设计导论</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-376556?ref=freecodecamp"><strong>高级数据库系统</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-376811?ref=freecodecamp"><strong>游戏分析与评测</strong></a> from <em>Tsinghua University</em></p>
</li>
</ul>
<h2 id="heading-data-science-110"><strong>Data Science (110)</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> ★★★★★(187)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/analytics-massachusetts-institute-of-technology-t-1623?ref=freecodecamp"><strong>The Analytics Edge</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(80)</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> ★★★★☆(61)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/python-the-university-of-california-san-diego-pyt-8209?ref=freecodecamp"><strong>Python for Data Science</strong></a> from <em>University of California, San Diego</em> ★★★★☆(48)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/statistics-the-university-of-california-san-diego-8213?ref=freecodecamp"><strong>Probability and Statistics in Data Science using Python</strong></a> from <em>University of California, San Diego</em> ★★☆☆☆(32)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-massachusetts-institute-of-techn-1779?ref=freecodecamp"><strong>Introduction to Computational Thinking and Data Science</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(30)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mining-stanford-university-mining-massive-dataset-2406?ref=freecodecamp"><strong>Mining Massive Datasets</strong></a> from <em>Stanford University</em> ★★★★★(24)</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/independent-dco042-python-for-informatics-1010?ref=freecodecamp"><strong>DCO042 - Python For Informatics</strong></a> from <em>University of Michigan</em> ★★★★★(14)</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/data-analysis-the-university-of-texas-at-austin-f-4805?ref=freecodecamp"><strong>Foundations of Data Analysis - Part 1: Statistics Using R</strong></a> from <em>The University of Texas at Austin</em> ★★★★☆(8)</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> ★★★★★(8)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-imperial-college-business-school-da-6858?ref=freecodecamp"><strong>Data Analysis Essentials</strong></a> from <em>Imperial College London</em> ★☆☆☆☆(7)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-data-analytics-at-the-exascale-for-free-electron-lasers-project-191781?ref=freecodecamp"><strong>Data Analytics at the Exascale for Free Electron Lasers Project</strong></a> from <em>Stanford 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/computer-programming-the-georgia-institute-of-tec-8223?ref=freecodecamp"><strong>Computing for Data Analysis</strong></a> from <em>Georgia Institute of Technology</em> ★★★☆☆(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-the-georgia-institute-of-technology-8217?ref=freecodecamp"><strong>Introduction to Analytics Modeling</strong></a> from <em>Georgia Institute of Technology</em> ★★★★☆(5)</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/mit-opencourseware-the-analytics-edge-spring-2017-40989?ref=freecodecamp"><strong>The Analytics Edge (Spring 2017)</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(4)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-secure-data-science-on-the-internet-of-things-110042?ref=freecodecamp"><strong>Stanford Seminar - Secure Data Science on the Internet of Things</strong></a> from <em>Stanford 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/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/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-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/data-analysis-massachusetts-institute-of-technolo-22414?ref=freecodecamp"><strong>Data Analysis: Statistical Modeling and Computation in Applications</strong></a> from <em>Massachusetts Institute of Technology</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/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/artificial-intelligence-delft-university-of-techn-110647?ref=freecodecamp"><strong>AI Skills for Engineers: Data Engineering and Data Pipelines</strong></a> from <em>Delft University of Technology</em> ★★★★☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-when-dna-meets-ai-108754?ref=freecodecamp"><strong>Stanford Seminar - When DNA Meets AI</strong></a> from <em>Stanford University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-new-platforms-for-development-solutions-192221?ref=freecodecamp"><strong>Stanford Seminar - New Platforms for Development Solutions</strong></a> from <em>Stanford University</em> ★★★★★(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-ku-leuven-data-analytics-in-health--7160?ref=freecodecamp"><strong>Data Analytics in Health – From Basics to Business</strong></a> from <em>KU Leuven 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: Productivity Tools</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/data-analysis-university-of-british-columbia-poli-3345?ref=freecodecamp"><strong>Policy Analysis Using Interrupted Time Series</strong></a> from <em>The University of British Columbia</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-big-data-analytics-jpl-caltech-48195?ref=freecodecamp"><strong>Big Data Analytics</strong></a> from <em>California Institute of Technology</em> ★★★☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-deep-learning-in-life-sciences-6-874-spring-2020-97534?ref=freecodecamp"><strong>MIT Deep Learning in Life Sciences Spring 2020</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mit-compbio-course-projects-fall-2019-97533?ref=freecodecamp"><strong>MIT CompBio Course Projects Fall 2019</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-soccermatics-could-a-premier-league-team-one-day-be-managed-by-a-mathematician-142821?ref=freecodecamp"><strong>Soccermatics - Could a Premier League Team One Day Be Managed by a Mathematician?</strong></a> from <em>University of Oxford</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-data-and-visual-analytics-8566?ref=freecodecamp"><strong>Data and Visual Analytics</strong></a> from <em>Georgia Institute of Technology</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/udacity-cse-8803-special-topics-big-data-1027?ref=freecodecamp"><strong>CSE 8803 Special Topics: Big Data</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/bioinformatics-the-university-of-california-san-d-8962?ref=freecodecamp"><strong>Introduction to Genomic Data Science</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-the-hong-kong-university-of-science-58718?ref=freecodecamp"><strong>Foundations of Data Analytics</strong></a> from <em>The Hong Kong University of Science and Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/independent-statistical-computing-with-r-a-gentle-introduction-4545?ref=freecodecamp"><strong>Statistical Computing with R - a gentle introduction</strong></a> from <em>University College London</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/business-administration-the-georgia-institute-of--8222?ref=freecodecamp"><strong>Data Analytics for Business</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/machine-learning-the-university-of-california-san-10249?ref=freecodecamp"><strong>Dynamic Programming: Applications In Machine Learning and Genomics</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/algorithms-the-university-of-california-san-diego-10178?ref=freecodecamp"><strong>Algorithms and Data Structures Capstone</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/biology-the-university-of-california-san-diego-gr-10250?ref=freecodecamp"><strong>Graph Algorithms in Genome Sequencing</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-programming-purdue-university-big-data-f-21148?ref=freecodecamp"><strong>Big Data for Reliability and Security</strong></a> from <em>Purdue University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-delft-university-of-technology-data-110646?ref=freecodecamp"><strong>Data Creation and Collection for Artificial Intelligence via Crowdsourcing</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/big-data-the-hong-kong-university-of-science-and--58716?ref=freecodecamp"><strong>Big Data Computing with Spark</strong></a> from <em>The Hong Kong University of Science and Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/big-data-tsinghua-university-advanced-big-data-sy-12738?ref=freecodecamp"><strong>Advanced Big Data Systems | 高级大数据系统</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-mining-the-hong-kong-university-of-science-a-58717?ref=freecodecamp"><strong>Data Mining and Knowledge Discovery</strong></a> from <em>The Hong Kong University of Science and Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-the-hong-kong-university-of-science-58719?ref=freecodecamp"><strong>Mathematical Methods for Data Analysis</strong></a> from <em>The Hong Kong University of Science and Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-delft-university-of-technology-data-5387?ref=freecodecamp"><strong>Data Analysis: Building Your Own Business Dashboard</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/big-data-the-university-of-california-san-diego-b-8221?ref=freecodecamp"><strong>Big Data Analytics Using Spark</strong></a> from <em>University of California, San Diego</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/big-data-the-hong-kong-university-of-science-and--58699?ref=freecodecamp"><strong>Big Data Technology Capstone Project</strong></a> from <em>The Hong Kong University of Science and Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/big-data-the-hong-kong-university-of-science-and--58699?ref=freecodecamp"><strong>Big Data Technology Capstone Project</strong></a> from <em>The Hong Kong University of Science and Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/big-data-the-hong-kong-university-of-science-and--58699?ref=freecodecamp"><strong>Big Data Technology Capstone Project</strong></a> from <em>The Hong Kong University of Science and Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/big-data-the-hong-kong-university-of-science-and--58699?ref=freecodecamp"><strong>Big Data Technology Capstone Project</strong></a> from <em>The Hong Kong University of Science and Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/science-universite-de-montreal-fondamentaux-de-la-287568?ref=freecodecamp"><strong>Fondamentaux de la science des données</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-statistics-massachusetts-institute--302496?ref=freecodecamp"><strong>Learning Time Series with Interventions</strong></a> from <em>Massachusetts Institute of Technology</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/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/computer-science-universite-de-montreal-science-d-295045?ref=freecodecamp"><strong>Science des données et santé</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-statistics-university-of-cambridge--446359?ref=freecodecamp"><strong>The impact of big data on healthcare</strong></a> from <em>University of Cambridge</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-theories-of-inference-for-visual-analysis-108696?ref=freecodecamp"><strong>Stanford Seminar - Theories of Inference for Visual Analysis</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-mining-online-data-across-social-networks-110079?ref=freecodecamp"><strong>Mining Online Data Across Social Networks</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-introduction-to-r-and-gis-fall-2023-292288?ref=freecodecamp"><strong>Introduction to R and Geographic Information Systems (GIS)</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-how-to-analyze-research-data-kristin-sainani-191712?ref=freecodecamp"><strong>How to Analyze Research Data - Kristin Sainani</strong></a> from <em>Stanford University</em></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></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-data-mining-the-tool-of-the-information-age-192297?ref=freecodecamp"><strong>Data Mining - The Tool of the Information Age</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/data-analysis-delft-university-of-technology-anal-10328?ref=freecodecamp"><strong>Análisis de datos: Diseño y Visualización de Tableros</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-towards-theories-of-single-trial-high-dimensional-neural-data-analysis-108765?ref=freecodecamp"><strong>Stanford Seminar - Towards Theories of Single-Trial High Dimensional Neural Data Analysis</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-big-data-is-at-least-four-different-problems-110021?ref=freecodecamp"><strong>Stanford Seminar - Big Data Is -At Least- Four Different Problems</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-tsar-the-timeseries-aggregator-anirudh-todi-of-twitter-110051?ref=freecodecamp"><strong>Stanford Seminar - TSAR - Anirudh Todi of Twitter</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-res-ll-005-mathematics-of-big-data-and-machine-learning-january-iap-2020-292296?ref=freecodecamp"><strong>Mathematics of Big Data and Machine Learning</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mitx-online-data-analysis-for-social-scientists-450352?ref=freecodecamp"><strong>Data Analysis for Social Scientists</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-14-310x-data-analysis-for-social-scientists-spring-2023-292251?ref=freecodecamp"><strong>Data Analysis for Social Scientists</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-developing-design-spaces-for-visualization-tamara-munzner-108693?ref=freecodecamp"><strong>Stanford Seminar - Developing Design Spaces for Visualization - Tamara Munzner</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-forecasting-and-predicting-the-future-of-the-future-191634?ref=freecodecamp"><strong>Stanford Seminar - Forecasting and Predicting the Future</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-the-end-of-privacy-191926?ref=freecodecamp"><strong>The End of Privacy</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/excel-delft-university-of-technology-analisis-de--10327?ref=freecodecamp"><strong>Análisis de datos: Llévalo al MAX()</strong></a> from <em>Delft University of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-jupyter-notebooks-and-academic-publication-191833?ref=freecodecamp"><strong>Jupyter Notebooks and Academic Publication</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mitx-online-quantitative-biology-workshop-461875?ref=freecodecamp"><strong>Quantitative Biology Workshop</strong></a> from <em>Massachusetts Institute of Technology</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-stanford-seminar-algorithmic-extremism-examining-youtube-s-rabbit-hole-of-radicalization-191797?ref=freecodecamp"><strong>Stanford Seminar - Algorithmic Extremism- Examining YouTube's Rabbit Hole of Radicalization</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-ai-for-academic-search-367562?ref=freecodecamp"><strong>AI for Academic Search （人工智能助力学术搜索）</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-big-data-s-big-deal-viktor-mayer-schonberger-142853?ref=freecodecamp"><strong>Big Data's Big Deal - Viktor Mayer-Schonberger</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-mobilizing-the-future-191869?ref=freecodecamp"><strong>Stanford Seminar - Mobilizing the Future</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-data-for-the-people-andreas-weigend-of-social-data-lab-192022?ref=freecodecamp"><strong>Data for the People - Andreas Weigend of Social Data Lab</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-engx-big-data-big-impact-mini-conference-russ-altman-jure-leskovec-and-christopher-re-192213?ref=freecodecamp"><strong>Big Data, Big Impact - Preventing Drug Interactions, Understanding Behavior, and Climate Change</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mitx-online-understanding-the-world-through-data-486487?ref=freecodecamp"><strong>Understanding the World Through Data</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367099?ref=freecodecamp"><strong>大数据技术与应用</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-communicating-complex-statistical-ideas-to-the-public-lessons-from-the-pandemic-d-spiegelhalter-142786?ref=freecodecamp"><strong>Communicating Complex Statistical Ideas to the Public - Lessons from the Pandemic - D. Spiegelhalter</strong></a> from <em>University of Oxford</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-grid-modernization-and-the-integration-of-distributed-resources-191761?ref=freecodecamp"><strong>Grid Modernization and the Integration of Distributed Resources</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-zhang-lin-on-mobileurban-sensing-in-beijing-192263?ref=freecodecamp"><strong>Stanford Seminar - Zhang Lin on Mobile Urban Sensing in Beijing</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-human-machine-symbiosis-in-data-visualization-264218?ref=freecodecamp"><strong>Human-Machine Symbiosis in Data Visualization</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-harnessing-data-for-social-impact-277833?ref=freecodecamp"><strong>Harnessing Data for Social Impact - Empowering Communities through Visualization and Social Computing</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367105?ref=freecodecamp"><strong>大数据系统基础</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367465?ref=freecodecamp"><strong>疫情防控，大数据分析大显身手</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367480?ref=freecodecamp"><strong>清华大数据应用实践：快速搭建基于数据的应用</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367529?ref=freecodecamp"><strong>数据与智能技术应用</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367586?ref=freecodecamp"><strong>基于数据驱动的网络技术应用</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-search-research-373395?ref=freecodecamp"><strong>提升检索（Search）力就是提升研究（Research）力</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-377043?ref=freecodecamp"><strong>清华大学计算机科学与技术系六十周年系庆学术报告（四）大数据</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-463887?ref=freecodecamp"><strong>“清华数为”大数据智能软件栈</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367196?ref=freecodecamp"><strong>大数据可视化</strong></a> from <em>Zhejiang University</em></p>
</li>
</ul>
<h2 id="heading-information-security-infosec-55"><strong>Information Security (InfoSec) (55)</strong></h2>
<ul>
<li><p><a href="https://www.classcentral.com/course/youtube-cs-253-web-security-48191?ref=freecodecamp"><strong>Web Security</strong></a> from <em>Stanford University</em> ★★★★★(87)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/mit-ocw-6-858-computer-systems-security-fall-2014-40952?ref=freecodecamp"><strong>Computer Systems Security</strong></a> from <em>Massachusetts Institute of Technology</em> ★★★★★(52)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-security-ku-leuven-web-security-fundamen-8726?ref=freecodecamp"><strong>Web Security Fundamentals</strong></a> from <em>KU Leuven University</em> ★★★★☆(22)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-engineering-cyber-resiliency-a-pragmatic-approach-110018?ref=freecodecamp"><strong>Engineering Cyber Resiliency - A Pragmatic Approach</strong></a> from <em>Stanford University</em> ★★★★★(22)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-hash-hack-code-emerging-trends-in-cyber-security-110027?ref=freecodecamp"><strong>Hash, Hack, Code - Emerging Trends in Cyber Security</strong></a> from <em>Stanford University</em> ★★★★★(12)</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> ★★★★★(6)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-intro-to-information-security-3420?ref=freecodecamp"><strong>Intro to Information Security</strong></a> from <em>Georgia Institute of Technology</em> ★★☆☆☆(2)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-network-security-8570?ref=freecodecamp"><strong>Network Security</strong></a> from <em>Georgia Institute of Technology</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/cybersecurity-delft-university-of-technology-cybe-2680?ref=freecodecamp"><strong>Cyber Security Economics</strong></a> from <em>Delft University of Technology</em> ★★☆☆☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-the-current-state-of-cybersecurity-191805?ref=freecodecamp"><strong>Stanford Seminar - The Current State of Cybersecurity</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-webinar-big-breaches-what-we-learned-from-the-world-s-most-disruptive-cybersecurity-attacks-191682?ref=freecodecamp"><strong>Big Breaches - What We Learned From the World's Most Disruptive Cybersecurity Attacks</strong></a> from <em>Stanford University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-solving-cybersecurity-as-an-economic-problem-191802?ref=freecodecamp"><strong>Solving Cybersecurity as an Economic Problem</strong></a> from <em>Stanford University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-computer-security-the-mess-we-re-in-how-we-got-here-and-what-to-do-about-it-191793?ref=freecodecamp"><strong>Stanford Seminar - Computer Security- The Mess We're In, How We Got Here, and What to Do About It</strong></a> from <em>Stanford University</em> ★★★★★(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-preventing-successful-cyberattacks-using-strongly-typed-actors-191710?ref=freecodecamp"><strong>Stanford Seminar - Preventing Successful Cyberattacks Using Strongly-Typed Actors</strong></a> from <em>Stanford University</em> ★★★★☆(1)</p>
</li>
<li><p><a href="https://www.classcentral.com/course/udacity-cyber-physical-systems-security-8569?ref=freecodecamp"><strong>Cyber-Physical Systems Security</strong></a> from <em>Georgia Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/cybersecurity-new-york-university-mobile-payment--21869?ref=freecodecamp"><strong>Mobile Payment Security</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/computer-science-universite-de-montreal-la-cybers-288717?ref=freecodecamp"><strong>La cybersécurité en milieu universitaire</strong></a> from <em>Université de Montréal</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-building-your-shield-mapping-the-cybersecurity-market-dan-boneh-and-neil-daswani-191751?ref=freecodecamp"><strong>Building Your Shield - Mapping the Cybersecurity Market</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-securing-the-world-around-us-cyber-security-for-the-physical-economy-191772?ref=freecodecamp"><strong>Securing the World Around Us - Cyber Security for the Physical Economy</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-the-growing-threat-and-impact-of-web-based-malware-stanford-computer-security-192296?ref=freecodecamp"><strong>The Growing Threat and Impact of Web-Based Malware - Stanford Computer Security</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/mitx-online-cybersecurity-for-critical-urban-infrastructure-450351?ref=freecodecamp"><strong>Cybersecurity for Critical Urban Infrastructure</strong></a> from <em>Massachusetts Institute of Technology</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-security-challenges-in-5g-wireless-and-beyond-132426?ref=freecodecamp"><strong>Security Challenges in 5G Wireless and Beyond</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-conversations-at-the-forefront-of-cybersecurity-with-nyu-ccs-featuring-randy-milch-132456?ref=freecodecamp"><strong>Cybersecurity in Corporate Law: Key Issues for Practitioners and Policy-makers</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-anatomy-of-an-attack-what-really-happens-and-how-to-protect-your-enterprise-132414?ref=freecodecamp"><strong>Anatomy of an Attack - Understanding and Protecting Against Cyber Threats</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-online-political-ad-transparency-191758?ref=freecodecamp"><strong>Stanford Seminar - Online Political Ad Transparency</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-taking-memory-forensics-to-the-next-level-132480?ref=freecodecamp"><strong>Taking Memory Forensics to the Next Level</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-tales-from-the-risks-forum-191817?ref=freecodecamp"><strong>Tales from the Risks Forum</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-a-conversation-with-a-recent-tandon-cyber-fellow-grad-michael-leking-tandon-21-132413?ref=freecodecamp"><strong>Cybersecurity Career Insights - From Tandon Cyber Fellow to VP at U.S. Bank</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-conversations-at-the-forefront-of-cyber-security-with-nyu-ccs-featuring-dr-justin-cappos-132457?ref=freecodecamp"><strong>Cyber Security: Building Compromise Resilient Systems and Key Management - Dr. Justin Cappos</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-conversations-at-the-forefront-of-cyber-security-with-nyu-ccs-featuring-joel-caminer-132455?ref=freecodecamp"><strong>Too Big to Fail: Cybersecurity Issues in Financial Services</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-2-andrew-dutcher-angr-132481?ref=freecodecamp"><strong>angr: Binary Analysis Framework - Demonstration and Analysis</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-webinar-to-attribute-or-not-attribute-is-that-the-question-191775?ref=freecodecamp"><strong>Stanford Webinar - To Attribute or Not Attribute, Is That the Question?</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-industry-insights-cyber-security-179042?ref=freecodecamp"><strong>Industry Insights: Cyber Security - Trends, Impacts, and Career Opportunities</strong></a> from <em>University of Melbourne</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-csaw-21-keynote-cybersecurity-keeping-the-lights-on-dr-martin-otto-siemens-technology-132423?ref=freecodecamp"><strong>Cybersecurity: Keeping the Lights On - Practical Challenges in Utilities - Keynote</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-locking-the-web-open-a-call-for-a-new-decentralized-web-191800?ref=freecodecamp"><strong>Locking the Web Open - A Call for a New, Decentralized Web</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-thunderclap-cheri-capability-hardware-enhanced-risc-instructions-191808?ref=freecodecamp"><strong>Stanford Seminar - Thunderclap &amp; CHERI - Capability Hardware-Enhanced RISC Instructions</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-bulletproofs-short-proofs-for-confidential-transactions-and-more-191910?ref=freecodecamp"><strong>Bulletproofs - Short Proofs for Confidential Transactions and More</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-how-can-privacy-exist-in-a-data-driven-world-296038?ref=freecodecamp"><strong>How Can Privacy Exist in a Data-Driven World? - Stanford Seminar</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-hai-seminar-with-lowry-pressly-privacy-and-the-power-of-unknowing-451008?ref=freecodecamp"><strong>Privacy and the Power of Unknowing</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-conversations-at-the-forefront-of-cybersecurity-with-nyu-ccs-featuring-nasir-memon-132454?ref=freecodecamp"><strong>Hacking Reality: Technology for Detecting Deep Fakes</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-8-ryan-stortz-kareem-el-faramawi-firing-rounds-at-the-analysis-shooting-gallery-132478?ref=freecodecamp"><strong>Firing Rounds at the Analysis Shooting Gallery - CSAW'16 Security Workshop</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-lessons-from-mirai-and-the-current-state-of-iot-security-191911?ref=freecodecamp"><strong>Lessons from Mirai and the Current State of IoT Security</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-exploiting-modern-microarchitectures-meltdown-spectre-other-hardware-attacks-191942?ref=freecodecamp"><strong>Exploiting Modern Microarchitectures - Meltdown, Spectre, &amp; Other Hardware Attacks</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-stanford-seminar-rowhammer-rowpress-and-beyond-can-we-be-free-of-bitflips-soon-264502?ref=freecodecamp"><strong>RowHammer, RowPress and Beyond: Can We Be Free of Bitflips Soon? - Stanford Seminar</strong></a> from <em>Stanford University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-proving-confidentiality-and-its-preservation-for-mixed-sensitivity-concurrent-programs-178974?ref=freecodecamp"><strong>Proving Confidentiality and Its Preservation for Mixed-Sensitivity Concurrent Programs</strong></a> from <em>University of Melbourne</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-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/xuetangx-367546?ref=freecodecamp"><strong>网络安全博弈之路</strong></a> from <em>Tsinghua University</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-trading-privacy-for-convenience-in-the-age-of-technology-part-2-132419?ref=freecodecamp"><strong>Trading Privacy for Convenience in the Age of Technology - Part 2</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-ic-layout-security-132428?ref=freecodecamp"><strong>IC Layout Security - Hardening Integrated Circuit Designs Against Adversaries</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-conversations-at-the-forefront-of-cyber-security-with-nyu-ccs-featuring-dr-damon-mccoy-132458?ref=freecodecamp"><strong>Empirical Measurement of Security and Privacy in Technology Systems - Conversations with Dr. Damon McCoy</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-dispelling-the-top-10-myths-in-cybersecurity-132473?ref=freecodecamp"><strong>Dispelling the Top 10 Myths in Cybersecurity - AIG Cybersecurity Lecture</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/youtube-9th-cyber-security-lecture-sponsored-by-aig-132475?ref=freecodecamp"><strong>Democracy Confronts Cyber Insecurity - Lecture 9</strong></a> from <em>New York University (NYU)</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-web-367279?ref=freecodecamp"><strong>Web安全实践</strong></a> from <em>University of Science and Technology of China</em></p>
</li>
<li><p><a href="https://www.classcentral.com/course/xuetangx-367374?ref=freecodecamp"><strong>高级计算机网络</strong></a> from <em>University of Science and Technology of China</em></p>
</li>
</ul>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ The Top 100 Free University Courses of the Year (Ranked by Popularity) ]]>
                </title>
                <description>
                    <![CDATA[ By Dhawal Shah In 2024, the most popular online course out of 5,300 launched across the top MOOC platforms is Google's AI Essentials on Coursera. With over 900,000 enrollments, this single course had more enrollments than the combined total of all ne... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/most-popular-free-online-courses/</link>
                <guid isPermaLink="false">66d45eba4a7504b7409c33c1</guid>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ self-improvement  ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ freeCodeCamp ]]>
                </dc:creator>
                <pubDate>Sat, 11 Jan 2025 06:00:00 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1737472247276/cb2cf77d-4552-496f-97ec-fa6941fff76a.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>By Dhawal Shah</p>
<p>In 2024, the most popular online course out of 5,300 launched across the top MOOC platforms is <a target="_blank" href="https://www.classcentral.com/course/coursera-google-ai-essentials-289727"><strong>Google's AI Essentials</strong></a> on Coursera. With over 900,000 enrollments, this single course had more enrollments than the combined total of all new courses launched on edX, FutureLearn, and Swayam in the same year.</p>
<p>More than a decade has passed since a few Stanford professors <a target="_blank" href="https://www.classcentral.com/report/mooc-hype-year-1/"><strong>decided to offer their courses</strong></a> online for free. These courses later became known as <a target="_blank" href="https://www.classcentral.com/help/moocs"><strong>MOOCs (Massive Open Online Courses)</strong></a>, and 2012 was dubbed the "<a target="_blank" href="https://www.classcentral.com/report/mooc-hype-year-1/"><strong>Year of the MOOC</strong></a>."</p>
<p>What's unique about this edition is that the majority of the courses are from companies, not universities—a significant shift from when MOOCs were first popularized.</p>
<h2 id="heading-methodology"><strong>Methodology</strong></h2>
<p>I built this list following a well defined methodology:</p>
<p><strong>First</strong>, I went through the Class Central database and made a list of all the courses that were offered for the first time ever in 2024, on the four platforms below. There were <strong>5300</strong> such courses.</p>
<p><strong>Then</strong>, I wrote scrapers to collect enrollment numbers across four major online course platforms: <a target="_blank" href="https://www.classcentral.com/provider/coursera"><strong>Coursera</strong></a>, <a target="_blank" href="https://www.classcentral.com/provider/edx"><strong>edX</strong></a>, <a target="_blank" href="https://www.classcentral.com/provider/futurelearn"><strong>FutureLearn</strong></a>, and <a target="_blank" href="https://www.classcentral.com/provider/swayam"><strong>Swayam</strong></a>. These platforms show how many students are enrolled in each of their courses.</p>
<p><strong>Finally</strong>, I sorted the courses according to their enrollment number and truncated the list to keep only the 100 most popular courses. To maintain a balanced comparison, the number of courses considered from Coursera was limited, as they are significantly larger than other platforms, and the gap in scale continues to widen.</p>
<p>Combined, the platforms considered accrued over <strong>5.7M</strong> enrollments for courses launched in 2024. The 100 most popular courses account for a whopping <strong>2.7M</strong> of them.</p>
<p>If a Coursera course grabs your attention, you might want to read our guide: <a target="_blank" href="https://www.classcentral.com/report/coursera-signup-for-free/"><strong>How to Sign up for Coursera Courses for Free</strong></a>.</p>
<h2 id="heading-most-popular-online-courses-2025-edition"><strong>Most Popular Online Courses (2025 Edition)</strong></h2>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-google-ai-essentials-289727"><strong>Google AI Essentials</strong></a> Google via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-operating-systems-overview-administration-security-298334"><strong>Operating Systems: Overview, Administration, and Security</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-cybersecurity-compliance-framework-standards-regulations-298321"><strong>Cybersecurity Compliance Framework, Standards &amp; Regulations</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-ibm-penetration-testing-threat-hunting-cryptography-355041"><strong>Penetration Testing, Threat Hunting, and Cryptography</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-ibm-incident-response-digital-forensics-363775"><strong>Incident Response and Digital Forensics</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/introduction-to-large-language-models-275050"><strong>Introduction to Large Language Models</strong></a> Google Cloud via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/extract-transform-and-load-data-in-power-bi-275031"><strong>Extract, Transform and Load Data in Power BI</strong></a> Microsoft via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/product-management-an-introduction-276288"><strong>Product Management: An Introduction</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-business-analysis-fundamentals-291960"><strong>Business Analysis Fundamentals</strong></a> Microsoft via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-ai-infrastructure-operations-fundamentals-295140"><strong>AI Infrastructure and Operations Fundamentals</strong></a> Nvidia via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-data-warehouse-fundamentals-295445"><strong>Data Warehouse Fundamentals</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-introduction-to-computers-291976"><strong>Introduction to Computers</strong></a> Microsoft via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/workday-basics-series-282131"><strong>Workday Basics Series</strong></a> Workday via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/career-guide-and-interview-prep-for-data-analyst-283811"><strong>Data Analyst Career Guide and Interview Preparation</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/copy-of-project-management-essentials-282490"><strong>Project Management Essentials</strong></a> Howard University via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-project-management-fundamentals-microsoft-291983"><strong>Project Management Fundamentals</strong></a> Microsoft via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-generative-ai-for-executives-business-leaders-288032"><strong>Generative AI for Executives and Business Leaders - Part 1</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-immunologymhctcellscytokines-303591"><strong>Fundamentals of Immunology: Complement, MHC I and II, T Cells, and Cytokines</strong></a> Rice University via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/business-intelligence-essentials-276291"><strong>Business Intelligence (BI) Essentials</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/generative-ai-essentials-274680"><strong>Generative AI Essentials: Overview and Impact</strong></a> University of Michigan via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/the-principles-of-real-estate-273286"><strong>The Principles of Real Estate</strong></a> Keller Williams via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-introduction-to-generative-ai-for-software-development-299764"><strong>Introduction to Generative AI for Software Development</strong></a> <a target="_blank" href="http://deeplearning.ai/"><strong>DeepLearning.AI</strong></a> via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/the-art-of-storytelling-iese-283812"><strong>The Art of Storytelling</strong></a> IESE Business School via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/comprendre-la-france-advanced-french-language-cul-277785"><strong>Comprendre la France, Advanced French Language &amp; Culture</strong></a> École Polytechnique via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/python-stanford-university-statistical-learning-w-272341"><strong>Statistical Learning with Python</strong></a> Stanford University via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/basicmathematics-274955"><strong>Basic Mathematics</strong></a> Birla Institute Of Technology And Science–Pilani (BITS–Pilani) via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-immunologyinflammation-tolerance-autoimmunity-303593"><strong>Fundamentals of Immunology: Inflammation, Tolerance, Autoimmunity</strong></a> Rice University via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-learning-chatgpt-303659"><strong>Accelerate Your Learning with ChatGPT</strong></a> Deep Teaching Solutions via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/software-developer-career-guide-and-interview-pre-282497"><strong>Software Developer Career Guide and Interview Preparation</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/supply-chain-management-and-analytics-283809"><strong>Supply Chain Management and Analytics</strong></a> Unilever via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-intro-to-data-engineering-302396"><strong>Introduction to Data Engineering</strong></a> <a target="_blank" href="http://deeplearning.ai/"><strong>DeepLearning.AI</strong></a> via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/artificial-intelligence-ibm-introduction-to-promp-272873"><strong>Introduction to Prompt Engineering</strong></a> IBM via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-english-intermediate-b1-2-288010"><strong>English Intermediate B1.2</strong></a> University of Naples Federico II via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-google-prompting-essentials-358147"><strong>Google Prompting Essentials</strong></a> Google via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-openai-custom-gpts-289055"><strong>OpenAI GPTs: Creating Your Own Custom AI Assistants</strong></a> Vanderbilt University via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-data-science-using-python-292953"><strong>Data Science Using Python</strong></a> Aligarh Muslim University via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-data-science-using-python-292953"><strong>Data Science Using Python</strong></a> Aligarh Muslim University via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-child-development-education-378786"><strong>Child Development_Education</strong></a> CEC via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-microsoft-365-copilot-288615"><strong>Microsoft 365 Copilot: Personal Productivity for All</strong></a> Vanderbilt University via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-chatgpt-project-management-execution-311389"><strong>ChatGPT for Project Management: Execution, Tracking, Success</strong></a> Vanderbilt University via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-introduction-to-security-principles-in-cloud-computing-296914"><strong>Introduction to Security Principles in Cloud Computing</strong></a> Google Cloud via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/generative-ai-elevate-your-data-science-career-276555"><strong>Generative AI: Elevate Your Data Science Career</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/advanced-digital-transformation-1-273015"><strong>Advanced Digital Transformation (Part 1)</strong></a> Indian Institute of Management Ahmedabad via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-rocket-science-for-everyone-298768"><strong>Rocket Science for Everyone</strong></a> Yale University via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-fundamentals-of-uiux-design-296433"><strong>Fundamentals of UI/UX Design</strong></a> Microsoft via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/generative-ai-elevate-software-development-career-276552"><strong>Generative AI: Elevate your Software Development Career</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/customer-understanding-and-digital-marketing-chan-283814"><strong>Customer Understanding and Digital Marketing Channels</strong></a> Unilever via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/graphic-design-lci-education-graphic-design-essen-272874"><strong>Graphic Design Essentials</strong></a> LCI Education via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-chat-gpt-290274"><strong>ChatGPT - Usos y Estrategias</strong></a> Tecnológico de Monterrey via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-introduction-to-cosmetic-and-skin-care-science-288076"><strong>Introduction to Cosmetic and Skincare Science</strong></a> Olay via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/comptia-aplus-cyber-276571"><strong>CompTIA a+ Cyber</strong></a> CompTIA via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-strategy-and-game-theory-for-management-299900"><strong>Strategy and Game Theory for Management</strong></a> Indian Institute of Management Ahmedabad via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-5g-wireless-standard-design-292618"><strong>5G Wireless Standard Design</strong></a> Indian Institute of Technology Kanpur via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/intro-gen-ai-283798"><strong>Introduction to Generative AI</strong></a> Duke University via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/javascript-programming-essentials-276549"><strong>JavaScript Programming Essentials</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-building-gen-ai-powered-applications-288901"><strong>Building Generative AI-Powered Applications with Python</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/comptia-aplus-network-276572"><strong>CompTIA a+ Network</strong></a> CompTIA via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-python-data-structures-288154"><strong>Python Data Structures</strong></a> Coursera Project Network via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-responsible-safe-ai-systems-292751"><strong>Responsible &amp; Safe AI Systems</strong></a> NPTEL via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-design-fundamentals-352805"><strong>Design Fundamentals</strong></a> Adobe via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-advanced-r-programming-for-data-analytics-in-business-292621"><strong>Advanced R Programming for Data Analytics in Business</strong></a> Indian Institute of Technology Kanpur via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-responsible-ai-applying-ai-principles-with-google-cloud-289057"><strong>Responsible AI: Applying AI Principles with Google Cloud</strong></a> Google Cloud via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-data-for-business-analysts-using-microsoft-excel-291966"><strong>Data for Business Analysts Using Microsoft Excel</strong></a> Microsoft via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/generative-ai-enhance-your-data-analytics-career-282740"><strong>Generative AI: Enhance your Data Analytics Career</strong></a> IBM via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/mba-essentials-273024"><strong>MBA Essentials</strong></a> University of Glasgow via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-introduction-to-data-analytics-in-google-cloud-296913"><strong>Introduction to Data Analytics in Google Cloud</strong></a> Google Cloud via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-introduction-to-game-design-303999"><strong>Introduction to Game Design</strong></a> Epic Games via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-ai-in-human-resource-management-379824"><strong>AI in Human Resource Management</strong></a> NPTEL via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-gen-ai-for-university-leaders-295450"><strong>Generative AI for University Leaders</strong></a> Vanderbilt University via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/gpt-vision-272484"><strong>GPT Vision: Seeing the World through Generative AI</strong></a> Vanderbilt University via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/laravel-framework-and-php-274685"><strong>Mastering Laravel Framework and PHP</strong></a> Board Infinity via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/business-analysis-mastery-273285"><strong>Business Analysis: Key Definitions &amp; Strategy Analysis</strong></a> Starweaver via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/coursera-inteligencia-artificial-interacciones-y-prompts-294480"><strong>Inteligencia Artificial (IA): Interacciones y prompts</strong></a> Universidad de Palermo via Coursera</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-web-technology-272845"><strong>Web Technology</strong></a> Uttarakhand Open University, Haldwani via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-practical-cyber-security-for-cyber-security-practitioners-292737"><strong>Practical Cyber Security for Cyber Security Practitioners</strong></a> Indian Institute of Technology Kanpur via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/r-programming-harvard-university-cs50-s-introduct-274066"><strong>CS50's Introduction to Programming with R</strong></a> Harvard University via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-artificial-intelligence-and-machine-learning-in-materials-engineering-292632"><strong>Artificial Intelligence and Machine Learning in Materials Engineering</strong></a> Indian Institute of Technology Kanpur via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-a-basic-course-in-machine-learning-for-all-291799"><strong>A Basic Course in Machine Learning for All</strong></a> Indian Institute of Management Bangalore via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-electronic-systems-design-hands-on-circuits-and-pcb-design-with-cad-software-292652"><strong>Electronic Systems Design: Hands-on Circuits and PCB Design with CAD Software</strong></a> Indian Institute of Technology Delhi via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-3d-printing-and-design-for-educators-273779"><strong>3D Printing and Design for Educators</strong></a> NITTTR via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/sustainability-sdg-academy-the-living-amazon-scie-272340"><strong>The Living Amazon: Science, Cultures and Sustainability in Practice</strong></a> SDG Academy via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-large-language-models-llms-379892"><strong>Introduction to Large Language Models (LLMs)</strong></a> NPTEL via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-digital-marketing-strategy-292955"><strong>Digital Marketing Strategy</strong></a> Banaras Hindu University via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/language-fundacao-para-a-ciencia-e-a-tecnologia-i-288736"><strong>Introduction to Portuguese / Iniciação à Língua Portuguesa</strong></a> Fundação para a Ciência e a Tecnologia via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/swayam-artificial-intelligence-for-economics-292633"><strong>Artificial Intelligence for Economics</strong></a> Indian Institute of Technology, Kharagpur via Swayam</p>
<p><a target="_blank" href="https://www.classcentral.com/course/design-lci-education-introduction-to-illustrator-272875"><strong>Introduction to Illustrator</strong></a> LCI Education via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/computer-architecture-arm-education-computer-arch-273505"><strong>Computer Architecture Essentials on Arm</strong></a> Arm Education via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/chatgpt-universitat-politecnica-de-valencia-intro-277713"><strong>Introduction to ChatGPT. Boost your productivity to the maximum using artificial intelligence!</strong></a> Universitat Politècnica de València via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/robotics-rwth-aachen-university-introduction-to-r-272876"><strong>Introduction to Robotic Programming</strong></a> RWTH Aachen University via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/bookkeeping-intuit-quickbooks-level-1-273132"><strong>Quickbooks Level 1</strong></a> Intuit via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/finance-state-bank-of-india-financial-markets-and-282206"><strong>Financial Markets and Products</strong></a> State Bank of India via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/interpreting-genomic-variation-overcoming-challenges-in-diverse-populations-298211"><strong>Interpreting Genomic Variation: Overcoming Challenges in Diverse Populations</strong></a> via FutureLearn</p>
<p><a target="_blank" href="https://www.classcentral.com/course/economics-university-of-california-berkeley-funda-278048"><strong>Fundamentals of Economics</strong></a> University of California, Berkeley via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/philosophy-ethics-harvard-university-structure-an-353078"><strong>Structure and Function of Argument: Introduction to Critical Thinking</strong></a> Harvard University via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/inclusive-education-exploring-send-practice-and-strategies-295620"><strong>Inclusive Education: Exploring SEND Practice and Strategies</strong></a> University of Leeds via FutureLearn</p>
<p><a target="_blank" href="https://www.classcentral.com/course/design-lci-education-interior-design-essentials-283939"><strong>Interior Design Essentials</strong></a> LCI Education via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/start-coding-today-an-intro-to-python-programming-for-beginners-303922"><strong>An Introduction to Programming Using Python</strong></a> University of Leeds via FutureLearn</p>
<p><a target="_blank" href="https://www.classcentral.com/course/how-to-get-into-ai-303931"><strong>How to Get Into AI</strong></a> University of Leeds via FutureLearn</p>
<p><a target="_blank" href="https://www.classcentral.com/course/excel-universidad-del-rosario-excel-basico-para-e-282426"><strong>Excel básico para emprendedores</strong></a> Universidad del Rosario via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/mining-sdg-academy-mining-and-materials-for-susta-277522"><strong>Mining and Materials for Sustainable Development Transformations</strong></a> SDG Academy via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/math-university-of-adelaide-maths-foundations-276440"><strong>Maths Foundations</strong></a> University of Adelaide via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/artificial-intelligence-ibm-developing-generative-292121"><strong>Developing Generative AI Applications with Python</strong></a> IBM via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/artificial-intelligence-davidson-and-galileo-intr-292535"><strong>Intro to AI for Digital Marketing</strong></a> Davidson College via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/design-university-of-alaska-fairbanks-3d-printing-283298"><strong>3D Printing Essentials: From Design to Reality</strong></a> University of Alaska Fairbanks via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/antimicrobial-databases-and-genotype-prediction-data-sharing-and-analysis-336538"><strong>Antimicrobial Databases and Genotype Prediction: Data Sharing and Analysis</strong></a> via FutureLearn</p>
<p><a target="_blank" href="https://www.classcentral.com/course/design-delft-university-of-technology-introductio-285530"><strong>AI in Architectural Design: Introduction</strong></a> Delft University of Technology via edX</p>
<p><a target="_blank" href="https://www.classcentral.com/course/gender-equality-diversity-in-forestry-related-sectors-288520"><strong>Gender Equality, Diversity &amp; Inclusion in Forestry-related Sectors (ForGEDI)</strong></a> University of Padova via FutureLearn</p>
<p><a target="_blank" href="https://www.classcentral.com/course/working-in-a-team-how-to-succeed-276817"><strong>Team Working: How to Succeed</strong></a> via FutureLearn</p>
<p><a target="_blank" href="https://www.classcentral.com/course/play-full-getting-creative-with-design-thinking-in-health-and-care-288521"><strong>Play Full: Getting Creative with Design Thinking in Health and Care</strong></a> via FutureLearn</p>
<h2 id="heading-more-free-courses"><strong>More Free Courses</strong></h2>
<p><img src="https://www.classcentral.com/report/wp-content/uploads/2021/12/free-certificates-banner.png" alt="free-certificates-banner" width="1024" height="512" loading="lazy"></p>
<p>If you don’t find what you need here, browse <a target="_blank" href="https://www.classcentral.com/"><strong>Class Central’s</strong></a> catalog of <a target="_blank" href="https://www.classcentral.com/subjects"><strong>over 250K courses</strong></a> or visit our thematic collections:</p>
<ul>
<li><p><a target="_blank" href="https://www.classcentral.com/report/cs-online-courses/"><strong>1200+ Free Computer Science Courses from World’s Top Universities</strong></a></p>
</li>
<li><p><a target="_blank" href="https://www.classcentral.com/report/wolfram-u-free-certificates/"><strong>40+ Free Certificates from Wolfram U</strong></a></p>
</li>
<li><p><a target="_blank" href="https://www.classcentral.com/report/free-google-certifications/"><strong>300 Free Google Certifications</strong></a></p>
</li>
<li><p><a target="_blank" 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 target="_blank" href="https://www.classcentral.com/report/open-university-free-certificates/"><strong>1000+ Open University Free Certificates</strong></a></p>
</li>
<li><p><a target="_blank" href="https://www.classcentral.com/report/futurelearn-free-certificates/"><strong>70+ FutureLearn Courses That Still Offer Free Certificates</strong></a></p>
</li>
</ul>
<p>You can find all our <a target="_blank" href="https://www.classcentral.com/report/tag/free-certificates/"><strong>free certificates articles here</strong></a>.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Learn to Code and Get a Developer Job [Full Book] ]]>
                </title>
                <description>
                    <![CDATA[ If you want to learn to code and get a job as a developer, you're in the right place. This book will show you how. And yes this is the full book – for free – right here on this page of freeCodeCamp. Also, I've recorded a FREE full-length audiobook ]]>
                </description>
                <link>https://www.freecodecamp.org/news/learn-to-code-book/</link>
                <guid isPermaLink="false">66b8d493f8e5d39507c4c102</guid>
                
                    <category>
                        <![CDATA[ book ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Career ]]>
                    </category>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ learn to code ]]>
                    </category>
                
                    <category>
                        <![CDATA[ self-improvement  ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Quincy Larson ]]>
                </dc:creator>
                <pubDate>Thu, 11 Jul 2024 23:52:00 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2023/06/Learn-to-Code-and-Get-a-Developer-Job-Book.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>If you want to learn to code and get a job as a developer, you're in the right place. This book will show you how.</p>
<p>And yes this is the full book – for free – right here on this page of freeCodeCamp.</p>
<p>Also, I've recorded a FREE full-length audiobook version of this book, which I published as episode #100 of The freeCodeCamp Podcast. You can search for it in your favorite podcast player. Be sure to subscribe. I've also embedded it below for your convenience.</p>
<div class="embed-wrapper"><iframe src="https://play.libsyn.com/embed/episode/id/28380047/height/192/theme/modern/size/large/thumbnail/yes/custom-color/2a4061/time-start/00:00:00/playlist-height/200/direction/backward/download/yes" height="192" width="100%" style="border:none" title="Embedded content" loading="lazy"></iframe></div>

<p>A few years back, one of the Big 5 book publishers from New York City reached out to me about a book deal. I met with them, but didn't have time to write a book.</p>
<p>Well, I finally had time. And I decided to just publish this book for free, right here on freeCodeCamp.</p>
<p>Information wants to be free, right? 🙂</p>
<p>It will take you a few hours to read all this. But this is it. My insights into learning to code and getting a developer job.</p>
<p>I learned all of this while:</p>
<ul>
<li>learning to code in my 30s</li>
<li>then working as a software engineer</li>
<li>then running freeCodeCamp.org for the past 8 years. Today, more than a million people visit this website each day to learn about math, programming, and computer science.</li>
</ul>
<p>I was an English teacher who had never programmed before. And I was able to learn enough coding to get my first software development job in just one year.</p>
<p>All without spending money on books or courses.</p>
<p>(I did spend money to travel to nearby cities and participate in tech events. And as you'll see later in the book, this was money well spent.)</p>
<p>After working as a software engineer for a few years, I felt ready. I wanted to teach other people how to make this career transition, too.</p>
<p>I built several technology education tools that nobody was interested in using. But then one weekend, I built freeCodeCamp.org. A vibrant community quickly gathered around it.</p>
<p>Along the way, we all helped each other. And today, people all around the world have used freeCodeCamp to prepare for their first job in tech.</p>
<p>You may be thinking: I don't know if I have time to read this entire book.</p>
<p>No worries. You can bookmark it. You can come back to it and read it across as many sittings as you need to.</p>
<p>And you can share it on social media. Sharing: "check out this book I'm reading" and linking to it is a surprisingly effective way to convince yourself to finish reading a book.</p>
<p>I say this because I'm not trying to sell you this book. You already "bought" this book when you opened this webpage. Now my goal is to reassure you that it <strong>will</strong> be worth investing your time to finish reading this book. 😉</p>
<p>I promise to be respectful of your time. There's no hype or fluff here – just blunt, actionable tips.</p>
<p>I'm going to jam as much insight as I can into every chapter of this book.</p>
<p>Which reminds me: where's the table of contents?</p>
<p>Ah. Here it is:</p>
<h2 id="heading-table-of-contents">Table of Contents</h2>
<ol>
<li><a class="post-section-overview" href="#heading-preface-who-is-this-book-for">Preface: Who is this book for?</a></li>
<li><a class="post-section-overview" href="#heading-500-word-executive-summary">500 Word Executive Summary</a></li>
<li><a class="post-section-overview" href="#heading-chapter-1-how-to-build-your-skills">Chapter 1: How to Build Your Skills</a></li>
<li><a class="post-section-overview" href="#heading-chapter-2-how-to-build-your-network">Chapter 2: How to Build Your Network</a></li>
<li><a class="post-section-overview" href="#heading-chapter-3-how-to-build-your-reputation">Chapter 3: How to Build Your Reputation</a></li>
<li><a class="post-section-overview" href="#heading-chapter-4-how-to-get-paid-to-code-freelance-clients-and-the-job-search">Chapter 4: How to Get Paid to Code – Freelance Clients and the Job Search</a></li>
<li><a class="post-section-overview" href="#heading-chapter-5-how-to-succeed-in-your-first-developer-job">Chapter 5: How to Succeed in Your First Developer Job</a></li>
<li><a class="post-section-overview" href="#heading-epilogue-you-can-do-this">Epilogue: You Can Do This</a></li>
</ol>
<h2 id="heading-preface-who-is-this-book-for">Preface: Who is This Book For?</h2>
<p>This book is for anyone who is considering a career in software development.</p>
<p>If you're looking for a career that's flexible, high-paying, and involves a lot of creative problem solving, software development may be for you.</p>
<p>Of course, each of us approaches our own coding journey with certain resources: <strong>time</strong>, <strong>money</strong>, and <strong>opportunity</strong>.</p>
<p>You may be older, and may have kids or elderly relatives you're taking care of. So you may have less <strong>time</strong>.</p>
<p>Or you may be younger, and may have had less time to build up any savings, or acquire skills that boost your income. So you may have less <strong>money</strong>.</p>
<p>And you may live far away from the major tech cities like San Francisco, Berlin, Tokyo, or Bengaluru.</p>
<p>Or you may live with disabilities, physical or mental. Agism, racism, and sexism are real. Immigration status can complicate the job search. So can a criminal record.</p>
<p>So you may have less <strong>opportunity</strong>.</p>
<p>Learning to code and getting a developer job is going to be harder for some people than it will be for others. Everyone approaches this challenge from their own starting point, with whatever resources they happen to have on hand.</p>
<p>But wherever you may be starting out from – in terms of time, money, and opportunity – I'll do my best to give you actionable advice.</p>
<p>In other words: don't worry – you are in the right place.</p>
<h4 id="heading-a-quick-note-on-terminology">A Quick Note on Terminology</h4>
<p>Whenever I use new terms, I'll do my best to define them.</p>
<p>But there are a few terms I'll be saying all the time.</p>
<p>I'll use the words "programming" and "coding" interchangeably.</p>
<p>I'll use the word "app" as it was intended – as shorthand for any sort of application, regardless of whether it runs on a phone, laptop, game console, or refrigerator. (Sorry, Steve Jobs. iPhone does not have a monopoly on the word app.)</p>
<p>I will also use the words "software engineer" and "software developer" interchangeably.</p>
<p>You may encounter people in tech who take issue with this. As though software engineering is some fancy-pants field with a multi-century legacy, like mechanical engineering or civil engineering are. Who knows – maybe that will be true for your grandkids. But we are still very much in the early days of software development as a field.</p>
<p>I'll just drop this quote here for you, in case you feel awkward calling yourself a software engineer:</p>
<blockquote>
<p>"If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization." – Gerald Weinberg, Programmer, Author, and University Professor</p>
</blockquote>
<h3 id="heading-can-anyone-learn-to-code">Can Anyone Learn to Code?</h3>
<p>Yes. I believe that any sufficiently motivated person can learn to code. At the end of the day, learning to code is a motivational challenge – not a question of aptitude.</p>
<p>On the savannas of Africa – where early humans lived for thousands of years before spreading to Europe, Asia, and the Americas – were there computers?</p>
<p>Programming skills were never something that was selected for over the millennia. Computers as we know them (desktops, laptops, smartphones) emerged in the 80s, 90s, and 00s.</p>
<p>Yes – I do believe that aptitude plays a part. But at the end of the day, anyone who wants to become a professional developer will need to put in time at the keyboard.</p>
<p>A vast majority of people who try to learn to code will get frustrated and give up.</p>
<p>I sure did. I got frustrated and gave up. Several times.</p>
<p>But like other people who eventually succeeded, I kept coming back after a few days, and tried again.</p>
<p>I say all this because I want to acknowledge: learning to code and getting a developer job is hard. And it's even harder for some people than others, due to circumstance.</p>
<p>I'm not going to pretend to have faced true adversity in learning to code. Yes, I was in my 30s, and I had no formal background in programming or computers science. But consider this:</p>
<p>I grew up middle class in the United States – a 4th-generation American from an English-speaking home. I went to university. My father went to university. And his father went to university. (His parents before him were farmers from Sweden.)</p>
<p>I benefitted from a sort of intergenerational privilege. A momentum that some families are able to pick up over time when they are not torn apart by war, famine, or slavery.</p>
<p>So that is my giant caveat to you: I am not some motivational figure to pump you up to overcome adversity.</p>
<p>If you need inspiration, there are a ton of people in the developer community who have overcome real adversity. You can seek them out.</p>
<p>I'm not trying to elevate the field of software development. I'm not going to paint pictures of science fiction utopias that can come about if everyone learns to code.</p>
<p>Instead, I'm just going to give you practical tips for how you can acquire these skills. And how you can go get a good job, so you can provide for your family.</p>
<p>There's nothing wrong with learning to code because you want a good, stable job.</p>
<p>There's nothing wrong with learning to code so you can start a business.</p>
<p>You may encounter people who say that you must be so passionate about coding that you dream about it. That you clock out of your full-time job, then spend all weekend contributing to open source projects.</p>
<p>I do know people who are <em>that</em> passionate about coding. But I also know plenty of people who, after finishing a hard week's work, just want to go spend time in nature, or play board games with friends.</p>
<p>People generally enjoy doing things they're good at doing. And you can develop a reasonable level of passion for coding just by getting better at coding.</p>
<p>So in short: who is this book for? Anyone who wants to get better at coding, and get a job as a developer. That's it.</p>
<p>You don't need to be a self-proclaimed "geek", an introvert, or an ideologically-driven activist. Or any of those stereotypes.</p>
<p>It's fine if you are. But you don't need to be.</p>
<p>So if that's you – if you're serious about learning to code well enough to get paid to code – this book is for you.</p>
<p>And you should start by reading this quick summary of the book. And then reading the rest of it.</p>
<h2 id="heading-500-word-executive-summary">500 Word Executive Summary</h2>
<p>Learning to code is hard. Getting a job as a software developer is even harder. But for many people, it's worth the effort.</p>
<p>Coding is a high-paying, intellectually challenging, creatively rewarding field. There is a clear career progression ahead of you: senior developer, tech lead, engineering manager, CTO, and perhaps even CEO.</p>
<p>You can find work in just about any industry. About two thirds of developer jobs are outside of what we traditionally call "tech" – in agriculture, manufacturing, government, and service industries like banking and healthcare.</p>
<p>If you're worried your job might be automated before you reach retirement, consider this: coding is the act of automating things. Thus it is by definition the last career that will be completely automated.</p>
<p>Automation will impact coding. It already has. For decades.</p>
<p>Generative AI tools like GPT-4 and Copilot can help us move from Imperative Programming – where you tell computers exactly what to do – closer to Declarative Programming – where you give computers higher-level objectives. In other words: Star Trek-style programming.</p>
<p>You should still learn math even though we now have calculators. And you should still learn programming even though we now have AI tools that can write code.</p>
<p>Have I sold you on coding as a career for you?</p>
<p>Good. Here's how to break into the field.</p>
<h3 id="heading-build-your-skills">Build your skills.</h3>
<p>You need to learn:</p>
<ul>
<li>Front End Development: HTML, CSS, JavaScript</li>
<li>Back End Development: SQL, Git, Linux, and Web Servers</li>
<li>Scientific Computing: Python and its many libraries</li>
</ul>
<p>These are all mature, 20+ year old technologies. Whichever company you work for, you will almost certainly use most of these tools.</p>
<p>The best way to learn these tools is to build projects. Try to code at least some every day. If you do the freeCodeCamp curriculum from top to bottom, you'll learn all of this and build dozens of projects.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/Learn_to_Code_-_For_Free_-_Coding_Courses_for_Busy_People_--.png" alt="Image" width="600" height="400" loading="lazy">
<em>Some of the certifications in the freeCodeCamp core curriculum.</em></p>
<h3 id="heading-build-your-network">Build your network.</h3>
<p>So much of getting a job is who you know.</p>
<p>It's OK to be an introvert, but you do need to push your boundaries.</p>
<p>Create GitHub, Twitter, LinkedIn, and Discord accounts.</p>
<p>Go to tech meetups and conferences. Travel if you have to. (Most of your "learn to code" budget should go toward travel and event tickets – not books and courses.)</p>
<p>Greet people who are standing by themselves. Let others do most of the talking, and really listen. Remember people's names.</p>
<p>Add people on LinkedIn, follow them on Twitter, and go to after-parties.</p>
<h3 id="heading-build-your-reputation">Build your reputation.</h3>
<p>Share short video demos of your projects.</p>
<p>Keep applying to speak at bigger and bigger conferences.</p>
<p>Hang out at hackerspaces and help people who are even newer to coding than you.</p>
<p>Contribute to open source. The work is similar to professional software development.</p>
<p><strong>Build your Skills, Network, and Reputation at the same time.</strong> Don't let yourself procrastinate the scariest parts.</p>
<p>Instead of applying for jobs through the "front door" use your network to land job interviews through the "side door." Recruiters can help, too.</p>
<p>Keep interviewing until you start getting job offers. You don't need to accept the first offer you get, though. Be patient.</p>
<p>Your first developer job will be the hardest. Try to stay there for at least 2 years, and essentially get paid to learn.</p>
<p>The real learning begins once you're on-the-job, working alongside a team, and with large legacy codebases.</p>
<p>Most importantly, sleep and exercise.</p>
<p>Any sufficiently-motivated person can learn to code well enough to get a job as a developer.</p>
<p>It's just a question of how badly you want it, and how persistent you can be in the job search.</p>
<p>Remember: you can do this.</p>
<h2 id="heading-this-book-is-dedicated-to-the-global-freecodecamp-community">This Book is Dedicated to the Global freeCodeCamp Community.</h2>
<p>Thank you to all of you who have supported our charity and our mission over the past 9 years.</p>
<p>It is through your volunteerism and through your philanthropy that we've been able to help so many people learn to code and get their first developer job.</p>
<p>The community has grown so much from the humble open source project I first deployed in 2014. I am now just a small part of this global community.</p>
<p>It is a privilege to still be here, working alongside you all. Together, we face the fundamental problems of our time. Access to information. Access to education. And access to the tools that are shaping the future.</p>
<p>These are still early days. I have no illusion that everyone will know how to code within my lifetime. But just like the Gutenberg Bible accelerated literacy in 1455, we can continue to accelerate technology literacy through free, open learning resources.</p>
<p>Again, thank you all.</p>
<p>And special thanks to Abbey Rennemeyer for her editorial feedback, and to Estefania Cassingena Navone for designing the book cover.</p>
<p>And now, the book.</p>
<h2 id="heading-chapter-1-how-to-build-your-skills">Chapter 1: How to Build Your Skills</h2>
<blockquote>
<p>"Every artist was first an amateur." ― Ralph Waldo Emerson</p>
</blockquote>
<p>The road to knowing how to code is a long one.</p>
<p>For me, it was an ambiguous one.</p>
<p>But it doesn't have to be like that for you.</p>
<p>In this chapter, I'm going to share some strategies for learning to code as smoothly as possible.</p>
<p>First, allow me to walk you through how I learned to code back in 2011.</p>
<p>Then I'll share what I learned from this process.</p>
<p>I'll show you how to learn much more efficiently than I did.</p>
<h3 id="heading-story-time-how-did-a-teacher-in-his-30s-teach-himself-to-code">Story Time: How Did a Teacher in His 30s Teach Himself to Code?</h3>
<p>I was a teacher running an English school. We had about 100 adult-aged students who had traveled to California from all around the world. They were learning advanced English so they could get into grad school.</p>
<p>Most of our school's teachers loved teaching. They loved hanging out with students around town, and helping them improve their conversational English.</p>
<p>What these teachers didn't love was paperwork: Attendance reports. Grade reports. Immigration paperwork.</p>
<p>I wanted our teachers to be able to spend more time with students. And less time chained to their desks doing paperwork.</p>
<p>But what did I know about computers?</p>
<p>Programming? Didn't you have to be smart to do that? I could barely configure a WiFi router. And I sucked at math.</p>
<p>Well one day I just pushed all that aside and thought "You know what: I'm going to give it a try. What do I have to lose?"</p>
<p>I started googling questions like "how to automatically click through websites." And "how to import data from websites into Excel."</p>
<p>I didn't realize it at the time, but I was learning how to automate workflows.</p>
<p>And the learning began. First with Excel macros. Then with a tool called AutoHotKey where you can program your mouse to move to certain coordinates of a screen, click around, copy text, then move to different coordinates and paste it.</p>
<p>After a few weeks of grasping in the dark, I figured out how to automate a few tasks. I could open an Excel spreadsheet and a website, run my script, then come back 10 minutes later and the spreadsheet would be fully populated.</p>
<p>It was the work of an amateur. What developers might call a "dirty hack". But it got the job done.</p>
<p>I used my newfound automation skills to continue streamlining the school.</p>
<p>Soon teachers barely had to touch a computer. I was doing the work of several teachers, just with my rudimentary skills.</p>
<p>This had a visible impact on the school. So much of our time had been tied up with rote work on the computer. And now we were free.</p>
<p>The teachers were happier. They spent more time with students.</p>
<p>The students were happier. They told all their friends back in their home country "you've got to check out this school."</p>
<p>Soon we were one of the most successful schools in the entire school system.</p>
<p>This further emboldened me. I remember thinking to myself: "Maybe I <strong>can</strong> learn to code."</p>
<p>I knew some software engineers from my board game night. They had traditional backgrounds, with degrees from Cal Tech, Harvey Mudd, and other famous Computer Science programs.</p>
<p>At the time, it was far less common for people in their 30s to learn to code.</p>
<p>I worked up the courage to share my dreams with some of these friends.</p>
<p>I wanted to learn to how program properly. I wanted to be able to write code for a living like they did. And to maybe even write software that could power schools.</p>
<p>I would share these dreams up with my developer friends. "I want to do what you do."</p>
<p>But they would sort of shrug. Then they'd say something like:</p>
<p>"I mean, you could try. But you're going to have to drink an entire ocean of knowledge."</p>
<p>And: "It's a pretty competitive field. How are you going to hang with people who grew up coding from an early age?"</p>
<p>And: "You're already doing fine as a teacher. Why don't you just stick with what you're good at?"</p>
<p>And that would knock me off course for a few weeks. I would go on long, soul-searching walks at night. I would ponder my future under the stars. Were these people right? I mean – they would know, right?</p>
<p>But every morning I'd be back at my desk. Watching my scripts run. Watching my reports compile themselves at superhuman speeds. Watching as my computer did my bidding.</p>
<p>A thought did occur to me: maybe these friends were just trying to save me from heartache. Maybe they just don't know anyone who learned to code in their 30s. So they don't think it's possible.</p>
<p>It's like... for years doctors thought that it would be impossible for someone to run a mile in 4 minutes. They thought your heart would explode from running so fast.</p>
<p>But then somebody managed to do it. And his heart did not explode.</p>
<p>Once Roger Bannister – a 25-year old Oxford student – broke that psychological barrier – a ton of other people did it, too. To date, more than 1,000 people have run a sub-4 minute mile.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/Roger-Bannister-1951_jpg__1269-1600_.png" alt="Image" width="600" height="400" loading="lazy">
<em>Roger Bannister running like a a champ. (Image: Britannica)</em></p>
<p>And it's not like I was doing something as bold and unprecedented as running a 4 minute mile here. Plenty of famous developers have managed to teach themselves coding over the years.</p>
<p>Heck, Ada Lovelace taught herself programming in the 1840s. And she didn't even have a working computer. She just had an understanding of how her friend Charles Babbage's computer would work in theory.</p>
<p>She wrote several of the first computer algorithms. And she's widely regarded as the world's first computer programmer. Nobody taught her. Because there was nobody to teach her. Whatever self doubt she may have had, she clearly overcame it.</p>
<p>Now, I was no Ada Lovelace. I was just some teacher who already had a working computer, a decent internet connection, and the ability to search through billions of webpages with Google.</p>
<p>I cracked my knuckles and narrowed my gaze. I was going to do this.</p>
<h3 id="heading-stuck-in-tutorial-hell">Stuck in Tutorial Hell</h3>
<blockquote>
<p>"If you work for 10 years, do you get 10 years of experience or do you get 1 year of experience 10 times? You have to reflect on your activities to get true experience. If you make learning a continuous commitment, you’ll get experience. If you don’t, you won’t, no matter how many years you have under your belt." – Steve McConnell, Software Engineer</p>
</blockquote>
<p>I spent the next few weeks googling around, and doing random tutorials that I encountered online.</p>
<p>Oh look, a Ruby tutorial.</p>
<p>Uh-oh, it's starting to get hard. I'm getting error messages not mentioned in the tutorial. Hm... what's going on here...</p>
<p>Oh look, a Python tutorial.</p>
<p>Human psychology is a funny thing. The moment something starts to get hard, we ask: am I doing this right?</p>
<p>Maybe this tutorial is out of date. Maybe its author didn't know what they were talking about. Does anybody even still use this programming language?</p>
<p>When you're facing ambiguous error messages hours into a coding session, the grass on the other side starts to look a lot greener.</p>
<p>It was easy to pretend I'd made progress. Time to go grab lunch.</p>
<p>I'd see a friend at the café. "How's your coding going?" they'd ask.</p>
<p>"It's going great. I already coded 4 hours today."</p>
<p>"Awesome. I'd love to see what you're building sometime."</p>
<p>"Sure thing," I'd say, knowing that I'd built nothing. "Soon."</p>
<p>Maybe I'd go to the library and check out a new JavaScript book.</p>
<p>There's that old saying that buying books gives you the best feeling in the world. Because it also feels like you're buying the time to read them.</p>
<p>And this is precisely where I found myself a few weeks into learning to code.</p>
<p>I had read the first 100 pages of several programming books, but finished none.</p>
<p>I had written the first 100 lines of code from several programming tutorials, but finished none.</p>
<p>I didn't know it, but I was trapped in place that developers lovingly call "tutorial hell."</p>
<p>Tutorial hell is where you jump from one tutorial to the next, learning and then relearning the same basic things. But never really going beyond the fundamentals.</p>
<p>Because going beyond the fundamentals? Well, that requires some real work.</p>
<h3 id="heading-it-takes-a-village-to-raise-a-coder">It Takes a Village to Raise a Coder</h3>
<p>Learning to code was absorbing all of my free time. But I wasn't making much progress. I could now type the <code>{</code> and <code>*</code> characters without looking at the keyboard. But that was about it.</p>
<p>I knew I needed help. Perhaps some Yoda-like mentor, who could teach me the ways. Yes – if such a person existed, surely that would make all the difference.</p>
<p>I found out about a nearby place called a "hackerspace." When I first heard the name, I was a bit apprehensive. Don't hackers do illegal things? I was an English teacher who liked playing board games. I was not looking for trouble.</p>
<p>Well I called the number listed and talked with a guy named Steve. I nervously asked: "You all don't do anything illegal, do you?" And Steve laughed.</p>
<p>It turns out the word "hack" is what he called an overloaded term. Yes – "to hack" can mean to maliciously break into a software system. But "to hack" can also mean something more mundane: to write computer code.</p>
<p>Something can be "hacky" meaning it's not an elegant solution. And yet you can have "a clever hack" – an ingenious trick to make your code work more efficiently.</p>
<p>In short: don't be scared of the term "hack."</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/1200x-1_jpg__1200-797_.png" alt="Image" width="600" height="400" loading="lazy">
<em>Facebook's corporate campus has the word "hack" written in giant letter on the concrete. (Image: Bloomberg)</em></p>
<p>I, for one, scarcely use the term because it's so confusing. And I think recently a lot of hackerspaces have picked up on the ambiguity. Many of them now call themselves "makerspaces" instead.</p>
<p>Because that's what a hackerspace is all about – making things.</p>
<p>Steve invited me to visit the hackerspace on Saturday afternoon. He said several developers from the area would be there.</p>
<p>The first time I walked through the doors of the Santa Barbara Hackerspace, I was blown away.</p>
<p>The place smelled like an electric fire. Its makeshift tables were lined with soldering irons, strips of LED lights, hobbyist Arduino circuit boards, and piles of Roomba vacuum robots.</p>
<p>The same Steve I'd spoken to on the phone was there, and he greeted me. He had glasses, slicked back hair, and a goatee beard. He was always smiling. And when you asked him a question, instead of responding quickly, he would nod and think for a few seconds first.</p>
<p>Steve was a passionate programmer who had studied math and philosophy at the University of California – Santa Barbara. He was still passionate about those subjects. But his real passion was Python.</p>
<p>Steve turned on the projector and gave an informal "lightning talk." He was demoing an app he'd written that would recognize QR codes in a video and replace them with images.</p>
<p>Someone in the audience pulled up a QR code on their laptop and held it in front of the camera. Steve's app then replaced the QR code with a picture of a pizza.</p>
<p>Somebody in the audience shouted, "Can you make the pizza spin?"</p>
<p>Steve opened up his code in a code editor, called Emacs, and started making changes to it in real time. He effortlessly tabbed between his code editor, his command line, and the browser the app was running in, "hot loading" updates to the code.</p>
<p>For me, this was sorcery. I couldn't believe Steve had just busted out that app over the course of few hours. And now he was adding new features on the fly, as the audience requested them.</p>
<p>I thought: "This guy is a genius."</p>
<p>And that evening, after the event ended, he and I stayed after and I told him so.</p>
<p>We ate sandwiches together. And I said to him: "I could code for my entire career and not be as good as you. I would be thrilled if after 10 years I could code even half as well as you."</p>
<p>But Steve pushed back. He said, "I'm nothing special. Don't limit yourself. If you stick with coding, you could easily surpass me."</p>
<p>Now, I didn't for a second believe the words he said to me. But just the fact that he said it gave me butterflies.</p>
<p>Here he was: a developer who believed in me. He saw me – some random teacher – the very definition of a "script kiddie" – and thought I could make it.</p>
<p>Steve and I talked late into the night. He showed me his $200 netbook computer, which even by 2011 standards was woefully underpowered.</p>
<p>"You don't need a powerful computer to build software," Steve told me. "Today's hardware is incredibly powerful. Computers are only slow because the bloated software they run makes them slow. Get an off-the-shelf laptop, wipe the hard drive, install Linux on it, and start coding."</p>
<p>I took note of the model of laptop he had and ordered the exact same one when I got home that night.</p>
<p>After a few days of debugging my new computer with Stack Overflow, I successfully installed Ubuntu. I started learning how to use the Emacs code editor. By the following Saturday, I knew a few commands, and was quick to show them off.</p>
<p>Steve nodded in approval. He said, "Awesome. But what are you building?"</p>
<p>I didn't understand what he meant. "I'm learning how to use Emacs. Check it out. I memorized..."</p>
<p>But Steve looked pensive. "That's cool and all. But you need a project. Always have a project. Then learn what you need to learn en route to finishing that project."</p>
<p>Other than a few scripts I'd written for to help the teachers at my school, I had never finished anything. But I started to see what he was saying. </p>
<p>And it started to dawn on me. All this time I had been trapped in tutorial hell, going in circles, finishing nothing.</p>
<p>Steve said, "I want you to build a project using HTML5. And next Saturday, I want you to present it at the hackerspace."</p>
<p>I was mortified at his words. But I stood up straight and said. "Sounds like a plan. I'm on it."</p>
<h3 id="heading-nobody-can-make-you-a-developer-but-you">Nobody Can Make You a Developer But You</h3>
<blockquote>
<p>"I'm trying to free your mind, Neo. But I can only show you the door. You're the one that has to walk through it." – Morpheus in the 1999 film The Matrix</p>
</blockquote>
<p>The next morning, I woke up extra early before work and googled something like "HTML5 tutorial." I already knew a lot of this from my previous time in tutorial hell. But instead of skipping ahead, I just slowed my roll and followed along exactly, typing every single command.</p>
<p>Usually once I finished a tutorial I would just go find another tutorial. But instead, I started playing with the tutorial's code. I had a simple idea for a project. I was going to make an HTML5 documentation page. And I was going to code it purely in HTML5.</p>
<p>Let me explain HTML5 real quick. It's just a newer version of HTML, which has existed since the first webpages back in the 1990s.</p>
<p>If a website was a body, HTML would be the bones. Everything else rests on top of those bones. (You can think of JavaScript as the muscles and CSS as the skin. But let's get back to the story.)</p>
<p>I knew that in HTML, you could link to different parts of the same webpage by using ID properties. So I thought: what if I put a table of contents along the left hand side? Then clicking the different items on the left would scroll down the page on the right to show those items.</p>
<p>Within half an hour, I had coded a rough prototype.</p>
<p>But it was time to report for work at the school. The entire day, all I could think about was my project, and how I should best go about finishing it.</p>
<p>I raced home, opened up my laptop, and spent the entire evening coding.</p>
<p>I copied the official (and creative commons-licensed) HTML documentation directly into my page, "hard coding" it into the HTML.</p>
<p>Then I spent about an hour on the CSS, getting everything to look right, and using absolute positioning to keep the sidebar in place.</p>
<p>I made a point to make use of as many of HTML5's new "semantic" tags as I could.</p>
<p>And boom – project finished.</p>
<p>A wave of accomplishment washed over me. I jogged to a nearby football field and ran laps around the field, celebrating. I did it. I finished a project.</p>
<p>And I decided right then and there: from here on out, everything I do is going to be a project. I'm going to be working toward some finished product.</p>
<p>The next evening I walked up to the podium, plugged in my laptop, and presented my HTML5 webpage. I answered questions from the developers there about HTML5.</p>
<p>Sometimes I'd get something wrong, and someone in the audience would say, "that doesn't sound right – let me check the documentation."</p>
<p>People weren't afraid to correct me. But they were polite and supportive. It didn't even feel like they were correcting me – it felt like they were correcting the public record – lest someone walk away with incorrect information.</p>
<p>I didn't feel any of the anxiety that I might have felt giving a talk at a teacher in-service meeting.</p>
<p>Instead I almost felt like I was part of the audience, learning alongside them.</p>
<p>After all, these tools were new and emerging. We were all trying to understand how to use them together.</p>
<p>After my talk, Steve came up to me and said, "Not bad."</p>
<p>I smiled for an awkwardly long time, not saying anything, just happy with myself.</p>
<p>Then Steve squinted and pursed his lips. He said: "Start your next project tonight."</p>
<h3 id="heading-lessons-from-my-coding-journey">Lessons from my Coding Journey</h3>
<p>We'll check in on younger Quincy's coding journey in each of the following chapters. But now I want to break down some of the lessons here. And I want to answer some of the questions you may have.</p>
<h3 id="heading-why-is-learning-to-code-so-hard">Why is Learning to Code so Hard?</h3>
<p>Learning any new skill is hard. Whether it's dribbling a soccer ball, changing the oil on a car, or speaking a new language.</p>
<p>Learning to code is hard for a few particular reasons. And some of these are unique to coding.</p>
<p>The first one is that most people don't understand exactly what coding is. Well, I'm going to tell you.</p>
<h3 id="heading-what-is-coding">What is coding?</h3>
<p>Coding is telling a computer what to do, in a way the computer can understand.</p>
<p>That's it. That's all coding really is.</p>
<p>Now, make no mistake. Communicating with computers is hard. They are "dumb" by human standards. They will do exactly what you tell them to do. But unless you're good at coding, they are probably not going to do what you <strong>want</strong> them to do.</p>
<p>You may be thinking: what about servers? What about databases? What about networks?</p>
<p>At the end of the day, these are all controlled by layers of software. Code. It's code all the way down. Eventually you reach the physical hardware, which is moving electrons around circuit boards.</p>
<p>For the first few decades of computing, developers wrote code that was "close to the metal" – often operating on the hardware directly, flipping bits from 0 to 1 and back.</p>
<p>But contemporary software development involves so many "layers of abstraction" – programs running on top of programs – that just a few lines of JavaScript code can do some really powerful things.</p>
<p>In the 1960s, a "bug" could be an insect crawling around inside a room-sized computer, and getting fried in one of the circuits.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/First_Computer_Bug-_1945.jpeg" alt="Image" width="600" height="400" loading="lazy">
<em>The first computer bug, discovered in 1945, was a moth that got trapped in the panels of a room-sized calculator computer at Harvard. (Image: Public Domain)</em></p>
<p>Today, we're writing code so many layers of abstraction above the physical hardware.</p>
<p>That is coding. It's vastly easier than it has ever been in the past. And it is getting easier to do every year. </p>
<p>I am not exaggerating when I say that in a few decades, coding will be so easy and so common that most younger people will know how to do it.</p>
<h2 id="heading-why-is-learning-to-code-still-so-hard-after-all-these-years">Why is learning to code still so hard after all these years?</h2>
<p>There are three big reasons why learning to code is so hard, even today:</p>
<ol>
<li>The tools are still primitive.</li>
<li>Most people aren't good at handling ambiguity, and learning to code is ambiguous. People get lost.</li>
<li>Most people aren't good at handling constant negative feedback. And learning to code is one brutal error message after another. People get frustrated.</li>
</ol>
<p>Now I'll discuss each of these difficulties in more detail. And I'll give you some practical strategies for overcoming each of them.</p>
<h3 id="heading-the-tools-are-still-primitive">The Tools are Still Primitive</h3>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/TNG-S4E19-171.jpeg" alt="Image" width="600" height="400" loading="lazy">
<em>A Possessed Barclay from Star Trek: The Next Generation, programming on the Holodeck.</em></p>
<blockquote>
<p>"Computer. Begin new program. Create as follows. Work station chair. Now create a standard alphanumeric console positioned to the left hand. Now an iconic display console for the right hand. Tie both consoles into the Enterprise main computer core, utilizing neuralscan interface." - Barclay from Star Trek: The Next Generation, Season 4 Episode 19: "The Nth Degree"</p>
</blockquote>
<p>This is how people might program in the future. It's an example from my favorite science fiction TV show, Star Trek: The Next Generation.</p>
<p>Every character in Star Trek can code. Doctors, security officers, pilots. Even little Wesley Crusher (played by child actor Wil Wheaton) can get the ship's computer to do his bidding.</p>
<p>Sure – one of the reasons everyone can code is that they live in a post-scarcity 24th-century society, with access to free high quality education.</p>
<p>Another reason is that in the future, coding will be much, much easier. You just tell a computer precisely what to do, and – if you're precise enough – the computer does it.</p>
<p>What if programming was as easy as just saying instructions to a computer in plain English?</p>
<p>Well, we've already made significant progress toward this goal. Think of our grandmothers, running between room-sized mainframe computers with stacks of punchcards.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/naca-computer-operates-an-ibm-telereader-5b6f9f-1024.jpeg" alt="Image" width="600" height="400" loading="lazy">
<em>Working with a punchcard-based computer in the 1950s (Image: NASA)</em></p>
<p>It used to be that programming even a simple application would require meticulous instructions.</p>
<p>Here are two examples of a "Cesar Cypher", the classic computer science homework project.</p>
<p>This is also known as "ROT-13" because you ROTate the letters by 13 positions. For example, A becomes N (13 letters after A), and B becomes O (13 letters after B).</p>
<p>I'm going to show you two examples of this program.</p>
<p>First, here's the program in x86 Assembly:</p>
<pre><code class="lang-x86">format     ELF     executable 3
entry     start

segment    readable writeable
buf    rb    1

segment    readable executable
start:    mov    eax, 3        ; syscall "read"
    mov    ebx, 0        ; stdin
    mov    ecx, buf    ; buffer for read byte
    mov    edx, 1        ; len (read one byte)
    int    80h

    cmp    eax, 0        ; EOF?
    jz    exit

    xor     eax, eax    ; load read char to eax
    mov    al, [buf]
    cmp    eax, "A"    ; see if it is in ascii a-z or A-Z
    jl    print
    cmp    eax, "z"
    jg    print
    cmp    eax, "Z"
    jle    rotup
    cmp    eax, "a"
    jge    rotlow
    jmp    print

rotup:    sub    eax, "A"-13    ; do rot 13 for A-Z
    cdq
    mov    ebx, 26
    div    ebx
    add    edx, "A"
    jmp    rotend

rotlow:    sub    eax, "a"-13    ; do rot 13 for a-z
    cdq
    mov    ebx, 26
    div    ebx
    add    edx, "a"

rotend:    mov    [buf], dl

print:     mov    eax, 4        ; syscall write
    mov    ebx, 1        ; stdout
    mov    ecx, buf    ; *char
    mov    edx, 1        ; string length
    int    80h

    jmp    start

exit:     mov     eax,1        ; syscall exit
    xor     ebx,ebx        ; exit code
    int     80h
</code></pre>
<p>This x86 Assembly example comes from the Creative Commons-licensed Rosetta Code project.</p>
<p>And here's the same program, written in Python:</p>
<pre><code class="lang-py"><span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">rot13</span>(<span class="hljs-params">text</span>):</span>
    result = []

    <span class="hljs-keyword">for</span> char <span class="hljs-keyword">in</span> text:
        ascii_value = ord(char)

        <span class="hljs-keyword">if</span> <span class="hljs-string">'A'</span> &lt;= char &lt;= <span class="hljs-string">'Z'</span>:
            result.append(chr((ascii_value - ord(<span class="hljs-string">'A'</span>) + <span class="hljs-number">13</span>) % <span class="hljs-number">26</span> + ord(<span class="hljs-string">'A'</span>)))
        <span class="hljs-keyword">elif</span> <span class="hljs-string">'a'</span> &lt;= char &lt;= <span class="hljs-string">'z'</span>:
            result.append(chr((ascii_value - ord(<span class="hljs-string">'a'</span>) + <span class="hljs-number">13</span>) % <span class="hljs-number">26</span> + ord(<span class="hljs-string">'a'</span>)))
        <span class="hljs-keyword">else</span>:
            result.append(char)

    <span class="hljs-keyword">return</span> <span class="hljs-string">''</span>.join(result)

<span class="hljs-keyword">if</span> __name__ == <span class="hljs-string">"__main__"</span>:
    input_text = input(<span class="hljs-string">"Enter text to be encoded/decoded with ROT-13: "</span>)
    print(<span class="hljs-string">"Encoded/Decoded text:"</span>, rot13(input_text))
</code></pre>
<p>This is quite a bit simpler and easier to read, right? </p>
<p>This Python example comes straight from GPT-4. I prompted it the same way Captain Picard would prompt the ship's computer in Star Trek.</p>
<p>Here's exactly what I said to it: "Computer. New program. Take each letter of the word I say and replace it with the letter that appears 13 positions later in the English alphabet. Then read the result back to me. The word is Banana." </p>
<p>GPT-4 produced this Python code, and then read the result back to me: "Onanan."</p>
<p>What we're doing here is called Declarative Programming. We're declaring "computer, you should do this." And the computer is smart enough to understand our instructions and execute them.</p>
<p>Now, the style of coding most developers use today is Imperative Programming. We're telling the computer exactly what to do, step-by-step. Because historically, computers have been pretty dumb. So we've had to help them put one foot in front of the other.</p>
<p>The field of software development just isn't mature yet. </p>
<p>But just like early human tools advanced – from stone to bronze to iron – the same is happening with software tools. And much faster.</p>
<p>We're probably still in the programming equivalent of the Bronze Age right now. But we may reach the Iron Age in our lifetime. Generative AI tools like GPT are quickly becoming more powerful and more reliable.</p>
<p>The developer community is still divided on how useful tools like GPT will be for software development.</p>
<p>On one side, you have the "become your own boss" entrepreneur influencers who say things like: "You don't need to learn to code anymore. ChatGPT can write all your code for you. You just need an app idea."</p>
<p>And on the other side of the spectrum, you have "old guard" developers with decades of programming experience – many of whom are skeptical that tools like GPT are really all that useful for producing production-grade code.</p>
<p>As with most things, the real answer is probably somewhere in between.</p>
<p>You don't have to look hard to find YouTube videos of people who start with an app idea, then prompt ChatGPT for the code they need. Some people can even take that code and wire it together into an app that works.</p>
<p>Large Language Models like GPT-4 are impressive, and the speed at which they're improving is even more impressive. </p>
<p>Still, many developers are skeptical about how useful these tools will ultimately become. They question whether we'll be able to get AIs to stop "hallucinating" false information.</p>
<p>This is the fundamental problem of "Interpretability." It could be decades before we truly understand what's going on inside of a black box AI like GPT-4. And until we do, we should double check everything it says, and assume there will be lots of bugs and security flaws in the code that it gives us.</p>
<p>There's a big difference from being able to get a computer to do something for you, and actually understanding how the computer is doing it.</p>
<p>Many people can operate a car. But far fewer can repair a car – let alone design a new car from the ground up.</p>
<p>If you want to be able to develop powerful software systems that solve new problems – and you want those systems to be fast and secure – you're still going to need to learn how to code properly.</p>
<p>And that means feeling your way through a lot of ambiguity.</p>
<h3 id="heading-learning-to-code-is-an-ambiguous-process">Learning to Code is an Ambiguous Process</h3>
<p>When you're learning to code, you constantly ask yourself: "Am I spending my time wisely? Am I learning the right tools? Do these book authors / course creators even know what they're talking about?"</p>
<p>Ambiguity fogs your every study session. "Did my test case fail because the tutorial is out of date, and there have been breaking changes to the framework I'm using? Or am I just doing it wrong?"</p>
<p>As I mentioned earlier with Tutorial Hell, you also have to cope with "grass is greener on the other side" disease.</p>
<p>This is compounded by the fact that some developers think it's clever to answer questions with "RTFM" which means "Read the Freaking Manual." Not super helpful. Which manual? Which section?</p>
<p>Another problem is: you don't know what you don't know. Often you can't even articulate the question you're trying to ask.</p>
<p>And if you can't even ask the right question, you're going to thrash.</p>
<p>This is extra hard with coding because it's possible no one has attempted to build quite the same app that you're building.</p>
<p>And thus some of the problems you encounter may be unprecedented. There may be no one to turn to.</p>
<p>15% of the queries people type into Google every day have never ever been searched before. That's bad news if you're the person typing one of those.</p>
<p>My theory is that most developers will figure out how to solve a problem and simply move on, without ever documenting it anywhere. So you may be one of dozens of developers who has had to invent their own solution to the same exact problem.</p>
<p>And then, of course, there are the old forum threads and StackOverflow pages.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/wisdom_of_the_ancients_png__485-270_.png" alt="Image" width="600" height="400" loading="lazy">
<em>Comic by XKCD</em></p>
<h3 id="heading-how-not-to-get-lost-when-learning-to-code">How Not to Get Lost When Learning to Code</h3>
<p>The good news is: both <strong>competence</strong> and <strong>confidence</strong> come with practice.</p>
<p>Soon you'll know exactly what to google. You'll get a second sense for how documentation is usually structured, and where to look for what. And you'll know where to ask which questions.</p>
<p>I wish there were a simpler solution to the ambiguity problem. But you just need to accept it. Learning to code is an ambiguous process. And even experienced developers grapple with ambiguity.</p>
<p>After all, coding is the rare profession where you can just infinitely reuse solutions to problems you've previously encountered.</p>
<p>Thus as a developer, you are always doing something you've never done before.</p>
<p>People think software development is about typing code into a computer. But it's really about learning.</p>
<p>You're going to spend a huge portion of your career just thinking really hard. Or blindly inputting commands into a prompt trying to understand how a system works.</p>
<p>And you're going to spend a lot of time in meetings with other people: managers, customers, fellow devs. Learning about the problem that needs to be solved, so you can build a solution to it.</p>
<p>Get comfortable with ambiguity and you will go far.</p>
<h3 id="heading-learning-to-code-is-one-error-message-after-another">Learning to Code is One Error Message After Another</h3>
<p>A lot of people who are learning to code feel like they hit a wall. Progress does not come as fast as they expect.</p>
<p>One huge reason for this: in programming, the feedback loop is much tighter than in other fields.</p>
<p>In most schools, your teacher will give you assignments, then grade those assignments and give them back to you. Over the course of a semester, you may only have a dozen instances where you get feedback.</p>
<p>"Oh no, I really bombed that exam," you might say to yourself. "I need to study harder for the midterm."</p>
<p>Maybe your teacher will leave notes in red ink on your paper to help you improve your work.</p>
<p>Getting a bad grade on an exam or paper can really ruin your day.</p>
<p>And that's how we generally think about feedback as humans.</p>
<p>If you've spent much time coding, you know that computers are quite fast. They can execute your code within a few milliseconds.</p>
<p>Most of the time your code will crash.</p>
<p>If you're lucky, you'll get an error message.</p>
<p>And if you're really lucky, you'll get a "stack trace" – everything the computer was trying to do when it encountered the error – along with a line number for the piece of code that caused the program to crash.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/oh-my-zsh-stack-trace-error.jpg" alt="A stack trace error message while running freeCodeCamp locally." width="600" height="400" loading="lazy"></p>
<p>Now this in-your-face negative feedback from a computer. Not everyone can handle it seeing this over and over all day long.</p>
<p>Imagine if every time you handed your teacher your term paper, they handed it back with big red "F" written on it. And imagine they did this before you could even blink. Over and over.</p>
<p>That's what coding can feel like sometimes. You want to grab the computer and shout at it, "why don't you just understand what I'm trying to do?"</p>
<h3 id="heading-how-not-to-get-frustrated">How Not to Get Frustrated</h3>
<p>The key, again, is practice.</p>
<p>Over time, you will develop a tolerance for vague error messages and screen-length stack traces.</p>
<p>Coding will never be harder than it is when you're just starting out.</p>
<p>Not only do you not know what you're doing, but you're not used to receiving such impersonal, rapid-fire, negative feedback.</p>
<p>So here are some tips:</p>
<h4 id="heading-tip-1-know-that-you-are-not-uniquely-bad-at-this">Tip #1: Know that you are not uniquely bad at this.</h4>
<p>Everyone who learns to code struggles with the frustration of trying to Vulcan Mind Meld with a computer, and get it to understand you. (That's another Star Trek reference.)</p>
<p>Of course, some people started programming when they were just kids. They may act like they've always been good at programming. But they most likely struggled just like we adults do, and over time have simply forgotten the hours of frustration.</p>
<p>Think of the computer as your friend, not your adversary. It's just asking you to clarify your instructions.</p>
<h4 id="heading-tip-2-breathe">Tip #2: Breathe.</h4>
<p>Many people's natural reaction when they get an error message is to gnash their teeth. Then go back into their code editor and start blindly changing code, hoping to somehow luck into getting past it.</p>
<p>This does not work. And I'll tell you why.</p>
<p>The universe is complex. Software is complex. You are unlikely to just Forest Gump your way into anything good.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/gump.jpeg" alt="Image" width="600" height="400" loading="lazy">
<em>Forest Gump doing what he does and getting improbably lucky catching shrimp.</em></p>
<p>You may have heard of the Infinite Monkey Theorem. It's a thought experiment where you imagine chimpanzees typing on typewriters.</p>
<p>If you had a newsroom full of chimpanzees doing this, how long would it take before one of them typed out the phrase "to be or not to be" by random chance?</p>
<p>Let's say each chimp types one random character per second. It would likely take 1 quintillion years for one of them to type "to be or not to be." That's 10 to the 18th power. A billion billion.</p>
<p>Even assuming the chimps remain in good health and the typewriters are regularly serviced – the galaxy would be a cold, dark void by the time one of them managed to type "to be or not to be."</p>
<p>Why do I tell you all of this? Because you don't want to be one of those chimps.</p>
<p>In that time, you could almost certainly figure out a way to teach those chimps how to type English words. They could probably manage to type out all of Hamlet – not just its most famous line.</p>
<p>Even if you somehow do get lucky, and get past the bug, what will you have learned? </p>
<p>So instead of thrashing, you want to take some time. Understand the code. Understand what's happening. And then fix the error.</p>
<p>Always take time to understand the failing code. Don't be a quintillionarian chimp. (I think that means someone who is 1 quintillion years old, though according to Google, nobody has ever typed that word before.)</p>
<p>Instead of blindly trying things, hoping to get past the error message, slow down.</p>
<p>Take a deep breath. Stretch. Get up to grab a hot beverage.</p>
<p>Your future self will be grateful that you took this as a teachable moment.</p>
<h4 id="heading-tip-3-use-rubber-duck-debugging">Tip #3: Use Rubber Duck Debugging</h4>
<p>Get a rubber ducky and set it next to your computer. Every time you hit an error message, try to explain what you think is happening to your rubber duck.</p>
<p>Of course, this is silly. How could this possibly be helpful?</p>
<p>Except it is.</p>
<p>Rubber Duck Debugging is a great tool for slowing down and talking through the problem at hand.</p>
<p>You don't have to use a rubber duck, of course. You could explain your Python app to your pet cactus. Your SQL query to the cat that keeps jumping onto your keyboard.</p>
<p>The very act of explaining your thinking out loud seems to help you process the situation better.</p>
<h3 id="heading-how-do-most-people-learn-to-code">How do Most People Learn to Code?</h3>
<p>Now let's talk about traditional pathways to a first developer job.</p>
<p>Why should you care what everyone else does? Spoiler alert: you don't really need to.</p>
<p>You do <strong>you</strong>.</p>
<p>This said, you may doubt yourself and the decisions you've made about your learning. You may yearn for the path not taken.</p>
<p>My goal with this section is to calm any anxieties you may have.</p>
<h4 id="heading-the-importance-of-computer-science-degrees">The Importance of Computer Science Degrees</h4>
<p>University degrees are still the gold standard for preparing for a career in software development. Especially bachelor's degrees in Computer Science.</p>
<p>Before you start saying "But I don't have a computer science degree" – no worries. <strong>You don't need a Computer Science degree to become a developer</strong>.</p>
<p>But their usefulness is undeniable. And I'll explain why.</p>
<p>First, you may wonder: why should developers study computer science? After all, one of the most prominent developers of all time had this to say about the field:</p>
<blockquote>
<p>"Computer science education cannot make anybody an expert programmer any more than studying brushes and pigment can make somebody an expert painter." – Eric Raymond, Developer, Computer Scientist, and Author</p>
</blockquote>
<p>Computer Science departments were traditionally part of the math department. Universities back in the 1960s and 1970s didn't know quite where to put this whole computer thing.</p>
<p>At other universities, Computer Science was considered an extension of Electrical Engineering. And until recently, even University of California – Berkeley – one of the greatest public universities in the world – only provided Computer Science degrees as sort of a double-major with Electrical Engineering.</p>
<p>But most universities have now come to understand the importance of Computer Science as a field of study.</p>
<p>As of writing this, Computer Science is the highest paying degree you can get. Higher even than fields focused on money, such as Finance and Economics.</p>
<p><a target="_blank" href="https://www.glassdoor.com/blog/50-highest-paying-college-majors/">According to Glassdoor</a>, the average US-based Computer Science major makes more money at their first job than any other major. US $70,000. That's a lot of money for someone who just graduated from college.</p>
<p>More than Nursing majors ($59,000), Finance majors ($55,000) and Architecture majors ($50,000).</p>
<p>OK – so getting a Computer Science degree can help you land a high-paying entry-level job. That is probably news to no one. But why is that?</p>
<h4 id="heading-how-employers-think-about-bachelors-degrees">How Employers Think About Bachelor's Degrees</h4>
<p>You may have heard some big employers in tech say things like, "we no longer require job candidates to have a bachelor's degree."</p>
<p>Google said this. Apple said this.</p>
<p>And I believe them. That they no longer require bachelor's degrees.</p>
<p>We've had lots of freeCodeCamp alumni get jobs at these companies, some of whom did not have a bachelor's degrees.</p>
<p>But those freeCodeCamp alumni who landed those jobs probably had to be extra strong candidates to overcome the fact that they didn't have bachelor's degrees.</p>
<p>You can look at these job openings as having a variety of criteria they judge candidates on:</p>
<ol>
<li>Work experience</li>
<li>Education</li>
<li>Portfolio and projects</li>
<li>Do they have a recommendation from someone who already works at the company? (We'll discuss building your network in depth in Chapter 2)</li>
<li>Other reputation considerations (we'll discuss building your reputation in Chapter 3)</li>
</ol>
<p>For these employers who do not require a bachelor's degree, education is just one of several considerations. If you are stronger in other areas, they may opt to interview you – regardless of whether you've ever even set foot inside a university classroom.</p>
<p>Just note that having a bachelor's degree will make it easier for you to get an interview, even at these "degree-optional" employers.</p>
<h4 id="heading-why-do-so-many-developer-jobs-require-a-computer-science-degree-specifically">Why do so Many Developer Jobs Require a Computer Science Degree Specifically?</h4>
<p>A bachelor's is a bachelor's, I often tell people. Because for most intents and purposes, it is.</p>
<p>Want to enter the US military as an officer, rather than an enlisted service member? You'll need a bachelor's degree, but any major will do.</p>
<p>Want to get a work visa to work abroad? You'll probably need a bachelor's degree, but any major will do.</p>
<p>And for so many job openings that say "bachelor's degree required" – any major will do.</p>
<p>Why is this? Doesn't the subject you study in university matter at all?</p>
<p>Well, here's my theory on this: what you learn in university is less important than <strong>whether</strong> you finished university.</p>
<p>Employers are trying to select for people who can figure out a way to get through this rite of passage.</p>
<p>It is certainly true that you can be at the bottom of your class, repeating courses you failed, and being on academic probation for half the time. But a degree is a degree.</p>
<p>You know what they call the student who finished last in their class at medical school? "Doctor."</p>
<p>And for most employers, the same holds true.</p>
<p>In many cases, HR folks are just checking a box on their job application filtering software. They're filtering out applicants who don't have a degree. In those cases, they may never even look at job applications from people without degrees.</p>
<p>Again, not every employer is like this. But many of them are. Here in the US, and perhaps even more so in other countries.</p>
<p>It sucks, but it's how the labor market works right now. It may change over the next few decades. It may not.</p>
<p>This is why I always encourage people who are in their teens and 20s to seriously considering getting a bachelor's degree.</p>
<p>Not because of any of the things universities market themselves as:</p>
<ul>
<li>The education itself. (You can take courses from some of the best universities online for free, so this alone does not justify the high cost of tuition.)</li>
<li>The "college experience" of living in a dorm, making new friends, and self discovery. (Most US University students never live on campus so they don't really get this anyway.)</li>
<li>General education courses that help you become a "well rounded individual" (Ever hear of the Freshman 15? This is a joke of course. But a lot of university freshman do gain weight due to the stress of the experience.)</li>
</ul>
<p>Again, the real value of getting a bachelor's degree – the real reason Americans pay $100,000 or more for 4 years of university – is because many employers require degrees.</p>
<p>Of course, there are other benefits of having a bachelor's degree, such as the ones I mentioned: expanded military career options, and greater ease getting work visas.</p>
<p>One of these is: if you want to become a doctor, dentist, lawyer, or professor, you will first need a bachelor's degree. You can then use that to get into grad school.</p>
<p>OK – this is a lot of background information. So allow me to answer your questions bluntly.</p>
<h3 id="heading-do-you-need-a-university-degree-to-work-as-a-software-developer">Do You Need a University Degree to Work as a Software Developer?</h3>
<p>No. There are plenty of employers who will hire you without a bachelor's degree.</p>
<p>A bachelor's degree will make it much easier to get an interview at a lot of employers. And it may also help you command a higher salary.</p>
<h3 id="heading-what-about-associates-degrees-are-those-valuable">What About Associate's Degrees? Are Those Valuable?</h3>
<p>In theory, yes. There are some fields in tech where having an associates may be required. And I think it always does increase your chances of getting an interview.</p>
<p>This said, I would not recommend going to university with the specific goal of getting an associate's degree. I would 100% encourage you to stay in school until you get a bachelor's degree, which is vastly more useful.</p>
<p>According to the US Department of Education, over the course of your career, having a bachelor's degree will earn you 31% more than merely having an associate's degree.</p>
<p>And I'm confident that difference is much wider with a bachelor's in Computer Science.</p>
<h3 id="heading-is-it-worth-going-to-university-to-get-a-bachelors-degree-later-in-life-if-you-dont-already-have-one">Is it Worth Going to University to Get a Bachelor's Degree Later in Life, if You Don't Already Have One?</h3>
<p>Let's say you're in your 30s. Maybe you attended some college or university courses. Maybe you completed the first two years and were able to get an associate's degree.</p>
<p>Does it make sense to go "back to school" in the formal sense?</p>
<p>Yes, it may make sense to do so.</p>
<p>But I don't think it ever makes sense to quit your job to go back to school full time.</p>
<p>The full-time student lifestyle is really designed with "traditional" students in mind. That is, people age 18 to 22 (or a bit older if they served in the military), who have not yet entered the workforce beyond high school / summer jobs.</p>
<p>Traditional universities cost a lot of money to attend, and the assumption is that students will pay through some combination of scholarships, family funds, and student loans.</p>
<p>As a working adult, you'll have less access to these funding sources. And just as importantly, you'll have less time on your hands than a recent high school graduate would.</p>
<p>But that doesn't mean you have to give up on the dream of getting a bachelor's degree.</p>
<p>Instead of attending a traditional university, I recommend that folks over 30 attend one of the online nonprofit universities. Two that have good reputations, and whose fees are quite reasonable, are Western Governor's University and University of the People.</p>
<p>You may also find a local community college or state university extension program that offers degrees. Many of these programs are online. And some of them are even self-paced, so that you can complete courses as your work schedule permits.</p>
<p>Do your research. If a school looks promising, I recommend finding one of its alumni on LinkedIn and reaching out to them. Ask them questions about their experience, and whether they think it was worth it.</p>
<p>I recommend not taking on any debt to finance your degree. It is much better to attend a cheaper school. After all, a degree is a degree. As long as it's from an accredited institution, it should be fine for most intents and purposes.</p>
<h3 id="heading-if-you-already-have-a-bachelors-degree-does-it-make-sense-to-go-back-and-earn-a-second-bachelors-in-computer-science">If You Already Have a Bachelor's Degree, Does it Make Sense to Go Back and Earn a Second Bachelor's in Computer Science?</h3>
<p>No. Second bachelor's degrees are almost never worth the time and money.</p>
<p>If you have any bachelor's degree – even if it's in a non-STEM field – you have already gotten most of the value you will get out of university.</p>
<h3 id="heading-what-about-a-masters-of-computer-science-degree">What About a Master's of Computer Science Degree?</h3>
<p>These can be helpful for career advancement. But you should pursue them later, after you're already working as a developer.</p>
<p>Many employers will pay for their employee's continuing education.</p>
<p>One program a lot of my friends in tech have attended is Georgia Tech's Master's in Computer Science degree.</p>
<p>Georgia Tech's Computer Science department is among the best in the US. And this degree program is not only fully online – it's also quite affordable.</p>
<p>But I wouldn't recommend doing it now. First focus on getting a developer job. (We'll cover that in-depth later in this book).</p>
<h3 id="heading-will-degrees-continue-to-matter-in-the-future">Will Degrees Continue to Matter in the Future?</h3>
<p>Yes, I believe that university degrees will continue to matter for decades – and possibly centuries – to come.</p>
<p>University degrees have existed for more than 1,000 years.</p>
<p>Many of the top universities in the US are older than the USA itself is. (Harvard is more than 400 years old.)</p>
<p>The death of the university degree is greatly exaggerated.</p>
<p>It has become popular in some circles to bash universities, and say that degrees don't matter anymore.</p>
<p>But if you look at the statistics, this is clearly not true. They do have an impact on lifetime earnings.</p>
<p>And just as importantly, they can open up careers that are safer, more stable, and ultimately more fulfilling.</p>
<p>Sure, you can make excellent money working as a deckhand offshore, servicing oil rigs.</p>
<p>But you can make similarly excellent money working as a developer in a climate-controlled office, servicing servers and patching codebases.</p>
<p>One of these jobs is dangerous, back-breaking work. The other is a job you could comfortably do for 40 years.</p>
<p>Many of the "thought leaders" out there who are bashing universities have themselves benefitted from a university education.</p>
<p>One reason why I think so many people think degrees are "useless" is: it's hard to untangle the learning from the status boost you get.</p>
<p>Is university just a form of class signaling – a way for the wealthy to continue to pass advantage on to their children? After all, you're 3 times as likely to find a rich kid at Harvard as you are a poor kid.</p>
<p>The fact is: life is fundamentally unfair. But that does not change how the labor market works.</p>
<p>You can choose easy mode, and finish a degree that will give you more options down the road.</p>
<p>Or you can go hard mode, potentially save time and money, and just be more selective about which employers you apply to.</p>
<p>I have plenty of friends who've used both approaches to great success.</p>
<h3 id="heading-what-alternatives-are-there-to-a-university-degree">What Alternatives are There to a University Degree?</h3>
<p>I've worked in adult education for nearly two decades, and I have yet to see a convincing substitute for a university degree.</p>
<p>Sure – there are certification programs and bootcamps.</p>
<p>But these do not carry the same weight with employers. And they are rarely as rigorous.</p>
<p><em>Side note: when I say "certification programs" I mean a program where you attend a course, then earn a certification at the end. These are of limited value. But exam-based certifications from companies like Amazon and Microsoft are quite valuable. We'll discuss these in more depth later.</em></p>
<p>What I tell people is: to degree or not to degree – that is the question.</p>
<p>I meet lots of people who are auto mechanics, electricians, or who do some other sort of trade, who don't have a bachelor's. They can clearly learn a skillset, apply it, and hold down a job.</p>
<p>I meet lots of people who are bookkeepers, paralegals, and other "knowledge workers" who don't have a bachelor's. They can clearly learn a skillset, apply it, and hold down a job.</p>
<p>In many cases, these people can just learn to code on their own, using free learning resources and hanging out with likeminded people.</p>
<p>Some of these people have always had the personal goal of going back and finishing their bachelor's. That's a good reason to do it.</p>
<p>But it's not for everyone.</p>
<p>If you want formal education, go for the bachelor's degree. If you don't want formal education, don't do any program. Just self-teach.</p>
<p>The main thing bootcamps and other certification programs are going to give you is structure and a little bit of peer pressure. That's not a bad thing. But is it worth paying thousands of dollars for it?</p>
<h3 id="heading-how-to-teach-yourself-to-code">How to Teach Yourself to Code</h3>
<p>Most developers are self-taught. Even the developers who earned a Bachelor's of computer science still often report themselves as "self-taught" on industry surveys like Stack Overflow's annual survey.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/stack-overflow.jpeg" alt="Image" width="600" height="400" loading="lazy">
<em>Most working developers consider themselves to be "self-taught" (Image: Stack Overflow 2016 Survey)</em></p>
<p>This is because learning to code is a life-long process. There are constantly new tools to learn, new legacy codebases to map out, and new problems to solve.</p>
<p>So whether you pursue formal education or not, know this: you will need to get good at self-teaching.</p>
<h4 id="heading-what-does-it-mean-to-be-a-self-taught-developer">What Does it Mean to be a "Self-Taught" Developer?</h4>
<p>Not to be pedantic, but when I refer to self-teaching, I mean self-directed learning – learning outside of formal education.</p>
<p>Very few people are truly "self-taught" at anything. For example, Isaac Newton taught himself Calculus because there were no Calculus books. He had to figure it out and invent it as he went along.</p>
<p>Similarly, Ada Lovelace taught herself programming. Because before her there was no programming. She invented it.</p>
<p>Someone might tell you: "You're not really self taught because you learned from books or online courses. So you had teachers." And they are correct, but only in the most narrow sense.</p>
<p>If someone takes issue with you calling yourself self-taught, just say: "By your standards, no one who wasn't raised by wolves can claim to be self-taught at anything."</p>
<p>Point them to this section of this book and tell them: "Quincy anticipated your snobbery." And then move on with your life.</p>
<p>Because come on, life's too short, right?</p>
<p>You're self taught.</p>
<h4 id="heading-what-is-self-directed-learning">What is Self-Directed Learning?</h4>
<p>As a self-learner, you are going to curate your own learning resources. You're going to choose what to learn, from where. That is the essence of "Self-Directed Learning."</p>
<p>But how do you know you're learning the right skills, and leveraging the right resources?</p>
<p>Well, that's where community comes in.</p>
<p>There are lots of communities of learners around the world, all helping one another expand their skills.</p>
<p>Community is a hard word to define. Is Tech Twitter a community? What about the freeCodeCamp forum? Or the many Discord groups and subreddits dedicated to specific coding skillsets?</p>
<p>I consider all of these communities. If there are people who regularly hang out there and help one another, I consider it a community.</p>
<p>What about in-person events? The monthly meetup of Ruby developers in Oakland? The New York City Startup community meetup? The Central Texas Linux User Group?</p>
<p>These communities can be online, in-person, or some mix of both.</p>
<p>We'll talk more about communities in the Build Your Network chapter. But the big takeaway is: the new friends you meet in these communities can help you narrow your options for what to learn, and which resources to learn from.</p>
<h3 id="heading-what-programming-language-should-i-learn-first">What Programming Language Should I Learn First?</h3>
<p>The short answer is: it doesn't really matter. Once you've learned one programming language well, it is much easier to learn your second language.</p>
<p>There are different types of programming languages, but today most development is done using "high-level scripting languages" like JavaScript and Python. These languages trade away the raw efficiency you get from "low-level programming languages" like C. What they get in return: the benefit of being much easier to use.</p>
<p>Today's computers are billions of times faster than they were in the 1970s and 1980s, when people were writing most of their programs in languages like C. That power more than makes up for the relative inefficiency of scripting languages.</p>
<p>It's worth noting that both JavaScript and Python themselves are written in C, and they are both getting faster every year – thanks to their large communities of open source code contributors.</p>
<p>Python is a powerful language for scientific computing (Data Science and Machine Learning).</p>
<p>And JavaScript... well, JavaScript can do everything. It is the ultimate Swiss Army Knife programming language. JavaScript is the duct tape that holds the World Wide Web together.</p>
<blockquote>
<p>"Any application that can be written in JavaScript, will eventually be written in JavaScript." – Atwood's Law (Jeff Atwood, founder of Stack Overflow and Discourse)</p>
</blockquote>
<p>You could code your entire career in JavaScript and would never need to learn a second language. (This said, you'll want to learn Python later on, and maybe some other languages as well.)</p>
<p>So I recommend starting with JavaScript. Not only is it much easier to use than languages like Java and C++ – it's easier to learn, too. And there are far, far more job openings for people who know JavaScript.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/Find_Javascript_Jobs_with_great_pay_and_benefits_in_United_States___Indeed_com_--.png" alt="Image" width="600" height="400" loading="lazy">
<em>A screenshot from job search engine Indeed. My search for "javascript" for the US yielded 68,838 job listings.</em></p>
<p>The other skills you'll want to focus on are <strong>HTML</strong> and <strong>CSS</strong>. If a webpage were a body, HTML would be the bones, and CSS would be the skin. (JavaScript would be the muscles, making it possible for the website to move around and be interactive.)</p>
<p>You can learn some HTML and CSS in a single afternoon. Like most of the tools I mention here, they are easy to learn, but difficult to master.</p>
<p>You'll also want to learn how to use <strong>Linux</strong>. Linux powers a vast majority of the world's servers, and you will spend much of your career running commands in the Linux command line.</p>
<p>If you have a Mac, MacOS has a terminal that accepts almost all the same commands as Linux. (MacOS and Linux have a common ancestor in Unix.)</p>
<p>But if you're on a Windows PC, you'll want to install WSL, which stands for Windows Subsystem for Linux. You will then be able to run Linux commands on your PC. And if you're feeling adventurous, you can even dual boot both the Windows and Linux operating systems on the same computer.</p>
<p>If you're going to install Linux on a computer, I recommend starting with Ubuntu. It is the most widely used (and widely documented) Linux distribution. So it should be the most forgiving.</p>
<p>Make no mistake – Linux is quite a bit harder to use than Windows and MacOS. But what you get in return for your efforts is an extremely fast, secure, and highly customizable operating system.</p>
<p>Also, you will never have to pay for an operating system license again. Unless you want to. Red Hat is a billion dollar company even though its software is open source, because companies pay for their help servicing and supporting Linux servers.</p>
<p>You'll also want to learn <strong>Git</strong>. This Version Control System is how teams of developers coordinate their changes to a codebase.</p>
<p>You may have heard of GitHub. It's a website that makes it easier for developers to collaborate on open source projects. And it further extends some of the features of Git. You'll learn more about GitHub in the How to Build Your Reputation chapter later.</p>
<p>You'll want to learn <strong>SQL</strong> and how relational databases work. These are the workhorses of the information economy. </p>
<p>You'll also hear a lot about NoSQL databases (Non-relational databases such as graph databases, document databases, and key-value stores.) You can learn more about these later. But focus on SQL first.</p>
<p>Finally, you'll want to learn how <strong>web servers</strong> work. You'll want to start with Node.js and Express.js.</p>
<p>When you hear the term "full stack development" it refers to tying together the front end (HTML, CSS, JavaScript) with the back end (Linux, SQL databases, and Node + Express).</p>
<p>There are lots of other tools you'll want to learn, like React, NGINX, Docker, and testing libraries. You can pick these up as you go.</p>
<p>But the key skills you should spend 90% of your pre-job learning time on are:</p>
<ol>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Linux</li>
<li>Git</li>
<li>SQL</li>
<li>Node.js</li>
<li>Express.js</li>
</ol>
<p>If you learn these tools, you can build most major web and mobile apps. And you will be qualified for most entry-level developer jobs. (Of course, many job descriptions will include other tools, but we'll discuss these later in the book.)</p>
<p>So you may be thinking: great. How do I learn these?</p>
<h3 id="heading-where-do-i-learn-how-to-code">Where do I learn how to code?</h3>
<p>Funny you should ask. There's a full curriculum designed by experienced software engineers and teachers. It's designed with busy adults in mind. And it's completely free and self-paced.</p>
<p>That's right. I'm talking about the <a target="_blank" href="https://www.freecodecamp.org/learn">freeCodeCamp core curriculum</a>. It will help you learn:</p>
<ul>
<li>Front End Development</li>
<li>Back End Development</li>
<li>Engineering Mathematics</li>
<li>and Scientific Computing (with Python for Data Science and Machine Learning)</li>
</ul>
<p>To date, thousands of people have gone through this core curriculum and gotten a developer job. They didn't need to quit their day job, take out loans, or really risk anything other than some of their nights and weekends.</p>
<p>In practice, freeCodeCamp has become the default path for most people who are learning to code on their own.</p>
<p>If nothing else, the freeCodeCamp core curriculum can be your "home base" for learning, and you can branch out from there. You can learn the core skills that most jobs require, and also dabble in technologies you're interested in.</p>
<p>There are decades worth of books and courses to learn from. Some are available at your public library, or through monthly subscription services. (And you may be able to access some of these subscription services for free through your library as well.)</p>
<p>Also, freeCodeCamp now has nearly 1,000 free full-length courses on everything from AWS certification prep to mobile app development to Kali Linux.</p>
<p>There has never been an easier time to teach yourself programming.</p>
<h3 id="heading-building-your-skills-is-a-life-long-endeavor">Building Your Skills is a Life-Long Endeavor</h3>
<p>We've talked about why self-teaching is probably the best way to go, and how to go about it.</p>
<p>We've talked about the alternatives to self-teaching, such as getting a bachelor's degree in Computer Science, or getting a Master's degree.</p>
<p>And we've talked about which specific tools you should focus on learning first.</p>
<p>Now, let's shift gears and talk about how to build the second leg of your stool: your network.</p>
<h2 id="heading-chapter-2-how-to-build-your-network">Chapter 2: How to Build Your Network</h2>
<blockquote>
<p>"If you want to go fast, go alone. If you want to go far, go together." – African Proverb</p>
</blockquote>
<p>"Networking." You may wince at the sound of that word.</p>
<p>Networking may bring to mind awkward job fairs in stuffy suits, desperately pushing your résumé into the hands of anyone who will accept it.</p>
<p>Networking may bring to mind alcohol-drenched watch parties – where you pretend to be interested in a sport you don't even follow.</p>
<p>Networking may bring to mind wishing "happy birthday" to people you barely know on LinkedIn, or liking their status updates hoping they'll notice you.</p>
<p>But networking does not have to be that way.</p>
<p>In this chapter, I'll tell you everything I've learned about meeting people. I'll show you how to earn their trust and be top of their mind when they're looking for help.</p>
<p>Because at the end of the day, that's what it's all about. Helping people solve their problems. Being of use to people.</p>
<p>I'll show you how to build a robust personal network that will support you for decades to come.</p>
<h3 id="heading-story-time-how-did-a-teacher-in-his-30s-build-a-network-in-tech">Story Time: How did a Teacher in his 30s Build a Network in Tech?</h3>
<p><em>Last time on Story Time: Quincy learned some coding by reading books, watching free online courses, and hanging out with developers at the local Hackerspace. He had just finished building his first project and given his first tech talk...</em></p>
<p>OK – so I now had some rudimentary coding skills. I could now code my way out of the proverbial paper bag.</p>
<p>What was next? After all, I was a total tech outsider.</p>
<p>Well, even though I was new to tech, I wasn't new to working. I'd put food on the table for nearly a decade by working at schools and teaching English.</p>
<p>As a teacher, I got paid to sling knowledge. And as a developer, I'd get paid to sling code.</p>
<p>I already knew one very important truth about the nature of work: it's who you know.</p>
<p>I knew the power of networks. I knew that the path to opportunity goes right through the gatekeepers.</p>
<p>All that stood between me and a lucrative developer job was a hiring manager who could say: "Yes. This Quincy guy seems like someone worthy of joining our team."</p>
<p>Of course, being a tech outsider, I didn't know the culture.</p>
<p>Academic culture is much more formal.</p>
<p>You wear a suit.</p>
<p>You use fancy academic terminology to demonstrate you're part of the "in group."</p>
<p>You find ways to work into every conversation that you went to X university, or that you TA'd under Dr. Y, or that you got published in The Journal of Z.</p>
<p>Career progressions are different. Conferences are different. Power structures are different.</p>
<p>And I didn't immediately appreciate this fact.</p>
<p>The first few tech events I went to, I wore a suit.</p>
<p>I kept neatly-folded copies of my résumé in my pocket at all times.</p>
<p>I even carried business cards. I had ordered sheets of anodized aluminum, and used a laser cutter to etch in my name, email address, and even a quote from legendary educator John Dewey:</p>
<blockquote>
<p>"Anyone who has begun to think places some portion of the world in jeopardy." – John Dewey</p>
</blockquote>
<p>It's still my favorite quote to this day.</p>
<p>But talk about heavy-handed.</p>
<p>"Hi, I'm Quincy. Here's my red aluminum business card. Sorry in advance – it might set off the metal detector on your flight home."</p>
<p>I was trying too hard. And it was probably painfully apparent to everyone I talked to.</p>
<p>I went on Meetup.com and RSVP'd for every developer event I could find. Santa Barbara is a small town, but it's near Los Angeles. So I made the drive for events there, too.</p>
<p>I quickly wised up, and traded my suit for jeans and a hoody. And I noticed that no one else gave out business cards. So I stopped carrying them.</p>
<p>I took cues from the devs I met at the hackerspace: Be passionate, but understated. Keep some of your enthusiasm in reserve.</p>
<p>And I read lots of books to better understand developer culture. </p>
<p><a target="_blank" href="https://www.amazon.com/Coders-Work-Reflections-Craft-Programming/dp/B092R8RQM3?crid=13BTAQ7TH9YSN&amp;linkCode=ll1&amp;tag=out0b4b-20&amp;linkId=32d14a148c54f36f5ef701578a2abd8e&amp;language=en_US&amp;ref_=as_li_ss_tl">The Coders at Work</a> is a good book from the 1980s.</p>
<p><a target="_blank" href="https://www.amazon.com/Hackers-Computer-Revolution-Steven-Levy/dp/1449388396?&amp;linkCode=ll1&amp;tag=out0b4b-20&amp;linkId=0c216f2cd4cc2d2090b8c9b50b0befee&amp;language=en_US&amp;ref_=as_li_ss_tl">Hackers: Heroes of the Revolution</a> is a good book from the 1990s.</p>
<p>For a more contemporary cultural resource, check out the TV series <a target="_blank" href="https://www.amazon.com/Mr-Robot-Complete-Rami-Malek/dp/B0833WXXL6?crid=188UUOE6ZT0W3&amp;keywords=mr+robot&amp;qid=1673746625&amp;sprefix=mr+robot%2Caps%2C111&amp;sr=8-6&amp;linkCode=ll1&amp;tag=out0b4b-20&amp;linkId=a896ab7630fadc332c2696d3a4b8e85d&amp;language=en_US&amp;ref_=as_li_ss_tl">Mr. Robot</a>. Its characters are a bit extreme, but they do a good job of capturing the mindset and mannerisms of many developers.</p>
<p>Soon, I was talking less like a teacher and more like a developer. I didn't stick out quite as awkwardly.</p>
<p>Several times a week I attended local tech-related events. My favorite event wasn't even a developer event. It was the Santa Barbara Startup Night. Once every few weeks, they'd have an event where developers would pitch their prototypes. Some of the devs demoing their code were even able to secure funding from angels – rich people who invest in early-stage companies.</p>
<p>The guy who ran the event was named Mike. He must have known every developer and entrepreneur in Santa Barbara. </p>
<p>When I finally got the nerve to introduce myself to Mike, I was star-struck. He was an ultra-marathoner with a resting heartbeat in the low 40s. Perfectly cropped hair and beard. To me he was the coolest guy on the planet. Always polished. Always respectful.</p>
<p>Mike was "non-technical". He worked as a product manager. And though he knew a lot about technology and user experience design, he didn't know how to code.</p>
<p>Sometimes devs would write non-technical people off. "He's just a business guy," they'd say. Or: "She's a suit." But I never heard anyone say that about Mike. He had the respect of everyone.</p>
<p>I made a point to watch the way Mike interacted with developers. After all, I wasn't that far removed from "non-technical" myself. I'd only been coding for a few months.</p>
<p>Often my old habits would creep in. During conversations I'd have the temptation to show off what I'd learned or what I'd built.</p>
<p>Many developers are modest about their skills or accomplishments. They might say: "I dabble in Python." And little 'ol insecure me would open his big mouth and say something like, "Oh yeah. I've coded so many algorithms in Python. I write Python in my sleep."</p>
<p>And then I'd go home and google that developer's name, and realize they were a core contributor to a major Python library. And I'd kick myself.</p>
<p>I quickly learned not to boast of my accomplishments or my skills. There's a good chance a person you're talking to can code circles around you. But most of them would never volunteer this fact.</p>
<p>There's nothing worse than confidently pulling out your laptop, showing off your code, and then having someone ask you a bunch of questions that you're wholly unprepared to answer.</p>
<p>My first few months of attending events was a humbling experience. But these events energized me to keep pushing forward with my skills.</p>
<p>Soon people around southern California would start to recognize me. They'd say: "I keep running to you at these events. What's your name again?"</p>
<p>One night a dev said, "Let's follow each other on Twitter." I had grudgingly set up a Twitter account a few days earlier, thinking it was a gimmicky website. How much could you really convey with just 140 characters? I had barely tweeted anything. But I did have a Twitter account ready, and she did follow me.</p>
<p>That inspired me to spend more time refining my online presence. I made my LinkedIn less formal and more friendly. I looked at how other devs in the community presented themselves online.</p>
<p>Within a few months, I knew people from so many fields:</p>
<ul>
<li>experienced developers</li>
<li>non-technical or semi-technical people who worked at tech companies</li>
<li>hiring managers and recruiters</li>
<li>and most importantly, my peers who were also mid-career and trying to break into tech</li>
</ul>
<p>Why were peers the most important? Surely they would be the least able to help me get a job, right?</p>
<p>Well, let me tell you a secret: let's say a hiring manager brings on a new dev, trains them, and they turn out to be really good at their job. That hiring manager is going to ask: where can I find more people like you?</p>
<p>Your peers are one of the most important pieces of your network. So many of my freelance opportunities and job interview opportunities came from people who started learning to code around the same time as I did.</p>
<p>We came up together. We were brothers and sisters in arms. Those bonds are the tightest.</p>
<p>Anyway, all this networking over the months would ultimately come to fruition one night when I walked into the bar of a fancy downtown hotel for a developer event.</p>
<p>But more on that in the next chapter. Now let's talk more about the art and science of building your network.</p>
<h3 id="heading-is-it-really-who-you-know">Is it Really Who You Know?</h3>
<p>You may have heard the expression that success is "less about what you know, and more about who you know."</p>
<p>In practice, it's about both.</p>
<p>Yes – your connections may help you land your dream job. But if you're out of your depth, and lack the skills to succeed, you will not fare well in that role.</p>
<p>But let's assume that you are proactively building your skills. You've followed my advice from Chapter 1. When is the right time to start building your network?</p>
<p>The best time to start building your network is <strong>yesterday</strong>.</p>
<p>But you don't need a time machine to do this. Because you already have a network. It's probably much smaller than you'd like it to be, but you <strong>do</strong> know people.</p>
<p>They may be friends from your home town, or the colleagues of your parents. Any person you know from your past – however marginally – may be of help.</p>
<p>So step one is to take full inventory of the people you know. Don't worry – I am not asking you to reach out to anyone yet, or tax your personal relationships.</p>
<p>Think before you move. Formulate a strategy.</p>
<p>First, let's inventory all the people you know.</p>
<h3 id="heading-how-to-build-a-personal-network-board">How to Build a Personal Network Board</h3>
<p>You want to start by creating a list of people you know.</p>
<p>You could do this with a spreadsheet, or a Customer Relationship Management tool (CRM) like sales people use. But that's probably overkill for what we're doing here.</p>
<p>I recommend using a Kanban board tool like Trello, which is free.</p>
<p>You're going to create 5 columns: "to evaluate", "to contact", "waiting for reply", "recently in contact", and "don't contact yet".</p>
<p>Then you're going to want to create labels, so you can classify people by how you know them. Here are some label ideas for you: "Childhood friend", "Friend of the family", "Former colleague", "Classmate", "Friends from Tech Events".</p>
<p>Now you can start creating cards. Each card can just be their name, and if you have time you can add a photo to the card.</p>
<p>Here is the Trello board I created to give you an idea of what this Personal Network Board might look like. I used characters from my favorite childhood movie, the 1989 classic Teenage Mutant Ninja Turtles.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/Personal_Network_Board___Trello_--.png" alt="Image" width="600" height="400" loading="lazy">
<em>My Personal Network Board with my friends from my side job fighting crime.</em></p>
<p>You can go through your social media accounts – even your old school year books if you have them – and start adding people.</p>
<p>Many of these people are not going to be of any help. But I recommend adding them for the sake of being comprehensive. You never know when you'll remember: "oh – so and so got a job at XYZ corp. I should reach out to them."</p>
<p>This process may take a day or two. But know that this is an investment. You'll be able to use this board for the rest of your career.</p>
<p>You may think "I don't need to do this – I already have a LinkedIn account." That might work OK, but LinkedIn is a blunt instrument. You want to maximize signal and minimize noise here. That's why I'm encouraging you to create this dedicated personal network board.</p>
<p>As you add people to your board, you can label them. Take a moment to research each of these people. What are they up to these days? Do they have a job? Run a company?</p>
<p>You can add notes to each card, as you discover new facts about them. Did they recently run a fundraiser 5K run? Did their grandma recently celebrate her 90th birthday? These facts may seem extraneous. But if the person is sharing them on social media, it means these facts are important to <strong>them</strong>.</p>
<p>Make an effort to be interested in people. Their daily lives. Their aspirations. By understanding their motivations and goals, you will have deeper insight into how you can help them.</p>
<p>And as I said earlier, the best way to forge alliances is to help people. We'll talk about this at length in a little bit.</p>
<p>For each of the people you add to your Personal Network Board, consider whether they might be worth reaching out to. Then either put them into the "to contact" or "don't contact yet" column.</p>
<p>You may be wondering: why is the column called "don't contact <strong>yet</strong>"? Because you never know when it might be helpful to know someone. Never take any friendship or acquaintanceship for granted.</p>
<p>Once you've filled up your board, labeled everyone, and sorted them into columns, you're ready to start reaching out.</p>
<h3 id="heading-how-to-prepare-for-network-outreach">How to Prepare for Network Outreach</h3>
<p>The main thing to keep in mind when reaching out and trying to make an impression: keep yourself simple.</p>
<p>People are busy, and they can only remember so many facts about you. You want to boil down who you are to the fundamentals. And the best way to do this is to write a personal bio.</p>
<h4 id="heading-how-to-write-a-personal-bio-for-social-media">How to Write a Personal Bio for Social Media</h4>
<p>You want your presence to be consistent across all of your social media accounts.</p>
<p>Here's how I introduce myself:</p>
<p>"I'm Quincy. I'm a teacher at freeCodeCamp. I live in Dallas, Texas. I can help you learn to code."</p>
<p>Go ahead and write yours. See if you can get it down to 100 characters or less. Try to avoid using fancy words or jargon.</p>
<p>It may be hard to distill your identity down to a few words. But this is an important process.</p>
<p>Remember: people are busy. They don't need to know your life story. As you get to know these people better, you can gradually fill in the details of who you are as a person. As they ask questions, they can get to know you better over time.</p>
<p>And on that note, you need a good photo of your smiling face.</p>
<h4 id="heading-how-to-make-a-social-media-headshot">How to Make a Social Media Headshot</h4>
<p>If you have the money, just find a local photographer and pay them to take some professional headshots.</p>
<p>You may even have a friend who's into photography, who can take them for free.</p>
<p>I took my headshot myself, using Photobooth, which comes pre-installed on MacOS. My friend spent about 10 minutes fixing some background and shading in Photoshop. He may have made my teeth slightly whiter. Here's what it looks like:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/Michael_Headshot_B_W_Full_heic.png" alt="Image" width="600" height="400" loading="lazy">
<em>My headshot. I use this same photo everywhere.</em></p>
<p>Be sure to smile with your eyes, so you don't look robotic. Or better yet, think of something really funny, like I did here. Then the smile will be genuine.</p>
<p>Take a lot of shots from different angles, and just use whichever one looks best on you.</p>
<p>I recommend using a headshot that looks like how you look on any given day. Not a heavily photoshopped photo that tries to maximize your attractiveness. You want people at events to recognize you from your photo. And you don't want to intimidate people with your beauty. You want to put them at ease.</p>
<p>Speaking of putting people at ease: do <strong>not</strong> wear sunglasses, or try too hard to look cool. You want to look friendly and  approachable. A good acid test for this is: look at your photo. If you were lost, and saw this person on the street, would you be brave enough to ask them for directions?</p>
<p>Once you have chosen your headshot photo, use that same photo everywhere. Put it on all of your social media accounts. </p>
<p>Use it on your personal website. Even <a target="_blank" href="https://www.freecodecamp.org/news/gmail-profile-picture/">add the profile photo to your email account</a>.</p>
<p>I recommend using that same photo for years. Every time you change it, you run the risk that some people won't immediately recognize you. Even subtle changes in lighting, angle, or background can throw off people's familiarity.</p>
<p>Be sure to keep a high-definition version of the photo. That way people can use it to promote your talk at their conference, or your guest appearance on their podcast. (Don't worry – in time, you will get there.)</p>
<h3 id="heading-how-to-reach-out-to-people-from-your-past">How to Reach Out to People from your Past</h3>
<p>Now that you've got your bio and photos sorted out, you're ready to start talking with people.</p>
<p>15 years ago, I would say you should call people on the phone instead of messaging them. But culture has changed a lot with the introduction of smart phones. Most people will not respond well to a phone call.</p>
<p>Similarly, I don't recommend asking people out to coffee or lunch until much later in the conversation. People are busy, and may view the request as awkward.</p>
<p>You need to get to the point, and do so quickly.</p>
<p>So what is that point you need to get to?</p>
<p>Essentially:</p>
<ol>
<li>I know you</li>
<li>I like you</li>
<li>and I respect the work you're doing.</li>
</ol>
<p>That's it.</p>
<p>People like to be known. They like to be liked. They like for the work they do and the lives they live to be noticed.</p>
<p>Most of us get recognition on our birthdays. People from our past might send "happy birthday" text messages, social media posts, or even call us.</p>
<p>But what about the other 364 days of the year? People like to be recognized on those other days, too.</p>
<p>Well, here's a simple way you can recognize people.</p>
<p>Step 1: Research the person. Google them. Read through their most recent social media posts. Read through their LinkedIn. If they post family photos, actually take time to look at them.</p>
<p>Step 2: Think about something you could say that might make their day a bit brighter.</p>
<p>Step 3: Choose a social media platform they've been recently active on. Send them a direct message.</p>
<p>I'm going to share a template, but never use any templates verbatim, because if the recipient plugs your message into Google, they'll discover it's a template, and all your goodwill will be squandered.</p>
<p>If I were messaging someone I hadn't talked to in a few months or years out of the blue, I would say something like this:</p>
<p>"Hey [name], I hope your [new year / spring / week] is off to a fun start. Congrats on [new job / promotion / new baby / completed project]. It's inspiring to see you out there getting things done."</p>
<p>Something short and to the point like that. Greeting + congratulations + compliment. That is the basic formula.</p>
<p>Don't just say it. Mean it. </p>
<p>Really want this person to feel recognized. Really want to brighten their day. Really want to encourage them to keep progressing toward their goals.</p>
<p>Humans are very good at detecting insincerity. Don't try to over-sell it. Don't give them any reason to think "this person wants something from me."</p>
<p>That's why the most important thing about this is: be brief. Be respectful of people's time. Nobody wants a long letter that they'll feel obligated to respond to at length.</p>
<p>Because – say it with me again – <strong>people are busy.</strong></p>
<h3 id="heading-how-to-build-even-deeper-connections">How to Build Even Deeper Connections</h3>
<p>Because people are so busy, they're often tempted to see strangers more for what those strangers can do for them:</p>
<ul>
<li>This person drives the bus that gets me to work. </li>
<li>This person makes my beverage just the way I like it. </li>
<li>This person in HR answers my questions about time off.</li>
<li>This person put together a bangin' acid jazz playlist for me to listen to while I code. </li>
<li>This person sends me helpful emails each week with free coding resources.</li>
</ul>
<p>To some extent, you are what you do for people.</p>
<p>I know, I know. That might sound overly reductive. Cynical even. And that is 100% not true for the close friends and family in your life.</p>
<p>But for people who barely know you – who just encounter you while going about their day – this is likely how they see you.</p>
<p>You have to give people a reason to care about you. You have to inspire them to learn more about you.</p>
<p>Before you can become somebody's close friend – someone they truly care about, and think about when you're not around – you need to start off as someone who is helpful to them.</p>
<p>And that's what we're going to do here. We're going to build even deeper relationships by offering to help people.</p>
<p>This will be a long process. And you should start it well in advance of your job search. The last thing you want is for someone to think "Oh – you're just reaching out because you need something from me."</p>
<p>On the contrary – you're reaching out because you have something to offer them.</p>
<p>You are, after all, in possession of one of the most powerful skillsets a person can acquire. The ability to bend machines to your will. You are a programmer.</p>
<p><img src="https://atariage.com/2600/carts/c_BasicProgramming_Picture_front.jpg" alt="Image" width="400" height="483" loading="lazy">
<em>This is what being good at coding feels like.</em></p>
<p>Or, at least, you're on the road to becoming one.</p>
<p>So you already have a good pretext to reach out to people.</p>
<p>You may have heard the term "cold call". This is where you call someone knowing almost nothing about them, and trying to sell them something. This is not easy, and a vast majority of cold calls end with the other party hanging up.</p>
<p>But the more information you know about the other person, the warmer the call gets, and the more likely you are to succeed.</p>
<p>Now, you're not selling anything here. And as I mentioned earlier, you're not calling them either. You're sending them a direct message. </p>
<p>Maybe this is through Twitter, LinkedIn, Discord, Reddit – wherever. But you are reaching out to them with a single paragraph of text.</p>
<p>As I said, the strongest opening move – the approach that's most likely to get a response – is to casually offer help.</p>
<p>If I were doing this, here's a simple template I'd use. Remember not to use this template verbatim. Rewrite it in your own voice, how you would say it to a friend:</p>
<blockquote>
<p>"Hey [name], congrats on the [new job / promotion / new baby]. I've been learning some programming, and am building my portfolio. You immediately came to mind as someone who gets a lot of things done. Is there any sort of tool or app that would make your life easier? I may be able to code it up for you, for practice."</p>
</blockquote>
<p>This is a strong approach, because it is personalized and doesn't come across as automated. People get so many automated messages these days that they are quick to disregard anything that even resembles an automated message.</p>
<p>This is why I send all my messages manually, and don't rely on automation. It's better to slowly compose messages one-by-one than it is try and save time with a script or a mail-merge.</p>
<p>The fastest way to get blocked is to message someone with "Hi , how's it going?" where there's clearly a first name missing – evidence that the message is a template.</p>
<p>Sometimes I get a message using my last name instead of my first name. "Hey Larson." What, am I in military school now?</p>
<p>And a lot of people on LinkedIn have started putting an emoji at the beginning of their name. This makes it easy to detect automated messages, because nobody would include that emoji in their direct message.</p>
<p>When a message starts with: "Hi 🍜Sarah, are you looking for a new job?" Then you know it's a bulk message.</p>
<p>Also note that my above template does not say "we went to school together" or something like that. Unless you just met someone a few days ago, you shouldn't specify how you two know one another.</p>
<p>Why? Because the very act of reminding people how you know one another will prompt some people to step back and think: "Gee, I barely know this person."</p>
<h3 id="heading-how-to-keep-the-conversation-going">How to Keep the Conversation Going</h3>
<p>Again, your goal is to get a response from them, so you can start a back-and-forth conversation.</p>
<p>These messaging platforms have a casual feel to them. Keep it casual.</p>
<p>Don't send a single, multi-paragraph message. Keep your messages short and snappy. You don't want for it to feel like a chore to reply to you.</p>
<p>Once you've got them replying to you, start making notes on your Personal Network Board so you can remember these facts later.</p>
<p>Maybe they do have some app idea or tool idea. Great. Ask them questions about it. See if you can build it for them.</p>
<p>Start by sketching out a simple mockup of the user interface. Use graphing paper if you want to look extra sophisticated. Snap a photo of it and send it to them. "Something like this?"</p>
<p>This will establish that you're serious about helping them. And I'd be willing to bet for most people, this would be a new experience. </p>
<p>"You're helping me? You're creating this app for me?" It will be flattering, and they will be likely to remember it. Even if the app itself doesn't go anywhere.</p>
<p>From there, you can just go with the flow of conversation. Maybe it fizzles out. No worries. Let it. You can find a reason to pick the conversation back up a few weeks later.</p>
<p>The great thing about these social media direct messages is the entire message log is there. The next time you message them, they can just scroll up and see "oh – this is that person who offered to build that app for me." There are no more "who are you again?" head tilts that you might get during in-person conversations.</p>
<p>Again, keep everything casual and upbeat. If it feels like the conversation is going slow, that's no problem. Because you're going to have dozens of other conversations going. Other irons in the fire. You're going to be a busy bee building your network.</p>
<h3 id="heading-how-to-meet-new-people-and-expand-your-personal-network">How to Meet New People and Expand Your Personal Network</h3>
<p>We've talked about how to reach out to people you already know. Those connections are still there, even if they've atrophied a bit over the years.</p>
<p>But how do you make brand new connections?</p>
<p>This is no easy task. But I have some tips that will make this process a bit less daunting.</p>
<p>First of all, meeting people for the first time in person is so much more powerful than meeting them online.</p>
<p>When you meet someone in person, your memory has so much more information to latch onto:</p>
<ul>
<li>How the person looks, their posture, and how they move through the space</li>
<li>The sound of their voice and the way they speak</li>
<li>The lights, sounds, aromas, temperature, and the general feel of the venue</li>
<li>And so many other little details that get baked into your memory</li>
</ul>
<p>Spending 10 minutes talking with someone in person can build a deeper connection than dozens of messages back and forth, across weeks of correspondence.</p>
<p>This is why I strongly recommend: get out there and meet people at local events.</p>
<h3 id="heading-how-to-meet-people-at-local-events-around-town">How to Meet People at Local Events Around Town</h3>
<p>Which events? If you live in a densely-populated city, you may have a ton of options at your disposal. You may be able to go to tech events several nights each week, with minimal commuting.</p>
<p>If you live in a small town, you may have to stick with meeting people at local gatherings. Book fairs, ice cream socials, sporting events.</p>
<p>If you go to church, mosque, or temple, get to know people there, too.</p>
<p>And yes, I realize this may sound ridiculous. "That person standing in the bleachers next to me at the soccer game? They're somehow going to help me get a developer job?"</p>
<p>Maybe. Maybe not. But don't write people off. </p>
<p>That person may run a small business.</p>
<p>They may have gone to school with a friend who's a VP of Engineering at a Fortune 500 company.</p>
<p>And maybe – just maybe – they're a software engineer, too. After all, there are millions of us software engineers out there. And we don't all live in Silicon Valley. 😉</p>
<p>When you do meet a new person, you don't want to immediately pull out your phone and say "Can I add you to my LinkedIn professional network?"</p>
<p>Instead, you want to play it cool. Introduce yourself.</p>
<p><strong>Remember their name.</strong> Names are integral to building a relationship. If you are bad with names, practice remembering them. You can practice by just trying to remember the name of every character – no matter how minor they are – when you're watching TV shows or movies.</p>
<p>If you forget someone's name, don't guess. Just say "what's your name again" and be sure to remember it the second time.</p>
<p>Shake their hand or fist bump. Talk with them about whatever feels natural. If the conversation peters out, no worries. Let it.</p>
<p>You build relationships over time. It's not about total time spent with someone – it's about the number of times you meet that person over a longer span of time.</p>
<p>There's a good chance you will see the person again in the future. Maybe at that same exact location a few weeks later. And <strong>that</strong> is when you make your move:</p>
<p>"Hi [name] how's the [thing you talked about the previous time] going?"</p>
<p>Pick the conversation up where it left off. If they seem like someone who would be a helpful addition to your Personal Network Board, ask them "hey what are you doing next [day of week]? Do you want to come with me to [other upcoming local event]?"</p>
<p>Always have your upcoming week of events in mind, so you can invite people to join you.</p>
<p>This is a great way to get people to hang out with you in a safe, public space. And you're providing something of value – giving them awareness of an upcoming event.</p>
<p>If they seem interested, you can say "Awesome. What's the best way for me to message with you, and get you the event details?"</p>
<p>Boom – you now have their email or social media or phone number, and your relationship can unfold from there.</p>
<p>This may sound like a slow burn approach. Why be so cautious?</p>
<p>Again, people are busy. Smart people are defensive of their time, and of their personal information.</p>
<p>There are too many vampires out there who want to take advantage of people – trying to sell them something, scam them, get them into their multi-level marketing scheme, or in some other way proselytize them. </p>
<p>The best way to help other people get past this reflexive defensiveness is to already be on their radar from previous encounters as a reasonable person.</p>
<h3 id="heading-how-to-leverage-your-network">How to Leverage Your Network</h3>
<p>We'll talk more about how to leverage your network in Chapter 4. For now, look at your network purely as an investment of time and energy.</p>
<p>I like to think of my network as an orchard. I am planting relationships. Tending to them, and making sure they're healthy.</p>
<p>Who knows when those relationships will grow into trees and bear fruit. The goal is to keep planting trees, and at some point in the future, those trees will help sustain you.</p>
<p>Keep sending out positive energy. Keep offering to help people using your skills, and even your own network. (It is rarely a bad move to make a polite introduction between two people you know.)</p>
<p>Be a kind, thoughtful, helpful person. </p>
<p>Don't ever feel impatient with how slow a job search may be going.</p>
<p>Don't ever let yourself feel slighted or snubbed.</p>
<p>Don't ever let yourself feel jealous of someone else's success. </p>
<p>What goes around comes around. You will one day reap what you sow. And if you're sowing positive energy, you're setting yourself up for one bountiful harvest.</p>
<h2 id="heading-chapter-3-how-to-build-your-reputation">Chapter 3: How to Build Your Reputation</h2>
<blockquote>
<p>"The way to gain a good reputation is to endeavor to be what you desire to appear." – Socrates</p>
</blockquote>
<p>Now that you've started building your skills and your network, you're ready to start building your reputation.</p>
<p>You may be starting from scratch – a total newcomer to tech. Or you may already have some credibility you can bring with you from your other job.</p>
<p>In this chapter, I'll share practical tips for how you can build a sterling reputation among your peers. This will be the key to getting freelance clients, a first job, and advancing in your career.</p>
<p>But first, here's how I built my reputation.</p>
<h3 id="heading-story-time-how-did-a-teacher-in-his-30s-build-a-reputation-as-a-developer">Story Time: How Did a Teacher in His 30s Build a Reputation as a Developer?</h3>
<p><em>Last time on Story Time: Quincy started building his network of developers, entrepreneurs, and hiring managers in tech. He was frequenting hackerspaces and tech events around the city. But he had yet to climb into the arena and test his might...</em></p>
<p>I was already several months into my coding journey when I finally worked up the courage to go to my first hackathon.</p>
<p>One day I encountered a particularly nasty bug, and I wasn't sure how to fix it. So I did what a lot of people would do in that situation: I procrastinated by browsing the web. And that's when I saw it. Startup Weekend EDU.</p>
<p>Startup Weekend is a 54-hour competition that involves building an app, then pitching it to a panel of judges. These events reward your knowledge of coding, design, and entrepreneurship as well.</p>
<p>This particular event – held in the heart of Silicon Valley – had a panel of educators and education entrepreneurs as its judges. With my background in adult education, this seemed like an ideal first hackathon for me.</p>
<p>I told Steve about the event. And then I said the magic words: "I'll do the driving." Which was good, because Steve didn't have a driver's license.</p>
<p>With Steve onboard, we rounded out our team with a couple of devs from the Santa Barbara Hackerspace.</p>
<p>I spent weeks preparing for the event by researching the judges and the companies they worked for. I researched the sponsors. And of course, I practiced coding like a Shaolin monk.</p>
<p>Finally, after a month of preparation, it was the big weekend. We piled into my 2003 Toyota Corolla with the peeling clear coat, put on some high energy music, and started our 5-hour drive.</p>
<p>On the way up, we discussed what we should build. It would be education-focused, of course. Preferably catering to high school students, since those were the grade levels the judge's companies focused on. </p>
<p>But what should the app do? How was it going to make people's lives easier?</p>
<p>I thought back to my own time in high school. I didn't have much to go on, since I'd dropped out after just one year. (I did manage to study for and pass the GED – Good Enough Degree as we called it – while working at Taco Bell, before eventually going to college. But that's another story.)</p>
<p>But one pain point I did remember from high school, which still rang out after all these years: English papers.</p>
<p>Now I loved writing. But I didn't love writing in MLA format, with its rigid citation rules. I used to dread preparing a Work Cited page. My teacher would always dock me points for not formatting my citations correctly.</p>
<p>After listening to a lot of OK ideas from the other passengers in the car, I piped up. I said: "I have an idea. We should code an app that creates citations for you."</p>
<p>And someone laughed and said: "Out of sight."</p>
<p>And Steve said, "Hey that's a good name. We could call it Out of Cite with a 'C'."</p>
<p>We all laughed and felt clever. Then we started discussing the implementation details.</p>
<p>When we arrived at the venue, there were about 100 other devs there. It was an open-plan office space, with low-rise cubicles flanked by whiteboards.</p>
<p>I heard whispers about one of those developers. "Hey, it's that guy who won the event last year," I heard people say. They gestured in the direction of a cocky-looking dev surrounded by fans. "Maybe he'll let me be on his team."</p>
<p>The event started with pitches. Anyone could go up to the front of the room, grab the mic, and deliver a 60 second pitch for the app they wanted to build.</p>
<p>I was so nervous it felt like an alien was about to burst out of my chest. So naturally, I was first in line. Rip the band-aid off, right?</p>
<p>I was sweating and gesticulating wildly as I raced through my pitch. I said something like this: "Citations suck. I mean, they don't suck. They're necessary. And you need to add them to your papers. But preparing citations sucks. Let's build an app that will fill out your Work Cited page for you. Who's with me?"</p>
<p>The room was quiet. Then people realized I was finished talking, and they gave me an obligatory round of applause. The MC took the mic out of my hand and gave it to the next person, and I pranced back to my seat.</p>
<p>After pitches, it was time to form teams. Our Santa Barbara contingent looked at each other and said "I guess we're a team."</p>
<p>We figured out the wifi password and grabbed the choicest of workspaces: a corner office that had a door you could actually close.</p>
<p>I started scrawling UI mockups on whiteboard. I said, "We want something that's always a click away. Right in your browser's menu bar."</p>
<p>"Like a browser plugin," Steve said.</p>
<p>"Yeah. Let's build a browser plugin."</p>
<p>I showed them examples of the three formats that essays might require: MLA, APA, and Chicago.</p>
<p>"Could we generate all three of these at once, so they can just copy-paste them?" I asked.</p>
<p>"We can do better than that," Steve said. "We can have a button for each of them that puts the citation directly into their clipboard."</p>
<p>We worked fast, creating a simple MVP (Minimum Viable Product) by the end of Friday night. All it did was grab the current website's metadata and structure it as a citation. But it worked.</p>
<p>Since it was my first hackathon, I didn't want the stress of staying in a hostel. So I'd splurged to get a hotel room. We had two twin beds, so each night we'd rotate which of us had to sleep on the floor.</p>
<p>Saturday morning, our ambitions grew. I walked to the whiteboard and said to the team: "Citing websites is great and all. But a lot of the things students cite are in books or academic papers. We need to be able to generate citations for those, too."</p>
<p>We found an API that we could use to get citation information based on ISBN (a serial number used for books). And we hacked together a script that could search for academic papers based on their DOI (a serial number used for academic papers), then scrape data from the result page.</p>
<p>By Saturday night, the code for our browser plugin was really coming together. So I sat down and started preparing the presentation slides. I left a lot of the final coding to my teammates while I rehearsed my pitch over and over again for hours.</p>
<p>Even though it was my turn to sleep in a bed, I could barely get any shut-eye due to the jitters. Here I was, right in the heart of the tech ecosystem. Silicon Valley.</p>
<p>As a teacher, I would routinely give talks in front of my peers – sometimes dozens of them. But this was different.</p>
<p>In a few hours, I'd be presenting to a room full of ambitious developers. And judges. People with Ph.D.s, some of whom had founded their own tech companies. They were going to be evaluating our work. I was terrified I'd somehow blow it.</p>
<p>Unable to sleep, I opened my email. The Startup Weekend staff had sent out an email, which included a PDF of a book. It was an unofficial mash-up of the tech startup classics <a target="_blank" href="https://www.amazon.com/Four-Steps-Epiphany-Successful-Strategies/dp/1119690358?_encoding=UTF8&amp;qid=&amp;sr=&amp;linkCode=ll1&amp;tag=out0b4b-20&amp;linkId=662e9d222ccd9aa050d3ad29438e74e3&amp;language=en_US&amp;ref_=as_li_ss_tl">4 Steps to the Epiphany</a> and <a target="_blank" href="https://www.amazon.com/The-Lean-Startup-Eric-Ries-audiobook/dp/B005MM7HY8?_encoding=UTF8&amp;qid=&amp;sr=&amp;linkCode=ll1&amp;tag=out0b4b-20&amp;linkId=13b3c19bdbda93658336cf7c69e27100&amp;language=en_US&amp;ref_=as_li_ss_tl">The Lean Startup</a>.</p>
<p>Now, I had already read these books, because they were required reading for anyone who wanted to build software products in the early 2010s. But I had also read dozens of other startup books. And a lot of their insights sort of ran together into a slurry of advice.</p>
<p>It was 4 a.m., and I couldn't sleep. So I just started reading. One thing these books really hit on is building something that people will pay for. The ultimate form of customer validation.</p>
<p>That's when I realized: you know what would really push my presentation over the finish line? Proof of product-market fit. Proof that the app we were building solved a real problem people had. So much so that they'd open up their wallets.</p>
<p>This gave me an idea. I should take our app on the road and sell it to people.</p>
<p>But it was Sunday morning. Where was I going to find potential customers? Well, our hotel just happened to be located near the main campus of Stanford University.</p>
<p>I drove my team to the event venue, waved goodbye and said: "I'll come back when I have cold, hard cash from customers." </p>
<p>My teammates chuckled. I'm not sure if they thought I was serious. They said, "Just don't be late for the pitch."</p>
<p>But I was serious. I had a prototype of the app running on my laptop. I punched Stanford into my GPS and embarked on my mission.</p>
<p>Now, I studied at a really inexpensive state university in Oklahoma. So I felt really out of my depth when I rolled up to one of the premier universities in the world.</p>
<p>Stanford costs $50,000 per year to attend. And I pulled into their parking lot driving a car worth 1/10th of that.</p>
<p>The campus was a ghost town this time of the week. But a palatial ghost town, nonetheless. Bronze statues. Iconic arches everywhere.</p>
<p>I asked myself: where are the most high-achieving, hard-core students this time of day? The ones who don't have time to waste on manually creating their Work Cited pages?</p>
<p>I walked into the main library, right past the security desk and a sign that said "no soliciting."</p>
<p>I strode around the stacks, finding a small handful of people studying. This one kid was studiously taking notes as he read through a thick textbook. Bingo.</p>
<p>I slid into the seat next to him. "Psst. Hey. Do you like citations?"</p>
<p>"What?"</p>
<p>"Citations. You know, like, work cited pages."</p>
<p>"Um..."</p>
<p>"You know, the last page of your paper, where you have to list all the..."</p>
<p>"I know what a work cited page is."</p>
<p>"OK. Well check this out." I pulled my jacket to the side like a drug dealer, and whipped out my $200 netbook. He humored me for a moment while I delivered my awkward sales pitch.</p>
<p>I said: "Here. I've got this browser plugin. I go to any website, click the button, and voilà. It will create a citation for me."</p>
<p>The kid raised his eyebrows. "Can it do MLA?"</p>
<p>I bit back my excitement and said, "MLA, APA, and even Chicago. Watch." I clicked the button and three citations appeared – each with its own copy-to-clipboard button.</p>
<p>The kid nodded, seeming somewhat impressed. So I attempted to close the sale.</p>
<p>"What if I told you that I was about to launch this app with a yearly subscription. But if you sign up now, I'll get unlimited access not for a year, but for a lifetime."</p>
<p>The kid thought for a moment.</p>
<p>I had heard that silence was the salesperson's best friend. So I sat there for an uncomfortably long time in total silence, staring him down.</p>
<p>Finally he said: "Cool I'm in."</p>
<p>"Awesome. That'll be twenty bucks."</p>
<p>The kid recoiled. "What? That's expensive."</p>
<p>This was of course the era of venture capital-subsidized startups, where Uber and Lyft were losing money on every ride in a race for market share. So the kid's reaction was not totally surprising.</p>
<p>But I thought fast. "Well, how much cash do you have on you?"</p>
<p>He fumbled with his wallet, then said, "five bucks."</p>
<p>I looked at the crumpled bill and shrugged. "Sold."</p>
<p>He smiled, and I sent him an email with instructions for how to install it. Then I said, "One more thing. Let's take a picture together." </p>
<p>I put my phone on selfie mode. He started to smile, and I said, "Here. Hold up the five dollar bill."</p>
<p>I spent another hour pitching people in the library, and managed to get another paying customer as well. Then I raced back to the event venue to finalize our prototype with the team.</p>
<p>That afternoon, I gave what I still think is the best presentation of my life. We live-demoed the working app – which worked perfectly.</p>
<p>We ended the presentation with the photos I'd taken, posing with Stanford students who were now our paying customers. When I held up the cash we earned, the audience burst into applause.</p>
<p>Overall, it was one of the most exhilarating experiences of my life. We came in second place, and won some API credit from one of the companies who sponsored the event.</p>
<p>At the after party, I chipmunked some pizza, so I'd have more time to network with everyone I could. I connected on LinkedIn. I followed on Twitter. I snapped selfies together with people and used the heck out of the event's hashtag.</p>
<p>This was a watershed moment in my coding journey. I had proven to the people in that room that I could help design, code, and even sell an app. And more importantly, I'd proven it to myself.</p>
<h3 id="heading-riding-the-hackathon-circuit">Riding the Hackathon Circuit</h3>
<p>From that moment on, I was hooked on hackathons. That year, I participated in dozens of them. I became a road warrior, railing up and down the coast, attending every competition I could.</p>
<p>It would be much harder from here on out. I didn't have a team anymore. I was on my own. </p>
<p>I'd arrive, meet as many people as I could, then go up and pitch an idea I thought might win over the judges.</p>
<p>Sometimes people joined my team. Sometimes I joined other people's teams.</p>
<p>I didn't merely want to design apps – I wanted to code them, too. And my reach often exceeded my grasp.</p>
<p>There were many hackathons where I would still be trying to fix bugs down to the final minutes before going on stage. Sometimes my apps would crash during live demos.</p>
<p>One hackathon in Las Vegas, I managed to screw up the codebase so badly that we just had to use a slideshow. I sat in the audience with my head in my hands, watching helplessly as my team member demonstrated how our app would hypothetically work – if I could have gotten it to work. We didn't fare well with the judges.</p>
<p>But I kept grinding. Kept arriving in new towns, checking into the hostel, and hitting the venue, and eating as much free pizza as I could.</p>
<p>My teams had come in second or third so many times I could barely keep count. But we'd never managed to outright win a hackathon.</p>
<h3 id="heading-breaking-through">Breaking Through</h3>
<p>That was until an event in San Diego. I'll never forget the feeling of building something that won over the audience and judges to the extent that our victory felt like a foregone conclusion. </p>
<p>After they announced us as the winner, I remember sneaking out the back door to a parking lot and calling my grandparents. I told them that I'd finally done it. I'd helped build an app and craft a pitch that had won a hackathon.</p>
<p>I don't know how much my grandparents understood about software development, or about hackathons. But they said they were proud of me.</p>
<p>With them gone now, I often think back to this conversation. I cherish their encouragement. Their faith in a 30-something teacher grandson could try like crazy and become a developer.</p>
<p>I kept going to hackathons after that. I kept forming new teams and learning new tools along the way. You never forget the first time you get an API to work. Or when you finally grok how some Git command works. And you never forget the people hustling alongside you, trying to get the app to hold together through the demo.</p>
<p>The TechCrunch Disrupt hackathon. The DeveloperWeek hackathon. The ProgrammableWeb hackathon. The $1 Million Prize Salesforce Hackathon. So many big hackathons and so much learning. This was the crucible where my developer chops were forged.</p>
<p>Not only did I manage to build my skills and my network along the way – I now had a reputation as someone who could actually win a hackathon.</p>
<p>I could ship.</p>
<p>This made me a known quantity.</p>
<p>And that reputation was crucial to getting my first freelance clients, my first developer job, and most importantly – trusting my own instincts as a dev.</p>
<h3 id="heading-why-your-reputation-is-so-important">Why Your Reputation is So Important</h3>
<p>The role of reputation in society goes way, way back to human prehistory. In most tribes and settlements, there was some system to keep track of who owed what to whom.</p>
<p>Before there was cash, there was credit.</p>
<p>This may have been a written ledger. Or it may have been an elder who simply kept all these records in their head.</p>
<p>Beyond raw accounting, there was also a less tangible, but equally important vibe that people carried with them.</p>
<p>"John sure knows how to shoe a horse." </p>
<p>Or "Jane is the best story teller in the land." </p>
<p>Or "Jay's courage in battle saved us against the invaders three winters ago."</p>
<p>You'll note that these examples all involve someone being good at something. Not merely being a good, likable person.</p>
<p>It certainly helps to be a chill, down-to-earth human being. But this isn't The Big Lebowski, and we aren't going to survive on our charm alone.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/image__2000-1338_.png" alt="Image" width="600" height="400" loading="lazy">
<em>The Big Lebowski (left). He had no job, he had no skills, he had no energy. But he had chill, out the wazoo.</em></p>
<p>It's easy for a developer to say: "Oh yeah. I know JavaScript like the back of my hand. I can build you any kind of JavaScript application you need, running on any device you can think of."</p>
<p>Or to say: "I ship code under budget and ahead of time – all the time."</p>
<p>But how do you know they're not exaggerating their claims?</p>
<p>After all, a devious man once said:</p>
<blockquote>
<p>"If you can only be good at one thing, be good at lying.   </p>
<p>Then you're good at everything."</p>
</blockquote>
<p>(The true provenance of this quote is unknown. But I like to imagine it was said by a 1920s con man wearing a top hat and a monocle.)</p>
<p>Anyone can lie. And some people do.</p>
<p>Earlier in my career, I had the unpleasant task of firing a teacher who had lied about earning a master's degree. The years went by and nobody caught it. </p>
<p>Every year, he would lie on his annual paperwork, so that he could get a higher pay raise than the other teachers. And every year, he would get away with it.</p>
<p>But one day a small discrepancy tipped me off. I reviewed his file, called up some university record departments, and discovered that he had never bothered finishing his degree. </p>
<p>When I caught him it was a real Scooby Doo moment. "And I would have gotten away with it, if not for you darn kids."</p>
<p>It sucked to know that this person was teaching at the school for years and getting paid more than many of the other teachers – just because he was willing to lie.</p>
<p>The spoils of lying are always there, glistening. Some people are willing to give in to that temptation.</p>
<p>Employers know this. They know you can't trust just any person who claims to know full-stack JavaScript development. You have to be cautious about who gets a company badge, a company email address, and the keys to your production databases.</p>
<p>This is why employers use behavioral interview questions – to try and catch people who are more capable of dishonesty.</p>
<p>Call me naive, but I believe that most people are inherently good. That most people are willing to play by the rules as long as those rules are reasonably fair.</p>
<p>But if even one person out of ten would be a disaster hire, it means that all of us are subjected to higher scrutiny. </p>
<p>The worst-case scenario is not merely someone who lies to make more money. It's someone who sells company secrets, destroys relationships with customers, or breaks laws in the name of inflating their numbers. </p>
<p>History is rife with employees who unleashed catastrophic damage upon their employers, all for their own personal gain.</p>
<p>Thus, the developer hiring process at most big companies is paranoid as heck. Maybe it should be. But unfortunately, this makes it harder for <em>everyone</em> to get a developer job – even the most honest of candidates.</p>
<p>As developers, we need proof that our skills are as strong as we say they are. We need proof that our work ethic is as steadfast as our employers need it to be.</p>
<p>That's where reputation comes in. It reduces ambiguity. It reduces counter-party risk. It makes it safer for employers to make a job offer, and to sign an employment contract with you.</p>
<p>This means that – if you have a strong enough reputation – you may be able to get into the company through a side door – rather than the front door that other applicants line up for.</p>
<p>Some companies even have in-house recruiters who can fast track your interview process. A strong reputation can also help you command more bargaining power during salary negotiations.</p>
<p>So let's talk about how you can build a strong reputation, and become sought-after by managers.</p>
<h3 id="heading-how-to-build-your-reputation-as-a-developer">How to Build Your Reputation as a Developer</h3>
<p>There are at least six time-tested ways you can build your reputation as a developer. These are:</p>
<ol>
<li>Hackathons</li>
<li>Contributing to open source</li>
<li>Creating Developer-focused content</li>
<li>Rising in the ranks working at companies who have a "household name"</li>
<li>Building a portfolio of freelance clients</li>
<li>Starting your own open source project, company, or charity</li>
</ol>
<h4 id="heading-how-to-find-hackathons-and-other-developer-competitions">How to Find Hackathons and Other Developer Competitions</h4>
<p>Hackathons represent the most immediate way to build your reputation, your network, and your coding skills at the same time.</p>
<p>Most hackathons are free, and open to the public. You just need to have the time and the budget to travel.</p>
<p>If you live in a city with lots of hackathons – like San Francisco, New York, Bengaluru, or Beijing – you may be able to commute to the event, then go home and sleep in your own bed.</p>
<p>Even though I lived in Santa Barbara, which only had hackathons once every few months, I did have an old classmate in San Francisco who let me crash on his couch. This gave me access to many more events.</p>
<p>Hackathons used to be hard core events. People would knock back energy drinks and sleep on floors, all to finish their project by pitch time.</p>
<p>But hackathon organizers are gradually becoming more mindful about the health and sustainability of these events. After all, a lot of participants have kids, or demanding full-time jobs, and can't just all-out code for an entire weekend.</p>
<p>The best way to find upcoming events is to just google "hackathon [your city name]" and browse the various event calendars that come up in the search results. Many of these will be run by universities, local employers, or even education-focused charities.</p>
<p>If you're playing to win, I recommend doing your research ahead of time. </p>
<p>Who are the event sponsors? Usually it will be Business-to-Developer type companies, with APIs, database tools, or various Software-as-a-Service offerings.</p>
<p>These sponsors will probably have a booth at the event where you can talk with their developer advocates. These are people who get paid to teach people how to use the company's tools. Sometimes you'll even meet key employees or founders at these booths, which can be a great networking opportunity, too.</p>
<p>Often the hackathon will offer sponsor-specific prizes. "Best Use of [sponsor's] API." It may be easier to focus your time on incorporating specific sponsor tools into your project, rather than trying to win the grand prize. You can still put these down as wins on your LinkedIn or your résumé. A win is a win.</p>
<p>Sometimes the hackathon is just so high profile – or the prize is so substantial – that is just makes sense to try and win the competition outright.</p>
<p>During my time going to hackathons, I was able to win several months' rent worth of cash prizes, several years' worth of free co-working space, and even a private tour of the United Nations building in New York City.</p>
<p>On the hackathon circuit, I met people whose main source of income was cash prizes from winning hackathons. One dev I knew managed to win nine sponsor prizes at the same hackathon. He managed to integrate all of those sponsor tools into his project – and also win second place overall.</p>
<p>Don't be surprised if some of the people you run into frequently at hackathons go on to found venture-backed companies, or launch prominent open source projects.</p>
<p>The level of ambition you'll see among hackathon regulars is way, way higher than that of the average developer. These are, after all, people who finish a work week, then go straight into a work weekend. These people are not afraid to leap out of the frying pan and into the fire.</p>
<h3 id="heading-how-to-contribute-to-open-source">How to Contribute to Open Source</h3>
<p>Contributing to open source is one of the most immediate ways you can build your reputation. Most employers are going to look at your GitHub profile, which will prominently display your Git commit history.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/raisedadead__Mrugesh_Mohapatra__--.png" alt="Image" width="600" height="400" loading="lazy">
<em>The GitHub profile of Mrugesh Mohapatra, who does a ton of platform development and DevOps for freeCodeCamp.org. Note how green his activity bar is. 2,208 contributions in the past year alone.</em></p>
<p>Many open source project maintainers, such as Linux Foundation, Mozilla (Firefox), and of course freeCodeCamp ourselves, have high standards for code quality.</p>
<p>You can read through open GitHub issues to find known bugs or feature requests. Then you can make the code changes and open a pull request. If the maintainers merge your pull request, this will be a major feather in your cap.</p>
<p>One of the best ways to get a job at a tech company is to become a prolific open source contributor to their repositories.</p>
<p>Open source contribution is a great way to build your reputation because everything you do is right out in public. And you get the <strong>social proof</strong> of having other developers review and accept your work.</p>
<p>If you're interested in building your reputation through open source, here's how to get started.</p>
<p>Read Hillary Nyakundi's comprehensive guide to <a target="_blank" href="https://www.freecodecamp.org/news/how-to-contribute-to-open-source-projects-beginners-guide/">getting started with open source</a>.</p>
<h3 id="heading-how-to-create-developer-focused-content">How to Create Developer-Focused Content</h3>
<p>Developers are people. And like other people, they want something to do with their time when they're not working, sleeping, or hanging with friends and family.</p>
<p>For many people – including myself – that means spending time in other people's thoughts. Books. Video essays. Interactive experiences like <a target="_blank" href="https://www.freecodecamp.org/news/learn-to-code-rpg-1-5-update/">visual novels</a>.</p>
<p>You can broadly refer to these as "content." I'm not a huge fan of the word, because it makes these works feel disposable. But that's what people call it.</p>
<p>Software development is an incredibly broad field, with so many different topics you could approach. There are developer lifestyle vlogs, coding interview prep tutorials, coding live streams on Twitch, and <a target="_blank" href="https://www.freecodecamp.org/news/tag/podcast/">developer interview podcasts like the freeCodeCamp Podcast</a>.</p>
<p>There are probably entire categories of developer content that we haven't even thought of yet, which will break over the next decade.</p>
<p>If you're interested in film, journalism, or creative writing, developer content may be a good way to build your reputation.</p>
<p>You can pick a specific topic and gradually come to be seen as the expert.</p>
<p>There are developers who specialize in tutorials for specific technology stacks, for example.</p>
<p>My friend Andrew Brown is a former CTO from Toronto who has passed all the major DevOps exams. He creates <a target="_blank" href="https://www.freecodecamp.org/news/azure-developer-certification-az-204-pass-the-exam-with-this-free-13-5-hour-course/">free courses to prepare you for all the AWS, Azure, and Google Cloud certifications</a>, and also runs an exam prep service.</p>
<p>There are more than 30 million software developers around the world. That's a lot of people who will potentially consume your content, and who will come to know who you are.</p>
<h3 id="heading-how-to-rise-in-the-ranks-by-working-at-big-companies">How to Rise in the Ranks by Working at Big Companies</h3>
<p>You may have seen a developer introduced as an "Ex-Googler" or an "Ex-Netflix engineer."</p>
<p>Some tech companies have such rigorous hiring processes – and such high standards – that even getting a job at the company is a big accomplishment.</p>
<p>There are some practical reasons why employers look at where candidates have previously worked. It reduces the risk of a bad hire.</p>
<p>You can build up your reputation by working your way up the prestige hierarchy. You can ladder from a local employer to a Fortune 500 company, and ultimately to one of the big tech giants.</p>
<p>Of course, working at a giant corporation is not for everyone. I'll talk about this more in Chapter 4. But know that it is one option you have for building up your reputation.</p>
<h3 id="heading-how-to-build-your-reputation-by-building-a-portfolio-of-freelance-clients">How to Build your Reputation by Building a Portfolio of Freelance Clients</h3>
<p>You can build your reputation by working with companies as a freelancer.</p>
<p>Freelance developers usually work on smaller one-person projects. So this may be a better strategy for building your reputation locally.</p>
<p>For example, if you did good work for a locally-based bank, that may be enough to convince a local law firm to contract you as well.</p>
<p>There is something to be said for being a "hometown hero." I know many developers who can effectively compete with online competition just by being physically present in meetings, and knowing people locally.</p>
<h3 id="heading-how-to-build-a-developer-portfolio-of-your-work">How to Build a Developer Portfolio of Your Work</h3>
<p>Once you've built some projects, you'll want to show them off. And the best way to do this is with short videos.</p>
<p>People are busy. They don't have time to pull down your code and run it on their own computer. </p>
<p>And if you send people to a website, they may not fully grasp what they're looking at, and why it's so special.</p>
<p>That's why I recommend you use a screen capture tool to record 2 minute video demos.</p>
<p>Two minutes should be long enough to show how the project works. And once you've done that, you can explain some of the implementation details, and design decisions you made.</p>
<p>But always, always start with the demo. People want to see something work. They want to see something visual.</p>
<p>Once you've lured people in with your compelling demo of your app running, you can explain all the details you want. Your audience will now have more context, and be more interested.</p>
<p>Two minutes is also a magic length, because you can upload that video to a tweet, and it will auto-play on Twitter as people scroll past it. Auto-play videos are much, much more likely to be watched on Twitter. They remove the friction of having to click a play button, or navigate to another website.</p>
<div class="embed-wrapper">
        <blockquote class="twitter-tweet">
          <a href="https://twitter.com/ossia/status/1603405016525688834"></a>
        </blockquote>
        <script defer="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script></div>
<p>You can put these project demo videos on websites like YouTube, Twitter, your GitHub profile, and of course your own portfolio website.</p>
<p>For capturing this video, I recommend using QuickTime, which comes built-in with MacOS. And if you're on Windows, you can use Game Recorder, which comes free in Windows 10.</p>
<p>And if you want a more powerful tool, OBS is free and open source. It's harder to learn, but infinitely customizable.</p>
<p>As far as recording tips: keep your font size as large as possible, and use an external mic. Any mic you can find – even from cheap headphones – will be better than speaking into your laptop's built in mic.</p>
<p>Invest as much time as you need to in recording and re-recording takes until you nail it.</p>
<p>Being able to demo your projects and present your code is a valuable skill you'll use throughout your career. Time spent practicing pitching is never wasted.</p>
<h3 id="heading-how-to-start-your-own-open-source-project-company-or-charity">How to Start Your Own Open Source Project, Company, or Charity</h3>
<p>Being a founder is the fastest – but also riskiest – way to build a reputation as a developer. </p>
<p>It's riskiest because you're wagering your time, your money, and possibly even your personal relationships – all for an unknown outcome.</p>
<p>If you contribute to open source for long enough, you <em>will</em> build a reputation as a developer.</p>
<p>If you grind the hackathon circuit for long enough, you <em>will</em> build a reputation as a developer<em>.</em></p>
<p>But you could attempt to start entrepreneurial projects for decades without getting traction. And squander your time, money, and connections along the way.</p>
<p>Entrepreneurship is beyond the scope of this book. But if you're interested in it, I will give you this quick advice:</p>
<p><strong>Most entrepreneurs fail</strong>. Some fail due to circumstances outside their control. But a lot fail due to not understanding the nature of the risks they're taking on.</p>
<p>Don't rush into founding a project, company, or charity. Try to work for other organizations who are already doing work in your field of interest.</p>
<p>By working for someone else, you get paid to learn. You get exposure to the work, and the risks surrounding it. And you can build savings for an eventual entrepreneurial venture.</p>
<h2 id="heading-how-not-to-destroy-your-reputation">How Not to Destroy Your Reputation</h2>
<blockquote>
<p>"It takes a lifetime to build a good reputation, but you can lose it in a minute." – Will Rogers, Actor, Cowboy, and one of my heroes growing up in Oklahoma City</p>
</blockquote>
<p>Building your reputation is a marathon, not a sprint. </p>
<p>It may take years to build up a reputation strong enough to open the right doors.</p>
<p>But just like in a competitive marathon, a stumble can cost you valuable time. A stumble that results in injury may put you out of the race completely.</p>
<h3 id="heading-dont-say-dumb-things-on-the-internet">Don't Say Dumb Things on the Internet</h3>
<p>People used to say dumb things all the time. The words might hang in the air for a few minutes while everyone winced. But the words did eventually dissipate.</p>
<p>Now when people say dumb things, they often do so online. And in indelible ink.</p>
<p>Always assume that the moment you type something into a website and press enter, it's going to be saved to a database. That database is going to be backed up across several data centers around the world.</p>
<p>You can prove the existence of data, but there is no way to prove the absence of data.</p>
<p>You should assume, for all intents and purposes, that the cat is out of the bag. There's no getting the cat back in the bag. Whatever you just said: that's on your permanent record.</p>
<p>You can delete the remark. You can delete your account. You can even try to scrub it from Google search results. But someone has probably already backed it up on the Wayback Machine. And when one of those databases inevitably gets hacked years from now, those data will probably still be in there somewhere, ready for someone to resurface them.</p>
<p>It is a scary time to be a loud mouth. So don't be. Think before you speak.</p>
<p>My advice, which may sound cowardly: get out of the habit of arguing with people online.</p>
<p>Some people abide by the playground rule of "if you don't have something nice to say, don't say anything at all."</p>
<p>I prefer the "praise in public, criticize in private." </p>
<p>I will publicly recognize good work someone is doing in the developer community. If I see a project that impresses me, I will say so.</p>
<p>But I generally refrain from tearing people down. Even people who deserve it.</p>
<p>In a fight, everyone looks dirty.</p>
<p>You don't want to look wrathful, tearing apart someone's argument, or dog piling in on someone who just said something dumb.</p>
<p>Sure – caustic wit can win you internet points in the short term. But it can also make people love you a little bit less and fear you a little bit more.</p>
<p>I also try to refrain from complaining. Yes, I could probably get better customer service if I threatened to tweet about a cancelled flight.</p>
<p>But people are busy. Most of them don't want to use their scarce time, scrolling through social media, only to see me groaning about what is in the grand scheme of things a mild inconvenience.</p>
<p>So that is my advice on using social media. Try to keep it positive.</p>
<p>If it's a matter that you believe strongly about, I won't stop you from speaking your mind. Just think before you type, and think before you hit send.</p>
<h3 id="heading-dont-over-promise-and-under-deliver">Don't Over-promise and Under-deliver</h3>
<p>One of the most common ways I see developers torpedo their own reputations is to over-promise and under-deliver. This is not necessarily a fatal error. But it is bad.</p>
<p>Remember when I talked about the Las Vegas hackathon where I utterly failed to finish the project in time for the pitch, and we had to use slides instead of a working app? </p>
<p>Yeah, that was one of the lowest points in my learn to code journey. My teammates were polite, but I'm sure they were disappointed in me. After all, I had been overconfident. I had over-promised what I'd be able to achieve in that time frame, and I had under-delivered.</p>
<p>It is much better to be modest in your estimations of your abilities.</p>
<p>Remember the parable of Icarus, who on wax wings flew too close to the sun. If only he'd taken a more measured approach. Ascended a bit slower. Then his wings wouldn't have melted, and he wouldn't have plunged into the sea, leaving a guilt-stricken father.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/1690px-Pieter_Bruegel_de_Oude_-_De_val_van_Icarus.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>Landscape with the Fall of Icarus by Pieter Bruegel the Elder, circa 1560. Icarus coulda been a contender. He coulda been somebody. But instead, he's just legs disappearing into the sea. And the farmers and the shepherds can't be bothered to look up from their work to take in his insignificance.</em></p>
<h3 id="heading-get-addictions-under-control-before-they-damage-your-reputation">Get Addictions Under Control Before They Damage Your Reputation</h3>
<p>If you have an untreated drug, alcohol, or gambling addiction, seek help first. The developer job search can be a long, grueling one. You want to go into it with your full attention.</p>
<p>Even something as seemingly harmless as video game addiction can distract you, and soak up too much of your time. It's worth getting it under control first.</p>
<p>I am not a doctor. And I'm not going to give you a "drugs are bad" speech. But I will say: you may hear of Silicon Valley fads, where developers abuse drugs thinking they can somehow improve their coding or problem solving abilities.</p>
<p>For a while there was a "micro-dosing LSD" trend. There was a pharmaceutical amphetamines trend.</p>
<p>My gut reaction to that is: any edge these may give you is probably unsustainable, and a net negative over a longer time period.</p>
<p>Don't feel peer pressure to take psychoactive drugs. Don't feel peer pressure to drink at happy hours. (I haven't drank so much as a beer since my daughter was born 8 years ago, and I don't feel like I've missed out on anything at all.)</p>
<p>If you are in recovery from addiction, be mindful that learning to code and getting a developer job will be a stressful process. Pace yourself, so you don't risk a relapse.</p>
<p>You do not want to reach the end of the career transition process – and achieve so much – only to have old habits resurface and undo your hard work.</p>
<h3 id="heading-try-and-separate-your-professional-life-from-your-personal-life">Try and Separate Your Professional Life From Your Personal Life</h3>
<p>You may have heard the expression, "Don't mix business with pleasure."</p>
<p>As a developer, you are going to become a powerful person. You are going to command a certain degree of respect from other people in your city.</p>
<p>Maybe not as much as a doctor or an astronaut. But still. People are going to look up to you.</p>
<p>You're going to talk with people who would love to be in your shoes.</p>
<p>Do not flaunt your wealth.</p>
<p>Do not act as though you're smarter than everybody else.</p>
<p>Do not abuse the power dynamic to get what you want in relationships.</p>
<p>This will make you unlikable to the people around you. And if it's somehow captured and posted online, it may go on to haunt you for the rest of your career.</p>
<p>Never lose sight of how much you have. And how much you have to lose.</p>
<h3 id="heading-use-the-narrator-trick">Use the Narrator Trick</h3>
<p>I'll close this chapter with a little trick I use to pump myself up.</p>
<p>First, remember that you are the hero in your own coding journey. In the theater of your mind, you are the person everyone's watching – the one they are rooting for.</p>
<p>The Narrator Trick is to narrate your actions in your head as you do them.</p>
<blockquote>
<p>Quincy strides across the hackerspace, his laptop tucked under his arm. He sets his mug under the hot water dispenser and drops in a fresh tea bag. He pulls back the lever. And as the steaming water fills his mug, he says aloud in his best British accent: "Tea. Earl Grey. Hot."  </p>
<p>His energizing beverage in hand, he slides into a booth, squares his laptop on the surface, and catches the glance of a fellow developer. They lock eyes for a second. Quincy bows his head ever-so-slightly, acknowledging the dev's presence. The dev bows back, almost telepathically sharing this sentiment: "I see you friend. I see you showing up. I see you getting things done."</p>
</blockquote>
<p>This may sound ridiculous. Why yes, it is ridiculous. But I do it all the time. And it works.</p>
<p>Narrating even the most mundane moments of your life in your head can help energize you. Crystalize the moment laid out before you, and give you clarity of purpose.</p>
<p>And this works even better when you think of your life in terms of eras ("the Taco Bell years"). Or inflection points ("passing the GED exam").</p>
<p>What does this have to do with building your reputation? Your reputation is essentially the summary of who you are. What you mean to people around you.</p>
<p>By taking yourself more seriously, by thinking about your life as a movie, you're gradually working through who you are. And who you want to one day become.</p>
<p>By narrating your actions, you shine a brighter light on them in your own mind. Why did I just do that? What was I thinking? Was there a better move there?</p>
<p>So many people sabotage their reputations without even realizing it, just because they've settled into bad habits.</p>
<p>For years I thought I had to be "funny" all the time. I would find any opportunity to inject some self-deprecating humor. A lot of people realized what I was doing and found it amusing. But a lot of them didn't understand, and just got the impression I was a jerk. </p>
<p>Why did I do that? I think it went back to grade school, when I was always trying to be the class clown and make people laugh. </p>
<p>But decades later, this reflex to fill silence with laughter was not serving me well.</p>
<blockquote>
<p>"When you repeat a mistake, it's not a mistake anymore. It's a decision." – Paulo Coelho</p>
</blockquote>
<p>I might have gone on much longer without noticing this bad habit. But with the Narrator Trick, the awkwardness of my behavior was laid bare.</p>
<p>I'm sure I've got lots of other ways of thinking and ways of doing things that are suboptimal. And with the help of the Narrator Trick, I'm hoping to identify them in the future and refine them, before they give people the wrong impression.</p>
<h3 id="heading-your-reputation-will-become-your-legacy">Your Reputation Will Become Your Legacy.</h3>
<p>Think about who you want to be at the end of your story. How you want people to think of your time on Earth. Then work backward from there. </p>
<p>The person you want to be at the end of the movie. That hero you want people to admire. Why not start carrying yourself like that now?</p>
<p>Can you imagine what it would be like to be a successful developer? To have built software systems that people rely upon?</p>
<p>That future you – how would they think? How would they approach situations and solve problems? How would they talk about their accomplishments? Their setbacks?</p>
<p>Merely thinking about your future self can help you clarify your thinking. Your priorities.</p>
<p>I often think of "Old Man Quincy", with his bad back. He has to excuse himself to run to the toilet every 30 minutes. </p>
<p>But Old Man Quincy still tries his best to work with what he has. He moves in spite of sore joints. He ponders in spite of a foggy mind. </p>
<p>Old Man Quincy still wants to get things done. He's proud of what he's accomplished, but he doesn't spend much time looking back. He looks forward at what he's going to do that day, and what goals he's going to accomplish.</p>
<p>I often think about Old Man Quincy, and work backward to where I am today. </p>
<p>What decisions can I make today that will set me up for being someone worthy of admiration tomorrow? Do I have to wait decades to earn that reputation? Or can I borrow some of that respect from the future?</p>
<p>By thinking like my future self might think, can I make moves that earn me a positive reputation in the present?</p>
<p>I believe that you can leverage your future reputation – your legacy – right now. Just think in terms of your future self and what you'll accomplish. And use that as a waypoint to guide you forward.</p>
<p>I hope that these tools – the Narrator Trick and the visualizing your future self trick – help you not only think about the nature of reputation. I hope they also help you take concrete steps toward improving your reputation.</p>
<p>Because building a reputation – making a name for yourself – is the surest path to sustainable success as a developer.</p>
<p>Success can mean many things to many people. But most people – from most cultures – would agree: one big aspect of success is putting food on the table for yourself and your family.</p>
<p>And that's what we're going to talk about next.</p>
<h2 id="heading-chapter-4-how-to-get-paid-to-code-freelance-clients-and-the-job-search">Chapter 4: How to Get Paid to Code – Freelance Clients and the Job Search</h2>
<p>If you've been building your skills, your network, and your reputation, then getting a developer job is not all that complicated.</p>
<p>Note that I said it's not complicated – it's still a lot of work. And it can be a grind.</p>
<p>First, let me tell you how I got my first job.</p>
<h3 id="heading-story-time-how-did-a-teacher-in-his-30s-get-his-first-developer-job">Story Time: How Did a Teacher in His 30s Get His First Developer Job?</h3>
<p><em>Last time on Story Time: Quincy hit the hackathon circuit hard, even winning a few of the events. He was building his reputation as a developer who was "dangerous" with JavaScript. Not super skilled. Just dangerous...</em></p>
<p>I had just finished a long day of learning at the Santa Barbara downtown library, sipping tea and building projects.</p>
<p>The best thing about living in California is the weather. We'd joke that when you rented an exorbitantly-priced one-bedroom apartment in the suburbs, you were not paying for the inside – you were paying for the outside.</p>
<p>My goal was to spend as little time in that cramped 100-year old rat trap as necessary, and to spend the rest out walking around town.</p>
<p>It was a beautiful Wednesday evening. I still had two more days to prepare for that weekend's hackathon. And my brain was completely fried from the day of coding. My wife was working late, so I checked my calendar to find something to do.</p>
<p>On the first Monday of each month, I would map out all that month's upcoming tech events around southern California, so I'd always have a tech event I could attend if I had the energy.</p>
<p>Ah – tonight is the Santa Barbara Ruby on Rails meetup, and I had already RSVP'd.</p>
<p>I didn't know a lot about Ruby on Rails, but I had completed a few small projects with it. I was much more of a JavaScript and Python developer.</p>
<p>But I figured, what the heck. I need to keep up my momentum with building my network. And the venue was just a few blocks away.</p>
<p>I walked in and it was just a few devs sitting around a table chatting. It quickly became clear that they all worked together at a local startup, maintaining a large Ruby on Rails codebase. Most of them had been working there for several years.</p>
<p>Now at this point, I'd spent the past year building my skills, my network, and my reputation. So I was able to hold my own during the conversation.</p>
<p>But I also had a feel for the limits of my abilities. So I stayed modest. Understated. The way I'd seen so many other successful developers maneuver a conversation at tech events.</p>
<p>It became clear that one of the developers at the table was the Director of Engineering. He reported directly to the CTO.</p>
<p>And then it became clear that they were looking to hire Ruby on Rails developers.</p>
<p>I was candid about my background and my abilities. "My background is in adult education. Teaching English and running schools. I just started learning to code about a year ago."</p>
<p>But the man was surprisingly unfazed. "Well if you want to come in for an interview, we can see whether you'd be a good fit for the team."</p>
<p>That night I walked home feeling an electricity. It was much more dread than excitement.</p>
<p>I felt nowhere near ready. And I wasn't even looking for a job. I was just living off my savings, learning to code full-time, with health insurance through my wife's job.</p>
<p>I was a compulsive saver. People would give me a hard time about it. I would change my own oil, cut my own hair, and even cook my own rice at home when we ordered takeout – just to save a few bucks.</p>
<p>Over the decade that I'd worked as a teacher, I'd managed to save nearly a quarter of my after-tax earnings. And I would buy old video games on Craigslist, then flip them on eBay. That may sound silly, but it was a substantial source of income for me.</p>
<p>What were we saving all this for? We weren't sure. Maybe to buy a house in California at some point in the future? But it meant that I did not have to hustle to get a job. I knew I was in a privileged position, and I tried to make the most of it by learning more every day.</p>
<p>So in short, I didn't think I was ready for my first developer job. And I was worried that if they hired me, it would be a big mistake. They would realize how inexperienced I was, fire me, and then I'd have to explain that failure during future job interviews.</p>
<p>Of course, I now know I was looking at this opportunity the wrong way. But let me finish the story.</p>
<p>When I scheduled my job interview, they asked me for a résumé. I wasn't sure what to do, so I left all my professional experience there. All the schools I'd worked for over the years. (I left off my time running the drive-thru at Taco Bell.) </p>
<p>Of course, none of my work experience had anything to do with coding. But what was I supposed to do, hand them a blank sheet of paper?</p>
<p>Well, I did have an online portfolio of projects I'd built. And most importantly, I had a list of all the hackathons I'd won or placed at. So I included those.</p>
<p>I spent the final hours before the interview revisiting all the Ruby on Rails tutorials I'd used over the past year, to refresh my memory. And then I put on my hoody, jeans, and backpack, and walked over to their office.</p>
<p>The office manager was a nice lady who took me back to the developer bullpen and introduced me to their small team of devs. There were maybe a dozen of them, most of them dressed in jeans and hoodies, aged from early 20s to late 40s. Two of them were women.</p>
<p>I took turns navigating the tangle of desks and cables, shaking hands with each of them and introducing myself. This is where all my experience as a classroom teacher memorizing student names came in handy. I was able to remember all their names, so that later in the day when I left I could follow up with each of them: "Great meeting you [name]. I'd be excited to work alongside you."</p>
<p>First I met with the director of engineering. We went into a small office and closed the door. </p>
<p>A whiteboard on the wall was covered in sketches of Unified Modeling Language (UML) diagrams. A rainbow of dry-erase marker laid out the relationships between various servers and services.</p>
<p>I kept glancing at that whiteboard, fearing that he'd send me over to it to solve some coding problems and demonstrate my skills. Maybe the famous fizzbuzz problem? Maybe he'd want me to invert a binary tree?</p>
<p>But he never even mentioned the whiteboard. He just sat there looking intensely at me the whole time.</p>
<p>They were a company of about 50 employees, with lots of venture capital funding, and thousands of paying customers – mostly small businesses. They prided themselves on being pragmatic. At no point did they inquire about what I studied in school, or what kind of work I did in the past. All they really cared about was...</p>
<p>"Look. I know you can code," he said. "You've been coding this whole time, winning hackathons. I checked out some of your portfolio projects. The code quality was OK for someone who's new to coding. So for me, the real question is – can you learn how we do things here? Can you work with the other devs on the team? And most critically: can you get things done?"</p>
<p>I gulped, leaned forward, and mustered all the confidence I could. "Yes," I said. "I believe I can."</p>
<p>And he said, "Good. Good. OK. Go wait in the Pho restaurant downstairs. [The CTO] should be down there in a minute."</p>
<p>So I talked with the CTO over noodles. Mostly listened. I'd learned that people project intelligence onto quiet people. Listening intently not only helps you get smarter – it even makes you look smarter.</p>
<p>And the approach worked. The meeting lasted about an hour. The noodles were tasty. I learned a lot about the company history, and the near-term goals. The CTO said, "OK go back up and talk with [the director of engineering]."</p>
<p>And I did. And he offered me a job.</p>
<p>Now, I want to emphasize. This is not how most people get their first developer job. </p>
<p>You're probably thinking, "Gee, here Quincy is Forest Gumping his way into a developer job that he wasn't even looking for. If only we could all be so lucky."</p>
<p>And that's certainly what it felt like for me at the time. But in the next section, I'm going to explore the relationship between employers and developers. And how me landing that job was less about my skills as an interviewee, and more about the year of coding, networking, and reputation building that preceded it.</p>
<p>This wasn't a cushy job at a big tech company, with all the compensation, benefits, and company bowling alleys. It was a contractor role that paid about the same as I was making as a teacher.</p>
<p>But it was a developer job. A company was paying me to write code.</p>
<p>I was now a professional developer.</p>
<h3 id="heading-what-employers-want">What Employers Want</h3>
<p>Flash forward a decade. I have now been on both sides of the table. I've been interviewed by hiring managers as a developer. I've interviewed developers as a hiring manager.</p>
<p>I've spent many hours on calls with developers who are in the middle of the job search. Some of them have applied to hundreds of jobs and gotten only a few "call-backs" for job interviews.</p>
<p>I've also spent many hours on calls with managers and recruiters, trying to better understand how they hire and what they look for.</p>
<p>I think much of the frustration developers feel about the hiring process comes down to a misunderstanding.</p>
<p>Employers value one thing above all else: predictability.</p>
<p>Which of these candidates do you think an employer would prefer?</p>
<p><strong>X</strong> is a "rockstar" 10x coder who often has flashes of genius. X also has bursts of incredible productivity. But X is often grumpy with colleagues, and often misses deadlines or meetings.</p>
<p><strong>Y</strong> is an OK coder, and has slower but more consistent output. Y gets along fine with colleagues, and rarely misses meetings or deadlines.</p>
<p><strong>Z</strong> is similar to Y in output, and able to get along well with colleagues and meet deadlines. But Z has changed jobs 3 times in the past 3 years.</p>
<p>OK, you can probably guess from everything I've said up to this point: <strong>Y</strong> is the preferred candidate. And that is because employers value predictability above all else.</p>
<p><strong>X</strong> is a trap candidate that some first-time managers may make the mistake of hiring. If you are curious why hiring X would be such a bad idea, read <a target="_blank" href="https://www.freecodecamp.org/news/we-fired-our-top-talent-best-decision-we-ever-made-4c0a99728fde/">We fired our top talent. Best decision we ever made.</a></p>
<p>I only added <strong>Z</strong> to this list to make a point: try not to change jobs too often. </p>
<p>You can increase your income pretty quickly by laddering from employer to employer. You can start applying for new jobs the moment you accept an offer letter. But this will repel many hiring managers.</p>
<p>After all, the rolling stone gathers no moss. You will be in and out of codebases before you have the time to understand how they work.</p>
<p>Consider this: it can take 6 months or longer for a manager to bring a new developer up to speed, to the point where they can be a net positive for the team.</p>
<p>Until that point, the new hire is essentially a drain on company resources, absorbing time and energy from their peers who have to onboard them, help them find their way around a codebase, and fix their bugs.</p>
<h3 id="heading-most-employers-are-risk-averse">Most Employers are Risk Averse</h3>
<p>Let's say a manager hires the wrong developer. Take a moment to think about how bad that can be for the team.</p>
<p>On average, it takes about 3 months to fill a developer position at a company. Employers have to first:</p>
<ul>
<li>get the budget to hire a developer approved by their bosses</li>
<li>create the job description</li>
<li>post the job on job sites and communicate with recruiters</li>
<li>sift through résumés – many of which will be low-effort from candidates who are blindly applying to as many jobs as possible</li>
<li>start the interviewing process, which may involve flying the candidates out to the city and lodging them in a hotel</li>
<li>rounds of interviews involving lots of team members. For some employers, this is a multi-day affair</li>
<li>selecting a final candidate, and negotiating an offer...</li>
<li>which many candidates will not accept anyway</li>
<li>signing contracts and onboarding the employee</li>
<li>giving them access to sensitive internal systems</li>
<li>introducing them to their teammates, and making sure everyone gets along OK</li>
<li>and then months of informal training, when the employee needs to understand a service or a part of a legacy codebase</li>
<li>and finally, steeping them in the team's way of doing things</li>
</ul>
<p>In short – a lot of work.</p>
<p>Now imagine that after doing all that, the new employee says "Hey, I just got a higher offer from this other company. Peace out, yo."</p>
<p>Or imagine that the employee is unreliable, and often shows up hours after the workday has started.</p>
<p>Or imagine that the employee struggles with untreated drug, alcohol, or gambling addiction, anger issues – or just turns out to be a passive aggressive person who undermines the team.</p>
<p>Now you have to start this entire process over again, and search for a new candidate for the position.</p>
<p>Hiring is hard.</p>
<p>So you can see why employers are risk averse. Many of them will pass over seemingly qualified candidates until they find someone whom they feel 99% sure about.</p>
<h3 id="heading-because-employers-are-so-risk-averse-job-seekers-suffer">Because Employers are So Risk Averse, Job Seekers Suffer</h3>
<p>Now if you think hiring is hard, wait until you hear about the job application process. You may already be all-too-familiar with it. But here goes...</p>
<ul>
<li>You have to prepare your résumé or CV. Along the way, you will make decisions which you'll constantly second-guess throughout your job search.</li>
<li>You have to look around for job openings online, research the employers, and assess whether they're likely to be a good fit for you.</li>
<li>Most job openings will lead to webforms where you will have to retype your résumé over and over again, hoping the form doesn't crash due to server errors or JavaScript validation errors.</li>
<li>Once you submit these job applications, you have to wait while employer process them. Some employers receive so many applications that they can't manually review them all. (Google alone receives 9,000 applications per day.) Employers will use software to filter through applications. In-house recruiters <a target="_blank" href="https://www.freecodecamp.org/news/you-in-6-seconds-how-to-write-a-resume-that-employers-will-actually-read-fd7757740802/">spend an average of 6 seconds looking at each résumé</a>. Often your application will never even be reviewed by a human. </li>
<li>You will likely never hear anything back from the company. They have little incentive to tell you why they rejected you (they don't want you to file a discrimination lawsuit). If you're lucky, you'll get one of those "We've chosen to pursue other candidates" emails.</li>
<li>And all the time you spend applying for these jobs – potentially hours per week – is mentally exhausting and, of course, unpaid.</li>
</ul>
<p>Wow. So you can see what a nightmare the hiring process is for employers, and especially for job candidates.</p>
<p>But if you stick with it, you can eventually land offers. And when it rains, it pours.</p>
<p>Here's data from one freeCodeCamp contributor's job search over the span of 12 weeks:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/85L921BMzXxKhVySPo9gxWamr5J4QLFJaVEn.png" alt="Image" width="600" height="400" loading="lazy">
<em>Out of 291 applications, he ultimately received 8 offers.</em></p>
<p>And as the offers came in, the starting salary got higher and higher. Note, of course, that this is for a job in San Francisco, one of the most expensive cities in the world. </p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/bDp3eVv6VQS3Og3ulVpwp6dDylIybdpRczsD.png" alt="Image" width="600" height="400" loading="lazy">
<em>By week 12 his starting salary offers were nearly double what they were in week 2.</em></p>
<p>This developer's rate of getting interviews is quite strong. And his negotiation ability was also strong. You can <a target="_blank" href="https://www.freecodecamp.org/news/5-key-learnings-from-the-post-bootcamp-job-search-9a07468d2331/">read more about his process if you're curious</a>.</p>
<p>But as I've said before, it is much easier to get into a company through the side door.</p>
<p>And that's one of the reasons I wrote this book. I don't want you to keep lining up for the front door at these employers.</p>
<h3 id="heading-if-you-build-your-skills-your-network-and-your-reputation-you-can-bypass-a-lot-of-the-job-application-process">If you Build Your Skills, Your Network, and Your Reputation You Can Bypass a Lot of the Job Application Process.</h3>
<p>Throughout this book, I've been teaching you techniques to increase your likelihood of "lucking" into a job offer.</p>
<blockquote>
<p>"Luck is preparation meeting opportunity. If you hadn't been prepared when the opportunity came along, you wouldn't have been 'lucky.'" – Oprah Winfrey</p>
</blockquote>
<p>This is why throughout this book I've encouraged you to develop all three of these areas at once, and to start thinking about them from day one – well in advance of your job search.</p>
<p>My story of not even looking for a job and landing a job may seem silly. But this happens more often than you might think.</p>
<p>The reality is: learning to code is hard.</p>
<p>But knowing how to code is important.</p>
<p>In every industry – in virtually every company in the world – managers are trying to figure out ways to push their processes to the software layer.</p>
<p>That means developers.</p>
<p>You may hear about big layoffs in tech from time to time. Many of these layoffs affect employees who are not developers. But often a lot of developers do lose their jobs.</p>
<p>Why would companies lay off developers, after spending so much time and money recruiting and training them? Aside from a bankruptcy situation, I don't know the answer to that question. I'm not sure that anyone does.</p>
<p>There's growing evidence that layoffs destroy long-term value within a company. But in practice, many CEOs feel pressure from their investors to do layoffs. And when a several companies do layoffs at around the same time, other CEOs may follow suit.</p>
<p>Still, even with the layoffs, most economists expect the number of developer jobs and other software-related jobs to continue to grow. For example, the US Department of Labor Statistics expects an increase of 15% in developers over the next decade.</p>
<p>The job market may be tight right now, but few people expect this downturn to last.</p>
<p>My hope is that with strong skills, a strong network, and a strong reputation, you'll be able to land a good job despite a challenging job market.</p>
<p>Hopefully one day, it will be easier for employers and skilled employees to find one another – without the long, brutal job application and interviewing process.</p>
<h3 id="heading-what-to-expect-from-the-developer-job-interview-process">What to Expect from the Developer Job Interview Process</h3>
<p>Once you start landing job interviews, you'll get a taste of the dreaded developer job interview process and the notorious coding interview.</p>
<p>A typical interview flow might involve:</p>
<ol>
<li>Taking an online coding assessment of your skills or a "Phone Screen."</li>
<li>And then if you pass that, a second phone- or video call-based technical interview</li>
<li>And then if you pass that, an "onsite" interview where you travel to a company office. These usually involve several interviews with HR, hiring managers, and rank-and-file developers you might work with.</li>
</ol>
<p>Along the way, you'll face questions that test your knowledge of problem solving, algorithms &amp; data structures, debugging, and other skills.</p>
<p>Your interviewers may let you solve these coding problems on a computer in a code editor. But often you'll have to solve them by hand while standing at a whiteboard.</p>
<p>The key thing to remember is that the person interviewing you is not just looking for a correct answer from you. They're also trying to understand how you think. </p>
<p>They want to know: do you understand fundamentals of programming and computer science? Or are you just regurgitating a bunch of solutions you memorized?</p>
<p>Now, practicing algorithms and data structures will go a long way. But you also need to be able to think out loud, and explain your thought process as you write your solutions.</p>
<p>The best way to practice this is to talk out loud to yourself while you code. Or – if you're feeling adventurous – live stream yourself coding.</p>
<p>There are lots of "live coding" streams on Twitch where people "learn in public" by building projects in front of an audience. As a bonus, if you're willing to put yourself out there like this, it will also help you build your reputation as a developer.</p>
<p>Another thing to remember during white board interviews: your interviewer. They're not just sitting there waiting for you to finish. They're with you the entire time, watching you and evaluating you both consciously and unconsciously.</p>
<p>Try to make the interview process as interactive as possible for your interviewer. Smile and make occasional eye contact. Try to judge their body language. Are they relaxed? Are they nodding along as you explain points?</p>
<p>Your interviewer probably knows what they're looking for in your code. So see if you can tease some hints out of them. By making observations or asking open-ended questions out loud to yourself, you may be able to get your interviewer to step in, and feel involved in the process.</p>
<p>You want your interviewer to like you. You want them to be rooting for you, so that they may dismiss some of the shortcomings in your programming skills, or overlook some of the errors you may make in your code.</p>
<p>You are selling yourself as a job candidate. Make sure your interviewer feels like they're getting a good deal.</p>
<p>And this goes the same for any Behavioral Interviews you may have to clear. These interviews are less about your coding ability than your "culture fit." (I wish I could tell you what this means, but every manager will define it in a slightly different way.)</p>
<p>In these Behavioral Interviews, you'll have to convince your interviewer that you have strong communication skills.</p>
<p>It definitely helps to be fluent in the language you're interviewing in, and to know the right jargon. You can pick a lot of this up from regularly listening to tech podcasts, like <a target="_blank" href="https://www.freecodecamp.org/news/tag/podcast/">the freeCodeCamp Podcast</a>.</p>
<p>One big thing your interviewers are trying to establish: are you a cool-headed person who will play well with others? The best way to show this is to be polite, and refrain from using profanity or drifting too far off from the subject at hand.</p>
<p>You do not want to get into a debate over something unrelated, like a sports rivalry. I also recommend not trying to correct your interviewers, even if they say things that you believe to be silly or false.</p>
<p>If you get bad vibes from the company, you don't have to accept their job offer. Employers pass on candidates all the time. And you as a candidate also have the right to pass on an employer. The interview itself is probably not the best time for conflict.</p>
<h3 id="heading-should-i-negotiate-my-salary-at-my-first-developer-job">Should I Negotiate My Salary at My First Developer Job?</h3>
<p>Trying to negotiate your salary upward generally does not hurt as long as you do so politely.</p>
<p>I've written at length on <a target="_blank" href="https://www.freecodecamp.org/news/salary-negotiation-how-not-to-set-a-bunch-of-money-on-fire-605aabbaf84b/">how to negotiate your developer job offer salary</a>.</p>
<p>Essentially, negotiating a higher starting salary comes down to how much leverage you have. </p>
<p>Your employer has work to be done. How badly does your employer need you to work for them? What other options do they have?</p>
<p>And you need income to survive. What other options do you have? What is your backup plan?</p>
<p>If you have a job offer from another employer offering to pay you a certain amount, you can use that as leverage in your salary negation.</p>
<p>If your best backup plan is to go back to school and get a graduate degree... that's not particularly strong leverage, but it's better than nothing. And you could mention it during the salary negotiation process.</p>
<p>Think back to the lengthy hiring process I described earlier. Employers have to go through at least a dozen steps before they can reach the job offer step with candidates. They are probably already planning for you to negotiate, and won't be surprised by it.</p>
<p>Now, if you're in a situation like I was where a company just offers you a job out of the blue, you may feel awkward trying to negotiate. </p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/92508.jpeg" alt="Image" width="600" height="400" loading="lazy">
<em>Smithers from the Simpsons</em></p>
<p>I will admit – in my story time above, when my manager offered me the job, I did not negotiate.</p>
<p>In retrospect, should I have negotiated my compensation? Probably.</p>
<p>Did I have leverage? Probably not much. My backup plan was to just keep competing in hackathons and keep sipping tea and coding at the public library.</p>
<p>I may have been able to negotiate and get a few more bucks an hour. But in the moment they offered me the job, compensation was the last thing on my mind. I was just ecstatic that I was going to be a professional developer.</p>
<p>By the way, once you've worked as a developer at a company for a year or so, you may want to ask for a raise. I've written at length about <a target="_blank" href="https://www.freecodecamp.org/news/youre-underpaid-here-s-how-you-can-get-the-pay-raise-you-deserve-fafcf52956d6/">how to ask for a raise as a developer</a>. But it comes down to the same thing: leverage.</p>
<h3 id="heading-should-you-use-a-recruiter-for-your-developer-job-search">Should You Use a Recruiter for Your Developer Job Search?</h3>
<p>Yes. If you can find a recruiter who will help you land your first developer job, I think you should.</p>
<p>I've written at length about <a target="_blank" href="https://www.freecodecamp.org/news/the-tech-recruiter-red-pill-967dd492560c/">why recruiters are an underrated tool in your toolbox</a>.</p>
<p>Many employers will pay recruiters a finder's fee for sending them high quality job candidates.</p>
<p>Recruiters’ incentives are well-aligned with your own goals as a job seeker:</p>
<ol>
<li>Since they get paid based on your starting salary, they are inclined to help you negotiate as high a starting salary as possible.</li>
<li>The more candidates they place — and the faster they place them — the more money recruiters make. So they’ll want to help you get a job as fast as possible so they can move on to other job seekers.</li>
<li>Since they only get paid if you succeed as an employee (and stay for at least 90 days), they'll try and make sure you’re competent, and a good fit for the company’s culture.</li>
</ol>
<p>This said, if a recruiter asks you to pay them money for anything, that is a red flag.</p>
<p>And not all recruiters are created equal. Do your research before working with a recruiter. Even if they're ultimately getting paid by the employer, you are still investing your time in helping them place you. And time is valuable.</p>
<p>Speaking of time, one way you can start getting paid to code sooner – even while you're preparing for the job search – is to get some freelance clients.</p>
<h3 id="heading-how-to-get-freelance-clients">How to Get Freelance Clients</h3>
<p>I encourage new developers to try and get some freelance clients before they start their job search. There are three good reasons for this:</p>
<ol>
<li>It's much easier to get a freelance client than it is to get a full time job.</li>
<li>Freelance work is less risky since you can do it without quitting your day job.</li>
<li>You can start getting paid to code sooner, and start building your portfolio of professional work sooner.</li>
</ol>
<p>Getting freelance clients can be much easier than getting a developer job. Why is this?</p>
<p>Think about small local businesses. It may just be a family that runs a restaurant. Or a shop. Or a plumbing company. Or a law firm.</p>
<p>How many of those businesses could benefit from having an interactive website, back office management systems, and tools to automate their common workflows? Most of them.</p>
<p>Now how many of those companies can afford to have a full-time software developer to build and maintain those systems? Not as many.</p>
<p>That's where freelancers come in. They can do work in a more economical, case-by-case basis. A small business can bring on a freelancer for a single project, or for a shorter period of time.</p>
<p>If you are actively building your network, some of the people you meet may become your clients.</p>
<p>For example, you may meet a local accountant who wants to update their website. And maybe add the ability to schedule a consultation, or accept a credit card payment for a bill. These are common features that small businesses may request, and you may get pretty good at implementing them.</p>
<p>You may also meet the managers of small businesses who need an ERP system, or a CRM system, or an inventory system, or one of countless other tools. </p>
<p>In many cases, there is an open source tool that you can deploy and configure for them. Then you can just teach them how to use that system. And you can bill them a monthly service fee to have you "on call" and ready to fix problems that may arise.</p>
<h3 id="heading-should-i-use-a-contract-for-freelance-work">Should I Use a Contract for Freelance Work?</h3>
<p>You will want to find a standard contract template, customize it, and get a lawyer to approve it.</p>
<p>It may feel awkward to make the local bakery sign a contract with you just to help update their website or social media presence. But doing so will make the entire transaction feel more professional than a mere handshake agreement.</p>
<p>It's unlikely that a small business will take you to court over a few thousand dollars. But in the event that this happens, you'll be glad you signed a contract.</p>
<h3 id="heading-how-much-should-i-charge-for-freelance-work">How Much Should I Charge for Freelance Work?</h3>
<p>I would take whatever you make at your day job, figure out your hourly rate, and double it. This may sound like a lot of money, but freelance work is much harder than regular work. You have to learn a lot.</p>
<p>Alternatively, you could just bill for a project. "I will deploy and configure this system for you for $1,000."</p>
<p>Just be sure to specify a time frame that you are willing to maintain the project. You don't want people calling you 3 years later expecting you to come back and fix a system that nobody has been maintaining.</p>
<h3 id="heading-how-do-i-make-sure-freelance-clients-pay-me">How Do I Make Sure Freelance Clients Pay Me?</h3>
<p>A lot of other freelancers – myself included – use this simple approach: ask for half of your compensation up-front, before you start the work. And when you can demonstrate that you're half way finished, ask for the other half.</p>
<p>Always try to get all the money before you actually finish the project. That way, the client will not be able to dangle the money over your head and try to get extra work out of you.</p>
<p>If you're already paid in full, the work you do to help your client after the fact will convey: "I'm going above and beyond for you."</p>
<p>Which is a totally different vibe from: "Uh oh – are you even going to pay me for all this work I'm doing?"</p>
<h3 id="heading-should-i-use-a-freelance-website-like-upwork-or-fiverr">Should I Use a Freelance Website like Upwork or Fiverr?</h3>
<p>If you are in a rural part of the world and can't find any clients locally, you could try some of these freelance websites. But otherwise I would not focus on them. Here's why:</p>
<p>When you try to land contracts on a freelance website, you are competing with all the freelancers around the world. Many of them will live in cities that have a much lower cost of living than yours. Some of them will not even really care about their reputations like you do, and may be willing to deliver sub-par work.</p>
<p>To some extent, these websites promote a "race to the bottom" phenomenon where the person who offers to do the work the cheapest usually gets the job.</p>
<p>If you instead focus on finding clients through your own local network, you will not have to compete with these freelancers abroad.</p>
<p>And the same goes for people who are looking for help from freelance developers. If you ever want to hire a freelancer, I strongly recommend working with someone you can meet with in-person, who has ties to your community.</p>
<p>Someone who has lived in your city for several years, and attends a lot of the same social gatherings as you – they're going to be much less likely to try to take advantage of you. If both you and your counterparty care about their reputation, you are both invested in a partnership that works. </p>
<p>You can each be a success story in one another's portfolios.</p>
<h3 id="heading-freelancing-is-like-running-a-one-person-company-and-that-means-a-lot-of-hidden-work">Freelancing is like running a one-person company. And that means a lot of hidden work.</h3>
<p>Don't underestimate the amount of "hidden work" involved in running your freelance development practice.</p>
<p>For one, you may want to create your own legal entity.</p>
<p>In the US, the most common approach is to create a Limited Liability Company (LLC) and conduct business as that company – even if you're the only person working there.</p>
<p>This can simplify your taxes. And heaven forbid you make a mistake and get sued by a client, your legal entity can help insulate you from personal liability, so that it's your LLC going into bankruptcy – not you personally.</p>
<p>You may also consider getting liability insurance to further protect against this.</p>
<p>Remember that when you are working freelance, you usually have to pay tax at the end of the year, so be sure to save for this.</p>
<p>To create your LLC, you can of course just find boilerplate paperwork online, and file it yourself. But if you're serious about freelancing, I recommend talking with a small business lawyer and/or accountant to make sure you set everything up correctly.</p>
<h3 id="heading-when-should-i-stop-freelancing-and-start-looking-for-a-job">When Should I Stop Freelancing and Start Looking for a Job?</h3>
<p>If you are able to pay your bills freelancing, you may just want to keep doing it. Over time, you may even be able to build up your own software development agency, and hire other developers to help you.</p>
<p>This said, if you are yearning for the stability of a developer job, you may be in luck. Freelance clients may convert into full-time jobs if you stick with them long enough. At some point, it may make economic sense for a client to just offer you a full-time job at a lower hourly rate. You get the stability of a 40-hour work week, and they get your skills full-time.</p>
<p>You may also be able to hang onto a few freelance clients when you get a job. This can be a nice supplement to your income. But keep in mind that, as we'll learn in the next chapter, your first developer job can be an all-consuming responsibility. At least at first.</p>
<p>How wild is that first year of working as a professional developer going to be? Well, let's talk about that.</p>
<h2 id="heading-chapter-5-how-to-succeed-in-your-first-developer-job">Chapter 5: How to Succeed in Your First Developer Job</h2>
<blockquote>
<p>"A ship in port is safe. But that's not what ships are built for." – Grace Hopper, Mathematician, US Navy Rear Admiral, and Computer Science Pioneer</p>
</blockquote>
<p>Once you get your first developer job, that's when the real learning begins.</p>
<p>You'll learn how to work productively alongside other developers.</p>
<p>You'll learn how to navigate large legacy codebases.</p>
<p>You'll learn Version Control Systems, Continuous Integration and Continuous Delivery tools (CI/CD), project management tools, and more.</p>
<p>You'll learn how to work under an engineering manager. How to ship ahead of a deadline. And how to work through a great deal of ambiguity on the job.</p>
<p>Most importantly, you'll learn how to manage yourself.</p>
<p>You'll learn how to break through psychological barriers that affect all of us, such as imposter syndrome. You'll learn your limits, and how to push ever so slightly beyond them.</p>
<h3 id="heading-story-time-how-did-a-teacher-in-his-30s-succeed-in-his-first-developer-job">Story Time: How did a Teacher in his 30s Succeed in his First Developer Job?</h3>
<p><em>Last time on Story Time: Quincy landed his first developer job at a local tech startup. He was going to work as one of a dozen developers maintaining a large, sophisticated codebase. And he had no idea what he was doing...</em></p>
<p>I woke up at 4 a.m. and I couldn't go back to sleep. I tried. But I had this burning in my chest. This anxiety. Panic.</p>
<p>I had worked for a decade in education. First as a tutor. Then as a teacher. And then as a school director.</p>
<p>In a few hours, I would be starting over from the very bottom, working as a developer.</p>
<p>Would any of my past learnings – past success – even matter in this new career?</p>
<p>I did what I always do when I feel anxiety – I went for a run. I bounded down the hills, my headlamp bobbing in the darkness. When I reached the beach, I ran alongside the ocean as the sun crept up over the treetops.</p>
<p>By the time I got home, my wife was already leaving for work. She told me not to worry. She said, "I'll still love you even if you get fired for not knowing what you're doing."</p>
<p>When I reached my new office, nobody was there. As a teacher, I was used to getting to school at 7:30 sharp. But I quickly realized that most software developers don't start work that early.</p>
<p>So I sat crosslegged in the entry hallway, coding along to tutorials on my netbook.</p>
<p>An employee walked up to me with a nervous look on her face. She probably thought I was a squatter. But I reassured her that I did indeed now work at her company, and convinced her to let me in.</p>
<p>It felt surreal walking across the empty open-plan office toward the developer bullpen, with only the light of the exit sign to guide my way.</p>
<p>I set up my netbook on an empty standing desk and finished my coding tutorial.</p>
<p>A little while later, the lights flickered on around me. My boss had arrived. At first he didn't acknowledge my presence. He just sat down at his desk and started firing off bursts of keystrokes onto his mechanical keyboard.</p>
<p>"Larson," he finally said. "You ready for your big first day?"</p>
<p>I wasn't. But I wanted to signal confidence. So I said the words first uttered in Big Trouble in Little China, one of my favorite 80s movies: "I was born ready."</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/big-trubs-born-ready.jpeg" alt="Image" width="600" height="400" loading="lazy">
<em>You've probably heard "I was born ready" a million times. But it was first uttered in 1986 by Jack Burton to his friend Wang Chi, when they were getting ready to confront a thousand year old wizard in his death warehouse. I can't believe my parents let me watch this back then, but I'm glad they did.</em></p>
<p>"Great," my boss said. "Let's get you a machine."</p>
<p>"Oh, I've already got one," I said, tapping my $200 netbook. "This baby is running Linux Mint, and I've already customized my .emacs file to be able to..."</p>
<p>"We're a Mac shop," he said walking to a storage closet. He rustled around for a moment and emerged. "Here. It's a 3 year old model, but it should do. We wiped it to factory default."</p>
<p>I started to say that I was already familiar with my setup, and that I could work much faster with it, but he would have none of it.</p>
<p>"We're all using the same tools. It makes collaborating a lot easier. Convention over configuration, you know."</p>
<p>That was the first time I'd heard the phrase "convention over configuration" but it would come up a lot over the next few days.</p>
<p>I spent the next few hours configuring my new work computer as other developers gradually filed in.</p>
<p>It was nearly 10 a.m. when we started our team "standup meeting." We all stood in a circle by the whiteboard. We took turns reporting what we were working on that day.</p>
<p>Everyone gave quick, precise status updates.</p>
<p>When it was my turn, I started to introduce myself. I was already anxious enough, when in walked none other than Mike, that ultramarathoner guy who ran the Santa Barbara Startup events. He was crunching on some baby carrots, having already run about 30 miles that morning.</p>
<p>After I finished, Mike spoke, welcoming me and saying he'd seen me at some of his events. He then gave a 15 second status update about some feature he was working on.</p>
<p>The entire meeting only took about 10 minutes, and everyone scattered back to their desks.</p>
<p>I eventually got the company's codebase to run on my new laptop. It was a Ruby on Rails app that had grown over 5 years. I ran the <code>rake stats</code> command and saw that it was millions of lines of code. I shuddered. How could I ever comprehend all that?</p>
<p>My neighbor, a gruff, bearded dev said, "Eh, most of that is just packages. The actual codebase you'll be working on is only maybe 100,000 lines. Don't worry. You'll get the hang of it."</p>
<p>I gulped, but thought to myself: "That's less than millions of lines. So that is good."</p>
<p>"Name's Nick by the way," he said, introducing himself. "If you need any help just let me know. I've been stumbling around this codebase for quite a few years now, so I should be able to help you out."</p>
<p>Over the next few days, I peppered Nick with questions about every internal system I encountered.</p>
<p>Eventually Nick started setting his chat status to "code mode" and putting on his noise cancelling headphones. He swiveled his back toward me a bit, with the body language of: "leave me alone so I can get some of my own work done, too."</p>
<p>This was one of my earliest lessons about team dynamics. You don't want to wear out your welcome with too many questions. You need to get better at learning things for yourself.</p>
<p>But this was a massive codebase, and it was largely undocumented, aside from inline comments and a pretty sparse team wiki.</p>
<p>Since it was a closed-source codebase that only the devs around me were working in, I couldn't use Stack Overflow to figure out where particular logic was located. I just had to feel around in the dark.</p>
<p>I started rotating through which neighbor I'd bug about a particular question. But it felt like I was quickly ringing out any enthusiasm they may have had left for me as a teammate.</p>
<p>I over-corrected. I became shy about asking even simple questions. I made a rule for myself that I would try for 2 hours to get unstuck before I would ask for help.</p>
<p>At some point, after thrashing for several hours, I did ask for help. When my manager discovered I'd been stuck all morning, he asked, "Why didn't you ask for help earlier?"</p>
<p>Another struggle was with understanding the codebase itself – the "monolith" and its many microservices.</p>
<p>The codebase had thousands of unit tests and integration tests. Whenever you wrote a new code contribution, you were also supposed to write tests. These tests helped ensure that your code did what it was supposed to – and didn't break any existing functionality.</p>
<p>I would frequently "break the build" by committing code that I thought was sufficiently tested – only to have my code break some other part of the app I hadn't thought about. This frustrated the entire team, who were unable to merge their own code until the root problem had been fixed.</p>
<p>The build would break several times a week. And I was not the only person who made these sorts of mistakes. But it <strong>felt</strong> like I was.</p>
<p>There were days where I felt like I was not cut out to be a developer. I'd say to myself: "Who am I kidding? I just wake up one day and decide I'm going to be a developer?"</p>
<p>I kept hearing echoes of all those things my developer friends had said to me a year earlier, when I was first starting my coding journey.</p>
<p>"How are you going to hang with people who grew up coding from an early age?"</p>
<p>"You're going to have to drink an entire ocean of knowledge."</p>
<p>"Why don't you just stick with what you're good at?"</p>
<p>I would take progressively longer breaks to get away from my computer. The office had a kitchen filled with snacks. I would find more excuses to get up to grab a snack. Anything to delay the crushing sense that I had no idea what I was doing.</p>
<p>The first few months were rough. During morning standup meetings, it felt like everyone was moving fast. Closing open bugs and shipping features. It felt like I had nothing to say. I was still working on the same feature as the day before.</p>
<p>Every day when I woke up and got ready for work, I felt dread. "This is going to be the day they fire me."</p>
<p>But then I'd go to work and everyone would be pretty kind, pretty patient. I would ask for help if I was really stuck. I would make <strong>some</strong> progress, and maybe fix a bug or two.</p>
<p>I was getting faster at navigating the codebase. I was getting faster at reading stack traces when my code errored out. I was shipping features at a faster clip than before.</p>
<p>Whenever my boss called me into his office, I would think to myself: "Oh no, I was right. I'm going to get fired today." But he would just assign me some more bugs to fix, or features to develop. Phew.</p>
<p>It was the most surreal thing – me terrified out of my mind that I'm about to get the axe, and him having no idea anything's wrong.</p>
<p>Of course, I had heard the term "imposter syndrome" before. But I didn't realize that was what I was experiencing. Surely I was just suffering from "sucks at coding" syndrome, right?</p>
<p>One day I was sitting next to Nick, and he was looking pretty frazzled. I offered to grab him a soda from the kitchen.</p>
<p>When I got back, he cracked the can open, took a sip, and leaned back in his chair, gazing at his monitor full of code. "This bug, man. Three weeks trying to fix this one bug. At this point I'm debugging it in my sleep."</p>
<p>"Three weeks trying to fix the same bug?" I asked. I had never heard of such a thing.</p>
<p>"Some bugs are tougher to crack than others. This is one of those really devious ones."</p>
<p>It felt like someone had slapped me across the face with a salmon. I had viewed my job as chunks of work. As though it should take half a day to fix a bug, and if it took longer than that, I was doing something wrong.</p>
<p>But here Nick was – with his computer science degree from University of California and his years of experience working on this same codebase – and he was stumped for three weeks on a single bug.</p>
<p>Maybe I had been too hard on myself. Maybe some of these bugs I'd been fixing were not necessarily "half-day bugs", but were "two- or three-day bugs." Yes, I was inexperienced and slow. But even so, maybe I was holding myself to unrealistic standards.</p>
<p>After all, when we budgeted time for features, sometimes we would have "5-day features" or even "2-week features." We didn't do this for bugs, but they probably varied similarly.</p>
<p>I went home and read more about Imposter Syndrome. And what I read explained away a lot of my anxiety.</p>
<p>Over the coming months, I kept building out features for the codebase. I kept collaborating with my team. It was still hard, brain-busting work. But it was starting to get a little bit easier.</p>
<p>I bonded with my teammates each day at lunch over board games. One week, we had a company-wide chess tournament. </p>
<p>A couple rounds in, I played against the CEO.</p>
<p>The CEO has an unorthodox chess play style. He used a silly opening that few serious chess players would opt for. And I was able to take any early lead in the game.</p>
<p>But over the next few moves, he was able to slowly grind back control over the game. He eventually gained the upper hand and beat me.</p>
<p>When I asked him how he found time to keep his chess skills sharp while running a company, he said, "Oh, I don't. I only play once or twice a year."</p>
<p>Then he paused for a moment, his hand frozen in front of him, as if preparing to launch into a lecture. He said: "My uncle was a competitive chess player. And he just gave me a single piece of advice to follow: <strong>every time your opponent moves, slow down and try to understand the game from their perspective – why did they make that move?</strong>"</p>
<p>He bowed then excused himself to run to a meeting.</p>
<p>I've thought a lot about what he said over the years. And I've realized this advice doesn't just apply to chess. You can apply it to any adversarial situation.</p>
<h3 id="heading-if-you-keep-having-to-do-a-task-you-should-automate-it">If You Keep Having to Do a Task, You Should Automate it</h3>
<p>Another lesson I learned about software development: since I was the most junior person on the team, I often got assigned the "grunt work" that nobody else wanted to do. One of these tasks was to be the "build nanny."</p>
<p>Whenever someone broke the build, I would pull down the latest version of our main branch and use <code>git bisect</code> to try and identify the commit that broke it.</p>
<p>I'd open up that commit, run the tests, and figure out what went wrong. Then I'd send a message to the person who broke the build, telling them what they needed to fix.</p>
<p>I got really fast at doing this. In a day full of confusing bug reports and ambiguous feature requests, I looked forward to the build breaking. It would give me a chance to feel useful real quick.</p>
<p>It wasn't long before someone on the team said, "With how often the build breaks, we should just automate this."</p>
<p>I didn't say anything, but I felt defensive. This was a bad idea. How could a script do as good a job at finding the guilty commit as I – a flesh and blood developer – could?</p>
<p>It took a few days. But sure enough, one of my teammates whipped up a script. And I didn't have to be the build nanny anymore.</p>
<p>It felt strange to see a message that the build failed, and then a moment later see a message saying which commit broke the build and who needed to go fix it.</p>
<p>I felt indignant. I didn't say anything, but in my mind I was thinking: "That's supposed to be my work. That script took my job."</p>
<p>But of course, I now look back at my reaction and laugh. I imagine myself, now in my 40s, still dropping everything several times each week so I could be the build nanny.</p>
<p>Because in practice, if a task can be automated – if you can break it down into discrete steps that a computer can reliably do for you – then you should probably automate it.</p>
<p>There's plenty of more interesting work you can do with your time.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/01/is_it_worth_the_time_2x-1.png" alt="Image" width="600" height="400" loading="lazy">
<em>This chart from XKCD can help you figure out whether a task is worth the time investment to automate.</em></p>
<h3 id="heading-lessons-from-the-village-elders">Lessons from the Village Elders</h3>
<p>I learned a lot from other people on the team. I learned product design concepts from Mike. He took me running on the beach, and taught me how to run on my forefoot, where the balls of my feet hit the ground before my heels. This is a bit easier on your joints.</p>
<p>And I learned about agile software engineering concepts from Nick. He helped me pick out some good software development books from the company library. And he even invited me over for a house-warming party, and I got to meet his kids.</p>
<p>After about a year of working for the company, I felt it was time to try to strike out on my own, and build some projects around online learning. I sat down with the CTO to break the news to him that I was leaving.</p>
<p>I said, "I'm grateful that you all hired me, even though I was clearly the weakest developer at the company."</p>
<p>He just let out a laugh and said, "Sure, when you started, you were the worst developer on the team. I'd say you're still the worst developer on the team."</p>
<p>I sat there smiling awkwardly, blinking at him, not sure whether he was just angry I was leaving.</p>
<p>And then he said, "But that's smart. You're smart. Because <strong>you always want to be the worst musician in the band</strong>. You always want to be surrounded by people who are better than you. That's how you grow."</p>
<p>Two weeks later, I checked in my code changes for the day and handed off my open tickets. I reset my Mac to factory settings and handed it to my manager.</p>
<p>I shook hands with my teammates and headed out the door into the California evening air.</p>
<p>I hit the ground running, lining up freelance contracts to keep the lights on. And I scouted out an apartment in the Bay Area, just across the bridge from the beating heart of tech in South of Market San Francisco.</p>
<p>I was now a professional developer with a year of experience already under my belt.</p>
<p>I was ready to dream new dreams and make new moves.</p>
<p>I was off to the land of startups.</p>
<h3 id="heading-lessons-from-my-first-year-as-a-developer">Lessons From my First Year as a Developer</h3>
<p>I did a lot of things right during my first year as a professional developer. I give myself a B-.</p>
<p>But if I had the chance to do it all again, there are some things I'd do differently.</p>
<p>Here are some tips. May these maximize your learning and minimize your heartache.</p>
<h4 id="heading-leave-your-ego-at-the-door">Leave Your Ego at the Door</h4>
<p>Many people entering the software development field will start at the very bottom. One title you might have is "Junior Developer."</p>
<p>It can feel a bit awkward to be middle aged and have the word "junior" in your title. But with some patience and some hard work, you can move past it.</p>
<p>One problem I faced every day was – I had 10 years of professional experience. I was not an entry-level employee. Yes, I was new to development, but I was quite experienced at teaching and even managing people. (I'd managed 30 employees at my most recent teaching job.)</p>
<p>And yet – in spite of all my past work experience – I was still an entry-level developer. I was still a novice. A neophyte. A newbie.</p>
<p>As much as I wanted to scream "I used to be the boss – I don't need you to babysit me" – the truth was I did need babysitters.</p>
<p>What if I accidentally broke production? What if I introduced a security vulnerability into the app? What if I wiped the entire database? Or encrypted something important and lost the key?</p>
<p>These sorts of disasters happen all the time.</p>
<p>The reality is as a new developer, you are like a bull in a China shop, trying to walk carefully, but smashing everything in your path.</p>
<p>Don't let yourself get impatient with your teammates. Resist the temptation to talk about your advanced degrees, awards your work has won, or that time the mayor gave you the key to the city. (OK, maybe that last one never happened to me.)</p>
<p>Not just because it will make you hard to work with. Because it will distract you from the task at hand.</p>
<p>For the first few months of my developer career, I used my past accomplishments as a sort of pacifier. "Yeah I suck at coding, but I'm phenomenal at teaching English grammar. Did I mention I used to run a school?"</p>
<p>When your fingers are on the keyboard, and your eyes are on the code editor, you have to let that past self go. You can revel in yesterday's accomplishment tonight, after today's work is done.</p>
<p>But for now, you need to accept all the emotions that come with being a beginner again. You need to focus on the task at hand and get the job done.</p>
<h3 id="heading-its-probably-just-the-imposter-syndrome-talking">It's Probably Just the Imposter Syndrome Talking</h3>
<p>Almost everyone I know has experienced Imposter Syndrome. That feeling that you do not belong. That feeling that at any moment your teammates are going to see how terrible your code is and expose you as not a "real developer."</p>
<p>To some extent, the feeling does not go away. It's always there in the back of your mind, ready to rear its head when you try to do something new.</p>
<p>"Could you help me get past this error message?" "Um... I'm not sure if I'm the best person to ask."</p>
<p>"Could you pair program with me on implementing this feature?" "Um... I guess if you can't find someone more qualified."</p>
<p>"Could you give a talk at our upcoming conference?" "Um... me?"</p>
<p>I've met senior engineers who still suffer from occasional imposter syndrome, more than a decade into their career.</p>
<p>When you feel inadequate or unprepared, it may just be imposter syndrome.</p>
<p>Sure – if you handed me a scalpel and said, "help me perform heart surgery" I would feel like an imposter. To some extent, feeling out of your depth is totally reasonable if you are indeed out of your depth.</p>
<p>The problem is that if you've been practicing software development, you may be able to do something but still inexplicably suffer from anxiety.</p>
<p>I am not a doctor. But my instinct is that – for most people – imposter syndrome will gradually diminish with time, as you get more practice and build more confidence.</p>
<p>But it can randomly pop up. I'm not afraid to admit that I sometimes feel pangs of imposter syndrome when doing a new task, or one I haven't done in a while.</p>
<p>The key is to just accept it: "It's probably just the imposter syndrome talking."</p>
<p>And to keep going.</p>
<h3 id="heading-find-your-tribe-but-dont-fall-for-tribalism">Find Your Tribe. But Don't Fall for Tribalism</h3>
<p>When you get your first developer job, you'll work alongside other developers. Yipee – you found your tribe.</p>
<p>You'll spend a lot of time with them, and you all may start to feel like a tight unit.</p>
<p>But don't ignore the non-developer people around you.</p>
<p>In my story above, I talked about Mike, the Product Manager who also ran startup events. He was "non-technical". His knowledge of coding was limited at best. But I'd venture to say I learned as much from him as anyone else at the company.</p>
<p>You may work with other people from other departments – designers, product managers, project managers, IT people, QA people, marketers, even finance and accounting folks. You can learn a lot from these people, too.</p>
<p>Yes, you should focus on building strong connective tissue between you and the other devs on the team. But stay curious. Hang out with other people in the lunch room or at company events. You never know who's going to be the next person to help you build your skills, your network, or your reputation.</p>
<h3 id="heading-dont-get-too-comfortable-and-specialize-too-early">Don't Get Too Comfortable and Specialize too Early</h3>
<p>I often give this advice to folks who are first starting their coding journey: "learn general coding skills (JavaScript, SQL, Linux, and so on) and then specialize on the job."</p>
<p>The idea is, once you understand how the most common tools work, you can the go and learn those tools' less common equivalents.</p>
<p>For example, once you've learned PostgreSQL, you can easily learn MySQL. Once you've learned Node.js, you can easily learn Ruby on Rails or Java Spring Boot.</p>
<p>But some people specialize too early at work. Their boss might ask them to "own" a certain API or feature. And if they do a good job with that, their boss may keep giving them similar projects.</p>
<p>You are only managing yourself, but your boss is managing many people. They may be too busy to develop a nuanced understanding of your abilities and interests. They may come to see you as "the XYZ person" and just give you tasks related to that.</p>
<p>But you know what you're good at, and what you're interested in. You can try and volunteer for projects outside of your comfort zone. If you can get your boss to assign these to you, you'll be able to continue to expand your skills, and potentially work with new teams.</p>
<p>Remember: your boss may be responsible for your performance at your job, but you are responsible for your performance across your career.</p>
<p>Take on projects that both fulfill your obligation to your employer, and also position you well for your long-term career goals.</p>
<h2 id="heading-epilogue-you-can-do-this">Epilogue: You Can Do This</h2>
<p>If there's one message I want to leave you with here, it is this: <strong>you can do this.</strong></p>
<p>You <strong>can</strong> learn these concepts. </p>
<p>You <strong>can</strong> learn these tools. </p>
<p>You <strong>can</strong> become a developer.</p>
<p>Then, the moment someone hands you money for you to help them code something, you will graduate to being a professional developer.</p>
<p>Learning to code and getting a first developer job is a daunting process. But do not be daunted.</p>
<p>If you stick with it, you will eventually succeed. It is just a matter of practice.</p>
<p>Build your projects. Show them to your friends. Build projects for your friends.</p>
<p>Build your network. Help the people you meet along the way. What goes around comes around. You'll get what's coming to you.</p>
<p>It is not too late. Life is long. </p>
<p>You will look back on this moment years from now and be glad you made a move.</p>
<p>Plan for it to take a long time. Plan for uncertainty.</p>
<p>But above all, keep coming back to the keyboard. Keep making it out to events. Keep sharing your wins with friends.</p>
<p>As Lao Tsu, the Old Master, once said:</p>
<blockquote>
<p>"A journey of a thousand miles begins with a single step."</p>
</blockquote>
<p>By finishing this book, you've already taken a step. Heck, you may have already taken many steps toward your goals.</p>
<p>Momentum is everything. So keep up that forward momentum you've already built up over these past few hours with this book.</p>
<p>Start coding your next project today.</p>
<p>And always remember:</p>
<p>You can do this.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Podcast – AI and the Future of Education with Seth Goldin ]]>
                </title>
                <description>
                    <![CDATA[ In this week's episode of the podcast, freeCodeCamp founder Quincy Larson discusses AI and the future of education with Seth Goldin.  Among other things, Seth is co-founder of College Compendium, an education charity, and studies computer science at ... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/podcast-ai-and-the-future-of-education-with-seth-goldin/</link>
                <guid isPermaLink="false">66b8d4f7e9a1e34f08e49250</guid>
                
                    <category>
                        <![CDATA[ AI ]]>
                    </category>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Quincy Larson ]]>
                </dc:creator>
                <pubDate>Fri, 01 Mar 2024 17:47:29 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2024/03/seth-goldin-freecodecamp-podcast.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>In this week's episode of the podcast, freeCodeCamp founder Quincy Larson discusses AI and the future of education with Seth Goldin. </p>
<p>Among other things, Seth is co-founder of College Compendium, an education charity, and studies computer science at Yale.</p>
<p>Also, the quote Quincy mentioned during the conversation about AI plagiarism detection software wasn't by Ben Franklin. It was William Blackstone in 1769 who said: "the law holds that it is better that 10 guilty persons escape, than that 1 innocent suffer [by being falsely convicted]."</p>
<p>You can watch this interview on YouTube:</p>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/Ixsr2RyZcv4" 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>Or you can listen to the podcast in Apple Podcasts, Spotify, or your favorite podcast app. You can also listen to the podcast below, right in your browser:</p>
<div class="embed-wrapper"><iframe src="https://play.libsyn.com/embed/episode/id/30189198/height/192/theme/modern/size/large/thumbnail/yes/custom-color/2a4061/time-start/00:00:00/playlist-height/200/direction/backward/download/yes/font-color/FFFFFF" height="192" width="100%" style="border:none" title="Embedded content" loading="lazy"></iframe></div>

<p>Some links from our discussion:</p>
<ul>
<li>Seth's free <a target="_blank" href="https://www.freecodecamp.org/news/how-to-google-like-a-pro/">Google Like a Pro course</a></li>
<li>Seth's free <a target="_blank" href="https://www.freecodecamp.org/news/the-ethics-of-ai-and-ml/">The Ethics of AI and ML course</a></li>
<li>Seth's recommended article <a target="_blank" href="https://www.newyorker.com/tech/annals-of-technology/chatgpt-is-a-blurry-jpeg-of-the-web">ChatGPT is a Blurry JPEG of the Web</a></li>
<li><a target="_blank" href="https://en.wikipedia.org/wiki/Klara_and_the_Sun">Klara and the Sun</a> book Seth recommended</li>
<li><a target="_blank" href="https://twitter.com/seth_goldin">Follow Seth on Twitter</a></li>
</ul>
<p>Be sure to follow The freeCodeCamp podcast in your favorite podcast app. And share this podcast with a friend. Let's inspire more folks to learn to code and build careers for themselves in tech.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Podcast: AI Engineering with Engineer + Scrimba CEO Per Borgen ]]>
                </title>
                <description>
                    <![CDATA[ On this week's episode of the podcast, I interview Per Borgen about the burgeoning field of AI Engineering, and his work in interactive developer education. Per is the co-founder and CEO of Scrimba and is a software engineer. Be sure to follow The fr... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/podcast-ai-engineering-scrimba-ceo-per-borgan/</link>
                <guid isPermaLink="false">66b8d4fa1a59d9c56a518bf5</guid>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ podcast ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Quincy Larson ]]>
                </dc:creator>
                <pubDate>Fri, 09 Feb 2024 17:28:56 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2024/02/AI-Engineering-with-Scrimba-CEO-Engineer-Per-Borgan.jpeg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>On this week's episode of the podcast, I interview Per Borgen about the burgeoning field of AI Engineering, and his work in interactive developer education.</p>
<p>Per is the co-founder and CEO of Scrimba and is a software engineer.</p>
<p>Be sure to follow The freeCodeCamp podcast in your favorite podcast app. And share this podcast with a friend. Let's inspire more folks to learn to code and build careers for themselves in tech.</p>
<p>You can watch me interview Per on YouTube below:</p>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/vDJq3QavcaQ" 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>And you can listen to the podcast in Apple Podcasts, Spotify, or your favorite podcast app. You can also listen to the podcast below, right in your browser:</p>
<div class="embed-wrapper"><iframe src="https://play.libsyn.com/embed/episode/id/29875663/height/192/theme/modern/size/large/thumbnail/yes/custom-color/2a4061/time-start/00:00:00/playlist-height/200/direction/backward/download/yes/font-color/FFFFFF" height="192" width="100%" style="border:none" title="Embedded content" loading="lazy"></iframe></div>

<p>Links we talk about during the interview:</p>
<p>Per's HTML + CSS course: <a target="_blank" href="https://www.freecodecamp.org/news/learn-html-and-css-from-the-ceo-of-scrimba/">https://www.freecodecamp.org/news/learn-html-and-css-from-the-ceo-of-scrimba/</a></p>
<p>Per's JavaScript course: <a target="_blank" href="https://www.freecodecamp.org/news/full-javascript-course-for-beginners/">https://www.freecodecamp.org/news/full-javascript-course-for-beginners/</a></p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ 200+ Universities Just Launched 1000+ Free Online Courses. Here’s the Full List. ]]>
                </title>
                <description>
                    <![CDATA[ By Dhawal Shah If you haven’t heard, universities around the world are offering their courses online for free (or at least, partially free). These online courses are collectively called MOOCs or Massive Open Online Courses. In the past ten years or s... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/new-online-courses/</link>
                <guid isPermaLink="false">66d45ebd4a7504b7409c33c5</guid>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ online courses ]]>
                    </category>
                
                    <category>
                        <![CDATA[ self-improvement  ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ freeCodeCamp ]]>
                </dc:creator>
                <pubDate>Tue, 30 Jan 2024 09:00:00 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2021/08/banner-new-courses.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>By Dhawal Shah</p>
<p>If you haven’t heard, universities around the world are offering their courses online for free (or at least, partially free). These <a target="_blank" href="https://www.classcentral.com/help/intro-to-online-learning">online courses</a> are collectively called MOOCs or <a target="_blank" href="https://www.classcentral.com/help/moocs">Massive Open Online Courses.</a></p>
<p>In the past ten years or so, over 1000 universities have created more than 20,000 such online courses. I’ve been keeping track of them this entire time here at <a target="_blank" href="https://www.classcentral.com/">Class Central</a>, a search engine and reviews site for online education which has been used by <a target="_blank" href="https://www.classcentral.com/about">60 million learners</a> around the world.</p>
<p>In the past six months alone, more than 200 universities — including Harvard, Stanford, MIT, and a few Ivy League Schools — have announced over 1000 such free online courses. I’ve compiled this list below and categorized the courses into the following subjects:</p>
<ul>
<li><a class="post-section-overview" href="#heading-computer-science-81">Computer Science</a> (84)</li>
<li><a class="post-section-overview" href="#heading-programming-54">Programming</a> (54)</li>
<li><a class="post-section-overview" href="#heading-science-99">Science</a> (99)</li>
<li><a class="post-section-overview" href="#heading-engineering-88">Engineering</a> (88)</li>
<li><a class="post-section-overview" href="#heading-business-150">Business</a> (150)</li>
<li><a class="post-section-overview" href="#heading-personal-development-38">Personal Development</a> (38)</li>
<li><a class="post-section-overview" href="#heading-humanities-87">Humanities</a> (87)</li>
<li><a class="post-section-overview" href="#heading-social-sciences-89">Social Sciences</a> (89)</li>
<li><a class="post-section-overview" href="#heading-health-amp-medicine-91">Health &amp; Medicine</a> (91)</li>
<li><a class="post-section-overview" href="#heading-education-amp-teaching-21">Education &amp; Teaching</a> (21)</li>
<li><a class="post-section-overview" href="#heading-data-science-39">Data Science</a> (39)</li>
<li><a class="post-section-overview" href="#heading-mathematics-32">Mathematics</a> (32)</li>
<li><a class="post-section-overview" href="#heading-art-amp-design-27">Art &amp; Design</a> (27)</li>
<li><a class="post-section-overview" href="#heading-international-130">International</a> (130)</li>
</ul>
<p>If the courses below don’t interest you, <a target="_blank" href="https://www.classcentral.com/">Class Central’</a>s got you covered. Either browse our extensive catalog of <a target="_blank" href="https://www.classcentral.com/subjects">200,000 online courses</a> or have a look at our thematic collections:</p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/report/free-certificates/">Massive List of Thousands of Free Certificates &amp; Badges</a></li>
<li><a target="_blank" href="https://www.classcentral.com/report/big-tech-free-courses/">9000 Free Courses from Tech Giants</a></li>
<li><a target="_blank" href="https://www.classcentral.com/report/coursera-free-online-courses/">1700 Coursera Courses Still Completely Free</a></li>
<li><a target="_blank" href="https://www.classcentral.com/report/open-university-free-certificates/">1000+ Open University Free Certificates</a></li>
<li><a target="_blank" href="https://www.classcentral.com/report/harvard-cs50-guide/">Harvard Computer Science Courses with Free Certificate</a></li>
</ul>
<p>You can find all the <a target="_blank" href="https://www.classcentral.com/report/tag/free-certificates/">Class Central free certificate articles here</a>.</p>
<p>If you’re new to online education, have a look at our suggestions on <a target="_blank" href="https://www.classcentral.com/report/mooc-motivation-hacks/">how to learn online</a> effectively.</p>
<p>Here’s the full list of new free online courses. Most of them are completely self-paced, so you can learn at your convenience.</p>
<hr>
<h2 id="heading-computer-science-81"><strong>Computer Science (81)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/artificial-intelligence-universitat-politecnica-d-207603">Herramientas de Inteligencia Artificial para la productividad. Más allá del ChatGPT</a> from <em>Universitat Politècnica de València</em> ★★★★★(45)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/chatgpt-universidad-galileo-unlocking-the-power-o-207602">Unlocking the Power of Generative AI with ChatGPT for Higher Education</a> from <em>Galileo University</em> ★★★★★(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/an-introduction-to-logic-in-computer-science-202050">An Introduction to Logic for Computer Science</a> from <em>University of Leeds</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/machine-learning-harvard-university-machine-learn-270681">Machine Learning and AI with Python</a> from <em>Harvard University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ai-awakening-277306">[New] The AI Awakening: Implications for the Economy and Society</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computer-programming-massachusetts-institute-of-t-192616">Introduction to Computational Science and Engineering</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/generative-ai-teach-out-205348">Generative AI Teach-Out</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/logistic-regression-prediction-health-data-238117">Logistic Regression and Prediction for Health Data</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/generative-ai-essentials-274680">Generative AI Essentials: Overview and Impact</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-recommender-systems-269764">Recommender Systems</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/virtualization-docker-kubernetes-data-engineering-263698">Virtualization, Docker, and Kubernetes for Data Engineering</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/llmops-azure-278135">[New] Operationalizing LLMs on Azure</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-basics-of-computational-complexity-269666">Basics of Computational Complexity</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/artificial-intelligence-the-georgia-institute-of--274063">Assessment Design with AI</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chatbots-the-georgia-institute-of-technology-chat-274064">Chatbots for Instruction</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/artificial-intelligence-the-georgia-institute-of--274065">AI for Teacher Assistance</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/emerging-technology-disruption-ai-274924">Emerging Technology, Disruption, and AI</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-games-and-information-269709">Games and Information</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-ai-in-marketing-269653">AI in Marketing</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ai-foundations-prompt-engineering-with-chatgpt-216806">AI Foundations: Prompt Engineering with ChatGPT</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-machine-learning-with-python-274964">Introduction to Machine Learning with Python</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-parallel-computer-architecture-269752">Parallel Computer Architecture</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/an-introduction-to-cryptography-202049">An Introduction to Cryptography</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-to-get-into-ai-273011">How to Get Into AI</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-technology-assisted-decision-maki-273020">Introduction to Technology-Assisted Decision-Making</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-to-get-into-blockchain-273022">How to Get Into Blockchain</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-edge-computing-269698">Edge Computing</a> from <em>Indian Institute of Technology Patna</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-advanced-topics-in-wireless-communication-hindi-269657">Advanced topics in Wireless Communication (Hindi)</a> from <em>Indraprastha Institute of Information Technology Delhi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chatgpt-advanced-data-analysis-206554">ChatGPT Advanced Data Analysis</a> from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chatgpt-innovative-teaching-216813">Innovative Teaching with ChatGPT</a> from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/generative-ai-261466">Generative AI Primer</a> from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/trustworthy-generative-ai-264196">Trustworthy Generative AI</a> from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/generative-ai-for-leaders-270587">Generative AI for Leaders</a> from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gpt-vision-272484">GPT Vision: Seeing the World through Generative AI</a> from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/trees-svm-and-unsupervised-learning-191496">Trees, SVM and Unsupervised Learning</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/linear-programming-and-approximation-algorithms-206551">Approximation Algorithms and Linear Programming</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-data-structures-rsa-and-quantum-algorith-206565">Advanced Data Structures, RSA and Quantum Algorithms</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-generative-ai-260361">Introduction to Generative AI</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/network-systems-foundations-271351">Network Systems Foundations</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/machine-learning-delft-university-of-technology-m-204582">Machine Learning for Semiconductor Quantum Devices</a> from <em>Delft University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computer-science-delft-university-of-technology-d-204583">Development and Applications of Germanium Quantum Technologies</a> from <em>Delft University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chatgpt-universitat-politecnica-de-valencia-intro-277713">[New] Introduction to ChatGPT. Boost your productivity to the maximum using artificial intelligence!</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/technology-tecnologico-de-monterrey-componentes-t-207631">Componentes Tecnológicos y Operaciones</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chatgpt-206698">Generative Pre-trained Transformers (GPT)</a> from <em>University of Glasgow</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/generative-ai-in-education-274684">Generative AI in Education</a> from <em>University of Glasgow</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/artificial-intelligence-davidson-college-ai-promp-207529">AI Prompt Engineering for Beginners</a> from <em>Davidson College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-blockchain-for-business-217492">Introduction to Blockchain for Business</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/harnessing-ai-in-marketing-and-communication-264111">Harnessing AI in Marketing and Communication</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ai-strategy-264425">AI Concepts and Strategy</a> from <em>Rutgers University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computer-programming-rwth-aachen-university-basic-199031">Basics of Machine Learning</a> from <em>RWTH Aachen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/generative-ai-in-higher-education-260069">Generative AI in Higher Education</a> from <em>King’s College London</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-artificial-intelligence-using-prolog-programming-204234">Artificial Intelligence using Prolog Programming</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-bese-141-ict-in-education-272828">BESE-141- ICT in Education</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/new-ways-of-working-in-an-ai-world-260145">New Ways of Working in an AI World</a> from <em>London Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/machine-learning-for-image-data-207212">Machine Learning for Image Data</a> from <em>The University of Nottingham</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-daos-decentralised-autonomous-org-192352">Introduction to DAOs: Decentralised Autonomous Organisations</a> from <em>RMIT University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gamefi-in-the-web3-world-262118">GameFi in the Web3 World</a> from <em>RMIT University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/artificial-intelligence-ku-leuven-ai-in-healthcar-274285">AI in Healthcare. Hype or Help?</a> from <em>KU Leuven University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-mathematics-of-cryptography-from-ancient-rome-206217">The Mathematics of Cryptography: From Ancient Rome to a Quantum Future</a> from <em>University of York</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/machine-learning-for-smart-beta-221727">Machine Learning for Smart Beta</a> from <em>Sungkyunkwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/healthcare-data-management-and-information-system-204478">Healthcare Data Management and Information Systems</a> from <em>Northeastern University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/machine-learning-in-healthcare-fundamentals-and-a-206706">Machine Learning in Healthcare: Fundamentals &amp; Applications</a> from <em>Northeastern University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ai-ethics-law-and-policy-261362">AI Ethics, Law, and Policy</a> from <em>National Tsing Hua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/applications-of-ai-in-real-estate-finance-and-inv-264109">Applications of AI in Real Estate Finance and Investment</a> from <em>National Tsing Hua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/recommender-systems-in-python-276605">[New] Recommender Systems in Python</a> from <em>National Tsing Hua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/blockchain--191498">Introduction to Blockchain</a> from <em>Pohang University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/blockchain102-263527">Blockchain Theory and Applications Ⅱ</a> from <em>Pohang University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/blockchain101-263531">Blockchain Theory and Applications I</a> from <em>Pohang University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-os-security-206163">OS Security</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-linux-os-206167">Linux OS</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-computer-networking-206169">Computer Networking</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-introduction-to-data-networks-and-t-261480">Introduction to Data Networks and the Internet – Bachelor’s</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-introduction-to-data-networks-and-t-261488">Introduction to Data Networks and the Internet – Master’s</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-introduction-to-open-source-operati-274931">Introduction to Open Source Operating Systems – Bachelor’s</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-introduction-to-open-source-operati-274963">Introduction to Open Source Operating Systems – Master’s</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/supervised-learning-and-its-applications-in-marke-204475">Supervised Learning and Its Applications in Marketing</a> from <em>O.P. Jindal Global University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/unsupervised-learning-and-its-applications-in-mar-204476">Unsupervised Learning and Its Applications in Marketing</a> from <em>O.P. Jindal Global University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-analysis-ie-university-introduction-to-data--204426">Introduction to Data Strategy, Management, and Governance</a> from <em>IE University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-analysis-ie-university-data-monetization-man-204427">Data Monetization, Management, and Trends</a> from <em>IE University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/blockchain-sda-bocconi-school-of-management-block-207626">Blockchain Fundamentals: Understanding the Origins, Mechanisms, and Applications of Decentralized Systems</a> from <em>SDA Bocconi School of Management</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/blockchain-sda-bocconi-school-of-management-block-207627">Blockchain Implementation and Regulation: Challenges, Opportunities and Future Implications</a> from <em>SDA Bocconi School of Management</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/six-sigma-technische-universitat-munchen-lean-six-201624">Lean Six Sigma Green Belt Business Project</a> from <em>Technische Universität München (Technical University of Munich)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/safety-by-design-207692">Safety By Design</a> from <em>RMIT University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/security-management-and-governance-202195">Security Management and Governance</a> from <em>Royal Holloway, University of London</em></li>
</ul>
<h2 id="heading-programming-54"><strong>Programming (54)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/foundations-of-software-testing-and-validation-202198">Foundations of Software Testing and Validation</a> from <em>University of Leeds</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/an-introduction-to-programming-using-python-202048">An Introduction to Programming using Python</a> from <em>University of Leeds</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/r-programming-harvard-university-cs50-s-introduct-274066">CS50’s Introduction to Programming with R</a> from <em>Harvard University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/python-stanford-university-statistical-learning-w-272341">Statistical Learning with Python</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/django-javascript-json-207173">Using JavaScript and JSON in Django</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/building-objects-in-c-274174">Building Objects in C</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-structures-in-c-274175">Data Structures in C</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/exploring-c-274176">Exploring C</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/programming-c-274177">Programming in C</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/python-programming-fundamentals-199612">Python Programming Fundamentals</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/rust-fundamentals-264427">Rust Fundamentals</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-engineering-rust-273018">Data Engineering with Rust</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/rust-llmops-273905">Rust for Large Language Model Operations (LLMOps)</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/python-rust-linux-274945">[New] Python and Rust with Linux Command Line Tools</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/numpy-data-science-274974">Data Science with NumPy, Sets, and Dictionaries</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/rust-for-devops-275003">Rust for DevOps</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-python-1-204949">Introduction to Python</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/object-oriented-programming-and-gui-with-python-274933">Object-Oriented Programming and GUI with Python</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-analysis-and-visualization-with-python-274934">Data Analysis and Visualization with Python</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-digital-design-with-verilog-269695">Digital Design with Verilog</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computer-science-university-of-california-davis-j-262441">JavaScript Basics</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/javascript-university-of-california-davis-interac-273817">Interactivity with JavaScript and jQuery</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/javascript-university-of-california-davis-data-ma-273818">Data Manipulation in JavaScript</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/working-with-integrated-development-environments-202047">Working with Integrated Development Environments</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/working-with-version-control-202052">Working with Version Control</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-to-get-into-web-development-273012">How to Get Into Web Development</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-to-get-into-software-development-273906">How to Get Into Software Development</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-to-get-into-cloud-computing-274972">How to Get Into Cloud Computing</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/programming-for-a-networked-world-238106">Programming for a Networked World</a> from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/java-spring-250850">Building HTTP APIs with Spring</a> from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/microservices-250861">Microservice Architectures</a> from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/functional-programming-with-java-and-threads-250862">Functional Programming with Java and Threads</a> from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/platform-thinking-for-the-metaverse-204662">Platform Thinking for the Metaverse</a> from <em>Politecnico di Milano</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/comp-thinking-javascript-project-course-4-274946">Computational Thinking with JavaScript 4: Create &amp; Deploy</a> from <em>University of Glasgow</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-web-technology-272845">Web Technology</a> from <em>Uttarakhand Open University, Haldwani</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-data-structure-using-c-programming-204238">Data Structure using C Programming</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-image-processing-using-python-204245">Image Processing Using Python</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-virtual-reality-203326">Introduction to Virtual Reality</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/go-programming-everyone-part-1-276570">[New] GO Programming for Everyone: Part 1</a> from <em>University of California, Santa Cruz</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ball-state-university-introduction-to-programming-262195">Introduction to Programming</a> from <em>Ball State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/metaverse-and-virtual-reality-260065">Metaverse and Virtual Reality</a> from <em>National Tsing Hua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-java-272075">Introduction to Java</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/object-oriented-programming-with-java-up-276569">[New] Object-Oriented Programming with Java</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-relational-database-design-206155">Relational Database Design</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-introduction-to-relational-database-206156">Introduction to Relational Databases</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-mobile-computing-and-cloud-206157">Mobile Computing and Cloud</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-introduction-to-open-source-applica-261462">Introduction to Open Source Application Development</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-open-source-programming-mit-274930">Open Source Programming – Master’s</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-programming-and-application-foundat-274952">Programming and Application Foundations</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-open-source-programming-bit-274953">Open Source Programming – Bachelor’s</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-relational-database-implementation--274962">Relational Database Implementation and Applications</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-fundamentals-of-web-development-275711">[New] Fundamentals of Web Development</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/python-lehigh-university-python-fundamentals-for--207620">Python Fundamentals for Business Analytics</a> from <em>Lehigh University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computer-science-sda-bocconi-school-of-management-252849">Fundamentals of Python</a> from <em>SDA Bocconi School of Management</em></li>
</ul>
<h2 id="heading-science-99"><strong>Science (99)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-technische-universitat-mu-203192">Biotech — From Science to Business</a> from <em>Technische Universität München (Technical University of Munich)</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/agroforestry1-262211">Agroforestry I: Principles and Practices</a> from <em>University of Florida</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-sharks-213379">Introduction to Sharks</a> from <em>Taipei Medical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/rna-biology-269570">RNA Biology with Eterna</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/genetics-massachusetts-institute-of-technology-ge-204585">Genetics: Population Genetics and Human Traits</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/engineering-massachusetts-institute-of-technology-205020">Thermal-Fluids Engineering 1: Basics of Thermodynamics and Hydrostatics</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chemistry-massachusetts-institute-of-technology-c-207624">Chemical Thermodynamics II: Equilibrium and Kinetics</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/science-university-of-california-berkeley-psyched-199555">Psychedelics and the Mind</a> from <em>University of California, Berkeley</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-classics-in-neuroscience-269678">Classics in Neuroscience</a> from <em>Indian Institute of Technology Madras</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-fundamentals-of-attosecond-science-and-technology-fast-272833">Fundamentals of Attosecond Science and Technology (FAST)</a> from <em>Indian Institute of Technology Madras</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-basics-of-crop-breeding-and-plant-biotechnology-269667">Basics of Crop Breeding and Plant Biotechnology</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-comprehensive-molecular-diagnostics-and-advanced-gene-expression-analysis-269683">Comprehensive Molecular Diagnostics and Advanced Gene Expression Analysis</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-elementary-thermodynamics-for-all-269699">Elementary Thermodynamics for All</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-principles-of-extractive-metallurgy-269757">Principles of Extractive Metallurgy</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-watershed-hydrology-269787">Watershed Hydrology</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-coherence-and-quantum-entanglement-269680">Coherence and Quantum Entanglement</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-refrigeration-and-air-conditioning-269728">Introduction to Refrigeration and Air Conditioning</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-laboratory-practices-in-earth-sciences-landscape-mapping-269733">Laboratory Practices in Earth Sciences: Landscape Mapping</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-supramolecular-chemistry-i-269780">Supramolecular Chemistry-I</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-tapestry-of-field-theory-classical-quantum-equilibrium-nonequilibrium-perspectives-269782">Tapestry of Field theory: Classical &amp; Quantum, Equilibrium &amp; Nonequilibrium Perspectives</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-na-ra-ma-nae-pa-rab-thhana-construction-management-ka-sa-tha-thha-ta-nirman-prabandhan-construction-management-ke-siddhant-269788">निर्माण प्रबंधन (Construction Management) के सिद्धांत[Nirman prabandhan (Construction Management) ke Siddhant]</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/risks-to-crop-production-in-agriculture-274180">Risks to Crop Production in Agriculture</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategies-and-tools-to-mitigate-agricultural-ris-274181">Strategies and Tools to Mitigate Agricultural Risk</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-interpretative-molecular-spectroscopy-269721">Interpretative molecular spectroscopy</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-many-body-methods-in-quantum-chemistry-269735">Many body methods in quantum chemistry</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-quantum-mechanics-i-269762">Quantum Mechanics I</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-cognitive-ergonomics-269679">Cognitive Ergonomics</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-plasma-physics-and-applications-269755">Plasma Physics and Applications</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/climate-solutions-malawi-202954">Climate Solutions: Malawi</a> from <em>Edinburgh Climate Change Institute</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/climate-solutions-203659">Climate Solutions</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-discovery-of-the-higgs-boson-206832">The Discovery of the Higgs Boson</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/climate-change-carbon-capture-and-storage-271352">Climate Change: Carbon Capture and Storage</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/climate-solutions-uae-272077">Climate Solutions: UAE</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/environmental-science-the-university-of-edinburgh-199423">The Role of Social Sciences in Nitrogen Research</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/environmental-science-the-university-of-edinburgh-248179">Nitrogen Pollution – Threats to Tropical Coral Coasts</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-applied-seismology-for-engineers-269663">Applied Seismology for Engineers</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-applied-statistical-thermodynamics-269664">Applied Statistical Thermodynamics</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-mechanics-of-sheet-metal-forming-269737">Mechanics of Sheet Metal Forming</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-quantum-entanglement-fundamentals-measures-and-applications-269761">Quantum Entanglement: Fundamentals, measures and applications</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-topology-and-condensed-matter-physics-269783">Topology and Condensed Matter Physics</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-science-communication-research-productivity-and-data-analytics-using-open-source-software-269766">Science Communication: Research Productivity and Data Analytics using Open Source Software</a> from <em>Indian Institute of Technology Delhi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sensory-science-conducting-tests-207640">Sensory Science: Conducting Tests</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/light-materials-206833">Light and Materials</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/geometrical-physical-optics-206834">Geometrical and Physical Optics</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/oscillators-waves-206835">Oscillators and Waves</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-one-and-two-dimensional-nmr-spectroscopy-concepts-and-spectral-analysis-269749">One and Two dimensional NMR Spectroscopy: Concepts and Spectral Analysis</a> from <em>Indian Institute of Science Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-human-physiology-269712">Human Physiology</a> from <em>Indian Institute of Science Education and Research, Pune</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-computational-genomics-269684">Computational Genomics</a> from <em>Indian Institute of Science Education and Research Bhopal</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-industrial-hydraulics-and-automation-269715">Industrial Hydraulics and Automation</a> from <em>IIT (ISM) Dhanbad</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-mine-automation-and-data-analytics-269740">Mine Automation and Data Analytics</a> from <em>IIT (ISM) Dhanbad</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-forensic-linguistics-269705">Forensic Linguistics</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/slope-engineering-273909">Slope Engineering</a> from <em>The Hong Kong University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/polar-peril-202193">Polar Peril</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/intro-to-the-arctic-202194">Intro to the Arctic</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-north-awakens-202196">The North Awakens</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-neuroscience-of-leading-transformational-orga-202932">The Neuroscience of Leading Transformational Organizations</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-neuroscience-of-leading-high-performance-team-202933">The Neuroscience of Leading High-Performance Teams</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/spacecraft-relative-motion-kinematics-and-kinetic-206703">Spacecraft Relative Motion Kinematics and Kinetics</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/modern-topics-in-condensed-matter-physics-238194">Modern Topics in Condensed Matter Physics</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/universal-theories-238197">Universal Theories</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/phases-of-matter-solid-liquid-gas-and-beyond-238201">Phases of Matter: Solid, Liquid, Gas and Beyond</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/movements-controlled-muscle-forces-271194">Movements Are Controlled By Muscle Forces</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamental-neural-pathways-movement-271195">Fundamental Neural Pathways For Movement</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/movement-capabilities-neuromuscular-properties-273912">Movement Capabilities Depend on Neuromuscular Properties</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/engineering-genetic-circuits-modeling-and-analysi-277332">[New] Engineering Genetic Circuits: Modeling and Analysis</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/architecture-delft-university-of-technology-build-201796">Sustainable Building with Timber</a> from <em>Delft University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/engineering-delft-university-of-technology-indust-207530">Industrial Fermentation</a> from <em>Delft University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/physics-ecole-polytechnique-federale-de-lausanne--277197">[New] Synchrotrons and X-Ray Free Electron Lasers (part 2)</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-concepts-and-applications-in-science-271419">Concepts and Applications in Science</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/physics-universitat-politecnica-de-valencia-physi-271293">Physics Fundamentals: Oscillations and Waves</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/physics-universitat-politecnica-de-valencia-physi-272343">Physics Fundamentals: Mechanics</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/physics-universitat-politecnica-de-valencia-physi-272344">Physics Fundamentals: Electromagnetics</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/environmental-science-wageningen-university-resea-204430">The Plastic Life Cycle: from Pollution to Solution</a> from <em>Wageningen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/agroforestry2-261481">Agroforestry II: Major Systems of the World</a> from <em>University of Florida</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/agroforestry5-261482">Agroforestry V: Ecosystem Services, Food and Sustainability</a> from <em>University of Florida</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/agroforestry4-261483">Agroforestry IV: Climate, Carbon Storage and Agroforestry</a> from <em>University of Florida</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/agroforestry3-261484">Agroforestry III: Principles of Plant and Soil Management</a> from <em>University of Florida</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/foundations-of-lca-277373">[New] Foundations of Life Cycle Assessment Practice</a> from <em>Deakin University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/physics-the-national-university-of-singapore-mind-203012">Is this Physics or Magic? Learning Physics through Minds-on Science Demonstration</a> from <em>National University of Singapore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/free-will-and-neuroscience-203660">Free Will and Neuroscience</a> from <em>Dartmouth College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-genetic-engineering-and-its-recent-advancements-204243">Genetic Engineering and Its Recent Advancements</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-industrial-safety-and-fire-safety-management-204246">Industrial Safety And Fire Safety Management</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-computational-protein-modeling-and-analysis-204704">Computational Protein Modeling and Analysis</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-fundamentals-of-computational-biology-204707">Fundamentals of Computational Biology</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-safety-in-construction-industry-205114">Safety In Construction Industry</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-elements-of-underground-and-opencast-mining-205176">Elements of Underground and Opencast Mining</a> from <em>Chhattisgarh Swami Vivekanand Technical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/signaling-actions-of-small-molecules-263535">Signaling actions of small molecules</a> from <em>Korea Advanced Institute of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/a-starters-guide-to-open-science-206693">A starter’s guide to Open Science</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cities-climate-and-change-261468">Cities, Climate and Change: Pathways and Opportunities</a> from <em>Lund University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/molecular-biology-bow-to-detect-pathogens-in-aqua-199566">Molecular Biology: How to Detect Pathogens in Aquaculture</a> from <em>Taipei Medical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-lasers-207116">Introduction to Lasers</a> from <em>Taipei Medical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-immunology-basics-269714">Immunology (Basics)</a> from <em>Manipur University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-nutritional-clinical-biochemistry-269748">Nutritional &amp; Clinical Biochemistry</a> from <em>Manipur University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-photo-geology-and-remote-sensing-273789">Photo Geology and Remote Sensing</a> from <em>Doctor Harisingh Gour Vishwavidyalaya, Sagar</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-biosafety-for-modern-biotechnolog-217493">Introduction to Biosafety for Modern Biotechnology</a> from <em>University of Malaya</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-environmental-issues-in-india-203315">Environmental Issues In India</a> from <em>Govt. Degree College, Eidgah, Srinagar</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-chemistry-of-nanomaterials-269673">CHEMISTRY OF NANOMATERIALS</a> from <em>CEC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-embryology-of-angiosperms-263732">Embryology of Angiosperms</a> from <em>CEC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-coordination-chemistry-states-of-matters-chemical-kinetics-269690">Coordination Chemistry states of matters &amp; chemical kinetics</a> from <em>The Maharaja Sayajirao University of Baroda</em></li>
</ul>
<h2 id="heading-engineering-88"><strong>Engineering (88)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamental-skills-in-engineering-design-202053">Fundamental Skills in Engineering Design</a> from <em>University of Leeds</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/rocket-science-in-everyday-life-277614">[New] Rocket Science in Everyday Life</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/history-of-rocket-science-277615">[New] The History of Rocket Science</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/basics-of-rocket-science-277616">[New] The Basics of Rocket Science</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-advanced-topics-in-science-and-technology-of-concrete-269656">Advanced Topics in Science and Technology of Concrete</a> from <em>Indian Institute of Technology Madras</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-analog-electronic-circuits-iitm-269662">Analog Electronic Circuits – IITM</a> from <em>Indian Institute of Technology Madras</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-design-of-mechanical-transmission-systems-269693">Design of Mechanical Transmission Systems</a> from <em>Indian Institute of Technology Madras</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-surface-facilities-for-oil-and-gas-handling-269781">Surface Facilities for Oil and Gas Handling</a> from <em>Indian Institute of Technology Madras</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-aerospace-structural-analysis-269658">Aerospace Structural Analysis</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-combustion-of-solid-fuels-and-propellants-269681">Combustion of Solid Fuels and Propellants</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-cryogenic-hydrogen-technology-269691">Cryogenic Hydrogen Technology</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-emi-emc-and-signal-integrity-principles-techniques-and-applications-269696">EMI /EMC and Signal Integrity: Principles, Techniques and Applications</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-embedded-sensing-actuation-and-interfacing-systems-269700">Embedded Sensing, Actuation and Interfacing Systems</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-experimental-robotics-269704">Experimental Robotics</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-fundamentals-of-supersonic-and-hypersonic-flow-269708">Fundamentals of Supersonic and Hypersonic Flow</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-momentum-transfer-in-fluids-269743">Momentum Transfer in Fluids</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-water-quality-management-practices-269786">Water Quality Management Practices</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/drones-for-environmental-science-201717">Drones for Environmental Science</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-engineering-thermodynamics-in-hindi-269702">Engineering Thermodynamics in Hindi</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-aircraft-control-system-269722">Introduction to Aircraft Control System</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-digital-communication-using-gnu-radio-269694">Digital Communication using GNU Radio</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-modeling-stochastic-phenomena-for-engineering-applications-part-1-269741">Modeling Stochastic phenomena for Engineering applications: Part-1</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-nonlinear-control-design-269746">Nonlinear Control Design</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-energy-resources-economics-and-sustainability-269701">Energy Resources, Economics, and Sustainability</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-rf-transceiver-of-design-269763">RF Transceiver of Design</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-vlsi-physical-design-with-timing-analysis-269784">VLSI Physical Design with Timing Analysis</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/primary-and-secondary-batteries-200539">Primary and Secondary Batteries</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/batteries-and-electric-vehicles-200540">Batteries and Electric Vehicles</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/manufacturing-200541">Semiconductor Packaging Manufacturing</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/battery-comparison-manufacturing-and-packaging-200542">Battery Comparison, Manufacturing, and Packaging</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lithium-based-batteries-200543">Lithium Based Batteries</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/zn-and-ni-based-batteries-200544">Zn and Ni Based Batteries</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-packaging-200545">Advanced Semiconductor Packaging</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-semiconductor-packaging-200546">Introduction to Semiconductor Packaging</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-semiconductor-characterization-269565">Fundamentals of Semiconductor Characterization</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/electrical-characterization-diodes-269566">Electrical Characterization: Diodes</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/optical-and-x-ray-characterization-269567">Optical and X-Ray Characterization</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/electron-and-ion-beam-characterization-269568">Electron and Ion Beam Characterization</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/electrical-characterization-mosfets-269569">Electrical Characterization: MOSFETs</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-integrated-circuits-and-applications-269718">Integrated Circuits and Applications</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-solidification-processing-269730">Introduction to Solidification Processing</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-power-plant-system-engineering-269756">Power Plant System Engineering</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-structural-vibration-269778">Structural Vibration</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-computational-process-design-269685">Computational process design</a> from <em>Indian Institute of Technology Delhi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-computer-aided-design-of-electrical-machines-269686">Computer-Aided Design of Electrical Machines</a> from <em>Indian Institute of Technology Delhi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-data-enabled-tribological-engineering-from-experiments-to-predictive-models-269692">Data-Enabled Tribological Engineering: From Experiments to Predictive Models</a> from <em>Indian Institute of Technology Delhi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-ev-vehicle-dynamics-and-electric-motor-drives-269697">EV – Vehicle Dynamics and Electric Motor Drives</a> from <em>Indian Institute of Technology Delhi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gis-applications-across-industries-261849">GIS Applications Across Industries</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/geospatial-analysis-261856">Geospatial Analysis with ArcGIS</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-to-get-into-robotics-273013">How to Get Into Robotics</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-basics-of-semiconductor-microwave-devices-269668">Basics of Semiconductor Microwave Devices</a> from <em>Indian Institute of Science Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-control-system-design-269689">Control System Design</a> from <em>Indian Institute of Science Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-state-space-approach-to-control-system-analysis-and-design-269773">State space Approach to Control System Analysis and Design</a> from <em>Indian Institute of Technology Mandi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/robotic-path-planning-task-execution-204965">Robotic Path Planning and Task Execution</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/robotic-mapping-trajectory-generation-204966">Robotic Mapping and Trajectory Generation</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/basic-robotic-behaviors-and-odometry-204967">Basic Robotic Behaviors and Odometry</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/capstone-project-on-spacecraft-formation-flying-a-206704">Spacecraft Formation Flying and Control Capstone Project</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/spacecraft-relative-motion-control-206705">Spacecraft Relative Motion Control</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/modeling-feedback-systems-261487">Modeling of Feedback Systems</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/engineering-genetic-circuit-design-261857">Engineering Genetic Circuits: Design</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/engineering-delft-university-of-technology-solar--278051">[New] Exam: Photovoltaic (PV) Energy Conversion</a> from <em>Delft University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computer-programming-ecole-polytechnique-federale-277520">[New] The Thymio robot as a tool for discovering digital science</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/modelling-simulation-mechanical-systems-203538">Modelling and simulation of mechanical systems</a> from <em>University of Naples Federico II</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/autonomous-aerospace-systems-203539">Autonomous Aerospace Systems</a> from <em>University of Naples Federico II</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-advanced-product-quality-planning-apqp-271413">Advanced Product Quality Planning(APQP)</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-concepts-and-applications-in-engineering-271418">Concepts and Applications in Engineering</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-production-part-approval-process-ppap-271424">Production Part Approval Process (PPAP)</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nfm-frontend-273609">Out of core nuclear fuel management: front end</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nfm-incore-273910">In core nuclear fuel management</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nfm-backend-273911">Out of core nuclear fuel management: back end</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/structural-engineering-university-system-of-maryl-191441">Revit for Structural Engineers</a> from <em>University System of Maryland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-analysis-universitat-politecnica-de-valencia-191440">Management of Marginal Lands and Carbon Sequestration estimation through Remote Sensing and GIS</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-conservation-project-management-of-baoli-water-systems-269687">Conservation &amp; Project Management of Baoli Water Systems</a> from <em>Indian Institute of Technology Delhi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/robotics-rwth-aachen-university-introduction-to-r-272876">Introduction to Robotic Programming</a> from <em>RWTH Aachen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-model-seoul-national-university-4th-indu-264347">4th Industrial Revolution &amp; New Business Model</a> from <em>Seoul National University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-basic-principles-of-energy-management-energy-audit-204235">Basic Principles of Energy Management &amp; Energy Audit</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-digital-electronic-and-system-design-204239">Digital electronic and System design</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-emerging-technologies-in-renewable-energy-sources-204241">Emerging Technologies in Renewable Energy Sources</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-fundamental-of-electronic-engineering-204242">Fundamental of Electronic Engineering</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-power-generation-technologies-204249">Power Generation Technologies</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-domestic-equipment-maintenance-204240">Domestic Equipment Maintenance</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/semiconductor-process-1-273023">Introduction to Semiconductor Process 1</a> from <em>Korea Advanced Institute of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/semiconductor-process-2-274696">Introduction to Semiconductor Process 2</a> from <em>Korea Advanced Institute of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/diffusion-and-mass-transfer-206216">Core Topics in Chemical Engineering: Diffusion and Mass Transfer</a> from <em>Taipei Medical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/system-dynamics-277314">[New] System Dynamics</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-nanoscience-and-nanotechnology-269726">Introduction to Nanoscience and Nanotechnology</a> from <em>Central University of Kerala</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/building-information-modelling-bim-for-historic-b-276607">[New] Building Information Modelling (BIM) for Historic Buildings and Built Environment</a> from <em>University of Malaya</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/science-university-of-alaska-fairbanks-unmanned-a-207521">Unmanned Aerial Systems (UAS): Fundamentals</a> from <em>University of Alaska Fairbanks</em></li>
</ul>
<h2 id="heading-business-150"><strong>Business (150)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-massachusetts-institute-o-202280">Humanitarian Logistics</a> from <em>Massachusetts Institute of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/finance-massachusetts-institute-of-technology-com-223237">Comprehensive Final Exam in Finance</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/driving-operational-performance-263507">Driving Operational Performance</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/personal-branding-success-250851">Personal Branding: Stand Out and Succeed</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/creating-change-through-social-entrepreneurship-274182">Creating Change through Social Entrepreneurship</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-business-intelligence-analytics-269672">Business Intelligence &amp; Analytics</a> from <em>Indian Institute of Technology Madras</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-foundations-of-accounting-finance-269706">Foundations of Accounting &amp; Finance</a> from <em>Indian Institute of Technology Madras</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-strategic-sourcing-269776">Strategic Sourcing</a> from <em>Indian Institute of Technology Madras</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategy-management-church-theology-263697">Strategic Management for Churches</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-advanced-financial-instruments-for-sustainable-business-and-decentralized-markets-269655">Advanced Financial Instruments for Sustainable Business and Decentralized Markets</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-impact-cross-cultural-management-203288">Global Impact: Cross-Cultural Management</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-impact-multiculturalism-204060">Global Impact: Multiculturalism</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/issues-in-supply-chain-management-205921">Issues in Supply Chain Management</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/supply-chain-of-agriculture-205922">Supply Chain of Agriculture</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/golf-turf-management-best-practices-207285">Golf Course Management: Best Practices</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/governmental-accounting-and-reporting-1-272487">Governmental Accounting and Reporting I</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/governmental-nonprofit-accounting-275072">Governmental Accounting II and Nonprofit Accounting</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-business-forecasting-269670">Business Forecasting</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-business-fundamentals-for-entrepreneurs-part-2-external-operation-269671">Business Fundamentals for Entrepreneurs (Part 2: External Operation)</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-strategic-services-marketing-269775">Strategic Services Marketing</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/supply-chain-management-the-university-of-marylan-274287">Mapping Digital Transformation in Supply Chain</a> from <em>University of Maryland, College Park</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/uva-darden-digital-business-strategy-207055">Digital Business Strategy</a> from <em>University of Virginia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/what-is-technology-entrepreneurship-and-innovatio-248090">What is Technology Entrepreneurship and Innovation?</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/putting-it-all-together-problem-solve-like-an-ent-248091">Putting it All Together: Problem-Solve Like an Entrepreneur</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/curiosity-a-necessary-ingredient-for-successful-i-248092">Curiosity: A Necessary Ingredient for Successful Innovation</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/care-the-first-step-in-tech-innovation-for-entrep-248093">Care: The First Step in Tech Innovation for Entrepreneurs</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-organizational-behaviour-individual-dynamics-in-organization-269751">Organizational Behaviour: Individual Dynamics in Organization</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/innovation-management-winning-in-the-age-of-disru-250852">Innovation Management: Winning in the Age of Disruption</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-supply-chain-digitization-269779">Supply Chain Digitization</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/market-research-and-analysis-for-tech-industries-203071">Market Research and Analysis for Tech Industries</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-media-and-strategic-planning-in-technolog-204062">Digital Media and Strategic Planning in Technology Markets</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategic-product-development-206555">Strategic Product Development</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/managing-the-new-product-development-process-206558">Managing the New Product Development Process</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/building-and-pitching-marketing-campaigns-in-tech-206564">Building and Pitching Marketing Campaigns in Tech Industries</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-digital-advertising-207060">Introduction to Digital Advertising</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/programmatic-advertising-207062">Programmatic Advertising</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/search-and-display-advertising-207063">Search and Display Advertising</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-to-implement-and-evaluate-communication-campa-263118">How to Implement and Evaluate Communication Campaigns</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-the-campaign-components-263120">Understanding the Campaign Components</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/product-innovation-management-275037">Product Innovation Management</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/integrated-and-strategic-communication-campaigns-275075">Integrated and Strategic Communication Campaigns</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/big-data-business-intelligence-203537">A quick tour on Big Data and Business Intelligence</a> from <em>University of Naples Federico II</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-family-business-199645">Family Business</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-marketing-management-199653">Marketing Management</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-operation-management-199654">Operation Management</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-people-management-for-entrepreneurs-199655">People Management for Entrepreneurs</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-platform-business-models-199656">Platform Business Models</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-organizational-design-201934">Organizational Design</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-advanced-topics-in-organizational-behaviour-271414">Advanced Topics in Organizational Behaviour</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-b2b-marketing-271415">B2B Marketing</a> from <em>Indian Institute of Management Bangalore</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-banking-and-insurance-271417">Banking and Insurance</a> from <em>IIS (Deemed to be University), Jaipur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-design-thinking-271420">Design Thinking</a> from <em>Sri Balaji University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-equity-stock-market-concepts-instruments-risks-and-derivatives-271421">Equity Stock Market: Concepts, Instruments, Risks and Derivatives</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-hr-analytics-using-excel-271422">HR Analytics Using Excel</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-understanding-organizational-behaviour-271425">Understanding Organizational Behaviour</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-behavioural-finance-272829">Behavioural Finance</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-evolution-of-business-and-market-272831">Evolution of Business and Market</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-foundations-of-digital-business-272832">Foundations of Digital Business</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-money-banking-financial-markets-272840">Money Banking &amp; Financial Markets</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-prescriptive-analytics-272842">Prescriptive Analytics</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-gamification-as-a-business-strategy-273782">Gamification as a Business Strategy</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-new-age-business-models-276602">[New] New Age Business Models</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/foundations-supply-chain-management-iitr-oc-277606">[New] Supply Chain Management</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/supply-chain-analytics-iitr-277609">[New] Supply Chain Analytics</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leadership-universitat-politecnica-de-valencia-re-273508">Remote teams leadership</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainable-high-end-tourism-269560">Sustainable high-end tourism</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-driven-leadership-skills-course-3-248061">Data-Driven Leadership Skills Course 3: Data-Driven Leaders</a> from <em>University of Glasgow</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-driven-leadership-first-course-1-248063">Data-Driven Leadership Skills Course 1: Leadership Narrative</a> from <em>University of Glasgow</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-driven-leadership-first-course-2-248064">Data-Driven Leadership Skills Course 2: Agile Leadership</a> from <em>University of Glasgow</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-driven-leadership-skills-course-4-248074">Data-Driven Leadership Skills Capstone Project</a> from <em>University of Glasgow</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mba-essentials-273024">MBA Essentials</a> from <em>University of Glasgow</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-intelligence-imtbs-275706">[New] Data intelligence for businesses and managers</a> from <em>Institut Mines-Télécom</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fintech-university-of-hong-kong-digital-currency-260479">Digital Currency</a> from <em>The University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fintech-university-of-hong-kong-e-payment-262113">E-Payment</a> from <em>The University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-adelaide-bu-199415">Build an Agile Team</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-adelaide-cr-199416">Create Energised and Empowered Teams</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-adelaide-cr-199417">Create Innovative Teams with Design Thinking</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-adelaide-ma-199418">Manage Team Performance</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-adelaide-ma-199419">Manage Virtual and Hybrid Teams</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mastering-excel-pivot-tables-205625">Mastering Excel Pivot Tables</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/customer-care-strategies-for-a-new-business-205857">Customer Care Strategies for a New Business</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/growth-strategies-for-a-new-business-205858">Growth Strategies for a New Business</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/innovation-and-entrepreneurship-for-a-new-busines-206626">Innovation and Entrepreneurship for a New Business</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/developing-ideas-and-content-for-your-digital-str-264112">Developing Ideas and Content for your Digital Strategy</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/designing-and-implementing-a-leadership-developme-264213">Designing and Implementing a Leadership Development Strategy</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sourcing-excellence-271188">Sourcing Excellence</a> from <em>Rutgers University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/supply-chain-excellence-capstone-271190">Supply Chain Excellence Capstone</a> from <em>Rutgers University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/logistics-excellence-271191">Logistics Excellence</a> from <em>Rutgers University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/operations-excellence-275039">Operations Excellence</a> from <em>Rutgers University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-cape-town-m-191437">Market Strategy Essentials: Solving Business Problems Through Trend and Competitor Analysis</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-cape-town-l-191438">Leveraging Customer Insights and Data</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-cape-town-d-191439">Data-Driven Marketing: Interpretation, Storytelling and the Future of Market Research</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-university-of-cape-town-commercial-prop-200507">Commercial Property and Opportunity</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-university-of-cape-town-commercial-prop-200508">Commercial Property Contracts and Financial Modelling</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-university-of-cape-town-commercial-prop-200509">Commercial Property Valuation</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-university-of-cape-town-alternative-pro-200510">Alternative Property Investment Opportunities</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-cape-town-i-203193">Introduction to Values-Based Leadership</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-cape-town-a-203307">Adopting a Values-Based Approach in an Organization</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-cape-town-b-203308">Becoming a Values-Based Leader</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/artsformation-263526">Art and the Digital Transformation</a> from <em>Copenhagen Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-digital-transformation-change-and-260124">Introduction to Digital Transformation: Change &amp; Disruption</a> from <em>London Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-for-good-fundamentals-of-corporate-respo-260125">Business for Good: Fundamentals of Corporate Responsibility</a> from <em>London Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/agile-organisation-strategies-for-business-resili-260137">Agile Organisation: Strategies for Business Resilience</a> from <em>London Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepreneurial-competencies-landscape-restoratio-207056">Entrepreneurial Competencies for Landscape Restoration</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pubs-history-consumers-management-and-protection-207816">Pubs: History, Consumers, Management, and Protection</a> from <em>University of York</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-research-methods-i-206782">Business Research Methods</a> from <em>Taipei Medical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-management-organizations-277301">[New] Fundamentals of Management and Organizations</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leading-transformation-fia-277305">[New] Leading Transformation</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fia-operations-management-277307">[New] Operations Management</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/supply-chain-management-fia-277308">[New] Global Supply Chain Management</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategic-management-mba-fia-277310">[New] Strategic Management</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/scenario-planning-1-277311">[New] Scenario Planning I</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/scenario-planning-ii-277312">[New] Scenario Planning II</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepreneurshipfia-277313">[New] Entrepreneurship</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-strategy-277315">[New] Introduction to Strategy</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/corporate-foresight-277316">[New] Corporate Foresight</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/valuation-and-strategic-finance-277323">[New] Valuation &amp; Strategic Finance</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/financial-accounting-fia-277324">[New] Financial Accounting</a> from <em>Fundação Instituto de Administração</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategic-marketing-fia-277325">[New] Strategic Marketing</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-marketing-277326">[New] Fundamentals of Marketing</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/corporate-finance-a-beginners-guide-207693">Corporate Finance: A Beginner’s Guide</a> from <em>University of Padova</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-hec-montreal-modelisation-277521">[New] Modélisation des processus d’affaires avec BPMN</a> from <em>HEC Montréal</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-business-communication-269669">Business Communication</a> from <em>Jai Narain Vyas University, Jodhpur</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-corporate-accounting-269674">CORPORATE ACCOUNTING</a> from <em>Jai Narain Vyas University, Jodhpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-digital-transformation-and-data-a-203013">Fundamentals of Digital Transformation and Data Analytics</a> from <em>National Tsing Hua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/human-resource-analytics-248278">Human Resource Analytics</a> from <em>National Tsing Hua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepreneurship-for-sustainability-and-wellbeing-260066">Entrepreneurship for Sustainability and Wellbeing in an Era of Digitalisation</a> from <em>Hanken School of Economics</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-digital-transformation-2-273014">Advanced Digital Transformation (Part 2)</a> from <em>Indian Institute of Management Ahmedabad</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-digital-transformation-1-273015">Advanced Digital Transformation (Part 1)</a> from <em>Indian Institute of Management Ahmedabad</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-digital-transformation-3-273017">Advanced Digital Transformation (Part 3)</a> from <em>Indian Institute of Management Ahmedabad</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategic-foresight-199164">Building Strategic Foresight Capabilities</a> from <em>EDHEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-competitive-strategy-206160">Competitive Strategy</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-mastering-excel-essentials-to-enhan-206162">Mastering Excel Essentials to Enhance Business Value</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-business-economics-and-game-theory--261463">Business Economics and Game Theory for Decision Making</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-innovation-and-international-strate-261472">Innovation and International Strategy</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-a-comprehensive-excel-masterclass-u-261473">A Comprehensive Excel Masterclass</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-financial-statement-application-275073">Financial Statement Applications</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-leadership-organization-design-275889">[New] Leadership &amp; Organization Design</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-marketing-analytics-204468">Digital Marketing Analytics</a> from <em>O.P. Jindal Global University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/principlesofmanagement-205347">Principles of Management</a> from <em>O.P. Jindal Global University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-decision-science-for-marketing-275033">Introduction to Decision Science for Marketing</a> from <em>O.P. Jindal Global University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leadership-how-to-build-high-performing-teams-and-204269">Leadership: How to Build High Performing Teams and Culture</a> from <em>University of Lincoln</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/human-resources-university-of-california-riversid-205022">Human Resources: Acquiring and Managing Talent in the 21st Century</a> from <em>University of California, Riverside</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-analysis-ie-university-foundations-of-predic-204424">Foundations of Predictive Analytics: Regression and Classification</a> from <em>IE University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-analysis-ie-university-predictive-analytics--204425">Predictive Analytics for Business Planning: Time-Series Forecasting</a> from <em>IE University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/supply-chain-management-sda-bocconi-school-of-man-272339">Digital Supply Chain Management</a> from <em>SDA Bocconi School of Management</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leadership-sda-bocconi-school-of-management-leade-275189">Leadership essentials – leading self to lead others</a> from <em>SDA Bocconi School of Management</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-marketing-new-trends-and-technologies-192357">Digital Marketing: New Trends and Technologies</a> from <em>Nottingham Trent University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leadership-tools-for-ethical-problem-solving-nbs-250865">Leadership tools for ethical problem-solving</a> from <em>Nottingham Trent University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-foundations-of-marketing-essentials-203316">Foundations of Marketing Essentials</a> from <em>Manipal University Jaipur</em></li>
</ul>
<h2 id="heading-personal-development-38"><strong>Personal Development (38)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/thriving-101-designing-a-fulfilling-life-and-care-216814">Thriving 101: Designing a Fulfilling Life &amp; Career</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/internal-communications-framework-277418">[New] Internal Communications Framework</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/external-communications-channels-277607">[New] External Communications Channels</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-corporate-communications-277608">[New] Introduction to Corporate Communications</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-wellness-university-of-california-berkeley-207525">Finding Purpose Across Your Life</a> from <em>University of California, Berkeley</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-research-new-research-methodology-269729">Introduction to Research (New: Research Methodology)</a> from <em>Indian Institute of Technology Madras</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-multi-criteria-decision-making-and-applications-269744">Multi-Criteria Decision Making and Applications</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-online-communication-in-the-digital-age-269750">Online Communication in the Digital Age</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/emotional-intelligence-for-everyone-276561">[New] Emotional Intelligence</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/negotiations-university-of-california-davis-intro-270682">Introduction to Negotiation Strategy</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/negotiations-university-of-california-davis-navig-270683">Navigating Negotiation Intricacies</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teamwork-skills-effective-communication-el-261465">Δεξιότητες ομαδικής εργασίας: Αποτελεσματική επικοινωνία</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-self-motivation-shapes-personal-success-273605">How Self-Motivation Shapes Personal Success</a> from <em>University of Colorado System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/overcoming-challenges-in-self-and-society-274677">Overcoming Challenges in Self and Society</a> from <em>University of Colorado System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-business-negotiations-275429">Business Negotiations</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teamwork-universitat-politecnica-de-valencia-team-273507">Teamwork in face-to-face, remote and hybrid environments</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-communications-universitat-politecnica-d-276443">[New] Interpersonal Communication Skills adapted to remote teams</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-communications-davidson-college-how-to-g-199421">How to Give and Receive Feedback</a> from <em>Davidson College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/healthcare-davidson-college-wellness-and-stress-m-199422">Wellness and Stress Management</a> from <em>Davidson College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/changemaker-202482">Become a changemaker, build a career with purpose and impact</a> from <em>HEC Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/persuasive-communication-iese-205239">Persuasive Communication</a> from <em>IESE Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-role-of-the-media-205241">The Role of the Media</a> from <em>IESE Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-oul-002-tarseel-aur-fahem-o-idraak-203336">OUL-002 Tarseel Aur Fahem-O-Idraak</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-mjm024-media-information-and-empowerment-tamil-205112">MJM024: Media Information and Empowerment (Tamil)</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-mjm024-media-information-and-empowerment-hindi-205603">MJM024: Media Information and Empowerment (Hindi)</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-digital-media-literacy-272830">Digital Media Literacy</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/education-the-university-of-wisconsin-madison-int-203991">Introduction to 21st Century Skills</a> from <em>University of Wisconsin–Madison</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teamwork-the-university-of-wisconsin-madison-teac-207638">Teaching Teamwork &amp; Communication Skills</a> from <em>University of Wisconsin–Madison</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teacher-training-the-university-of-wisconsin-madi-223262">Teaching Critical Thinking &amp; Self-Regulated Learning Skills</a> from <em>University of Wisconsin–Madison</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/communication-principles-for-leaders-277303">[New] Communication Principles for Leaders</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/career-management-277304">[New] Career Management</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/delphi-method-277317">[New] Delphi Method</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/decision-making-fia-277610">[New] Decision Making</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/information-literacy-skills-for-researcher-277371">[New] Information Literacy: Skills for Researchers</a> from <em>University of Malaya</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-communications-the-london-school-of-econ-223234">Intercultural Communications in the Workplace</a> from <em>London School of Economics and Political Science</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-computer-and-peripheral-hardware-206166">Computer and Peripheral Hardware</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-microsoft-windows-os-206168">Microsoft Windows OS</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-literacy-sustainable-development-in-the-i-274291">Digital Literacy: Sustainable Development in the Information Age</a> from <em>Chung Yuan Christian University</em></li>
</ul>
<h2 id="heading-humanities-87"><strong>Humanities (87)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-bskla-135-sanskrit-bhasha-aur-sahitya-202428">BSKLA-135: Sanskrit Bhasha aur Sahitya</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/language-massachusetts-institute-of-technology-ch-204902">Chinese Language in Culture: Level 3</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/algorithmic-bias-teach-out-277611">[New] Exploring Algorithmic Bias as a Policy Issue: A Teach-Out</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-making-of-modern-ukraine-ua-248097">Становлення сучасної України</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-exercise-physiology-sports-performance-269723">Introduction to Exercise Physiology &amp; Sports Performance</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-modern-food-packaging-technologies-regulatory-aspects-and-global-trends-269742">Modern Food Packaging Technologies: Regulatory Aspects and Global Trends</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-japani-bhasha-saral-swaroop-269732">Japani Bhasha – Saral swaroop</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sports-turf-management-204477">Sports Turf Management: Best Practices</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/language-university-of-british-columbia-indigenou-191435">Indigenous Languages: From Policy and Planning to Implementation and Assessment</a> from <em>The University of British Columbia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/beer-quality-systems-200547">Beer Quality Systems</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/language-university-of-california-davis-spanish-v-261361">Spanish Vocabulary: Meeting People</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/language-university-of-california-davis-spanish-v-271785">Spanish Vocabulary: Sports, Travel, and the Home</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/language-university-of-california-davis-spanish-v-272342">Spanish Vocabulary: Cultural Experience</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/language-university-of-california-davis-spanish-v-274821">Spanish Vocabulary: Careers and Social Events</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-vulnerability-studies-an-introduction-269785">Vulnerability Studies: An Introduction</a> from <em>University of Hyderabad</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-philosophy-and-critical-thinking-269754">Philosophy and Critical Thinking</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computing-ethics-and-society-foundations-206161">Computing, Ethics, and Society Foundations</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/a-theoretical-origin-of-ethics-in-business-and-te-206556">A Theoretical Origin of Ethics in Business and Tech Industry</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/avoiding-ethical-pitfalls-in-the-tech-industry-206559">Avoiding Ethical Pitfalls in the Tech Industry</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ethical-issues-computing-applications-251256">Ethical Issues in Computing Applications</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ethical-issues-in-ai-and-professional-ethics-251257">Ethical Issues in AI and Professional Ethics</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/wilderness-first-aid-environmental-emergencies-196473">Wilderness First Aid – Environmental Emergencies</a> from <em>University of Colorado System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/identity-motivation-selfhood-273606">Exploring the Origins of Selfhood</a> from <em>University of Colorado System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/english-lower-intermediateb1-204951">English Lower Intermediate B1.1</a> from <em>University of Naples Federico II</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/healthcare-curtin-university-understanding-domest-207528">Understanding Domestic Violence</a> from <em>Curtin University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/writing-for-business-advanced-207641">Writing for Business Advanced</a> from <em>University of Glasgow</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/reading-and-comprehension-of-text-in-english-270836">Reading and Comprehension of Text in English</a> from <em>Universidad Autónoma de Madrid</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/crisis-communications-205240">Crisis Communications</a> from <em>IESE Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/writing-university-of-adelaide-academic-writing-276439">[New] Academic Writing</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-communications-university-of-cape-town-i-199559">Introduction to Feature Journalism</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-communications-university-of-cape-town-d-199560">Developing Feature Stories</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-communications-university-of-cape-town-w-199561">Writing Feature Articles</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/humanities-wellesley-college-ap-r-italian-languag-192350">AP® Italian Language and Culture (2023-2024)</a> from <em>Wellesley College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-english-communication-263733">English Communication</a> from <em>CEC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-basics-of-libertarian-free-will-203072">The Basics of Libertarian Free Will</a> from <em>Dartmouth College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/neural-basis-of-imagination-free-will-and-moralit-203802">Neural Basis of Imagination, Free Will, and Morality</a> from <em>Dartmouth College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-reading-and-reflecting-on-text-205113">Reading and Reflecting on Text</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-bskc-102-sanskrit-sahitya-ka-allochanatmak-vishleshan-202427">BSKC-102: Sanskrit Sahitya ka Allochanatmak Vishleshan</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-oul-003-history-of-urdu-language-literature-203334">OUL – 003 History of Urdu Language &amp; Literature</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-oul-001-huroof-shanasi-aur-talaffuz-203335">OUL-001 Huroof Shanasi Aur Talaffuz</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-oule-001-contemporary-urdu-poetry-203337">OULE – 001 Contemporary Urdu Poetry</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-oule-002-contemporary-urdu-fiction-203338">OULE – 002 Contemporary Urdu Fiction</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-oule-005-principle-of-translation-203339">OULE – 005 Principle of Translation</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-ssb-001-pratham-bodhah-203345">SSB-001: Pratham Bodhah</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-ssb-002-dwitiya-bodhah-203346">SSB-002: Dwitiya Bodhah</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-ssb-003-sambhashanam-203347">SSB-003: Sambhashanam</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-assamese-poetry-from-ancient-to-modern-period-204703">Assamese Poetry: From Ancient to Modern Period</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-functional-english-204708">Introduction to Functional English</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-essentials-of-indian-philosophy-205111">Essentials of Indian Philosophy</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-meg-07-indian-english-literature-206337">MEG-07: Indian English Literature</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-bli-221-library-infromation-and-society-271416">BLI-221: Library Infromation and Society</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-meg-03-british-novel-272836">MEG-03: British Novel</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-meg-05-literary-theory-criticism-272837">MEG-05: Literary Theory &amp; Criticism</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-meg-10-english-studies-in-india-272838">MEG-10: English Studies in India</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-meg-06-american-literature-273785">MEG-06: American Literature</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-meg-13-writings-from-the-margins-273786">MEG-13: Writings from the Margins</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ingles-en-el-contexto-laboral-habilidades-blandas-276884">[New] English in the Workplace: Soft skills</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/europe-ku-leuven-european-history-society-and-cul-203302">European History, Society and Culture</a> from <em>KU Leuven University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-history-of-the-fifa-world-cup-273822">Business History of the FIFA World Cup</a> from <em>University of York</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/modernization-of-japan-the-struggle-of-fukuzawa-y-217491">日本の近代化: 福澤諭吉の格闘</a> from <em>Keio University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-abhidhamma-pali-202425">Abhidhamma (Pali)</a> from <em>UGC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-rise-of-k-culture-discover-the-korean-wave-ha-206215">The Rise of K-Culture: Discover the Korean Wave (Hallyu)</a> from <em>Hanyang University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-history-of-india-ii-203322">History of India-II</a> from <em>University of Kashmir</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cultural-dialogues-an-intercultural-reading-of-ch-276606">[New] Cultural Dialogues: An Intercultural Reading of The Analects and Tao Te Ching</a> from <em>Shanghai International Studies University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/a-panoramic-view-of-china-277715">[New] A Panoramic View of China: Introducing Chinese Culture</a> from <em>Shanghai International Studies University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/unlocking-the-secrets-of-the-chinese-language-273821">Unlocking the Secrets of the Chinese Language</a> from <em>University of Malaya</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-buddhist-philosophy-202429">Buddhist Philosophy</a> from <em>UGC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-buddhist-tourism-202430">Buddhist Tourism</a> from <em>UGC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-history-of-indian-buddhism-202431">History of Indian Buddhism</a> from <em>UGC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-economic-history-of-india-from-1857-to-1947-270640">ECONOMIC HISTORY OF INDIA FROM 1857 TO 1947</a> from <em>CEC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-indian-culture-history-272835">Indian Culture &amp; History</a> from <em>Shri Lal Bahadur Shastri National Sanskrit University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-history-of-india-i-ancient-india-204244">History of India-I( Ancient India )</a> from <em>CEC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-ha-na-tha-bha-shha-eva-sa-pa-ra-shhanae-hindi-bhasha-evam-sampreshan-263739">हिन्दी भाषा एवं संप्रेषण / Hindi Bhasha Evam Sampreshan</a> from <em>CEC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-teaching-creative-writing-248193">Introduction to Teaching Creative Writing</a> from <em>Manchester Metropolitan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/language-university-of-alaska-fairbanks-inupiaq-l-207520">Iñupiaq Language and Culture</a> from <em>University of Alaska Fairbanks</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/language-university-of-alaska-fairbanks-central-y-207522">Central Yup’ik Language and Culture</a> from <em>University of Alaska Fairbanks</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ethics-in-public-policy-204474">Ethics in Public Policy</a> from <em>O.P. Jindal Global University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/learn-mandarin-how-to-express-health-issues-in-ch-192353">Learn Mandarin: How to Express Health Issues in Chinese</a> from <em>National Yang Ming Chiao Tung University (NCYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/learn-mandarin-food-and-drink-in-taiwan-192354">Learn Mandarin: Food and Drink in Taiwan</a> from <em>National Yang Ming Chiao Tung University (NCYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/learn-mandarin-shopping-and-daily-life-in-taiwan-192355">Learn Mandarin: Shopping and Daily Life In Taiwan</a> from <em>National Yang Ming Chiao Tung University (NCYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mandarin-chinese-in-motion-your-very-first-chines-192358">Mandarin Chinese in Motion: Your Very First Chinese Class</a> from <em>National Yang Ming Chiao Tung University (NCYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mandarin-chinese-in-motion-essay-writing-skills-201797">Mandarin Chinese in Motion: Essay-Writing Skills</a> from <em>National Yang Ming Chiao Tung University (NCYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-writing-fiction-206781">Introduction to Writing Fiction</a> from <em>University of Lincoln</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-to-get-your-feature-articles-published-217494">How to Get Your Feature Articles Published</a> from <em>University of Lincoln</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mandarin-chinese-in-motion-chinese-culture-on-tv-271295">Mandarin Chinese in Motion: Chinese Culture on TV</a> from <em>National Yang Ming Chiao Tung University (NCYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/writing-thomas-edison-state-university-english-co-199557">English Composition</a> from <em>Thomas Edison State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-social-formations-and-cultural-patterns-of-the-medieval-world-269768">Social Formations and Cultural Patterns of the Medieval World</a> from <em>Dhanamanjuri University</em></li>
</ul>
<h2 id="heading-social-sciences-89"><strong>Social Sciences (89)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/cybercrime-207058">Cybercrime</a> from <em>Royal Holloway, University of London</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/medicine-stanford-university-dei-disparities-in-h-201951">Diversity, Equity and Inclusion: Disparities in Healthcare</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/medicine-stanford-university-strategies-to-improv-201952">Strategies To Improve and Incorporate Diversity, Equity and Inclusion in Healthcare</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-nonprofit-law-204957">Introduction to Nonprofit Law</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/history-university-of-pennsylvania-medieval-hebre-223240">Medieval Hebrew Manuscripts and their Scribes</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/using-public-policy-for-social-change-206050">Using Public Policy for Social Change</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/affirmative-action-in-higher-education-teach-out-206837">Affirmative Action in Higher Education Teach-Out</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ongoing-us-settler-colonialism-native-peoples-tea-275650">[New] Ongoing U.S. Settler Colonialism &amp; Native Peoples Teach-Out</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-university-of-california-berkeley-funda-278048">[New] Fundamentals of Economics</a> from <em>University of California, Berkeley</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-university-of-california-berkeley-advan-278049">[New] Advanced Concepts in Economics</a> from <em>University of California, Berkeley</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-university-of-california-berkeley-real--278050">[New] Real-World Applications of Economics</a> from <em>University of California, Berkeley</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/become-a-peer-sponsor-275902">[New] Become a Peer Sponsor: Intro to Military Transition Support</a> from <em>Columbia University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-an-introduction-to-urban-ecological-heritage-theories-and-applications-269660">An Introduction to Urban Ecological Heritage: Theories and Applications</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-centre-state-relations-in-india-269676">Centre-State Relations in India</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-international-trade-law-269720">International Trade Law</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-medical-law-269738">Medical Law</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-sociology-and-sanitation-an-introduction-269769">Sociology and Sanitation: An Introduction</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/moving-the-needle-199613">Moving the Needle at Work: Diversity, Equity and Inclusion</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/learning-for-a-sustainable-future-207407">Learning for a Sustainable Future</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/learning-live-at-cop-207406">Learning for a Sustainable Future: Live at COP28</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-psychology-of-emotion-theory-and-applications-269758">Psychology of Emotion: Theory and Applications</a> from <em>Indian Institute of Technology Guwahati</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-intellectual-property-263734">Introduction to Intellectual Property</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/social-model-of-disability-261363">Social Model of Disability</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/principles-of-economics-macroeconomics-271353">Principles of Economics: Macroeconomics – The Big Picture</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/principles-of-economics-intro-271354">Principles of Economics: Introduction – Getting to Know You</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/principles-of-economics-microeconomics-271355">Principles of Economics: Microeconomics – Down to Business</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-constitution-law-and-public-administration-in-india-269688">Constitution Law and Public Administration in India</a> from <em>National Law School of India University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/water-cooperation-and-diplomacy-261851">Water Cooperation and Diplomacy</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-political-citizenship-263511">Introduction to Political Citizenship</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computer-programming-ecole-polytechnique-federale-203610">Humanitarian Action in the Digital Age</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/comparative-research-designs-and-methods-199167">Comparative Research Designs and Methods</a> from <em>University of Naples Federico II</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/comparative-political-systems-199168">Comparative Political Systems</a> from <em>University of Naples Federico II</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-political-concepts-199169">Understanding Political Concepts</a> from <em>University of Naples Federico II</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-politics-202524">Global Politics</a> from <em>University of Naples Federico II</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/paths-to-a-sustainable-future-248160">Paths to a Sustainable Future</a> from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-foreign-exchange-market-199646">Foreign Exchange market</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-humanities-and-social-sciences-271423">Humanities and Social Sciences</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/genero-derechos-274679">Igualdad de género y derechos humanos</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-tsinghua-university-jing-ji-xue-yuan-li-271775">经济学原理（微观部分）</a> from <em>Tsinghua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/accessibility-universitat-politecnica-de-valencia-264348">Tecnología accesible para la inclusión</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/law-universite-catholique-de-louvain-migration-la-273133">Migration Law</a> from <em>Université catholique de Louvain</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/humanities-curtin-university-exploring-models-of--264345">Exploring Models of Disability</a> from <em>Curtin University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-environmental-cost-benefit-analys-206218">Introduction to Environmental Cost-Benefit Analysis</a> from <em>Deakin University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/trauma-neuro-and-shame-awareness-262305">Trauma, Neuro, and Shame Awareness: Best Practice for Professionals, Organisations, and Communities</a> from <em>Deakin University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-cape-town-i-201953">Introduction to Diversity and Inclusion: The Employee, Business, Societal, and Personal Case</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-cape-town-n-201954">Navigating Workplace Equality: Understanding Discrimination, Privilege, and Power Dynamics</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-university-of-cape-town-b-201955">Building Inclusive Workplaces: Adapting to Change, Embracing Diversity, and Fostering Inclusive Leadership</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mechanics-and-origins-of-bipedalism-204672">Mechanics &amp; Origins of Bipedalism</a> from <em>Dartmouth College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/experiments-and-variations-in-bipedalism-205582">Experiments and Variations in Bipedalism</a> from <em>Dartmouth College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/inquiries-into-bipedalism-205672">Inquiries Into Bipedalism</a> from <em>Dartmouth College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gender-equality-204670">Gender Equality</a> from <em>University of Western Australia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ethics-eth-zurich-worldviews-from-sustainability--199424">Worldviews – From Sustainability to Regeneration</a> from <em>ETH Zurich</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-bcoc-133-business-law-202426">BCOC-133: Business Law</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-msd-019-global-strategies-to-sustainable-development-203330">MSD 019: Global Strategies to Sustainable Development</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-satat-vikas-ke-liye-sampreshan-evam-vistar-203348">Satat Vikas ke Liye Sampreshan evam Vistar</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-sociology-of-health-and-illness-203351">Sociology of Health and Illness</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-micro-economics-for-business-272839">Micro Economics for Business</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-population-and-society-272841">Population and Society</a> from <em>Krishna Kanta Handiqui State Open University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advancing-social-impact-with-digital-technologies-200550">Advancing Social Impact with Digital Technologies</a> from <em>RMIT University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/europe-ku-leuven-governance-in-the-european-union-203301">Governance in the European Union</a> from <em>KU Leuven University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/law-ku-leuven-european-union-law-203303">European Union Law</a> from <em>KU Leuven University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/science-ku-leuven-global-challenges-for-a-sustain-203989">Global Challenges for a Sustainable Society</a> from <em>KU Leuven University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-business-law-203106">Business Law</a> from <em>Savitribai Phule Pune University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introductory-macroeconomics-203327">Introductory Macroeconomics</a> from <em>Savitribai Phule Pune University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/corporate-sustainability-199034">Corporate Sustainability</a> from <em>Taipei Medical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/shaping-the-future-through-sustainable-developmen-199035">Shaping the Future Through Sustainable Development</a> from <em>Taipei Medical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-action-for-marine-sustainability-199036">SDG 14: Global Action for Marine Conservation</a> from <em>Taipei Medical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainable-building-and-energy-efficiency-develo-199037">Sustainable Building and Energy Efficiency Development</a> from <em>Taipei Medical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-the-italian-legal-system-260068">Understanding the Italian Legal System: Public Law and Public Institutions</a> from <em>University of Padova</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-archaeological-remote-sensing-202456">Advanced Archaeological Remote Sensing: Site Prospection, Landscape Archaeology and Heritage Protection in the Middle East and North Africa</a> from <em>Durham University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-social-formations-and-cultural-patterns-of-the-ancient-world-203349">Social Formations and Cultural Patterns of the Ancient World</a> from <em>CEC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/urban-health-mooc-1-263122">HEALTHY URBAN SYSTEMS – PART 1</a> from <em>University of Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/healthy-urban-systems-2-274183">Healthy Urban systems Part 2 : Theories, models and tools</a> from <em>University of Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-sociology-of-india-1-269770">Sociology of India – 1</a> from <em>CEC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-understanding-political-theory-203355">Understanding Political Theory</a> from <em>CEC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-child-development-b-ed-269677">Child development (B.ED)</a> from <em>Principal, Thiagarajar College of Preceptors, Madurai</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-public-administration-pg-269727">Introduction to Public Administration_PG</a> from <em>Chaudhary Devi Lal University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-mathematical-methods-for-economics-i-204247">Mathematical Methods for Economics-I</a> from <em>CEC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-managerial-economics-buyer-and-sell-206159">Managerial Economics: Buyer and Seller Behavior</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-to-become-an-international-arbitrator-207694">How to Become an International Arbitrator</a> from <em>College of Law</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/international-arbitration-frameworks-and-drafting-248196">International Arbitration: Frameworks and Drafting an Arbitration Agreement</a> from <em>College of Law</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/international-arbitration-process-and-procedure-262306">International Arbitration: Process and Procedure</a> from <em>College of Law</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/environmental-science-zhaw-zurich-university-of-a-207639">Vision 2030 (EN)</a> from <em>Zurich University of Applied Sciences</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/human-rights-zhaw-zurich-university-of-applied-sc-277198">[New] Providing Harm Reduction Services for Drug Users and Sex Workers</a> from <em>Zurich University of Applied Sciences</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/designing-play-based-learning-270433">Designing Play-Based Learning</a> from <em>Federation University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gender-climate-justice-and-food-systems-resilienc-271466">Gender, Climate Justice, and Food Systems Resilience</a> from <em>University Of The West Indies</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-political-theory-concepts-debates-263171">POLITICAL THEORY: CONCEPTS &amp; DEBATES</a> from <em>Vidyasagar University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-analytics-lehigh-university-economics-fu-207619">Economics Fundamentals for Business Analytics</a> from <em>Lehigh University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-the-un-sustainable-development-go-263047">Introduction to the UN Sustainable Development Goals</a> from <em>Chung Yuan Christian University</em></li>
</ul>
<h2 id="heading-international-130"><strong>International (130)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/r-programming-harvard-university-ciencia-de-datos-223229">Ciencia de Datos: Fundamentos de R</a> from <em>Harvard University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/people-technology-and-the-future-of-mobility-it-263512">Persone, tecnologia e futuro della mobilità</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/people-technology-and-the-future-of-mobility-fr-263513">Personnes, technologie et futur de la mobilité</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/people-technology-and-the-future-of-mobility-es-263514">Las personas, la tecnología y el futuro de la movilidad</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/people-technology-and-the-future-of-mobility-de-263515">Menschen, Technologie und die Zukunft der Mobilität</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/people-technology-and-the-future-of-mobility-ja-263516">人、テクノロジー、そしてモビリティの未来</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/people-technology-and-the-future-of-mobility-ko-263517">사람, 기술, 모빌리티의 미래</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-media-health-outcomes-ru-207064">Цифровые медиа в сфере здравоохранения</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-media-health-outcomes-id-207065">Media Digital untuk Hasil Kesehatan</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-media-health-outcomes-zh-cn-207067">借助数字媒体实现卫生成果</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-media-health-outcomes-pt-207068">Meios digitais para resultados na saúde</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-making-of-modern-ukraine-ru-248098">Становление современной Украины</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/communication-strategies-virtual-age-el-264424">Στρατηγικές επικοινωνίας για την εικονική εποχή</a> from <em>University of Toronto</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/key-concepts-in-organizational-dei-ko-264197">조직적 다양성, 형평성, 포용성의 핵심 개념</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/defining-diversity-equity-and-inclusion-in-organi-264202">조직 내에서 다양성, 형평성, 포용성의 정의</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/hanzi-3-203803">Chinese Characters for beginner (3) 汉字(3)</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tdah-191517">Vivre avec le TDAH à travers les âges</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cognition-sociale-206424">Cognition sociale</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/denommer-le-monde-207057">Dénommer le monde : la politique des toponymes</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computer-science-ecole-polytechnique-federale-de--207601">Information, Calcul, Communication: Introduction à la pensée informatique</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chinese-garden-literature-2-204968">中國園林文學 (二) (Chinese Garden Literature (2))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/iagenerativa-248085">IA generativa en el aula</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gobiernocorp-estruc-262200">Gobierno corporativo: estructuras</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gobiernocorp-anteced-262202">Gobierno corporativo: antecedentes</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gobiernocorp-norma-262204">Gobierno corporativo: normatividad aplicable</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gafas-violeta-272485">Con gafas violeta: igualdad de género en la escuela</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/python-usuario-274667">Python: de cero a usuario</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/aguila-serpiente-274693">El águila, el nopal y ¿la serpiente?</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/physics-tsinghua-university-shen-jing-guang-zi-xu-199558">神经光子学</a> from <em>Tsinghua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-tsinghua-university-jing-ji-xue-yuan-li-271776">经济学原理（宏观部分）</a> from <em>Tsinghua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-tsinghua-university-qu-kuai-lian-he-jia-271777">区块链和加密数字货币</a> from <em>Tsinghua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-finance-tsinghua-university-zhong-guo-j-271778">中国经济概论</a> from <em>Tsinghua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/education-tsinghua-university-da-xue-li-shi-yu-we-271779">大学历史与文化</a> from <em>Tsinghua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/language-tsinghua-university-shi-yong-ri-yu-hui-h-271780">实用日语会话（Practical Japanese Conversation）</a> from <em>Tsinghua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/history-tsinghua-university-chu-tu-wen-xian-de-xi-271781">出土文献的新发现</a> from <em>Tsinghua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/engineering-tsinghua-university-ji-jie-zhi-zao-sh-271782">机械制造实习</a> from <em>Tsinghua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/architecture-tsinghua-university-grasshoppercan-s-271783">Grasshopper参数化设计与建模</a> from <em>Tsinghua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/physics-tsinghua-university-liu-ti-li-xue-271784">流体力学</a> from <em>Tsinghua University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/embedded-systems-arm-education-fundamentos-de-sis-242310">Fundamentos de sistemas embebidos con Arm: Primeros pasos</a> from <em>Arm Education</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computer-programming-universitat-politecnica-de-v-192618">Fundamentos de ciberseguridad para usuarios</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/engineering-universitat-politecnica-de-valencia-i-201625">Introducción a la sostenibilidad en los servicios de agua con Qatium</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/organizational-behavior-universitat-politecnica-d-204591">Evaluación de valores: Identificación de talento y cultura organizativa</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chatgpt-universitat-politecnica-de-valencia-intro-207633">Introducción a ChatGPT.¡Impulsa tu productividad al máximo usando inteligencia artificial!</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cellular-biology-universitat-politecnica-de-valen-223254">Células y tejidos</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/visualizacion-de-datos-impacto-en-la-gestion-empr-206420">Visualización de Datos – Gestión Empresarial</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/habilidades-de-pensamiento-y-solucion-de-problema-206423">Habilidades de pensamiento y solución de problemas</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/credenciales-alternativas-207171">Credenciales Alternativas: el futuro de las certificaciones</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-tecnologico-de-monterrey--203191">El consumidor digital</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/humanities-tecnologico-de-monterrey-habilidades-d-203304">Habilidades de pensamiento y solución de problemas</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-tecnologico-de-monterrey--203305">Transformación Digital en el Retail y su interfase con el cliente.</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computer-programming-tecnologico-de-monterrey-vis-203306">Visualización de Datos – Impacto en la Gestión Empresarial</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-tecnologico-de-monterrey--203990">Transformación Digital y Omnicanalidad</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-tecnologico-de-monterrey--204908">Mercadotecnia y Comunicación robustecidas e unificadas</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-administration-tecnologico-de-monterrey--204909">Planeación Estratégica</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teacher-training-tecnologico-de-monterrey-credenc-269455">Credenciales Alternativas: el futuro de las certificaciones</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/principales-procesos-grupales-en-las-organizacion-264423">Principales procesos grupales en las organizaciones</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/interaccion-social-cultura-organizacional-264428">Interacción social y cultura organizacional</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/las-organizaciones-en-el-siglo-xxi-y-su-relevanci-264429">Las organizaciones en el siglo XXI y su relevancia social</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/estrategias-para-desarrollar-el-talento-en-organi-272069">Estrategias para desarrollar el talento en organizaciones</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/captar-talento-en-la-era-de-la-digitalizacion-272070">Cómo captar talento en la era de la digitalización</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/competencias-clave-profesionales-recursos-humanos-272081">Competencias clave para profesionales de Recursos Humanos</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/feminismo-genero-politica-274676">Feminismo, género y política</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economia-circular-277420">[New] La Economía Circular: ¿un mito o una posibilidad?</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/video-editing-universidad-carlos-iii-de-madrid-ed-204129">Edición de vídeo y postproducción con DaVinci Resolve. Prácticas</a> from <em>Universidad Carlos iii de Madrid</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/docencia-con-pedagogia-activa-mediada-con-tecnolo-202044">Docencia con pedagogía activa mediada con tecnología digital</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/diseno-de-cursos-para-la-comprension-de-grandes-i-202045">Diseño de cursos para la comprensión de Grandes Ideas</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/analisis-del-contexto-para-fundamentar-diseno-de--202046">Análisis del contexto para fundamentar diseño de instrucción</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lectura-critica-proceso-niveles-y-herramientas-206697">Lectura crítica: proceso, niveles y herramientas</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/realidad-extendida-y-metaverso-para-todos-271662">Realidad Extendida y Metaverso para todos</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduccion-al-deep-learning-contemporaneo-275374">Introducción al deep learning contemporáneo</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-humanitarian-aid-ukr-202286">Вступ до історії гуманітарної допомоги: Introduction to Humanitarian Aid (UKR)</a> from <em>Deakin University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/moocimage-fourier-ondelettes-multiechelles-276292">[New] Traitement d’images : analyse fréquentielle et multi-échelle</a> from <em>Institut Mines-Télécom</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/education-universidad-autonoma-de-madrid-aprendiz-275190">Aprendizaje-Servicio: transformación social y desarrollo sostenible</a> from <em>Universidad Autónoma de Madrid</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/anlisis-visual-con-tableau-203653">Análisis visual con Tableau</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/contabilidad-emprendimiento-248071">Introducción a la contabilidad: comienza tu emprendimiento.</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/finanzas-emprendedores-274687">Finanzas para emprendedores</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/web-3-276563">[New] Emprender en Web3</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mindshift-el-264200">Αλλαγή νοοτροπίας</a> from <em>McMaster University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-mhd-03-upana-ya-sa-eva-kaha-na-202432">MHD-03: उपन्यास एवं कहानी</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-mgpe-006-gandhi-s-economic-thought-203329">MGPE-006: Gandhi’s Economic Thought</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/c-plus-plus-b-ar-274948">لغة البرمجة C++ لمبرمجي C، الجزء (ب)</a> from <em>University of California, Santa Cruz</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nachhaltigkeitlehren-275649">[New] Nachhaltigkeit lehren lernen</a> from <em>University of Zurich</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentos-de-sistemas-recomendadores-205350">Fundamentos de sistemas recomendadores</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/english-for-interactions-in-the-workplace-interme-206836">English for Interactions in the Workplace Intermediate Level</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/transferencia-de-momentum-calor-y-masa-computacio-261852">Transferencia de momentum, calor y masa computacional</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/bienvenidos-al-espanol-a1-1-274929">Bienvenidos al español: A1.1</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/trabajando-en-la-preparacin-para-el-cambio-educat-205349">Trabajando en la preparación para el cambio educativo</a> from <em>Universidad de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/innovation-universidad-nacional-de-cordoba-metodo-274068">Metodologías ágiles para procesos de innovación abierta</a> from <em>Universidad Nacional de Córdoba</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepreneurship-universidad-nacional-de-cordoba--274069">Generación de emprendimientos de Base Tecnológica</a> from <em>Universidad Nacional de Córdoba</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepreneurship-universidad-nacional-de-cordoba--274070">Trayecto Formativo en Innovación Abierta, Emprendedurismo y Vinculación</a> from <em>Universidad Nacional de Córdoba</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/liderazgo-con-impacto-204950">Liderazgo con impacto</a> from <em>Pontificia Universidad Católica del Perú</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/finanzas-para-todos-262209">Finanzas para todos</a> from <em>Pontificia Universidad Católica del Perú</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduccion-a-la-responsabilidad-social-universi-263519">Introducción a la Responsabilidad Social Universitaria</a> from <em>Pontificia Universidad Católica del Perú</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/relacion-entre-branding-y-marketing-269561">Relación entre Branding y Marketing</a> from <em>Pontificia Universidad Católica del Perú</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduccion-al-desarrollo-de-software-270265">Introducción al Desarrollo de Software</a> from <em>Pontificia Universidad Católica del Perú</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/proyecto-final-de-fundamentos-de-ux-y-requisitos--270266">Proyecto Final de Fundamentos de UX y requisitos de software</a> from <em>Pontificia Universidad Católica del Perú</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentos-de-la-ingenieria-de-requisitos-270267">Fundamentos de la Ingeniería de Requisitos</a> from <em>Pontificia Universidad Católica del Perú</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentos-de-ux-para-el-desarrollo-de-software-270268">Fundamentos de UX para el desarrollo de software</a> from <em>Pontificia Universidad Católica del Perú</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/estrategia-de-identidad-de-marca-270582">Estrategia de Identidad de una Marca</a> from <em>Pontificia Universidad Católica del Perú</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gestion-en-deib-275369">Gestión de la Diversidad, Equidad, Inclusión y Pertenencia</a> from <em>Pontificia Universidad Católica del Perú</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/aplicacion-ritmos-afroperuanos-275712">[New] Herencia negra, aplicación de ritmos afroperuanos</a> from <em>Pontificia Universidad Católica del Perú</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/storytelling-universidad-del-rosario-storytelling-204429">Storytelling: comunica tus ideas con impacto</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gender-studies-universidad-del-rosario-genero-y-s-207634">Género y sexualidad: bases conceptuales y perspectivas críticas.</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tourism-management-universidad-del-rosario-gestio-207635">Gestión inteligente de los destinos turísticos</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketing-universidad-del-rosario-social-listenin-207636">Social listening en la estrategia de marketing</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/food-science-universidad-del-rosario-del-aperitiv-260480">Del aperitivo al postre: armonización de vinos, comida y situaciones</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teacher-training-universidad-del-rosario-mejorar--261602">Mejorar la evaluación para mejorar el aprendizaje</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gender-equity-universidad-del-rosario-debates-con-270948">Debates contemporáneos en género y sexualidad</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/education-universidad-del-rosario-herramientas-pe-271294">Herramientas pedagógicas para combatir el racismo en las aulas</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/language-universite-de-montreal-francais-elementa-199032">Français élémentaire 1</a> from <em>Université de Montréal</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/storytelling-relanza-tu-marca-191502">Storytelling – Relanza tu Marca</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/disrupcion-digital-191508">Disrupción Digital</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/felicidad-y-calidad-de-vida-203534">Felicidad y Calidad de Vida</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/toma-de-decisiones-248065">Toma de Decisiones</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/liderazgo-desarrollo-personal-248067">Liderazgo y Desarrollo Personal</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gestion-talento-260356">Gestión del Talento</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/felicidad-y-politicas-publicas-261228">Felicidad y Políticas Públicas</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/como-ser-un-gran-lider-261464">Cómo ser un gran líder</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/programacion-orientada-a-objetos-con-java-263504">Programación Orientada a Objetos con Java</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduccion-a-java-263521">Introducción a Java</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tu-camino-a-la-felicidad-familiar-264199">Tu camino a la felicidad familiar</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/la-economia-de-la-felicidad-264201">La Economía de la Felicidad</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/liderazgo-y-comunicacion-270833">Liderazgo y comunicación</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/trastorno-por-deficit-de-atencion-con-hiperactivi-272486">Trastorno por Déficit de Atención con Hiperactividad (TDAH)</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduccion-hoteleria-y-turismo-274179">Introducción a la Hotelería y el Turismo</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/negociacin-y-resolucin-de-conflictos-276883">[New] Negociación y Resolución de Conflictos</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/la-nocion-de-la-etica-para-la-vida-profesional-203065">La noción de ética para la vida profesional</a> from <em>Universidad Nacional de Colombia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/identidad-digital-cmo-tener-visibilidad-acadmica-206158">Identidad digital: ¿Cómo tener visibilidad académica?</a> from <em>Universidad Nacional de Colombia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ciencia-de-datos-energticos-248099">Ciencia de datos energéticos</a> from <em>Universidad Nacional de Colombia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/patentes-un-recorrido-desde-su-significado-hasta--261474">Patentes: un recorrido desde su significado hasta su búsqueda</a> from <em>Universidad Nacional de Colombia</em></li>
</ul>
<h2 id="heading-health-amp-medicine-91"><strong>Health &amp; Medicine (91)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/medicine-stanford-university-partnering-with-pati-205021">Partnering with Patients and the Public in Co-Production</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-psychosis-202197">Understanding Psychosis</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/alexander-technique-261848">Alexander Technique: Balanced Posture for Ease and Comfort</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/assessing-health-program-delivery-192441">Assessing Health Program Delivery</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/local-and-global-best-practices-in-health-equity--204810">Health Equity Research &amp; Practice: Local &amp; Global Lessons</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/analysis-and-interpretation-of-large-scale-progra-206291">Analysis and Interpretation of Large-Scale Programs</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-health-programmes-planning-and-managing-251258">Global Health Program Equity and Quality: Plan and Manage</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/d4h-gender-equity-health-data-263124">Gender Foundations in Health Data: A Data for Health Course</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/build-alliance-in-global-health-global-to-local-c-269563">Building Alliances in Global Health: From Global to Local</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/public-health-columbia-university-public-health-a-272872">Public Health Advocacy Academy</a> from <em>Columbia University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/hacking-covid-19--course-5-tracing-sars-cov-2s-ev-277334">[New] Hacking COVID-19 — Course 5: Tracing SARS-CoV-2’s Evolution</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-sports-and-performance-nutrition-269772">Sports and Performance Nutrition</a> from <em>Indian Institute of Technology Madras</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-strength-conditioning-for-the-indian-population-269777">Strength &amp; Conditioning for the Indian Population</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-an-overview-on-maternal-health-antenatal-intranatal-and-postnatal-care-269661">An Overview on Maternal Health Antenatal, Intranatal and Postnatal Care</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-pharmacognosy-metabolic-engineering-269753">Pharmacognosy &amp; Metabolic Engineering</a> from <em>Indian Institute of Technology, Kharagpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/stress-first-aid-healthcare-276573">[New] Stress First Aid for Healthcare Workers: A Peer Support Tool</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-maternal-infant-young-child-nutrition-hindi-269736">Maternal Infant Young Child Nutrition (Hindi)</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-health-economics-269710">Health Economics</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/reign-of-pain-262371">Reign of Pain</a> from <em>Michigan State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/transmitting-and-fighting-infectious-diseases-277613">[New] Transmitting and Fighting Infectious Diseases</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/anatomy-physiology-filtration-reproduction-260364">Anatomy &amp; Physiology: Filtration and Reproduction</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/anatomy-physiology-fluids-transport-defense-260365">Anatomy &amp; Physiology: Fluids, Transport, and Defense</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/anatomy-physiology-exchange-energy-260366">Anatomy &amp; Physiology: Exchange and Energy</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nursing-research-principles-and-methods-270837">Nursing Research: Principles and Methods(护理研究：基本原理与方法)</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/oncology-nursing-277333">[New] Oncology Nursing（肿瘤护理）</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-care-and-promotion-for-infants-and-toddler-278145">[New] Health Care and Promotion for Infants and Toddlers</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-microsensors-implantable-devices-and-rodent-surgeries-for-biomedical-applications-269739">Microsensors, Implantable Devices and Rodent Surgeries for Biomedical Applications</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/life-with-adhd-207410">A life with ADHD</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/public-health-approaches-to-abortion-207649">Public Health Approaches to Abortion</a> from <em>Emory University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/public-health-indian-institute-of-management-bang-204584">Health Communication</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-health-care-communication-272834">Health care Communication</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ageing-well-nutrition-and-exercise-for-older-adul-277714">[New] Ageing Well: Nutrition and Exercise for Older Adults</a> from <em>University of Reading</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/extended-reality-in-healthcare-education-and-clin-207286">XR in Healthcare Education and Clinical Practice</a> from <em>Imperial College London</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/living-with-deafness-and-hearing-impairment-264108">Living with Deafness and Hearing Impairment</a> from <em>University of East Anglia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/interview-skills-for-university-nursing-programme-264350">Interview Skills for University Nursing Programme Applicants</a> from <em>University of East Anglia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nutrition-wageningen-university-research-nutritio-202112">Nutrition for Healthy Ageing</a> from <em>Wageningen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/dentistry-university-of-hong-kong-fundamentals-of-207609">Fundamentals of Aesthetic Dentistry</a> from <em>The University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/medicine-university-of-hong-kong-2d-and-3d-modali-277397">[New] 2D and 3D Modalities for Diagnostic Imaging in Dental Medicine</a> from <em>The University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/medicine-the-national-university-of-singapore-fun-263617">Fundamentals of Point of Care Ultrasound</a> from <em>National University of Singapore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/medicine-the-national-university-of-singapore-foc-263618">Focused Cardiac &amp; Lung Ultrasound: The Basics</a> from <em>National University of Singapore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/medicine-the-national-university-of-singapore-adv-263619">Advanced Cardiac Point of Care Ultrasound</a> from <em>National University of Singapore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/medicine-davidson-college-measuring-pharmacodynam-277705">[New] Measuring Pharmacodynamics: From Ligand Binding to Clinical Outcomes</a> from <em>Davidson College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chemistry-davidson-college-introduction-to-pharma-277706">[New] Introduction to Pharmacokinetics: From ADME to PK/PD</a> from <em>Davidson College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/medicine-davidson-college-preclinical-safety-from-277707">[New] Preclinical Safety: From In Vitro Assays to Human Dose Predictions</a> from <em>Davidson College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/medicine-davidson-college-lead-discovery-optimiza-277708">[New] Lead Discovery &amp; Optimization for Efficacy, PK, &amp; Safety</a> from <em>Davidson College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/medicine-davidson-college-literature-case-studies-277709">[New] Literature Case Studies in Drug Discovery</a> from <em>Davidson College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/drug-discovery-development-260367">Introduction to Small Molecule Drug Discovery &amp; Development</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/healthcare-university-of-cape-town-mental-health--191436">Mental Health, Mindfulness, and Self-Care</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/conducting-health-research-in-conflict-settings-264110">Conducting Health Research in Conflict Settings: Navigating Research Challenges for Impactful Evidence</a> from <em>King’s College London</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/40-years-fighting-international-epidemics-in-the--205238">Reflections from 40 Years Fighting International Epidemics</a> from <em>Dartmouth College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/anatomy-seoul-national-university-basic-anatomy-f-262114">Basic Anatomy for Everyone</a> from <em>Seoul National University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/opioids-and-surgery-207287">Opioids and Surgery</a> from <em>University College London</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-to-drive-sustainable-healthcare-275192">How to Drive Sustainable Healthcare: Educate, Engage, and Empower</a> from <em>University College London</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/public-health-george-washington-university-pathwa-207604">Pathways to Public Health</a> from <em>George Washington University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/public-health-george-washington-university-histor-207605">History of Maternal and Child Health</a> from <em>George Washington University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-wellness-george-washington-university-mate-207606">Maternal and Child Health Foundations</a> from <em>George Washington University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-wellness-george-washington-university-wome-207607">Women’s Health</a> from <em>George Washington University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-wellness-george-washington-university-caps-207608">Capstone: Maternal and Child Health</a> from <em>George Washington University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-biomedical-instrumentation-sensors-204236">Biomedical Instrumentation &amp; Sensors</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/medicaid-policy-politics-204371">Medicaid Policy &amp; Politics</a> from <em>University of Arizona</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/dying-well-the-role-of-palliative-care-and-sedati-199252">Dying Well: The Role of Palliative Care and Sedation in End of Life Care</a> from <em>Lancaster University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/science-waseda-university-super-aged-japan-explor-269456">Super-Aged Japan: Exploring Activity, Health, and Place</a> from <em>Waseda University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-health-security-269790">Global Health Security: Policies and Organisations</a> from <em>Taipei Medical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-volunteers-for-diabetes-management-part-1-204709">Yoga Volunteers for Diabetes Management Part 1</a> from <em>AICTE</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-volunteers-for-diabetes-management-part-2-204710">Yoga Volunteers for Diabetes Management Part 2</a> from <em>AICTE</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-volunteers-for-hypertension-heart-disease-part-1-204711">Yoga Volunteers for Hypertension / Heart Disease Part 1</a> from <em>AICTE</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-volunteers-for-hypertension-heart-disease-part-2-204712">Yoga Volunteers for Hypertension / Heart Disease Part 2</a> from <em>AICTE</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-volunteers-for-palliative-care-part-1-204713">Yoga Volunteers for Palliative Care – Part 1</a> from <em>AICTE</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-volunteers-for-palliative-care-part-2-204714">Yoga Volunteers for Palliative Care – Part 2</a> from <em>AICTE</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-for-anger-management-204715">Yoga for Anger Management</a> from <em>AICTE</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-for-ego-management-204716">Yoga for Ego Management</a> from <em>AICTE</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-for-iq-development-204717">Yoga for IQ Development</a> from <em>AICTE</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-for-stress-management-204718">Yoga for Stress Management</a> from <em>AICTE</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-for-eye-sight-improvement-205115">Yoga for Eye Sight Improvement</a> from <em>AICTE</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-for-physical-stamina-205116">Yoga for Physical Stamina</a> from <em>AICTE</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-for-concentration-263735">Yoga for Concentration</a> from <em>Swami Vivekananda Yoga Anusandhana Samsthan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-for-creativity-263736">Yoga for Creativity</a> from <em>Swami Vivekananda Yoga Anusandhana Samsthan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-for-memory-development-263737">Yoga for Memory Development</a> from <em>Swami Vivekananda Yoga Anusandhana Samsthan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-yoga-for-voice-culture-263738">Yoga for Voice Culture</a> from <em>Swami Vivekananda Yoga Anusandhana Samsthan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-research-techniques-in-parasitology-199565">Advanced Research Techniques in Parasitology</a> from <em>University of Malaya</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/laboratory-biosafety-introduction-to-risk-assessm-203203">Laboratory Biosafety: Introduction to Risk Assessment and Managing Biohazards</a> from <em>University of Malaya</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-and-fitness-how-to-design-a-diet-and-exerc-204268">Health and Fitness: How to Design a Diet and Exercise Program</a> from <em>University of Malaya</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/caring-for-caregivers-empowering-those-who-care-f-205624">Caring for Caregivers: Empowering Those Who Care For Older Persons</a> from <em>University of Malaya</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/building-a-healthy-plate-248100">Building a Healthy Plate</a> from <em>Tufts University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/healthcare-financial-management-fundamentals-204061">Healthcare Financial Management Fundamentals</a> from <em>Northeastern University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/an-overview-of-the-us-healthcare-system-204372">An Overview of the U.S. Healthcare System</a> from <em>Northeastern University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-the-us-healthcare-landscape-204969">Understanding the U.S. Healthcare Landscape</a> from <em>Northeastern University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-adhd-what-it-is-and-how-its-treat-274678">Introduction to ADHD: What It Is and How It’s Treated</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nutrition-university-of-california-riverside-nutr-207632">Nutrition and Healthy Living</a> from <em>University of California, Riverside</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/healthcare-sda-bocconi-school-of-management-found-223243">Foundation of HTA, economic evaluation and value-based healthcare</a> from <em>SDA Bocconi School of Management</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-naturopathic-medicine-207815">Fundamentals of Naturopathic Medicine</a> from <em>Southern Cross University</em></li>
</ul>
<h2 id="heading-education-amp-teaching-21"><strong>Education &amp; Teaching (21)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/applying-to-college-101-202483">Applying to College 101</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/student-debt-crisis-teach-out-270271">Student Debt Crisis Teach-Out</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/transforming-education-series-orientation-273019">Series Orientation: Transforming Education</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/envisioning-educational-transformation-276891">[New] Envisioning Educational Transformation</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/education-columbia-university-blended-learning-to-207526">Blended Learning Toolkit</a> from <em>Columbia University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/using-educational-technology-with-english-learner-262926">Using Educational Technology with English Learners</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-role-of-culture-in-teaching-english-learners-262927">The Role of Culture in Teaching English Learners</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/academic-success-for-english-learners-262928">Academic Success for English Learners</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teaching-for-justice-and-inclusivity-in-challengi-263123">Teaching for Justice and Inclusivity In Challenging Times</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/designing-learning-innovation-intro-199346">Designing Learning Innovation: an introduction</a> from <em>Politecnico di Milano</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/learning-innovation-network-199347">The Learning Innovation Network</a> from <em>Politecnico di Milano</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-bes-122-contemporary-india-and-education-203103">BES-122: Contemporary India and Education</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-media-and-information-literacy-for-techers-203332">Media and Information Literacy for Techers</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-school-management-and-leadership-204250">School Management and Leadership</a> from <em>IGNOU</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-distance-and-digital-education-273784">Introduction to Distance and Digital Education</a> from <em>Krishna Kanta Handiqui State Open University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/successful-phd-supervision-260368">Successful PhD Supervision: A Shared Journey</a> from <em>University of Groningen</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/becoming-a-language-friendly-teacher-203798">Becoming a Language Friendly Teacher</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pathways-to-success-making-the-most-of-your-time--264113">Pathways to Success: Making the Most of Your Time at University</a> from <em>University of York</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/education-university-of-california-riverside-intr-192617">Introduction to Social-Emotional Learning (SEL)</a> from <em>University of California, Riverside</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-the-finnish-education-system-207211">Introduction to the Finnish Education System</a> from <em>University of Jyväskylä</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/preparing-for-higher-education-247975">Preparing for Higher Education</a> from <em>Arden University</em></li>
</ul>
<h2 id="heading-data-science-39"><strong>Data Science (39)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/arranging-visualizing-data-r-238115">Arranging and Visualizing Data in R</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-visualization-python-205794">Data Visualization with Python</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/spark-hadoop-snowflake-data-engineering-248053">Spark, Hadoop, and Snowflake for Data Engineering</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-multivariate-procedures-with-r-269745">Multivariate Procedures with R</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-visualization-for-genome-biology-192444">Data Visualization for Genome Biology</a> from <em>University of Toronto</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/value-creation-with-dark-data-270274">Value Creation with Dark Data</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/extracting-value-from-dark-data-uleadd-270275">Extracting Value from Dark Data: ULEADD</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/dark-data-basics-understanding-the-unknown-270276">Dark Data Basics – Understanding the Unknown</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/programming-for-data-science-221642">Programming for Data Science</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/exploratory-data-analysis-visualisation-262198">Exploratory Data Analysis</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamental-tools-of-data-wrangling-205914">Fundamental Tools of Data Wrangling</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-analysis-python-project-205916">Data Analysis with Python Project</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/association-rules-analysis-205917">Association Rules Analysis</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/clustering-analysis-205919">Clustering Analysis</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-wrangling-with-python-project-205923">Data Wrangling with Python Project</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/classification-analysis-205925">Classification Analysis</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-processing-and-manipulation-205926">Data Processing and Manipulation</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-understanding-and-visualization-205927">Data Understanding and Visualization</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-collection-and-integration-205928">Data Collection and Integration</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-driven-decision-making-275027">Data Driven Decision Making</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-acquisition-risk-and-estimation-275030">Data Acquisition, Risk, and Estimation</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/statistics-and-data-analysis-with-excel-part-1-278144">[New] Statistics and Data Analysis with Excel, Part 1</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-foundation-of-data-science-199647">Foundation of Data Science</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-quantitative-and-mixed-methods-research-for-management-203719">Quantitative and Mixed Methods Research for Management</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-analysis-davidson-college-data-visualization-199420">Data Visualization and Storytelling</a> from <em>Davidson College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/critical-evaluation-in-data-science-272345">Critical Evaluation in Data Science: Data, the World, and You</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computer-programming-rwth-aachen-university-proce-252848">A Hands-On Introduction to Process Mining</a> from <em>RWTH Aachen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-science-rwth-aachen-university-basics-of-dat-274067">Basics of Data Science</a> from <em>RWTH Aachen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-driven-animation-206553">Data-Driven Animation for Science Communication</a> from <em>University of California, Santa Cruz</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ball-state-university-data-visualization-open-263695">Data Visualization</a> from <em>Ball State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ai-and-bioinformatics-genomic-data-analysis-206627">AI and Bioinformatics: Genomic Data Analysis</a> from <em>Taipei Medical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-analysis-for-business-277309">[New] Data Analysis for Business</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-business-problem-solving-216815">Fundamentals of Business Problem Solving</a> from <em>Howard University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-modeling-tools-216816">Business Modeling Tools</a> from <em>Howard University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/solving-business-problems-with-spreadsheet-modeli-216817">Solving Business Problems with Spreadsheet Modeling</a> from <em>Howard University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-data-preparation-and-analysis-275716">[New] Data Preparation and Analysis</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/text-mining-for-marketing-204467">Text Mining for Marketing</a> from <em>O.P. Jindal Global University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamental-skills-in-bioinformatics-206292">Fundamental Skills in Bioinformatics</a> from <em>King Abdullah University of Science and Technology (KAUST)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-analysis-sda-bocconi-school-of-management-da-264346">Data Analysis for Business: Foundations</a> from <em>SDA Bocconi School of Management</em></li>
</ul>
<h2 id="heading-mathematics-32"><strong>Mathematics (32)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/linear-regression-modeling-health-data-238186">Linear Regression Modeling for Health Data</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/matrix-algebra-determinants-and-eigenvectors-260357">Linear Algebra: Matrix Algebra, Determinants, &amp; Eigenvectors</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/linear-systems-and-matrix-equations-260358">Linear Algebra: Linear Systems and Matrix Equations</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/orthogonality-and-diagonalization-261475">Linear Algebra: Orthogonality and Diagonalization</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-linear-programming-and-its-applications-to-computer-science-269734">Linear programming and its applications to computer science</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-set-theory-and-mathematical-logic-269767">Set Theory and Mathematical Logic</a> from <em>Indian Institute of Technology Kanpur</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-advanced-course-on-partial-differential-equations-ii-269654">Advanced Course on Partial Differential Equations – II</a> from <em>Indian Institute of Science Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-group-theory-269724">Introduction to Group Theory</a> from <em>Indian Institute of Science Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-lie-algebras-269725">Introduction to Lie algebras</a> from <em>Indian Institute of Science Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-introduction-to-statistics-269731">Introduction to Statistics</a> from <em>IIT Hyderabad</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-numerical-linear-algebra-and-application-269747">Numerical Linear Algebra and Application</a> from <em>NPTEL</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/engineering-purdue-university-mathematics-of-wave-270090">Mathematics of Waves: Visualized with Neural Networks</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/resampling-selection-and-splines-199516">Resampling, Selection and Splines</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/regression-analysis-205924">Regression Analysis</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/math-ecole-polytechnique-federale-de-lausanne-int-277196">[New] Introduction to optimization on smooth manifolds: first order methods</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/math-universitat-politecnica-de-valencia-math-fun-270091">Math Fundamentals: Algebra</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/math-universitat-politecnica-de-valencia-math-fun-270092">Math Fundamentals: Integrals</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/math-universitat-politecnica-de-valencia-math-fun-270093">Math Fundamentals: Numbers and Terminology</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/math-universitat-politecnica-de-valencia-basic-ma-271292">Math Fundamentals: Derivatives</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/math-university-of-adelaide-maths-foundations-276440">[New] Maths Foundations</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-linear-algebra-269564">Introduction to Linear Algebra</a> from <em>The University of Sydney</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/math-ku-leuven-mathematical-techniques-for-proble-223233">Mathematical Techniques for Problem Solving in Engineering and Science</a> from <em>KU Leuven University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-algebra-269659">Algebra</a> from <em>Pondicherry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-calculus-269675">Calculus</a> from <em>MES College of Engineering</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-statistics-for-business-decisions-269774">Statistics for Business Decisions</a> from <em>CEC</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/math-the-london-school-of-economics-and-political-192615">An Introduction to Pre-University Mathematics</a> from <em>London School of Economics and Political Science</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-model-diagnostics-and-remedial-meas-206164">Model Diagnostics and Remedial Measures</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-linear-regression-206165">Linear Regression</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-variable-selection-model-validation-261486">Variable Selection, Model Validation, Nonlinear Regression</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/illinois-tech-statistical-learning-276294">[New] Statistical Learning</a> from <em>Illinois Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/basicmathematics-274955">Basic Mathematics</a> from <em>Birla Institute Of Technology And Science–Pilani (BITS–Pilani)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-analytics-lehigh-university-statistics-f-207621">Statistics Fundamentals for Business Analytics</a> from <em>Lehigh University</em></li>
</ul>
<h2 id="heading-art-amp-design-27"><strong>Art &amp; Design (27)</strong></h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/education-columbia-university-digital-case-method-207527">Digital Case Method</a> from <em>Columbia University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/human-centered-design-204357">Understanding the Value of Human-Centered Design</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-interior-design-269719">Interior Design</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-research-methodology-for-planning-and-architectural-studies-269765">Research Methodology for Planning and Architectural Studies</a> from <em>Indian Institute of Technology Roorkee</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/discover-acting-202931">Discover Acting</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/using-rapid-prototyping-in-the-engineering-design-201889">Using Rapid Prototyping in the Engineering Design Process</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/adding-electronics-to-rapid-prototypes-201894">Adding Electronics to Rapid Prototypes</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/rapid-prototyping-materials-and-tooling-201895">Rapid Prototyping Materials and Tooling</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/jquery-university-of-california-davis-animation-w-273506">Animation with JavaScript and jQuery</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/evaluation-for-arts-culture-and-heritage-principl-206783">Evaluation for Arts, Culture, and Heritage: Principles and Practice</a> from <em>University of Leeds</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/touring-101-for-musicians-199513">Touring 101 for Musicians</a> from <em>Berklee College of Music</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/building-your-career-as-a-professional-singer-204187">Building Your Career as a Professional Singer</a> from <em>Berklee College of Music</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-to-make-money-with-your-music-copyrights-261471">How to Make Money with Your Music Copyrights</a> from <em>Berklee College of Music</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-creative-thinking-204470">Introduction to Creative Thinking: Tools for Success</a> from <em>Imperial College London</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/systematic-creative-thinking-204663">Systematic Creative Thinking: Tools for Success</a> from <em>Imperial College London</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-creative-thinking-204664">Advanced Creative Thinking and AI: Tools for Success</a> from <em>Imperial College London</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/art-universitat-politecnica-de-valencia-arte-arte-274286">Arte, artesanía y creatividad sostenibles: tintas y tintes naturales</a> from <em>Universitat Politècnica de València</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-german-opera-262210">Introduction to German Opera</a> from <em>Dartmouth College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-italian-opera-263279">Introduction to Italian Opera</a> from <em>Dartmouth College</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/reimaginar-museos-205177">Reimaginar museos: Un nuevo futuro</a> from <em>University of Leicester</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/akichi-in-collections-management-206214">Akichi in Collections Management: Perspectives from a Japanese University Museum</a> from <em>Keio University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-modern-art-277372">[New] Introduction to Modern Art</a> from <em>Taipei Medical University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/discovering-korean-music-the-spectrum-of-sound-274290">Discovering Korean Music: The Spectrum of Sound</a> from <em>Hanyang University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-talon-ka-soundarya-shastra-272843">Talon ka Soundarya Shastra</a> from <em>Doctor Harisingh Gour Vishwavidyalaya, Sagar</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/korean-music-a-philosophical-exploration-273292">Korean Music, A Philosophical Exploration</a> from <em>Sungkyunkwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fashion-sda-bocconi-school-of-management-responsi-277398">[New] Responsible Innovation and Circular Fashion</a> from <em>SDA Bocconi School of Management</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fashion-sda-bocconi-school-of-management-circular-277399">[New] Circular Fashion Business Models</a> from <em>SDA Bocconi School of Management</em></li>
</ul>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Podcast: The History of Online Courses with Class Central Founder Dhawal Shah ]]>
                </title>
                <description>
                    <![CDATA[ On this week's podcast, I'm joined by Dhawal Shah, the creator of Class Central, a popular search engine for online courses. Dhawal shares the history of online courses and the Massive Open Online Course revolution of the early 2010s.  We also talk a... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/podcast-history-of-online-courses-dhawal-shah/</link>
                <guid isPermaLink="false">66b8d51af8e5d39507c4c107</guid>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ history ]]>
                    </category>
                
                    <category>
                        <![CDATA[ india ]]>
                    </category>
                
                    <category>
                        <![CDATA[ podcast ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Quincy Larson ]]>
                </dc:creator>
                <pubDate>Fri, 08 Dec 2023 10:29:06 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2023/12/Podcast__The_History_of_Online_Courses_with_Class_Central_Founder_Dhawal_Shah_-_freeCodeCamp_org.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>On this week's podcast, I'm joined by Dhawal Shah, the creator of Class Central, a popular search engine for online courses.</p>
<p>Dhawal shares the history of online courses and the Massive Open Online Course revolution of the early 2010s. </p>
<p>We also talk about his childhood growing up in India, and how his life changed one day when he won a computer from a Cartoon Network sweepstakes.</p>
<p>Be sure to follow The freeCodeCamp podcast in your favorite podcast app. And share this podcast with a friend. Let's inspire more folks to learn to code and build careers for themselves in tech.</p>
<p>You can listen to the podcast in Apple Podcasts, Spotify, or your favorite podcast app. You can also listen to the podcast below, right in your browser:</p>
<div class="embed-wrapper"><iframe style="border:none" src="https://play.libsyn.com/embed/episode/id/28984053/height/192/theme/modern/size/large/thumbnail/yes/custom-color/2a4061/time-start/00:00:00/playlist-height/200/direction/backward/download/yes/font-color/f5eded" height="192" width="100%" title="Embedded content" loading="lazy"></iframe></div>

<p><img src="https://www.freecodecamp.org/news/content/images/2023/12/Dhawal-Shah-Class-Central-freeCodeCamp.jpeg" alt="Image" width="600" height="400" loading="lazy">
<em>Dhawal took me out for traditional Mumbai food – vegetarian, and eaten with your hands. It was delicious.</em></p>
<p>Links we discuss during the conversation:</p>
<ul>
<li>Dhawal's article <a target="_blank" href="https://www.freecodecamp.org/news/ivy-league-free-online-courses-a0d7ae675869/">Here are 850+ Ivy League Courses You Can Take Right Now for Free</a></li>
<li>Dhawal's article <a target="_blank" href="https://www.freecodecamp.org/news/coursera-free-online-courses-6d84cdb30da/">I uncovered 1700 Coursera Courses that Are Still Completely Free</a></li>
<li><a target="_blank" href="https://twitter.com/dhawalhshah">Dhawal on Twitter</a></li>
</ul>
<p>Dhawal's 3 recommended Massive Open Online Courses:</p>
<ol>
<li><a target="_blank" href="https://www.classcentral.com/course/learning-how-to-learn-2161">Learning How to Learn: Powerful mental tools to help you master tough subjects</a></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mountains-101-7455">University of Alberta's Mountains 101 Course</a></li>
<li><a target="_blank" href="https://www.classcentral.com/course/algorithms-18869">Stanford's Data Structures and Algorithms Course</a></li>
</ol>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Is College Still Worth it? Tips from my 20 Years in Adult Education ]]>
                </title>
                <description>
                    <![CDATA[ So many people ask me each week: is college still worth it? In this 1-hour video I answer this question and other commonly asked questions about university. I've been in adult education for two decades at this point, and even though I'm not a labor m... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/is-college-worth-it/</link>
                <guid isPermaLink="false">66b8d4730c9c1d363b7c4230</guid>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ university ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Quincy Larson ]]>
                </dc:creator>
                <pubDate>Thu, 17 Aug 2023 17:46:36 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2023/08/maxresdefault.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>So many people ask me each week: is college still worth it? In this 1-hour video I answer this question and other commonly asked questions about university.</p>
<p>I've been in adult education for two decades at this point, and even though I'm not a labor market economist, I do feel confident enough to answer these questions.</p>
<p>I met in Philadelphia with freeCodeCamp instructor Ed Pratowski to film this in the same studio where he records his mathematics courses. His high-school age daughter Stella read the questions and I answered them. </p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/08/College-in-this-economy-thumbnail-concept-this-is-rough.jpg" alt="Image" width="600" height="400" loading="lazy">
<em>I prepared some data visualizations to drive home my key points, and I also made this meme.</em></p>
<p>Here are some of the many topics you'll learn about:</p>
<ul>
<li>economic considerations (ROI and Net Present Value) of college decisions</li>
<li>the US higher education system and labor market dynamics</li>
<li>strategies to minimize college costs and maximize ROI</li>
<li>the student debt crisis and student visa system</li>
<li>practical tips from decades of adult education experience</li>
<li>how to make informed career decisions and maximize your options</li>
</ul>
<p>Also, you may want to read my recent book <a target="_blank" href="https://www.freecodecamp.org/news/learn-to-code-book/">How to Learn to Code and Get a Developer Job</a>. It's completely free and chock-full of career advice.</p>
<p>If you're considering going to university or have college-age kids, I encourage you to watch this and share it with your friends. I'd welcome any feedback you have. (1 hour watch):</p>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/N07nQ-uUsww" 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>And here's a full transcript:</p>
<p>Aside from buying a house, going to university is probably the biggest investment decision you'll face in your entire life.</p>
<p>At the end of the day, going to college should be an economic decision, not an emotional one. In this free course, Free Code Camp founder Quincy Larson will help you decide how to plan for college. He'll explain how US higher education works, how the labor market works, and he'll provide some strategies for minimizing your costs. At the end of the day, he wants to help you maximize your return on investment.</p>
<p>Quincy recently published a free, full-length book about developer careers, and college is the number one thing people ask him about. By the way, people also ask him a lot about Chat GPT and whether they still need to learn to code. Spoiler alert: his answer is yes. So grab your notebook or crack open your text editor because Quincy's going to fire a lot of data at you from his decades of working in adult education.</p>
<p>Quincy pulls no punches and has no mercy when talking about the US university system, the student debt epidemic, and a student visa system that leaves so many bright people unable to get a US degree. But rest assured, he has tons of practical tips that your college counselor probably never told you about. At the end of the day, Quincy wants the same thing for you that your family wants: for you to earn a good living and have a ton of career options. If you learn something from this course, be sure to send it to a friend or family member who's planning for college.</p>
<p>Hey, I'm Quincy Larson, teacher and founder of FreeCodeCamp.org. And today we're going to be asking the very timely question: Is college still worth it? And I'm going to be arguing that in most cases, yes, it is still worth it. You're going to hear all this hype around 'Oh, college, who needs college anymore?' I'm going to argue from numbers that college is still incredibly useful. It's still incredibly worth it. I'm also going to be talking about lots of situations where I don't think it's worth it. And I'm going to be talking about some strategies that you can use to reduce student debt, reduce the capital outlay that this giant four-year education can represent for many people who are learning. So let's dive in.</p>
<p>What about return on investment? The first thing you should consider about education is this is an economic decision. You may have aspirational reasons why you want to go to college. Maybe you're the first person in your family lineage to ever go and get a degree, and that can be a very proud moment. Maybe you have served in the armed forces and you essentially have this freeway to go to university in the sense that you've got the GI Bill that's going to pay for a lot of your higher education. You still should think about things in terms of economics. And you should still think about it in terms of how much money is going to cost and ultimately how much is going to affect your earning potential.</p>
<p>We're going to think about this in terms of return on investment, or ROI. You may have heard that acronym before. There are other ways, of course, you can think about this. For example, if you're a big finance person, you might think in terms of net present value, which will factor in the time value of money. And that's a very real consideration as well because money today is worth a lot more than money in the future. Not just because of inflation, but because of the opportunity to invest that money. So you might, instead of going to university and spending the equivalent of $40,000 on four years of in-state tuition, you might want to just take that $40,000 if you have it in cash now and just put it in some sort of investment vehicle, probably like an index fund and just let it accumulate over time. That might be a rational thing to do, depending on the ROI that you're looking at.</p>
<p>Now, in order to figure out what the ROI is, we want to figure out how much money you're earning right now, just with your current skills. You can probably go out and get a job as a janitor and make about $12 an hour in the United States. So if you think about $12 an hour, you multiply that times about 2,000 hours per year - the year you're going to be working - that's about 40 hours a week times approximately 50 weeks, assuming you've got two weeks off, which may or may not be paid. I'm just going to call it $24,000 a year. So let's go ahead and let's think in terms. I'm going to show a fancy chart on the screen right now.</p>
<p>This is approximately how much you can expect to earn with varying levels of what we'll call educational attainment. So, if you went to high school, great! Congratulations on graduating from high school. You're going to make more than somebody who didn't go to high school or didn't finish high school.</p>
<p>Now, getting a general equivalency diploma, GED, that's basically the same as going to high school for most economic considerations. If you go to some college, that does technically increase your earning potential a little bit. But what really helps is not going to some college, not getting an associate's necessarily, but getting the full bachelor's degree. A bachelor's degree will roughly 2x your expected annual earnings over what you would get if you just had a high school diploma.</p>
<p>So, that is why you definitely want to consider going to college depending on how many years of productive life you have left. Let's say you're 18 to 25, which would be the age range for a traditional student. That's what most economists and educators would consider to be a traditional university student age. That probably means that if you live to be about 80 years old, which is the life expectancy of most Americans, (with factors like women living slightly longer than men, income bracket, family history, etc., playing into it), you have many years ahead. But we'll just call the average life expectancy of an American 80 years old.</p>
<p>You've probably picked up that I'm focusing mostly on the United States. That's because I grew up in the United States. I'm an American citizen, I have studied abroad, specifically in China for several years. So, I have a bit of a study abroad perspective, and I have worked extensively with international students who come from other countries to study in the United States. We'll delve into that later, but there is a heavy US focus in this course.</p>
<p>So, if you're going to live to be 80 years old and you're going to work maybe 40 years, you could take that 2x multiplier and compare earning $24,000 a year as a janitor to earning something like $44,000 as a college graduate. By the way, your janitor income is not going to necessarily increase steadily over time. It may keep up with inflation, but don't expect to be making 2x as a janitor just because you have a lot of janitorial experience. However, if you're working as a software engineer, you might be able to make 4x, even 10x, of what you made when you first got out of college as you progress in your career, gain more experience, understand the industry, and take on more responsibility. So, think about how long you're going to be working and what the wage differential will be. That will be the best way to figure out your ROI.</p>
<p>How does student debt work in the United States? Most people pay for their education through a combination of working during university, parental support, scholarships, and of course, student debt. Student debt is one of the most complicated factors in determining ROI because you have to repay that debt, and uncertainties abound: whether you'll finish university, whether your post-university wage will be sufficient for repayment, etc. I know people with more than $100,000 US dollars worth of student debt to repay. Think of student debt as an additional risk. As mentioned earlier, if you finish college, you'll basically double your income. However, the real threat of student debt remains, regardless of whether you complete your degree or not. Life can throw curveballs like accidents, illnesses, or other unforeseen events that might hinder your ability to finish school. The debt remains, and repaying becomes a challenge. So, my advice? Avoid debt if possible. If you already have student debt, strive to pay it off as soon as possible.</p>
<p>What major should you study? Some people joke about liberal arts degrees, implying they aren't financially rewarding. However, I've known many liberal arts graduates in powerful positions. My own degree is in liberal arts, and I now run an NGO with 35 people reporting to me. Liberal arts degrees provide skills like language proficiency, argumentation, debate, analysis, writing, and presentation. That said, fields like computer science undoubtedly offer better immediate financial returns. I'll show a chart highlighting the earning potential of computer science majors compared to others. Interestingly, while petroleum engineering might seem more lucrative based on some data, the job market for them is narrower compared to computer science.</p>
<p>Considering life quality, the difference between earning $80,000 and $100,000 is less significant than going from $25,000 to $45,000 or $50,000. Once you reach a certain income threshold, every additional dollar, while pleasant, becomes less critical. Computer science offers numerous job opportunities, a well-defined skill set, and a promising trajectory. While other degrees like computer engineering, IT, and software engineering exist, hiring managers often prioritize computer science degrees.</p>
<p>Finally, if you're contemplating STEM fields, remember that many graduates from physics, chemistry, or life science often shift towards software due to its lucrative job market. So, if you're leaning towards STEM, consider integrating more programming and mathematics into your curriculum. Computer science majors, especially software engineers, often out-earn even those who study finance or business administration. This speaks volumes about the value of computer science in the current job market.</p>
<p>Here's the text with added punctuation and paragraphing for better readability:</p>
<hr>
<p>It may make it slightly harder for you to find that job. When in doubt, just go with a computer science degree.</p>
<p><strong>What if I'm older?</strong><br>If you are older, again, it comes back into the question of ROI. How many years do you think you're going to be working? I would say that don't underestimate yourself. I'm 42, I feel high energy. Granted, I don't have any genetic issues, I'm not on insulin, and I don't have a lot of things that may be plaguing people as they get into their 40s. But I do believe that I can probably work another 20 or 30 years productively. Retirement age in the United States, I believe, is 67. Just subtract your age from 67, and that's a rough rubric for how many years you're going to have left.</p>
<p>Now, if you take that multiplier, double your income, and then you subtract out the cost of a college education, again, if you go to in-state tuition at a four-year institution, it's going to be about $10,000 a year in tuition. That doesn't include fees. When you go to a big state university, you're kind of also paying for them to maintain the lawn on the stadium and to maintain the random buildings that provide air conditioning and water to all the other, the physical plant. There are lots of fees - student activity fees, library fees, things like that, so factor those in.</p>
<p>Then, of course, the big thing is the cost of living, and the thing you need to factor in is, okay, I'm going to be spending approximately 28 hours per week. If I'm a full-time student, that's about how much time a full-time student spends studying in the United States, according to studies that I've read. You might think, oh, I thought students would probably be, it'd be more like 40 hours. Now, it turns out that school is not nearly as hard as everybody pretends it is, and 28 hours is about how much people spend studying and going to class, taking exams, all those different things.</p>
<p>Now, that may vary from major to major. Like if you're studying medicine, for example, it may be way more intense than that. But if you're working, let's say, 28 hours a week on your studies, that's 28 hours of time and energy that you don't have to devote to a job that can help you earn income. Let's say that you're working at a grocery store as a manager, and you're working there, you're making $30,000 a year, and that job takes 40 hours out of your week. You could basically have to bolt on an extra 28 hours per week worth of work if you're full-time or if you're doing part-time school. It might only be like half that, 14 hours additional study. It would take you twice as many years to finish the program, but it may be much more sustainable.</p>
<p>To answer the question of should you go back to school if you're older, it ultimately comes down to ROI. It comes down to your own personal feelings about how much longer you think you're going to be able to work and whether you think you could balance going to school with your current obligations, both familial and work.</p>
<p><strong>What if I'm outside the US?</strong><br>So, of course, I'm very blessed to have been born in the United States. I'm a native English speaker, I've got a US passport, and there are only about 4% of the world population also shares that privilege. If you were born in China, India, Nigeria, one of many other countries that receive many of the 1 million international students that are studying in the United States, these are people that have generally finished high school in their country and then gotten into a university here in the US. They cleared the very lengthy visa process, maybe their family has saved up for a generation to be able to afford for them to be able to go to the United States and study. If you're one of those people, it can be very tricky. I'm not going to give super granular advice for that, but I will say that there may be some alternatives that don't involve going through the visa process where you can still graduate from a US university without having to spend a huge amount of money.</p>
<p>Now, we're talking about $40,000 US per year to attend a state school without state tuition. So, by virtue of being outside of the country, you are out of state. And in fact, some schools may charge even higher tuition for international students than they would charge for another US resident who is just from a different state. Let's say I grew up in Oklahoma, if I had studied in Texas, even though it's very close geographically, I would have to pay out of state tuition, which is three times as much, which really incentivizes you to go to school in your state. As an international student, you face a whole lot of additional considerations around cost. Later, I'm going to talk about some alternatives that can allow you to get an American education without spending American international student prices.</p>
<p><strong>Does it matter which type of university I go to?</strong><br>So, it does matter quite a bit which type of university you go to, and I'll tell you which one you should go to in a minute, but let me first lay out the three big categories.</p>
<p>So, first, there's public, and that could be both community college and universities. That could be like a state university system. It could be just like the research university systems. For example, in California, you have California State University, and you also have the University of California system.</p>
<p>Then there's private, and that's nonprofit. Private nonprofit. This is usually private schools, small liberal arts colleges. It can also be like all the Ivy League schools are private. Most private universities in the United States are owned by churches, for example, so they may have some required theology-related credits for the undergrad.</p>
<p>Then there's what's called private for-profit. This would be the kinds of universities you see on late-night TV, basically, running commercials. There have been so many of these that have been shut down recently because, frankly, you should just assume that these are scams until proven otherwise, in my opinion. I know there are probably lots of people out there who are watching this who work at a private for-profit, and if you're one of the good ones, fantastic. I really believe that these are the only considerations you should make, and it may be harder to get into these institutions. There may be more paperwork, there may be less guidance from a counselor-slash-salesperson to try to get you in, but it is absolutely best to go to one of these.</p>
<p>Now, you generally want to go to a community college first. The reason is twofold. One, community colleges are a lot cheaper. They are a lot cheaper. They're designed for people who don't necessarily have a whole lot like a giant scholarship for playing sports or for academic reasons. They're also designed with people who don't want to commute really far. They want to continue living with their parents or living with a roommate in the area where they have their job or if they already have kids not having to uproot or spend a huge amount of time on the road. </p>
<p>A lot of times, the instruction you get at a community college is actually better than what you'll get at a four-year research institution. The reason is that everyone at community colleges is focused on teaching. They prioritize helping students learn, and they're less concerned about academic citations.</p>
<p>Another point to consider about community colleges is that they are more affordable and often have better teaching methods. Successfully completing a community college course can help you transfer to more selective schools that might otherwise be challenging to get into. For instance, the University of Texas has stringent admission criteria. However, if you attend a community college in Texas, your chances of transitioning to the University of Texas are significantly higher. This isn't the case for all community colleges, so research is vital. If your goal is to attend a selective state university, then starting at a community college can be an excellent strategy. After two years, you can transfer to a four-year university and earn your bachelor's degree. Many community colleges also offer associate's and bachelor's degrees.</p>
<p>The second type of institution is private nonprofit universities, which include Ivy Leagues, MIT, and Caltech. These institutions often have higher tuitions, enabling them to offer better facilities and pay their faculty more. These universities tend to be older and are sometimes affiliated with religious organizations. Their prestige often correlates with their age; for instance, Harvard, the oldest U.S. university, is also considered one of the best. Yale, Princeton, and Columbia, other Ivy League schools, are also ancient institutions.</p>
<p>While these private nonprofit universities offer exceptional education, they come with a hefty price tag. Your return on investment (ROI) may not always match the cost, especially when compared to public universities. However, the major you choose plays a more significant role in your future success than the institution you attend.</p>
<p>If you're considering the best path through university, there are several options to reduce costs. High school students can earn AP credits, which can be converted to college credits. Another option is the CLEP program, allowing students to test out of certain courses, saving both time and money.</p>
<p>There are also ultra-low-cost universities, such as the University of the People and Western Governors University. While they don't have affiliate relationships, their ROI is impressive. Both universities offer different payment and study structures but provide affordable accredited degrees. Accreditation is a way universities maintain standards, but it shouldn't be the sole criteria for choosing an institution. It's essential to do thorough research, connect with alumni, and ensure that the university aligns with your goals.</p>
<p>When considering your education, think of it as a significant investment, second only to buying a home in the U.S. Transferring credits between institutions can be challenging, so it's crucial to pick the right school from the start. Always consider the ROI and avoid making decisions based solely on proximity or prestige.</p>
<p>Lastly, be wary of common traps. For instance, while pursuing your passion is commendable, it's essential to ensure that the educational institution you choose offers a good ROI. If you're passionate about photography, it might not be the best decision to attend an expensive private school for it.</p>
<p>For example, or even at a private nonprofit photography school, I wouldn't necessarily encourage you to pursue photography as a major. In fact, I would encourage you to continue studying, looking at professional photographers, analyzing their work, and exploring other disciplines. If you major in photography, it doesn't really matter for most gigs. When you're looking for work as a photographer, employers aren't going to ask, "Where did you study?" Instead, they'll say, "Show me your portfolio," or "Who recommended you?" There are fields where a college degree isn't crucial unless you're aiming to become a professor.</p>
<p>Speaking of academia, it's quite dysfunctional. We often refer to it as the "academic pyramid scheme." For every Ph.D. or tenure track position in the U.S., there are 50 Ph.D. candidates trying to climb the pyramid. Securing a tenure track position at a university is a challenging feat. Unless you're genuinely passionate about a field where a Ph.D. is standard, like physics, I'd advise caution. Many people spend years pursuing their Ph.D. before realizing it's not for them. While this isn't solely about Ph.D. programs, understand that academia can be likened to a pyramid scheme. Some might liken it to playing the lottery. For those who secure tenure and can delve deep into research and teaching, it seems worth the effort. However, for every successful individual, there are numerous others who didn't make it.</p>
<p>Now, let's discuss some common traps. The first trap is micromanaging. You might look at resources like the U.S. News World Report and see a plethora of data. While it might seem like you're making an informed decision, this data might not be as helpful as you think. Factors like the socio-economic backgrounds of students aren't always considered. Ivy League schools might show better outcomes, but that's often because their students come from affluent backgrounds. I'm not criticizing specific universities, but it's essential to look beyond the surface. In countries like India and China, there's an obsession with getting into top-tier universities. However, attending a good state school, working hard, and progressing in your field can lead to success comparable to Ivy League graduates. This obsession with micromanaging and relying solely on data can be a trap.</p>
<p>The second trap is disregarding the importance of money. I've worked various jobs in the past, from Taco Bell to construction, and enjoyed simple pleasures that didn't require much money. Living frugally might work in your 20s or even 30s. But unforeseen circumstances, like health issues or family emergencies, can change things. The U.S. healthcare system can be unforgiving, and you need to be financially prepared. Earning a decent salary and saving can offer security. You don't need to be a millionaire, but achieving a comfortable middle-class lifestyle and saving for the future is prudent.</p>
<p>Lastly, let's address the myth that many successful entrepreneurs drop out of college. Yes, people like Bill Gates and Mark Zuckerberg dropped out and achieved immense success. But they are outliers. Many Fortune 500 CEOs hold degrees. Companies like Google and Apple might state that a degree isn't essential, but if you walk their campuses, you'd find that most employees are degree holders. A university degree demonstrates commitment, long-term thinking, and reduces hiring risks for companies.</p>
<p>To wrap up, avoid these traps: choosing passion over practicality, micromanaging your education based on limited data, and neglecting the importance of financial security. Pursue a path that offers a good return on investment, like computer science, and plan for the future. If your career takes off while in college, and you feel the need to drop out, ensure it's for the right reasons. Some institutions, like Stanford, even allow students to return and complete their studies later.</p>
<p>Here's the paragraphed and punctuated version:</p>
<p>Other institutions have a policy where if you're gone for a certain number of years, your credits expire, and you have to start at the beginning, right? So you'll want to look at those considerations. But really, unless you're getting some sort of crazy product-market fit or traction with your startup, or a very wealthy person offers you a unique job, I wouldn't leave college for that. Now, if you study at places like Stanford or a university that's more permissive about taking breaks, you could consider a gap year. That's totally fine. However, I would recommend eventually returning and completing your degree, even if it's at institutions like the University of the People or Western Governors University.</p>
<p>As you can tell, I firmly believe in the value of a college degree. You won't find me disparaging it or suggesting that alternatives are always better. When you hear a successful individual claim that college isn't necessary anymore, ask yourself if that person has a degree themselves. Many overlook the advantages they gained from their education, such as not being filtered out by HR or getting more job interviews because of their degree.</p>
<p>I'm a strong advocate for everyone pursuing a degree, and I think a degree in computer science is especially valuable due to its flexibility. It's the Swiss army knife of tech degrees. I'm encouraged by ultra low-cost universities like the University of the People and Western Governors University, which have made significant strides in reducing the cost of obtaining an accredited US university degree. However, there's still more work to be done. Education should be free and accessible to all. Consider the majority of people globally living on less than $10 a day, or those outside the US who can't afford international education. These individuals might not be able to attend a traditional university, but they could access platforms like freeCodeCamp.</p>
<p>We're developing a comprehensive program that includes an associate's degree in mathematics and a bachelor's degree in computer science. The curriculum is rigorous, but students can learn at their own pace for free. Our goal is to gain accreditation by the early 2030s. We're committed to teaching relevant, current skills, including topics like security, ethics, and general education subjects. We aim to provide a solid foundational degree based on the curricula of top US universities.</p>
<p>Job compensation is influenced by various factors: market economics, skills, working conditions, and job danger levels. Of these, skills are the most controllable and can significantly impact earnings. That's why I urge people to learn software engineering—it's a lucrative skill.</p>
<p>Thank you for listening to my perspectives. Continuous skill development is essential, and you don't necessarily need a formal education for that. While I value master's degrees (I have an MBA myself), the return on investment isn't always clear-cut. If you can get your employer to fund it, that's great, but it's not always necessary.</p>
<p>If you already have a degree, think twice before pursuing a second undergraduate degree. In most cases, it's better to self-teach. There are countless success stories of self-taught developers, many of whom have used freeCodeCamp. Also, check out the freeCodeCamp podcast, where I interview many successful professionals, some without formal degrees.</p>
<p>In conclusion, an undergraduate degree is valuable, especially in computer science. Choose an affordable institution and major that offers the best return on investment. Remember, you don't have to spend a fortune to learn coding. Platforms like freeCodeCamp and many YouTube educators offer invaluable resources. All you need is curiosity and dedication.</p>
<p>Happy coding!</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ The freeCodeCamp Podcast Season #2: Quincy's Back to Interview Devs ]]>
                </title>
                <description>
                    <![CDATA[ We're bringing you a new season of insights from developers, entrepreneurs, and ambitious people getting into tech. I'm Quincy Larson, the teacher who founded freeCodeCamp.org. And I've been running around Dallas, San Francisco, and New York City int... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/freecodecamp-podcast-season-2-developer-interviews/</link>
                <guid isPermaLink="false">66b8d34f8cd1c2aa053d4970</guid>
                
                    <category>
                        <![CDATA[ community ]]>
                    </category>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ podcast ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Quincy Larson ]]>
                </dc:creator>
                <pubDate>Wed, 12 Jul 2023 23:21:41 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2023/07/venti-views-R64qgQ6rr_o-unsplash.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>We're bringing you a new season of insights from developers, entrepreneurs, and ambitious people getting into tech.</p>
<p>I'm Quincy Larson, the teacher who founded freeCodeCamp.org. And I've been running around Dallas, San Francisco, and New York City interviewing fascinating people. And I'm excited to share these interviews with you.</p>
<p>It's been 4 years since freeCodeCamp has published a podcast episode. It's good to be back.</p>
<p>I've done a dozen interviews so far and I've got a dozen more lined up. Folks like Jeff Atwood, the founder of Stack Overflow. And Eric Leung, a data scientist at Disney.</p>
<p>We're talking about DevOps, cybersecurity, AI – tons of topics that I know you're gonna find helpful as you continue to expand your skills.</p>
<p>And this week I'm dropping the first 3 episodes. My interviews with:</p>
<h2 id="heading-episode-86-danny-thompsons-journey-from-chicken-fryer-to-software-engineer">Episode #86: Danny Thompson's Journey from Chicken Fryer to Software Engineer</h2>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/07/Danny-Thompson.jpeg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Danny Thompson (<a target="_blank" href="https://twitter.com/DThompsonDev">@DThompsonDev</a>) is a bit a legend among career changers.</p>
<p>He had a kid early in life. For 10 years he worked at a gas station in Tennessee, frying chicken for people to eat. He sometimes worked 80 hour weeks just to provide for his family.</p>
<p>And yet, Danny had ambition. He taught himself to code using freeCodeCamp. He built his network through local tech events. And eventually, he landed his first job as as software developer.</p>
<p>Danny's since worked at tech companies like Google and Front Door, and he's now a software engineer at AutoZone, a major US retail chain.</p>
<p>Danny has helped so many people along the way. He's developed a free course on how to leverage LinkedIn as a developer. And he's helped start a ton of local developer meetups.</p>
<h2 id="heading-episode-87-mom-developer-agency-founder-with-sarah-shook">Episode #87: Mom, Developer, Agency Founder with Sarah Shook</h2>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/07/Sarah-Shook.jpeg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Sarah Shook (<a target="_blank" href="https://twitter.com/shookcodes">@shookcodes</a>) is a software engineer who started out as a recruiter, then started learning system administration on the job at a school.</p>
<p>She didn't finish university. She learned to code on the job, from studying freeCodeCamp, and from attending a short bootcamp that she won free admission to. And she did all of this while raising 3 kids.</p>
<p>She is a career-long remote worker, and insists she will never work somewhere where she needs to be away from her kids. Today she runs software development agency and works with clients.</p>
<p>Sarah and I talk about her coding journey, how she's worked to overcome depression and severe shyness, and her love of front end libraries like Tailwind CSS.</p>
<h2 id="heading-episode-88-open-source-and-sending-the-elevator-back-down-with-brian-douglas">Episode #88: Open Source and Sending the Elevator Back Down with Brian Douglas</h2>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/07/Brian-Douglas.jpeg" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Brian Douglas (<a target="_blank" href="https://twitter.com/bdougieYO">@bdougieYO</a>) is a software engineer who's worked at tech companies like GitHub and Netlify. And now he's an entrepreneur who runs his own startup – <a target="_blank" href="https://opensauced.pizza/">OpenSauced.pizza</a>.</p>
<p>Brian grew up in a small town in Florida, and his family was the only Black family in town. He worked hard in school and earned a full scholarship to Florida State University, where he studied business.</p>
<p>He started off working in sales, but gradually taught himself how to code. It took a while to get into the software, but he was ultimately able to move his family out to the San Francisco Bay Area.</p>
<h2 id="heading-this-is-just-the-beginning-ive-got-so-many-more-interviews-ready-to-publish">This is just the beginning. I've got so many more interviews ready to publish.</h2>
<p>This time I'm personally doing everything: researching, interviewing, editing – I even made the theme song. I hope you like it. 😅</p>
<p>You can <a target="_blank" href="https://freecodecamp.libsyn.com/">browse all of freeCodeCamp's Podcast episodes</a>. But rather than doing that, search for freeCodeCamp in your podcast player of choice, subscribe, and download some episodes. It will be time well invested.</p>
<p>And if you dig this podcast, be sure to leave us a review. And tell your friends.</p>
<p>I am going to learn so much over the coming months from these awesome people, and I'm going to share as much developer wisdom as possible. </p>
<p>Happy coding. 🏕️</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ 850+ Online Courses with Real College Credit that You Can Access for Free ]]>
                </title>
                <description>
                    <![CDATA[ By Dhawal Shah Many universities offer online courses for credit. Class Central has already compiled 70+ MOOC-based master’s degrees. Many of the courses in these online degree programs are publicly available: anyone with an internet connection can t... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/370-online-courses-with-real-college-credit-that-you-can-access-for-free-4fec5a28646/</link>
                <guid isPermaLink="false">66d45e48182810487e0ce15d</guid>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ self-improvement  ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ freeCodeCamp ]]>
                </dc:creator>
                <pubDate>Wed, 05 Apr 2023 10:00:00 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2023/04/college-credit-banner.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>By Dhawal Shah</p>
<p>Many universities offer online courses for credit. <a target="_blank" href="https://www.classcentral.com/">Class Central</a> has already compiled <a target="_blank" href="https://www.classcentral.com/report/mooc-based-masters-degree/">70+ MOOC-based master’s degrees</a>. Many of the courses in these online degree programs are publicly available: anyone with an internet connection can take them.</p>
<p>Some of these courses are “freebies” meant to give prospective students a taste of what the full online degree would be like. Others, like <a target="_blank" href="https://www.classcentral.com/help/edx-micromasters">edX's MicroMasters</a>, are essentially partial degree programs, equivalent to about one semester of university. And others, like Illinois' <a target="_blank" href="https://www.classcentral.com/course/illinois-imba-20806">iMBA</a> and Georgia Tech's <a target="_blank" href="https://www.classcentral.com/course/georgia-tech-master-computer-science-20929">OMSCS</a>, are full degree programs that can be audited for free online.</p>
<p>The catch (yes, there's a catch) is that in order to convert online coursework into university credit, you have to enroll in the corresponding university. And that usually means going through an admissions process and paying tuition.</p>
<p>That said, by making these courses free-to-audit, universities are giving online learners the same learning opportunities afforded to students taking the courses for credit.</p>
<p>At Class Central, we're constantly updating our catalog of over 150K courses. Searching through our database, we were able to compile a list of more than 850 online courses that are part of a for-credit online program, but that you can also audit for free.</p>
<h2 id="heading-subjects">Subjects</h2>
<p>To make the list easy to navigate, we've grouped the courses by subject and sorted them according to the total number of courses offered. Click on a subject to jump to the corresponding section:</p>
<ul>
<li><a class="post-section-overview" href="#heading-business">Business</a> — <strong>28</strong> degrees, <strong>29</strong> microcredentials, <strong>322</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-computer-science">Computer Science</a> — <strong>6</strong> degrees, <strong>11</strong> microcredentials, <strong>95</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-data-science">Data Science</a> — <strong>4</strong> degrees, <strong>8</strong> microcredentials, <strong>84</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-engineering">Engineering</a> — <strong>2</strong> degrees, <strong>6</strong> microcredentials, <strong>83</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-social-sciences">Social Sciences</a> — <strong>5</strong> degrees, <strong>7</strong> microcredentials, <strong>53</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-science">Science</a> — <strong>2</strong> degrees, <strong>8</strong> microcredentials, <strong>51</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-health-amp-medicine">Health</a> — <strong>5</strong> degrees, <strong>4</strong> microcredentials, <strong>47</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-programming">Programming</a> — <strong>1</strong> degree, <strong>6</strong> microcredentials, <strong>28</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-information-security-infosec">Infosec</a> — <strong>2</strong> degrees, <strong>2</strong> microcredentials, <strong>25</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-education-amp-teaching">Education</a> — <strong>3</strong> degrees, <strong>3</strong> microcredentials, <strong>16</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-personal-development">Personal Development</a> — <strong>4</strong> microcredentials, <strong>16</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-humanities">Humanities</a> — <strong>2</strong> degrees, <strong>15</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-art-amp-design">Art &amp; Design</a> — <strong>4</strong> microcredentials, <strong>14</strong> courses.</li>
<li><a class="post-section-overview" href="#heading-mathematics">Mathematics</a> — <strong>2</strong> microcredentials, <strong>9</strong> courses.</li>
</ul>
<hr>
<h2 id="heading-computer-science">Computer Science</h2>
<h3 id="heading-masters-degrees">Master's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/upenn-master-computer-it-20884"><strong>Master of Computer and Information Technology</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/computational-thinking-problem-solving-12278">Computational Thinking for Problem Solving</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/java-object-oriented-programming-22535">Introduction to Java and Object-Oriented Programming</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/python-programming-intro-22536">Introduction to Python Programming</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/java-inheritance-data-structures-22537">Inheritance and Data Structures in Java</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-analysis-python-22538">Data Analysis Using Python</a> from <em>University of Pennsylvania</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/georgia-tech-master-computer-science-20929"><strong>Online Master of Science in Computer Science (OMSCS)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-artificial-intelligence-for-robotics-319">Artificial Intelligence for Robotics</a> from <em>Stanford University</em> ★★★★★(24)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-advanced-operating-systems-1016">Advanced Operating Systems</a> from <em>Georgia Institute of Technology</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-high-performance-computer-architecture-1018">High Performance Computer Architecture</a> from <em>Georgia Institute of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-machine-learning-1020">Machine Learning</a> from <em>Georgia Institute of Technology</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-introduction-to-computer-vision-1022">Introduction to Computer Vision</a> from <em>Georgia Institute of Technology</em> ★★★★★(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-computational-photography-1023">Computational Photography</a> from <em>Georgia Institute of Technology</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-computability-complexity-algorithms-1024">Computability, Complexity &amp; Algorithms</a> from <em>Georgia Institute of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-knowledge-based-ai-cognitive-systems-1025">Knowledge-Based AI: Cognitive Systems</a> from <em>Georgia Institute of Technology</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-machine-learning-for-trading-1026">Machine Learning for Trading</a> from <em>Georgia Institute of Technology</em> ★★★☆☆(15)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-big-data-analytics-in-healthcare-1027">Big Data Analytics in Healthcare</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-high-performance-computing-1028">High Performance Computing</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-machine-learning-unsupervised-learning-1848">Machine Learning: Unsupervised Learning</a> from <em>Brown University</em> ★★★☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-reinforcement-learning-1849">Reinforcement Learning</a> from <em>Brown University</em> ★★★☆☆(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-software-development-process-2335">Software Development Process</a> from <em>Georgia Institute of Technology</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-computer-networking-2336">Computer Networking</a> from <em>Georgia Institute of Technology</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-software-architecture-design-3418">Software Architecture &amp; Design</a> from <em>Georgia Institute of Technology</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-introduction-to-operating-systems-3419">Introduction to Operating Systems</a> from <em>Georgia Institute of Technology</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-intro-to-information-security-3420">Intro to Information Security</a> from <em>Georgia Institute of Technology</em> ★★☆☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-educational-technology-4823">Educational Technology</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-artificial-intelligence-8565">Artificial Intelligence</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-data-analysis-and-visualization-8566">Data Analysis and Visualization</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-human-computer-interaction-8567">Human-Computer Interaction</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-software-analysis-testing-8568">Software Analysis &amp; Testing</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-cyber-physical-systems-security-8569">Cyber-Physical Systems Security</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-network-security-8570">Network Security</a> from <em>Georgia Institute of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-embedded-systems-8571">Embedded Systems</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-compilers-theory-and-practice-8572">Compilers: Theory and Practice</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-database-systems-concepts-design-8573">Database Systems Concepts &amp; Design</a> from <em>Georgia Institute of Technology</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-introduction-to-graduate-algorithms-10625">Introduction to Graduate Algorithms</a> from <em>Georgia Institute of Technology</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/illinois-master-computer-science-20882"><strong>Master of Computer Science</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/cloud-computing-2717">Cloud Computing Concepts, Part 1</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(21)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloudnetworking-2732">Cloud Networking</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/patterndiscovery-2733">Pattern Discovery in Data Mining</a> from <em>University of Illinois at Urbana-Champaign</em> ★★☆☆☆(21)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/textretrieval-2734">Text Retrieval and Search Engines</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/clusteranalysis-2735">Cluster Analysis in Data Mining</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/textanalytics-2736">Text Mining and Analytics</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/datavisualization-2737">Data Visualization</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(21)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloud-applications-part1-2738">Cloud Computing Applications, Part 1: Cloud Systems and Infrastructure</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloudcomputing2-2942">Cloud Computing Concepts: Part 2</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/dataminingcapstone-4154">[New] Data Mining Capstone</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloud-computing-project-5342">Cloud Computing Project</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-mining-project-6227">Data Mining Project</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloud-applications-2-6309">Cloud Computing Applications, Part 2: Big Data and Applications in the Cloud</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/iot-devices-il-37699">IoT Devices</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/iot-networking-37700">IoT Networking</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/iot-cloud-37701">IoT Cloud</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/iot-communications-37702">IoT Communications</a> from <em>University of Illinois at Urbana-Champaign</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/deakin-university-master-it-leadership-20912"><strong>Masters Degree in Information Technology Leadership</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/career-smart-sell-yourself-8035">Becoming Career Smart: How to Sell Yourself</a> from <em>Deakin University</em> ★★★☆☆(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/indiana-university-master-it-management-20604"><strong>Master’s Degree in IT Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-enterprise-data-management-13169">Enterprise Data Management</a> from <em>Indiana University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-digital-technology-and-innovation-13170">Digital Technology and Innovation</a> from <em>Indiana University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-digital-ecosystem-infrastructure-13171">Digital Ecosystem Infrastructure</a> from <em>Indiana University</em></li>
</ul>
<h3 id="heading-bachelors-degrees">Bachelor's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/goldsmiths-london-bachelor-computer-science-20885"><strong>Bachelor of Computer Science</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-computer-programming-12185">Introduction to Computer Programming</a>  from <em>University of London International Programmes</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-computers-work-12188">How Computers Work</a> from <em>University of London International Programmes</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mathematics-for-computer-science-12817">Mathematics for Computer Science</a> from <em>University of London International Programmes</em> ★★★★★(1)</li>
</ul>
<h3 id="heading-micromasters">MicroMasters</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/edinburghx-predictive-analytics-for-business-appl-18295"><strong>Predictive Analytics using Python</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-to-predictive-analytics-using-python-14420">Introduction to Predictive Analytics using Python</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-successfully-evaluating-predictive-modelling-14421">Successfully Evaluating Predictive Modelling</a> from <em>University of Edinburgh</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-statistical-predictive-modelling-and-applications-14422">Statistical Predictive Modelling and Applications</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-predictive-analytics-using-machine-learning-14423">Predictive Analytics using Machine Learning</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-predictive-analytics-final-project-14424">Predictive Analytics Final Project</a> from <em>University of Edinburgh</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/columbiax-artificial-intelligence-18306"><strong>Artificial Intelligence</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-animation-and-cgi-motion-7242">Animation and CGI Motion</a> from <em>Columbia University</em> ★★★★☆(5)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/ucsandiegox-algorithms-and-data-structures-18334"><strong>Algorithms and Data Structures</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-algorithms-and-data-structures-capstone-10178">Algorithms and Data Structures Capstone</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-algorithmic-design-and-techniques-10241">Algorithmic Design and Techniques</a> from <em>University of California, San Diego</em>  ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-data-structures-fundamentals-10246">Data Structures Fundamentals</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-graph-algorithms-10247">Graph Algorithms</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-string-processing-and-pattern-matching-algorithms-10248">String Processing and Pattern Matching Algorithms</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-dynamic-programming-applications-in-machine-learning-and-genomics-10249">Dynamic Programming: Applications In Machine Learning and Genomics</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-graph-algorithms-in-genome-sequencing-10250">Graph Algorithms in Genome Sequencing</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-np-complete-problems-10275">NP-Complete Problems</a> from <em>University of California, San Diego</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/purduex-quantum-technology-computing-21978"><strong>Quantum Technology: Computing</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-to-quantum-science-technology-20291">Introduction to Quantum Science &amp; Technology</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-quantum-detectors-21184">Quantum Detectors</a> from <em>Purdue University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/purduex-quantum-technology-detectors-and-networki-21980"><strong>Quantum Technology: Detectors and Networking</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-quantum-detectors-and-sensors-21181">Quantum Detectors and Sensors</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-quantum-networking-21182">Quantum Networking</a> from <em>Purdue University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/curtinx-internet-of-things-iot-18336"><strong>Internet of Things (IoT)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-iot-networks-and-protocols-9752">IoT Networks and Protocols</a> from <em>Curtin University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-iot-programming-and-big-data-9753">IoT Programming and Big Data</a> from <em>Curtin University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-cybersecurity-and-privacy-in-the-iot-9754">Cybersecurity and Privacy in the IoT</a> from <em>Curtin University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-iot-capstone-project-9755">IoT Capstone Project</a> from <em>Curtin University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/iux-information-systems-18299"><strong>Information Systems</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-enterprise-data-management-13169">Enterprise Data Management</a> from <em>Indiana University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-digital-technology-and-innovation-13170">Digital Technology and Innovation</a> from <em>Indiana University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-digital-ecosystem-infrastructure-13171">Digital Ecosystem Infrastructure</a> from <em>Indiana University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/iux-information-systems-110667"><strong>Information Systems</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-enterprise-data-management-13169">Enterprise Data Management</a> from <em>Indiana University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-digital-technology-and-innovation-13170">Digital Technology and Innovation</a> from <em>Indiana University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/platform-based-analytics-2-104399">Platform-Based Analytics</a> from <em>Indiana University</em></li>
</ul>
<h3 id="heading-microbachelors">MicroBachelors</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/nyux-programming-data-structures-21976"><strong>Programming &amp; Data Structures</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-to-programming-in-c-21424">Introduction to Programming in C++</a> from <em>New York University (NYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-advanced-programming-in-c-21425">Advanced Programming in C++</a> from <em>New York University (NYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-to-data-structures-21427">Introduction to Data Structures</a> from <em>New York University (NYU)</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/nyux-computer-science-fundamentals-21949"><strong>Computer Science Fundamentals</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-basics-of-computing-and-programming-17997">Basics of Computing and Programming</a> from <em>New York University (NYU)</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-computer-hardware-and-operating-systems-17998">Computer Hardware and Operating Systems</a> from <em>New York University (NYU)</em> ★★★★★(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-to-networking-17999">Introduction to Networking</a> from <em>New York University (NYU)</em> ★★★★☆(16)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/wgux-introduction-to-information-technology-21955"><strong>Introduction to Information Technology</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-information-technology-foundations-17970">Information Technology Foundations</a> from <em>Western Governors University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-network-and-security-foundations-17971">Network and Security Foundations</a> from <em>Western Governors University</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-scripting-and-programming-foundations-17972">Scripting and Programming Foundations</a> from <em>Western Governors University</em></li>
</ul>
<h2 id="heading-health-amp-medicine">Health &amp; Medicine</h2>
<h3 id="heading-masters-degrees-1">Master's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/michigan-master-public-health-20894"><strong>Master of Public Health</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/what-makes-an-effective-presentation-13767">What Makes an Effective Presentation?</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/perspectives-on-entrepreneurship-13768">Perspectives on Entrepreneurship</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-strategy-19054">Strategy as a Process and Measures of Success: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-evolution-of-management-19074">The Evolution of Management and Leadership Theory</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-international-human-resources-man-20381">International Human Resources Management: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-international-logistics-20382">International Logistics: An Introduction</a> from <em>Coventry University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/report-writing-university-workplace-20383">Report Writing at University and in the Workplace</a> from <em>Coventry University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/pursuing-a-career-abroad-20384">International Career Development: Pursuing A Career Abroad</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-management-national-organisational-cultu-20385">Business Management: National and Organisational Cultures</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/imperial-master-public-health-20893"><strong>Global Master of Public Health (GMPH)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/logistic-regression-r-public-health-13075">Logistic Regression in R for Public Health</a> from <em>Imperial College London</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/survival-analysis-r-public-health-13076">Survival Analysis in R for Public Health</a> from <em>Imperial College London</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/linear-regression-r-public-health-13077">Linear Regression in R for Public Health</a>  from <em>Imperial College London</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-statistics-data-analysis-pu-13079">Introduction to Statistics &amp; Data Analysis in Public Health</a> from <em>Imperial College London</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/measuring-disease-epidemiology-13260">Measuring Disease in Epidemiology</a> from <em>Imperial College London</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/study-designs-epidemiology-13261">Study Designs in Epidemiology</a> from <em>Imperial College London</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/validity-bias-epidemiology-13262">Validity and Bias in Epidemiology</a> from <em>Imperial College London</em> ★★★★★(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-master-nursing-20926"><strong>MSc Nursing</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/nursing-in-crisis-9676">Nursing in Crisis? Exploring Current Challenges</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/healthcare-research-9677">Healthcare Research: For Healthcare Professionals</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/principles-of-physical-health-assessment-11905">An Introduction to Physical Health Assessment</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nursing-and-public-health-11906">Could You Be the Next Florence Nightingale?</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-long-term-conditions-12374">Nursing and Long-term Conditions: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leadership-service-improvement-7003cpd-01-12393">Service Improvement in Healthcare</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-and-challenging-evidence-based-prac-13189">Understanding and Challenging Evidence-based Practice</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/learning-theory-for-nursing-an-introduction-13190">Learning Theory for Nursing: An Introduction</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/glasgow-university-master-end-of-life-studies-20923"><strong>MSc End of Life Studies</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/end-of-life-care-16932">End of Life Care: Challenges and Innovation</a> from <em>University of Glasgow</em> ★★★★★(145)</li>
</ul>
<h3 id="heading-bachelors-degrees-1">Bachelor's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/murdoch-university-grad-cert-one-health-22406"><strong>One Health Graduate Certificate</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/global-biosecurity-11786">Global Biosecurity for One Health</a> from <em>Murdoch University</em> ★★★★★(1)</li>
</ul>
<h3 id="heading-micromasters-1">MicroMasters</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/doanex-healthcare-administration-18343"><strong>Healthcare Administration</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-healthcare-organization-and-delivery-models-11545">Healthcare Organization and Delivery Models</a> from <em>Doane University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-health-informatics-and-technology-in-decision-making-11546">Health Informatics and Technology in Decision Making</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-vulnerable-populations-11547">Vulnerable Populations</a> from <em>Doane University</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-healthcare-finance-economics-and-risk-11548">Healthcare Finance, Economics and Risk</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-health-law-policy-and-advocacy-11549">Health Law, Policy, and Advocacy</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-organizational-culture-and-change-in-healthcare-11550">Organizational Culture and Change in Healthcare</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-strategic-leadership-in-healthcare-11551">Strategic Leadership in Healthcare</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-healthcare-administration-comprehensive-exam-11552">Healthcare Administration Comprehensive Exam</a> from <em>Doane University</em> ★★★★★(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/doanex-certified-lifestyle-medicine-executive-18344"><strong>Certified Lifestyle Medicine Executive</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-essentials-of-lifestyle-medicine-and-population-health-11347">Essentials of Lifestyle Medicine and Population Health</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-healthcare-finance-economics-and-risk-11548">Healthcare Finance, Economics and Risk</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-population-health-disease-prevention-and-management-11561">Population Health: Disease Prevention and Management</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-u-s-healthcare-systems-11562">U.S. Healthcare Systems</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-health-informatics-technology-in-population-healthcare-analytics-11563">Health Informatics Technology in Population Healthcare Analytics</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-principles-of-health-law-and-regulatory-issues-11564">Principles of Health Law and Regulatory Issues</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-fundamentals-of-advocacy-in-health-policy-11565">Fundamentals of Advocacy in Health Policy</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-applying-leadership-and-strategy-fundamentals-in-healthcare-11566">Applying Leadership and Strategy Fundamentals in Healthcare</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leading-organizational-change-in-healthcare-11567">Leading Organizational Change in Healthcare</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-certified-lifestyle-medicine-executive-comprehensive-exam-11832">Certified Lifestyle Medicine Executive Comprehensive Exam</a> from <em>Doane University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/doanex-healthcare-administration-94871"><strong>Healthcare Administration</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-healthcare-administration-comprehensive-exam-11552">Healthcare Administration Comprehensive Exam</a> from <em>Doane University</em> ★★★★★(1)</li>
</ul>
<h3 id="heading-microbachelors-1">MicroBachelors</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/snhux-anatomy-and-physiology-essentials-91969"><strong>Anatomy and Physiology Essentials</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/human-anatomy-physiology-i-66421">Human Anatomy and Physiology I</a> from <em>Southern New Hampshire University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/human-anatomy-and-physiology-ii-66422">Human Anatomy and Physiology II</a> from <em>Southern New Hampshire University</em></li>
</ul>
<h2 id="heading-mathematics">Mathematics</h2>
<h3 id="heading-microbachelors-2">MicroBachelors</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/lse-mathematics-and-statistics-fundamentals-104370"><strong>Mathematics and Statistics Fundamentals</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/mathematics-and-statistics-fundamentals-proctored-104340">Mathematics and Statistics Fundamentals Proctored Exam</a> from <em>London School of Economics and Political Science</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/statistics-1-part-1-104342">Statistics 1 Part 1: Introductory statistics, probability and estimation</a> from <em>London School of Economics and Political Science</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/statistics-1-part-2-104344">Statistics 1 Part 2: Statistical Methods</a> from <em>London School of Economics and Political Science</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/maths-1a-104349">Mathematics 1 Part 1: Differential Calculus</a> from <em>London School of Economics and Political Science</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/maths-1b-104350">Mathematics 1 Part 2: Integral calculus, algebra, and applications</a> from <em>London School of Economics and Political Science</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/lse-statistics-fundamentals-104371"><strong>Statistics Fundamentals</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/statistics-2-part-2-104341">Statistics 2 Part 2: Statistical Inference</a> from <em>London School of Economics and Political Science</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/statistics-1-part-1-104342">Statistics 1 Part 1: Introductory statistics, probability and estimation</a> from <em>London School of Economics and Political Science</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/statistics-2-part-1-104343">Statistics 2 Part 1: Probability and Distribution Theory</a> from <em>London School of Economics and Political Science</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/statistics-1-part-2-104344">Statistics 1 Part 2: Statistical Methods</a> from <em>London School of Economics and Political Science</em></li>
</ul>
<h2 id="heading-business">Business</h2>
<h3 id="heading-masters-degrees-2">Master's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/illinois-master-management-20803"><strong>Master of Science in Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/processimprovement-2740">Process Improvement</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/acctcostanalysis-2751">Managerial Accounting: Cost Behaviors, Systems, and Analysis</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategy-business-5242">Business Strategy</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(19)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/everyday-leadership-foundation-5251">Foundations of Everyday Leadership</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategy-corporate-5252">Corporate Strategy</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketing-management-two-6761">Developing a Marketing Mix for Growth</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/operations-management-12255">Operations and Supply Chain Decisions and Metrics</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-finance-the-basics-21190">Introduction to Finance: The Basics</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-finance-the-role-of-financial-mar-21582">Introduction to Finance: The Role of Financial Markets</a> from <em>University of Illinois at Urbana-Champaign</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/illinois-master-accounting-20805"><strong>Online Master's of Accounting (iMSA)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/accounting-information-system-8732">Accounting Analysis I: The Role of Accounting as an Information System</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/asset-measurement-disclosure-8933">Accounting Analysis I: Measurement and Disclosure of Assets</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/federal-taxation-individuals-9049">Federal Taxation I: Individuals, Employees, and Sole Proprietors</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/accounting-analysis-2-liabilities-9113">Accounting Analysis II: Measurement and Disclosure of Liabilities</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/accounting-analysis-2-equity-9114">Accounting Analysis II: Accounting for Liabilities and Equity</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/federal-taxation-business-9445">Federal Taxation II: Property Transactions of Business Owners and Shareholders</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/taxation-business-entities-part-1-9682">Taxation of Business Entities I: Corporations</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/us-federal-tax-capstone-9683">U.S. Federal Taxation Capstone</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/taxation-business-entities-part-2-9684">Taxation of Business Entities II: Pass-Through Entities</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/financial-reporting-capstone-10233">Financial Reporting Capstone</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/auditing-part1-conceptual-foundations-11798">Auditing I: Conceptual Foundations of Auditing</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/auditing-part2-the-practice-12151">Auditing II: The Practice of Auditing</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(2)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/illinois-imba-20806"><strong>Master of Business Administration (iMBA)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/corporate-finance-copy-2742">Corporate Finance I: Measuring and Promoting Value Creation</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketing-channels-2748">Digital Media and Marketing Principles</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketing-plan-2749">Digital Media and Marketing Strategies</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/dmdigitalworld-2750">Marketing in a Digital World</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(469)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/acctcostanalysis-2751">Managerial Accounting: Cost Behaviors, Systems, and Analysis</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/acctplanning-2752">Managerial Accounting: Tools for Facilitating and Guiding Business Decisions</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/dmanalyticstheory-2753">Digital Marketing Analytics in Theory</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(35)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/dmanalyticspractice-2754">Digital Marketing Analytics in Practice</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(24)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-marketing-capstone-5086">Digital Marketing Capstone</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategy-business-5242">Business Strategy</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(19)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-statistics-5243">Inferential and Predictive Statistics for Business</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/country-level-economics-5244">Country Level Economics: Macroeconomic Variables and Markets</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/firm-level-economics-5246">Firm Level Economics: Consumer and Producer Behavior</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/firm-level-economics-markets-5247">Firm Level Economics: Markets and Allocations</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/designing-organization-5249">Designing the Organization</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/everyday-leadership-application-5250">Applications of Everyday Leadership</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/everyday-leadership-foundation-5251">Foundations of Everyday Leadership</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategy-corporate-5252">Corporate Strategy</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/managing-organization-5253">Managing the Organization</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/managerial-economics-capstone-5256">Managerial Economics and Business Analysis Capstone</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategic-leadership-capstone-5257">Strategic Leadership and Management Capstone</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/country-level-economics-policies-5404">Country Level Economics: Policies, Institutions, and Macroeconomic Performance</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-data-5757">Exploring and Producing Data for Business Decision Making</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/financial-accounting-basics-6749">Financial Accounting: Foundations</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/financial-accounting-advanced-6753">Financial Accounting: Advanced Topics</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/investments-fundamentals-6754">Investments I: Fundamentals of Performance Evaluation</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/investments-applications-6756">Investments II: Lessons and Applications for Investors</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/corporate-finance-two-6758">Corporate Finance II: Financing Investments and Managing Risk</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketing-management-6759">Developing a Winning Marketing Strategy</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketing-management-two-6761">Developing a Marketing Mix for Growth</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/value-chain-capstone-6763">Value Chain Management Capstone</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/financial-management-capstone-6764">Financial Management Capstone</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategic-innovation-building-and-sustai-8321">Strategic Innovation: Building and Sustaining Innovative Organizations</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/subsistence-marketplaces-1-8323">Sustainable Innovation for Subsistence Marketplaces</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainable-business-enterprises-8464">Sustainable Business Enterprises</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategic-innovation-innovation-at-the-f-8490">Strategic Innovation: Managing Innovation Initiatives</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-strategy-8585">Global Strategy I: How The Global Economy Works</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/creativity-toolkit-1-8605">Creativity Toolkit I: Changing Perspectives</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-strategy-two-8688">Global Strategy II: Doing Business in The Global Economy</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/creativity-toolkit-2-8735">Creativity Toolkit II: Creative Collaboration</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepreneurship-1-9047">Entrepreneurship I: Laying the Foundation</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cultural-psychology-globalization-9048">Global Impact: Cultural Psychology</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-ethics-9084">Global Impact: Business Ethics</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepreneurship-2-9196">Entrepreneurship II: Preparing for Launch</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/innovation-creativity-entrepreneurship-c-9197">Innovation: From Creativity to Entrepreneurship Capstone</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketing-analog-9198">Marketing in an Analog World</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-challenges-business-capstone-9662">Global Challenges in Business Capstone</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/operations-management-12255">Operations and Supply Chain Decisions and Metrics</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/process-improvement-12256">Process Improvement</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/intro-business-analytics-12295">Introduction to Business Analytics: Communicating with Data</a>  from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/applying-data-analytics-business-in-mark-16865">Applying Data Analytics in Marketing</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-analytics-r-19233">Introduction to Business Analytics with R</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tools-exploratory-data-analysis-business-41006">Tools for Exploratory Data Analysis in Business</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/machine-learning-algorithms-r-business-analytics-45196">Machine Learning Algorithms with R in Business Analytics</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-marketing-revolution-54370">The Digital Marketing Revolution</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(279)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/applying-data-analytics-accounting-58064">Applying Data Analytics in Accounting</a> from <em>University of Illinois at Urbana-Champaign</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/arizona-state-master-supply-chain-management-20598"><strong>Master’s Degree in Supply Chain Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chain-fundamentals-2140">Supply Chain Fundamentals</a> from <em>Massachusetts Institute of Technology</em> ★★★★★(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chain-design-4067">Supply Chain Design</a> from <em>Massachusetts Institute of Technology</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chain-dynamics-4807">Supply Chain Dynamics</a> from <em>Massachusetts Institute of Technology</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chain-technology-and-systems-6366">Supply Chain Technology and Systems</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chain-analytics-6367">Supply Chain Analytics</a> from <em>Massachusetts Institute of Technology</em> ★★★☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chain-comprehensive-exam-8479">Supply Chain Comprehensive Exam</a> from <em>Massachusetts Institute of Technology</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/queensland-university-master-leadership-20594"><strong>Master’s Degree in Leadership: Service Innovation</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-becoming-an-effective-leader-9178">Becoming an Effective Leader</a> from <em>University of Queensland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leading-the-organization-9179">Leading the Organization</a> from <em>University of Queensland</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leading-high-performing-teams-9182">Leading High-Performing Teams</a> from <em>University of Queensland</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leading-in-a-complex-environment-9184">Leading in a Complex Environment</a> from <em>University of Queensland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-business-leadership-capstone-assessment-9187">Business Leadership Capstone Assessment</a> from <em>University of Queensland</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-mba-ai-22690"><strong>Master of Business Administration (Artificial Intelligence)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/business-environment-10587">The Global Business Environment: Evolution and Dynamics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-model-thinking-10588">Business Model Thinking</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-financial-statements-11891">Understanding Financial Statements</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-organisational-behaviour-11892">An Introduction to Organisational Behaviour: How to Understand Your People</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/uncovering-your-entrepreneurial-potential-sc-12372">Uncovering Your Entrepreneurial Potential</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/defining-global-marketing-12373">Global Marketing: A Definition</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-leadership-theory-13202">Leadership Theory: The Basics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/macro-environmental-analysis-and-business-strateg-13603">Macro Environmental Analysis and Business Strategy: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ai-technologies-business-planning-17057">Using Artificial Intelligence (AI) Technologies for Business Planning and Decision-making</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/artificial-intelligence-fact-fiction-17058">Artificial Intelligence: Distinguishing Between Fact and Fiction</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-master-management-20914"><strong>MA Management (Advanced Standing)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/academic-research-methodology-22834">Academic Research Methodology for Master’s Students</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-mba-20915"><strong>Master of Business Administration</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/business-environment-10587">The Global Business Environment: Evolution and Dynamics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-model-thinking-10588">Business Model Thinking</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-financial-statements-11891">Understanding Financial Statements</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-organisational-behaviour-11892">An Introduction to Organisational Behaviour: How to Understand Your People</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/uncovering-your-entrepreneurial-potential-sc-12372">Uncovering Your Entrepreneurial Potential</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/defining-global-marketing-12373">Global Marketing: A Definition</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-ratio-analysis-12733">Ratio Analysis</a> from <em>New York Institute of Finance</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-leadership-theory-13202">Leadership Theory: The Basics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/macro-environmental-analysis-and-business-strateg-13603">Macro Environmental Analysis and Business Strategy: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/decision-making-and-risk-13770">Decision-making and Risk: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/foundations-of-project-management-13777">Foundations of Project Management</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/swayam-decision-making-under-uncertainty-13987">Decision-Making Under Uncertainty</a> from <em>NPTEL</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-master-business-psychology-20916"><strong>MSc Business and Organisational Psychology</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/emotional-intelligence-at-work-11656">Emotional Intelligence at Work</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-assessment-of-people-at-work-11657">An Introduction to the Assessment of People at Work</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/consumer-behaviour-and-psychology-12375">Consumer Behaviour and Psychology</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leaders-role-impact-12376">Leaders: Their Role and Impact on Business</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-engagement-and-motivation-at-work-13193">Employee Engagement and Motivation: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-work-and-wellbeing-at-work-13194">Wellbeing at Work: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/systematic-literature-review-13771">Systematic Literature Review: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/training-development-work-13772">Training and Development at Work: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/work-life-balance-and-the-impact-of-remote-workin-19279">Work-Life Balance and the Impact of Remote Working</a> from <em>Coventry University</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/motivation-engagement-19333">[New] Motivation and Engagement in an Uncertain World</a> from <em>Coventry University</em> ★★★☆☆(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-master-global-logistics-20924"><strong>MSc Global Logistics</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainability-and-green-logistics-an-introductio-13783">Sustainability and Green Logistics: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/principles-global-management-logistics-assets-13784">Principles of Global Logistics Management</a> from <em>Coventry University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/what-is-economics-in-the-world-of-global-logistic-17061">[New] What is Economics in Global Logistics?</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/simulation-for-logistics-an-introduction-17062">Simulation for Logistics: An Introduction</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-mba-global-human-resources-22392"><strong>MBA International Human Resource Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-leadership-theory-13202">Leadership Theory: The Basics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/macro-environmental-analysis-and-business-strateg-13603">Macro Environmental Analysis and Business Strategy: An Introduction</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-mba-cyber-security-22691"><strong>Master of Business Administration (Cyber Security Management)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/business-environment-10587">The Global Business Environment: Evolution and Dynamics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-model-thinking-10588">Business Model Thinking</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-financial-statements-11891">Understanding Financial Statements</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-organisational-behaviour-11892">An Introduction to Organisational Behaviour: How to Understand Your People</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/uncovering-your-entrepreneurial-potential-sc-12372">Uncovering Your Entrepreneurial Potential</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/defining-global-marketing-12373">Global Marketing: A Definition</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-leadership-theory-13202">Leadership Theory: The Basics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/macro-environmental-analysis-and-business-strateg-13603">Macro Environmental Analysis and Business Strategy: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cyber-security-landscape-13775">The Cyber Security Landscape</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/network-defence-management-overview-13776">Network Defence Management Overview</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-mba-health-care-22692"><strong>Master of Business Administration (Health Care Sector)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/business-environment-10587">The Global Business Environment: Evolution and Dynamics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-model-thinking-10588">Business Model Thinking</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-financial-statements-11891">Understanding Financial Statements</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-organisational-behaviour-11892">An Introduction to Organisational Behaviour: How to Understand Your People</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/uncovering-your-entrepreneurial-potential-sc-12372">Uncovering Your Entrepreneurial Potential</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/defining-global-marketing-12373">Global Marketing: A Definition</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-leadership-theory-13202">Leadership Theory: The Basics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/macro-environmental-analysis-and-business-strateg-13603">Macro Environmental Analysis and Business Strategy: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/policy-formulation-and-analysis-in-healthcare-20377">Policy Formulation and Analysis in Healthcare</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-systems-thinking-in-healthcare-20378">Understanding Systems Thinking in Healthcare</a> from <em>Coventry University</em> ★★★★★(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-mba-marketing-22693"><strong>Master of Business Administration (Marketing)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/business-environment-10587">The Global Business Environment: Evolution and Dynamics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-model-thinking-10588">Business Model Thinking</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-financial-statements-11891">Understanding Financial Statements</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-organisational-behaviour-11892">An Introduction to Organisational Behaviour: How to Understand Your People</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/uncovering-your-entrepreneurial-potential-sc-12372">Uncovering Your Entrepreneurial Potential</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/defining-global-marketing-12373">Global Marketing: A Definition</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-leadership-theory-13202">Leadership Theory: The Basics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/macro-environmental-analysis-and-business-strateg-13603">Macro Environmental Analysis and Business Strategy: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategic-marketing-22100">Strategic Marketing: Marketing Orientation and the Marketing Planning Process</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/beginning-your-digital-marketing-journey-22101">Get Started With Digital Marketing</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-mba-sustainable-tourism-22694"><strong>Master of Business Administration (Sustainable Tourism)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/business-environment-10587">The Global Business Environment: Evolution and Dynamics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-model-thinking-10588">Business Model Thinking</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-financial-statements-11891">Understanding Financial Statements</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-organisational-behaviour-11892">An Introduction to Organisational Behaviour: How to Understand Your People</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/uncovering-your-entrepreneurial-potential-sc-12372">Uncovering Your Entrepreneurial Potential</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/defining-global-marketing-12373">Global Marketing: A Definition</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-leadership-theory-13202">Leadership Theory: The Basics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/macro-environmental-analysis-and-business-strateg-13603">Macro Environmental Analysis and Business Strategy: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/overtourism-20379">Overtourism</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-impacts-of-tourism-20380">The Impacts of Tourism</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/deakin-university-master-leadership-20913"><strong>Masters Degree in Leadership</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/what-is-leadership-8587">What is Leadership?</a> from <em>Deakin University</em> ★★★★★(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/macquarie-university-mba-20808"><strong>Global Master of Business Administration (GMBA)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/visionary-leadership-meaning-maker-12168">Visionary leadership, identity &amp; motivation: Become a meaning maker</a> from <em>Macquarie University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leadership-adapt-your-style-12172">Adapt your leadership style</a> from <em>Macquarie University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/hec-master-innovation-entrepreneurship-20802"><strong>MSc in Innovation and Entrepreneurship</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/leadership-skills-7752">Building Your Leadership Skills</a> from <em>HEC Paris</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepreneurship-strategy-9448">Entrepreneurship Strategy: From Ideation to Exit</a> from <em>HEC Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/organizing-for-innovation-9624">Organizing for Innovation</a> from <em>HEC Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/organizational-design-management-13123">Organizational Design and Management</a> from <em>HEC Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategic-management-of-innovation-13124">Strategic Management of Innovation</a> from <em>HEC Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/boosting-creativity-innovation-13125">Boosting Creativity for Innovation</a> from <em>HEC Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/managing-innovation-design-thinking-18900">Managing Innovation and Design Thinking</a> from <em>HEC Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/socialentrepreneurship-21587">Social Entrepreneurship and Changemaking</a> from <em>HEC Paris</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/indiana-university-master-accounting-20603"><strong>Master’s Degree in Accounting</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-financial-reporting-i-13787">Financial Reporting I</a> from <em>Indiana University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-managerial-accounting-and-corporate-control-13788">Managerial Accounting and Corporate Control</a> from <em>Indiana University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-taxes-and-decision-making-13789">Taxes and Decision Making</a> from <em>Indiana University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/fundacao-instituto-administracao-mba-48053"><strong>Master of Business Administration</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/leadership-and-disruption-40314">Leadership and Disruption</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/macroeconomics-for-business-management-43769">Macroeconomics for Business Management</a> from <em>Fundação Instituto de Administração</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/anglia-ruskin-university-master-project-management-20927"><strong>MSc Project Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/project-management-principles-practices-systems-13132">Project Management Principles, Practices and Systems</a> from <em>Anglia Ruskin University</em></li>
</ul>
<h3 id="heading-bachelors-degrees-2">Bachelor's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/open-university-grad-cert-human-resources-22385"><strong>PgC Human Resource Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/challenges-in-human-resource-management-19606">Challenges in Human Resource Management</a> from <em>The Open University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/open-university-grad-cert-development-management-22407"><strong>PgC Global Development Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-global-development-management-14525">Understanding Global Development Management</a> from <em>The Open University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/deakin-coventry-grad-cert-entrepreneurship-22386"><strong>Graduate Certificate in Entrepreneurship</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/demystifying-entrepreneurship-12454">Demystifying Entrepreneurship: How to Think Like an Entrepreneur</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/investigating-innovation-13063">Investigating Innovation</a> from <em>Deakin University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leading-strategic-innovation-13327">Leading Strategic Innovation: How to Lead with Purpose</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/measuring-entrepreneurial-impact-13434">Measuring Entrepreneurial Impact</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-bachelor-global-business-22381"><strong>BA International Business (Top Up)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/what-makes-an-effective-presentation-13767">What Makes an Effective Presentation?</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/perspectives-on-entrepreneurship-13768">Perspectives on Entrepreneurship</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-strategy-19054">Strategy as a Process and Measures of Success: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-evolution-of-management-19074">The Evolution of Management and Leadership Theory</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-international-human-resources-man-20381">International Human Resources Management: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-international-logistics-20382">International Logistics: An Introduction</a> from <em>Coventry University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/report-writing-university-workplace-20383">Report Writing at University and in the Workplace</a> from <em>Coventry University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/pursuing-a-career-abroad-20384">International Career Development: Pursuing A Career Abroad</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-management-national-organisational-cultu-20385">Business Management: National and Organisational Cultures</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/globalisation-in-business-22152">Globalisation in Business: International Business and Global Market Entry Strategies</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-transformation-e-commerce-22159">Introduction to Digital Transformation and E-Commerce</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-bachelor-management-leadership-22382"><strong>BA Management and Leadership</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/harnessing-the-power-of-data-20990">Harnessing the Power Of Data: Introduction to Data-Driven Decision-Making</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/royal-holloway-london-bachelor-marketing-48052"><strong>Bachelor of Science in Marketing</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/explore-management-concepts-through-metaphor-and--45954">Explore Management Concepts through Metaphor and Music</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-sustainability-circular-economy-54333">Business Sustainability in the Circular Economy</a> from <em>University of London</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/murdoch-university-grad-cert-health-admin-policy-22387"><strong>Graduate Certificate in Health Administration, Policy and Leadership</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/healthy-futures-10605">Healthy Futures: How Can We Create the Most Effective Healthcare System?</a> from <em>Murdoch University</em></li>
</ul>
<h3 id="heading-micromasters-2">MicroMasters</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/columbiax-business-analytics-18330"><strong>Business Analytics</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-demand-and-supply-analytics-8206">Demand and Supply Analytics</a> from <em>Columbia University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-analytics-in-python-8210">Analytics in Python</a> from <em>Columbia University</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-data-models-and-decisions-in-business-analytics-8218">Data, Models and Decisions in Business Analytics</a> from <em>Columbia University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/iimbx-business-management-18314"><strong>Business Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-operations-management-3641">Operations Management</a> from <em>Indian Institute of Management Bangalore</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-accounting-for-decision-making-7276">Accounting for Decision-Making</a> from <em>Indian Institute of Management Bangalore</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/hkpolyux-international-hospitality-management-18309"><strong>International Hospitality Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-luxury-management-7302">Luxury Management</a> from <em>Hong Kong Polytechnic University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-innovation-and-technology-management-in-tourism-and-hospitality-7324">Innovation and Technology Management in Tourism and Hospitality</a> from <em>Hong Kong Polytechnic University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-managing-marketing-in-the-hospitality-and-tourism-industry-7332">Managing Marketing in the Hospitality and Tourism Industry</a> from <em>Hong Kong Polytechnic University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-managing-human-resources-in-the-hospitality-and-tourism-industry-7335">Managing Human Resources in the Hospitality and Tourism Industry</a> from <em>Hong Kong Polytechnic University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/mitx-finance-18293"><strong>Finance</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-foundations-of-modern-finance-i-18037">Foundations of Modern Finance I</a> from <em>Massachusetts Institute of Technology</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-foundations-of-modern-finance-ii-18039">Foundations of Modern Finance II</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-mathematical-methods-for-quantitative-finance-18041">Mathematical Methods for Quantitative Finance</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-derivatives-markets-advanced-modeling-and-strategies-18042">Derivatives Markets: Advanced Modeling and Strategies</a> from <em>Massachusetts Institute of Technology</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/mitx-supply-chain-management-18308"><strong>Supply Chain Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chain-fundamentals-2140">Supply Chain Fundamentals</a> from <em>Massachusetts Institute of Technology</em> ★★★★★(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chain-design-4067">Supply Chain Design</a> from <em>Massachusetts Institute of Technology</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chain-dynamics-4807">Supply Chain Dynamics</a> from <em>Massachusetts Institute of Technology</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chain-technology-and-systems-6366">Supply Chain Technology and Systems</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chain-analytics-6367">Supply Chain Analytics</a> from <em>Massachusetts Institute of Technology</em> ★★★☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chain-comprehensive-exam-8479">Supply Chain Comprehensive Exam</a> from <em>Massachusetts Institute of Technology</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/ubcx-business-fundamentals-18335"><strong>Business Fundamentals</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-business-foundations-9170">Business Foundations</a> from <em>The University of British Columbia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-business-communications-9171">Business Communications</a> from <em>The University of British Columbia</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-organizational-behaviour-9176">[New] Organizational Behaviour</a> from <em>The University of British Columbia</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-to-accounting-9177">[New] Introduction to Accounting</a> from <em>The University of British Columbia</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/thunderbirdx-global-business-leadership-and-manag-18294"><strong>Global Business Leadership and Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-communicating-and-negotiating-in-a-dynamic-global-world-16918">Communicating and Negotiating in a Dynamic Global World</a> from <em>Arizona State University</em> ★★★★★(18)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leading-digital-and-data-decision-making-16919">Leading Digital and Data Decision Making</a> from <em>Arizona State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-global-leadership-and-personal-development-16920">Global Leadership and Personal Development</a> from <em>Arizona State University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/uqx-business-leadership-18333"><strong>Business Leadership</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-becoming-an-effective-leader-9178">Becoming an Effective Leader</a> from <em>University of Queensland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leading-the-organization-9179">Leading the Organization</a> from <em>University of Queensland</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leading-high-performing-teams-9182">Leading High-Performing Teams</a> from <em>University of Queensland</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leading-in-a-complex-environment-9184">Leading in a Complex Environment</a> from <em>University of Queensland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-business-leadership-capstone-assessment-9187">Business Leadership Capstone Assessment</a> from <em>University of Queensland</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/uqx-corporate-innovation-18338"><strong>Corporate Innovation</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-design-thinking-and-creativity-for-innovation-10277">Design Thinking and Creativity for Innovation</a> from <em>University of Queensland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-idea-development-create-and-implement-innovative-ideas-10289">Idea Development: Create and Implement Innovative Ideas</a> from <em>University of Queensland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-innovation-from-plan-to-product-10295">Innovation: From Plan to Product</a> from <em>University of Queensland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-creating-and-sustaining-an-innovation-culture-10301">Creating and Sustaining an Innovation Culture</a> from <em>University of Queensland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-corporate-innovation-capstone-assessment-10306">Corporate Innovation Capstone Assessment</a> from <em>University of Queensland</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/bux-digital-product-management-18328"><strong>Digital Product Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-driving-digital-innovation-through-experimentation-8207">Driving Digital Innovation through Experimentation</a> from <em>Boston University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-strategic-social-media-marketing-8212">Strategic Social Media Marketing</a> from <em>Boston University</em> ★★★★☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-business-analytics-for-data-driven-decision-making-8215">Business Analytics for Data-Driven Decision Making</a> from <em>Boston University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-product-management-with-lean-agile-and-system-design-thinking-8219">Product Management with Lean, Agile and System Design Thinking</a> from <em>Boston University</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-platform-strategy-for-business-8220">Platform Strategy for Business</a> from <em>Boston University</em> ★★★★★(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/bux-digital-leadership-18329"><strong>Digital Leadership</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-driving-digital-innovation-through-experimentation-8207">Driving Digital Innovation through Experimentation</a> from <em>Boston University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-digital-transformation-strategy-8208">Digital Transformation Strategy</a> from <em>Boston University</em> ★★★☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leading-in-the-digital-age-8211">Leading in the Digital Age</a> from <em>Boston University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-business-analytics-for-data-driven-decision-making-8215">Business Analytics for Data-Driven Decision Making</a> from <em>Boston University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-platform-strategy-for-business-8220">Platform Strategy for Business</a> from <em>Boston University</em> ★★★★★(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/bux-digital-transformation-leadership-48039"><strong>Digital Transformation Leadership</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-digital-transformation-strategy-8208">Digital Transformation Strategy</a> from <em>Boston University</em> ★★★☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leading-in-the-digital-age-8211">Leading in the Digital Age</a> from <em>Boston University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-business-analytics-for-data-driven-decision-making-8215">Business Analytics for Data-Driven Decision Making</a> from <em>Boston University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-product-management-with-lean-agile-and-system-design-thinking-8219">Product Management with Lean, Agile and System Design Thinking</a> from <em>Boston University</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-platform-strategy-for-business-8220">Platform Strategy for Business</a> from <em>Boston University</em> ★★★★★(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/iimbx-entrepreneurship-18313"><strong>Entrepreneurship</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-do-your-venture-entrepreneurship-for-everyone-6358">DO Your Venture: Entrepreneurship For Everyone</a> from <em>Indian Institute of Management Bangalore</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-accounting-and-finance-7273">Accounting and Finance</a> from <em>Indian Institute of Management Bangalore</em> ★★★★★(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/USMx-UMD-MBA-Core-Curriculum-18345"><strong>MBA Core Curriculum</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leadership-and-influence-11672">Leadership and Influence</a> from <em>University System of Maryland</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-data-analysis-for-decision-making-11673">Data Analysis for Decision Making</a> from <em>University System of Maryland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-digital-transformation-in-business-11674">Digital Transformation in Business</a> from <em>University System of Maryland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-global-business-strategy-11676">Global Business Strategy</a> from <em>University System of Maryland</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/upvalenciax-liderazgo-y-trabajo-en-equipo-en-grup-18316"><strong>Liderazgo y trabajo en equipo en grupos de mejora continua</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-como-implantar-grupos-de-mejora-de-procesos-2959">Cómo implantar grupos de mejora de procesos</a> from <em>Universitat Politècnica de València</em> ★★★★★(33)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-gestion-participativa-motivacion-y-liderazgo-organizacional-3606">Gestión participativa: motivación y liderazgo organizacional</a> from <em>Universitat Politècnica de València</em> ★★★★★(40)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-liderazgo-para-mandos-intermedios-7232">Liderazgo para mandos intermedios</a> from <em>Universitat Politècnica de València</em> ★★★★★(71)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-como-diagnosticar-mis-competencias-de-innovacion-7233">Cómo diagnosticar mis competencias de innovación</a> from <em>Universitat Politècnica de València</em> ★★★★★(23)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/tecdemonterreyx-innovacion-y-emprendimiento-18346"><strong>Innovación y emprendimiento</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-liderazgo-en-la-empresa-familiar-11338">Liderazgo en la empresa familiar</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-fundamentos-del-emprendimiento-en-la-empresa-familiar-11386">Fundamentos del emprendimiento en la empresa familiar</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-mentalidad-emprendedora-17204">Mentalidad Emprendedora</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-innovacion-y-creatividad-organizacional-17208">Innovación y creatividad organizacional</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-diseno-e-innovacion-de-modelo-de-negocios-17209">Diseño e innovación de modelo de negocios</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-emprendimiento-corporativo-17210">Emprendimiento Corporativo</a> from <em>Tecnológico de Monterrey</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/tecdemonterreyx-innovation-entrepreneurship-21974"><strong>Innovation &amp; Entrepreneurship</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leadership-in-the-family-business-17377">Leadership in the family business</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-fundamentals-of-entrepreneurship-in-the-family-business-17378">Fundamentals of Entrepreneurship in the Family Business</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-design-and-innovation-of-business-model-21192">Design and innovation of business model</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-organizational-innovation-and-creativity-21194">Organizational innovation and creativity</a> from <em>Tecnológico de Monterrey</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/ritx-project-management-18310"><strong>Project Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-project-management-life-cycle-7287">Project Management Life Cycle</a> from <em>Rochester Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-best-practices-for-project-management-success-7288">Best Practices for Project Management Success</a> from <em>Rochester Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-international-project-management-7289">International Project Management</a> from <em>Rochester Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-project-management-micromasters-capstone-exam-8251">Project Management MicroMasters Capstone Exam</a> from <em>Rochester Institute of Technology</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/ritx-design-thinking-18340"><strong>Design Thinking</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-design-thinking-fundamentals-10279">Design Thinking Fundamentals</a> from <em>Rochester Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-design-thinking-empathizing-to-understand-the-problem-10291">Design Thinking: Empathizing to Understand the Problem</a> from <em>Rochester Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-design-thinking-ideation-iteration-and-communication-10299">Design Thinking: Ideation, Iteration and Communication</a> from <em>Rochester Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-design-thinking-prototyping-and-user-testing-10302">Design Thinking: Prototyping and User Testing</a> from <em>Rochester Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-design-thinking-capstone-10304">Design Thinking Capstone</a> from <em>Rochester Institute of Technology</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/louvainx-management-18305"><strong>Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-les-principes-de-la-finance-2951">Les principes de la finance</a> from <em>Université catholique de Louvain</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-psychologie-de-la-negociation-3183">Psychologie de la négociation</a> from <em>Université catholique de Louvain</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-decouvrir-le-marketing-3304">Découvrir le marketing</a> from <em>Université catholique de Louvain</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-les-fondements-de-la-strategie-d-entreprise-3436">Les fondements de la stratégie d’entreprise</a> from <em>Université catholique de Louvain</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-communiquer-la-responsabilite-societale-des-entreprises-rse-5690">Communiquer la responsabilité sociétale des entreprises (RSE)</a> from <em>Université catholique de Louvain</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-a-l-econometrie-7260">Introduction à l’économétrie</a> from <em>Université catholique de Louvain</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/curtinx-marketing-in-a-digital-world-18327"><strong>Marketing in a Digital World</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-digital-branding-and-engagement-4101">Digital Branding and Engagement</a> from <em>Curtin University</em> ★★★☆☆(13)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-reputation-management-in-a-digital-world-6031">Reputation Management in a Digital World</a> from <em>Curtin University</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-buyer-behaviour-and-analysis-8170">Buyer Behaviour and Analysis</a> from <em>Curtin University</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-online-marketing-strategies-8176">Online Marketing Strategies</a> from <em>Curtin University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/rwthx-managing-technology-and-innovation-how-to-d-18319"><strong>Managing Technology &amp; Innovation: How to deal with disruptive change</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-customer-centric-innovation-8169">Customer-Centric Innovation</a> from <em>RWTH Aachen University</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-managing-disruptive-change-8173">Managing Disruptive Change</a> from <em>RWTH Aachen University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-strategic-management-from-intuition-to-insight-8174">Strategic Management: From Intuition to Insight</a> from <em>RWTH Aachen University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-thinking-acting-like-an-entrepreneur-8175">Thinking &amp; Acting like an Entrepreneur</a> from <em>RWTH Aachen University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-innovation-and-creativity-management-8184">Innovation and Creativity Management</a> from <em>RWTH Aachen University</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-strategic-management-from-insight-to-decision-8185">Strategic Management: From Insight to Decision</a> from <em>RWTH Aachen University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/iux-accounting-18297"><strong>Accounting</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-financial-reporting-i-13787">Financial Reporting I</a> from <em>Indiana University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-managerial-accounting-and-corporate-control-13788">Managerial Accounting and Corporate Control</a> from <em>Indiana University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-taxes-and-decision-making-13789">Taxes and Decision Making</a> from <em>Indiana University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/uncordobax-gestion-de-servicios-diseno-de-experie-18298"><strong>Gestión de servicios: diseño de experiencias exitosas</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-gestion-de-operaciones-13687">Gestión de operaciones</a> from <em>Universidad Nacional de Córdoba</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-gestion-de-personas-recursos-humanos-13688">Gestión de personas: Recursos Humanos</a> from <em>Universidad Nacional de Córdoba</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-marketing-enfocado-en-la-estrategia-de-servicios-13832">Marketing enfocado en la estrategia de servicios</a> from <em>Universidad Nacional de Córdoba</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/berkeleyx-marketing-analytics-18332"><strong>Marketing Analytics</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-marketing-analytics-competitive-analysis-and-market-segmentation-6299">Marketing Analytics: Competitive Analysis and Market Segmentation</a> from <em>University of California, Berkeley</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-marketing-analytics-products-distribution-and-sales-6354">Marketing Analytics: Products, Distribution and Sales</a> from <em>University of California, Berkeley</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-marketing-analytics-price-and-promotion-analytics-6355">Marketing Analytics: Price and Promotion Analytics</a> from <em>University of California, Berkeley</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-marketing-analytics-marketing-measurement-strategy-6356">Marketing Analytics: Marketing Measurement Strategy</a> from <em>University of California, Berkeley</em> ★★☆☆☆(3)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/ucx-organizational-psychology-58781"><strong>Organizational Psychology</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/performance-motivation-57797">Performance and Motivation at Work</a> from <em>University of Canterbury</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/getting-the-right-person-58772">Recruiting and Selecting the Right Person</a> from <em>University of Canterbury</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leading-for-success-58773">Leadership for Contemporary Organizations</a> from <em>University of Canterbury</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/supporting-wellbeing-58774">Supporting Employee Wellbeing</a> from <em>University of Canterbury</em></li>
</ul>
<h3 id="heading-microbachelors-3">MicroBachelors</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/doanex-marketing-essentials-21961"><strong>Marketing Essentials</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-marketing-operations-20047">Marketing Operations</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-marketing-delivering-the-value-proposition-20048">Marketing - Delivering the Value Proposition</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-marketing-essentials-final-exam-20049">Marketing Essentials Final Exam</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-marketing-foundations-20050">Marketing Foundations</a> from <em>Doane University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/snhux-business-analytics-foundations-32186"><strong>Business Analytics Foundations</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/scripting-with-python-32104">Scripting with Python</a> from <em>Southern New Hampshire University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/snhux-financial-accounting-and-analysis-39380"><strong>Financial Accounting and Analysis</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/critical-business-skills-37636">Critical Business Skills</a> from <em>Southern New Hampshire University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/financial-accounting-fundamentals-2-37637">Financial Accounting Fundamentals</a> from <em>Southern New Hampshire University</em></li>
</ul>
<h2 id="heading-humanities">Humanities</h2>
<h3 id="heading-bachelors-degrees-3">Bachelor's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/newcastle-university-bachelor-of-arts-22383"><strong>Bachelor of Arts</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/critical-media-literacy-12200">Understanding Media: Introduction to Critical Media Literacy</a> from <em>University of Newcastle</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/great-south-land-12743">Great South Land: Introducing Australian History</a> from <em>University of Newcastle</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/what-is-sociology-12744">What Is Sociology? An Introduction</a> from <em>University of Newcastle</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/reconstruction-to-world-war-12745">Introduction to American History: From Reconstruction to World War, 1865-1919</a> from <em>University of Newcastle</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/humans-12746">What Does It Mean to Be Human? An Introduction to the Humanities</a> from <em>University of Newcastle</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/what-is-poetry-12747">What Is Poetry? An Introduction to Literary Analysis</a> from <em>University of Newcastle</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fairy-tales-13807">Fairy Tales: Meanings, Messages, and Morals</a> from <em>University of Newcastle</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cultures-societies-introducing-anthropology-13808">Anthropology: Understanding Societies and Cultures</a> from <em>University of Newcastle</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/european-empires-13809">European Empires: An Introduction, 1400–1522</a> from <em>University of Newcastle</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/australian-crime-20408">Casing the Joint: Introducing Histories of Crime</a> from <em>University of Newcastle</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/crime-fiction-27959">Classic Detective Fiction</a> from <em>University of Newcastle</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/engl3301-1-47278">Playing with Poetry: Creative Writing and Poetics</a> from <em>University of Newcastle</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/indigeneity-as-a-global-concept-47280">Indigeneity as a Global Concept</a> from <em>University of Newcastle</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/north-texas-university-bachelor-arts-science-20804"><strong>Bachelor of Applied Arts and Sciences</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/research-inquiry-discovery-20096">Research Design: Inquiry and Discovery</a> from <em>University of North Texas</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/contemporary-biology-54377">Contemporary Biology</a>  from <em>University of North Texas</em></li>
</ul>
<h2 id="heading-engineering">Engineering</h2>
<h3 id="heading-masters-degrees-3">Master's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/purdue-master-electrical-computer-engineering-20595"><strong>Master’s Degree in Electrical and Computer Engineering</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-nanophotonic-modeling-6455">Nanophotonic Modeling</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-semiconductor-fundamentals-11697">Semiconductor Fundamentals</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-fundamentals-of-current-flow-11781">Fundamentals of Current Flow</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-to-quantum-transport-11881">Introduction to Quantum Transport</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-fundamentals-of-transistors-11882">Fundamentals of Transistors</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-fiber-optic-communications-17379">Fiber Optic Communications</a> from <em>Purdue University</em> ★★★★☆(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/cu-boulder-master-electrical-engineering-20883"><strong>Master of Science in Electrical Engineering</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/powerelectronics-716">Introduction to Power Electronics</a> from <em>University of Colorado Boulder</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/converter-circuits-5411">Converter Circuits</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/magnetics-power-electronic-converters-5414">Magnetics for Power Electronic Converters</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/converter-control-5415">Converter Control</a> from <em>University of Colorado Boulder</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/power-electronics-capstone-5576">Capstone Design Project in Power Electronics</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/intro-fpga-design-embedded-systems-9236">Introduction to FPGA Design for Embedded Systems</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/first-order-optical-system-design-11799">First Order Optical System Design</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/optical-efficiency-and-resolution-11815">Optical Efficiency and Resolution</a> from <em>University of Colorado Boulder</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sensors-circuit-interface-12049">Sensors and Sensor Circuit Design</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/design-high-performance-optical-systems-12052">Design of High-Performance Optical Systems</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/industrial-iot-markets-security-12056">Industrial IoT Markets and Security</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/battery-state-of-health-12078">Battery State-of-Health (SOH) Estimation</a> from <em>University of Colorado System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/battery-pack-balancing-power-estimation-12079">Battery Pack Balancing and Power Estimation</a> from <em>University of Colorado System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/battery-state-of-charge-12082">Battery State-of-Charge (SOC) Estimation</a> from <em>University of Colorado System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/battery-management-systems-12083">Introduction to battery-management systems</a> from <em>University of Colorado System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/equivalent-circuit-cell-model-simulation-12084">Equivalent Circuit Cell Model Simulation</a> from <em>University of Colorado System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/motors-circuits-design-12098">Motors and Motor Control Circuits</a> from <em>University of Colorado Boulder</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/semiconductor-physics-12118">Semiconductor Physics</a> from <em>University of Colorado Boulder</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/diode-pn-junction-metal-semiconductor-co-12134">Diode - pn Junction and Metal Semiconductor Contact</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/transistor-field-effect-transistor-bipol-12135">Transistor - Field Effect Transistor and Bipolar Junction Transistor</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/displays-12227">Displays</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leds-semiconductor-lasers-12228">Light Emitting Diodes and Semiconductor Lasers</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nanophotonics-detectors-12231">Nanophotonics and Detectors</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/industrial-iot-project-planning-machine--12284">Project Planning and Machine Learning</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pressure-force-motion-humidity-sensors-12361">Pressure, Force, Motion, and Humidity Sensors</a>  from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/modeling-debugging-embedded-systems-12621">Modeling and Debugging Embedded Systems</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sensor-manufacturing-process-control-15157">Sensor Manufacturing and Process Control</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fpga-hardware-description-languages-17337">Hardware Description Languages for FPGA Design</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/averagedswitchmodelingandsimulation-19128">Averaged-Switch Modeling and Simulation</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/inputfilterdesign-21242">Input Filter Design</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/techniques-of-design-oriented-analysis-21243">Techniques of Design-Oriented Analysis</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/current-modecontrol-21244">Current-Mode Control</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ux-interface-design-embedded-systems-21251">UX and Interface Design for Embedded Systems</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/real-time-embedded-theory-analysis-21254">Real-Time Embedded Systems Theory and Analysis</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/real-time-embedded-systems-concepts-practices-21255">Real-Time Embedded Systems Concepts and Practices</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fpga-softcore-proccessors-ip-21260">FPGA Softcore Processors and IP Acquisition</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/capstone-fpga-design-21272">FPGA Capstone: Building FPGA Projects</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/rapid-prototyping-embedded-interface-21923">Rapid Prototyping of Embedded Interface Designs</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/real-time-mission-critical-systems-design-21924">Real-Time Mission-Critical Systems Design</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/m2m-iot-interface-design-embedded-systems-27216">M2M &amp; IoT Interface Design &amp; Protocols for Embedded Systems</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/real-time-project-embedded-systems-27220">Real-Time Project for Embedded Systems</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/modeling-and-control-of-single-phase-rectifiers-a-27231">Modeling and Control of Single-Phase Rectifiers and Inverters</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/approximation-methods-56037">Approximation Methods</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/theory-of-angular-momentum-56038">Theory of Angular Momentum</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/foundations-quantum-mechanics-56039">Foundations of Quantum Mechanics</a> from <em>University of Colorado Boulder</em></li>
</ul>
<h3 id="heading-micromasters-3">MicroMasters</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/mitx-principles-manufacturing-18341"><strong>Principles of Manufacturing</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-manufacturing-process-control-i-10266">Manufacturing Process Control I</a> from <em>Massachusetts Institute of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-manufacturing-systems-i-10274">Manufacturing Systems I</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-management-in-engineering-accounting-and-planning-10283">Management in Engineering: Accounting and Planning</a> from <em>Massachusetts Institute of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chains-for-manufacturing-inventory-analytics-10287">Supply Chains for Manufacturing: Inventory Analytics</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-manufacturing-process-control-ii-10293">Manufacturing Process Control II</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-manufacturing-systems-ii-10294">Manufacturing Systems II</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-supply-chains-for-manufacturing-capacity-analytics-10297">Supply Chains for Manufacturing: Capacity Analytics</a> from <em>Massachusetts Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-management-in-engineering-strategy-and-leadership-10298">Management in Engineering: Strategy and Leadership</a> from <em>Massachusetts Institute of Technology</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/purdue-nano-science-technology-18292"><strong>Nanoscience and Technology</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-nanophotonic-modeling-6455">Nanophotonic Modeling</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-semiconductor-fundamentals-11697">Semiconductor Fundamentals</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-fundamentals-of-current-flow-11781">Fundamentals of Current Flow</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-to-quantum-transport-11881">Introduction to Quantum Transport</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-fundamentals-of-transistors-11882">Fundamentals of Transistors</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-fiber-optic-communications-17379">Fiber Optic Communications</a> from <em>Purdue University</em> ★★★★☆(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/purduex-reliability-and-decision-making-in-engine-20666"><strong>Reliability and Decision Making in Engineering Design</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-reliability-in-engineering-design-19584">Reliability in Engineering Design</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-decision-making-in-engineering-design-20118">Decision Making in Engineering Design</a> from <em>Purdue University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/structural-design-22618"><strong>Structural Design</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/design-of-steel-concrete-composite-structures-22576">Design of Steel-Concrete Composite Structures</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/post-tensioned-structures-22577">Post-Tensioned Structures</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-prestressed-concrete-22578">Fundamentals of Prestressed Concrete</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/connections-in-steel-structures-22579">Connections in Steel Structures</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pretensioned-structures-22580">Pretensioned Structures</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/steel-beam-and-plate-girder-design-22581">Steel Beam and Plate Girder Design</a> from <em>Purdue University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/purduex-materials-engineering-for-intelligent-inf-52939"><strong>Materials Engineering for Intelligent Infrastructure</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-non-destructive-testing-22815">Fundamentals of Non-Destructive Testing</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/wave-based-ndt-methods-22841">Wave-Based NDT Methods</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/electrical-based-non-destructive-testing-and-sens-22842">Electrical-Based Non-Destructive Testing and Sensing</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-nanomaterials-and-nanotechnology-40243">Fundamentals of Nanomaterials and Nanotechnology</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nanomaterials-for-civil-and-environmental-applica-40244">Nanomaterials for Civil and Environmental Applications</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nano-device-for-energy-harvesting-and-sensing-40245">Nano-Device for Energy Harvesting and Sensing</a> from <em>Purdue University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/delftx-solar-energy-engineering-18318"><strong>Solar Energy Engineering</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-solar-energy-integration-of-photovoltaic-systems-in-microgrids-8166">Solar Energy: Integration of Photovoltaic Systems in Microgrids</a> from <em>Delft University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-solar-energy-photovoltaic-pv-technologies-8177">Solar Energy: Photovoltaic (PV) Technologies</a> from <em>Delft University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-solar-energy-photovoltaic-pv-energy-conversion-8187">Solar Energy: Photovoltaic (PV) Energy Conversion</a> from <em>Delft University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-solar-energy-photovoltaic-pv-systems-8188">Solar Energy: Photovoltaic (PV) Systems</a> from <em>Delft University of Technology</em></li>
</ul>
<h2 id="heading-science">Science</h2>
<h3 id="heading-masters-degrees-4">Master's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-master-construction-management-20917"><strong>MSc Construction Management with BIM</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/building-information-modelling-10604">An Introduction to Building Information Modelling</a> from <em>Coventry University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-issues-construction-10608">Global Issues in the Construction Industry</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-financial-management-in-construct-11658">An Introduction to Financial Management in Construction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/bim-implementation-aec-13187">BIM Implementation within the AEC Industry</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/organisational-behaviour-in-construction-an-intro-13778">Organisational Behaviour in Construction: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/contract-management-and-procurement-13779">Contract Management and Procurement: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/construction-project-management-17055">Construction Project Management: An Introduction</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-master-construct-cost-manager-20918"><strong>MSc Construction Project and Cost Management</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-financial-management-in-construct-11658">An Introduction to Financial Management in Construction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/importance-of-project-management-in-global-constr-11670">The Importance of Project Management in the Global Construction Industry</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/research-construction-management-13192">Research for Construction Management</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-pre-contract-management-practices-13195">Pre-Contract Management for Construction Projects: The Basics</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/contract-management-and-procurement-13779">Contract Management and Procurement: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/procurement-strategies-and-tendering-13780">Procurement Strategies and Tendering</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-strategy-art-of-looking-into-the-future-17059">Business Strategy: The Art of Looking into the Future</a> from <em>Coventry University</em></li>
</ul>
<h3 id="heading-micromasters-4">MicroMasters</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/queensx-water-and-global-human-health-18290"><strong>Water and Global Human Health</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-modelling-watershed-processes-for-water-resource-management-17951">Modelling Watershed Processes for Water Resource Management</a> from <em>Queen's University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-opportunities-in-water-and-health-17953">Opportunities in Water and Health</a> from <em>Queen's University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-water-related-health-17954">Water Related Health</a> from <em>Queen's University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-global-water-use-and-climate-change-17963">Global Water Use and Climate Change</a> from <em>Queen's University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-watershed-systems-and-their-influence-on-water-movement-and-quality-17964">Watershed Systems and Their Influence on Water Movement and Quality</a> from <em>Queen's University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/wageningenx-economics-and-policies-for-a-circular-18300"><strong>Economics and Policies for a Circular Bio-Economy</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-circular-economy-an-interdisciplinary-approach-12457">Circular Economy: An Interdisciplinary Approach</a> from <em>Wageningen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-from-fossil-resources-to-biomass-a-chemistry-perspective-12458">From Fossil Resources to Biomass: A Chemistry Perspective</a> from <em>Wageningen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-economics-and-policies-in-a-biobased-economy-12459">Economics and Policies in a Biobased Economy</a> from <em>Wageningen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-capstone-economics-and-policies-for-a-circular-economy-12460">Capstone Economics and Policies for a Circular Economy</a> from <em>Wageningen University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/wageningenx-business-and-operations-for-a-circula-18301"><strong>Business and Operations for a Circular Bio-Economy</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-circular-economy-an-interdisciplinary-approach-12457">Circular Economy: An Interdisciplinary Approach</a> from <em>Wageningen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-from-fossil-resources-to-biomass-a-chemistry-perspective-12458">From Fossil Resources to Biomass: A Chemistry Perspective</a> from <em>Wageningen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-business-strategy-and-operations-in-a-biobased-economy-12503">Business Strategy and Operations in a Biobased Economy</a> from <em>Wageningen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-capstone-business-and-operations-for-a-circular-bio-economy-17223">Capstone Business and Operations for a Circular Bio-Economy</a> from <em>Wageningen University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/doanex-sustainable-agribusiness-21970"><strong>Sustainable Agribusiness</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-agri-food-systems-analysis-12736">Agri-Food Systems Analysis</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-sustainable-agri-food-marketing-13422">Sustainable Agri-food Marketing</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-environmental-and-natural-resources-economics-13424">Environmental and Natural Resources Economics</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-agricultural-economic-modeling-tools-20761">Agricultural Economic Modeling Tools</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-sustainable-agribusiness-comprehensive-exam-20762">Sustainable Agribusiness Comprehensive Exam</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-sustainable-agri-food-supply-chain-management-20763">Sustainable Agri-food Supply Chain Management</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-global-food-futures-and-agri-food-systems-solutions-20765">Global Food Futures and Agri-food Systems Solutions</a> from <em>Doane University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/chalmersx-emerging-automotive-technologies-18339"><strong>Emerging Automotive Technologies</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-electric-and-conventional-vehicles-10263">Electric and Conventional Vehicles</a> from <em>Chalmers University of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-hybrid-vehicles-10285">Hybrid Vehicles</a> from <em>Chalmers University of Technology</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-road-traffic-safety-in-automotive-engineering-10290">Road Traffic Safety in Automotive Engineering</a> from <em>Chalmers University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-model-based-automotive-systems-engineering-10296">Model-Based Automotive Systems Engineering</a> from <em>Chalmers University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-sensor-fusion-and-non-linear-filtering-for-automotive-systems-10300">Sensor Fusion and Non-linear Filtering for Automotive Systems</a> from <em>Chalmers University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-multi-object-tracking-for-automotive-systems-10303">Multi-Object Tracking for Automotive Systems</a> from <em>Chalmers University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-decision-making-for-autonomous-systems-10305">Decision-Making for Autonomous Systems</a> from <em>Chalmers University of Technology</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/uncordobax-siembra-directa-agricultura-productiva-20667"><strong>Siembra Directa: agricultura productiva sustentable</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-siembra-directa-contexto-historico-y-agricultura-certificada-19203">Siembra Directa: Contexto Histórico y Agricultura Certificada</a> from <em>Universidad Nacional de Córdoba</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-la-microbiologia-del-sistema-de-siembra-directa-19204">La microbiología del Sistema de Siembra Directa</a> from <em>Universidad Nacional de Córdoba</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-el-manejo-de-plagas-malezas-y-enfermedades-en-los-sistemas-de-siembra-directa-19205">El manejo de plagas, malezas y enfermedades en los Sistemas de Siembra Directa</a> from <em>Universidad Nacional de Córdoba</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-la-tecnologia-en-siembra-directa-agricultura-por-ambientes-19206">La Tecnología en Siembra Directa - Agricultura por ambientes</a> from <em>Universidad Nacional de Córdoba</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-el-suelo-en-el-sistema-de-siembra-directa-19207">El suelo en el Sistema de Siembra Directa</a> from <em>Universidad Nacional de Córdoba</em></li>
</ul>
<h3 id="heading-microbachelors-4">MicroBachelors</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/harvardx-university-chemistry-62102"><strong>University Chemistry</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/energy-and-thermodynamics-61435">Energy and Thermodynamics</a> from <em>Harvard University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/electrochemistry-61436">Electrochemistry</a> from <em>Harvard University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/university-chemistry-entropy-and-equilibria-2-61437">Entropy and Equilibria</a> from <em>Harvard University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/energy-to-electrochemistry-final-exam-61438">Energy to Electrochemistry Final Exam</a> from <em>Harvard University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/snhux-microbiology-86317"><strong>Microbiology</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/microbiology-66423">Microbiology</a> from <em>Southern New Hampshire University</em></li>
</ul>
<h2 id="heading-education-amp-teaching">Education &amp; Teaching</h2>
<h3 id="heading-masters-degrees-5">Master's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/deakin-university-master-digital-learning-20911"><strong>Masters Degree in Digital Learning Leadership</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-learning-12213">Transforming Digital Learning: Learning Design Meets Service Design</a> from <em>Deakin University</em> ★★★★★(37)</li>
</ul>
<h3 id="heading-bachelors-degrees-4">Bachelor's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/open-university-grad-cert-online-education-22408"><strong>PgC Online and Distance Education</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/the-online-educator-10735">The Online Educator: People and Pedagogy</a> from <em>The Open University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-grad-cert-education-22409"><strong>Postgraduate Certificate in Education</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/teacher-training-pgce-21618">Teacher Training: Choosing the Right PGCE for You</a> from <em>Coventry University</em></li>
</ul>
<h3 id="heading-micromasters-5">MicroMasters</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/michiganx-leading-educational-innovation-and-impr-18311"><strong>Leading Educational Innovation and Improvement</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-designing-and-leading-learning-systems-7243">Designing and Leading Learning Systems</a> from <em>University of Michigan</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-improvement-science-in-education-7244">Improvement Science in Education</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-case-studies-in-continuous-educational-improvement-7245">Case Studies in Continuous Educational Improvement</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leading-educational-innovation-and-improvement-capstone-7246">Leading Educational Innovation and Improvement Capstone</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leading-ambitious-teaching-and-learning-7347">Leading Ambitious Teaching and Learning</a> from <em>Microsoft</em> ★★☆☆☆(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/usmx-umgc-instructional-design-technology-18324"><strong>Instructional Design and Technology</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-instructional-design-course-evaluation-capstone-project-8165">Instructional Design Course Evaluation &amp; Capstone Project</a> from <em>University System of Maryland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-instructional-design-models-8178">Instructional Design Models</a> from <em>University System of Maryland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-instructional-design-and-technology-learning-theories-8182">Instructional Design and Technology: Learning Theories</a> from <em>University System of Maryland</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-instructional-design-digital-media-new-tools-and-technology-8183">Instructional Design: Digital Media, New Tools and Technology</a> from <em>University System of Maryland</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/galileox-e-learning-crea-actividades-y-contenidos-18315"><strong>e-Learning: crea actividades y contenidos para la enseñanza virtual</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-diseno-y-desarrollo-de-recursos-multimedia-para-la-ensenanza-virtual-7227">Diseño y Desarrollo de Recursos Multimedia para la Enseñanza Virtual</a> from <em>Galileo University</em> ★★★★☆(35)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-aprendizaje-y-ensenanza-en-la-era-digital-7266">Aprendizaje y Enseñanza en la Era Digital</a> from <em>Galileo University</em> ★★★★☆(98)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-tecnologias-web-emergentes-para-la-ensenanza-virtual-7267">Tecnologías Web Emergentes para la Enseñanza Virtual</a> from <em>Galileo University</em> ★★★★★(45)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-proyecto-final-e-learning-7268">Proyecto Final, "e-Learning"</a> from <em>Galileo University</em> ★★★★☆(8)</li>
</ul>
<h2 id="heading-social-sciences">Social Sciences</h2>
<h3 id="heading-masters-degrees-6">Master's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-master-disaster-management-20920"><strong>MSc Disaster Management and Resilience</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/risk-incidents-leadership-10606">Emergency Management: Risk, Incidents and Leadership</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/7093exq-01-12392">Emergency and Disaster Training and Exercising: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/disaster-management-accountability-12394">Disaster Interventions and the Need for Evaluation, Accountability and Learning</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/research-process-13191">Researching Risk, Disasters and Emergencies</a> from <em>Coventry University</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/humanitarian-action-response-relief-13204">Humanitarian Action, Response and Relief</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/foundations-in-resilience-13781">[New] Foundations in Resilience, Security and Emerging Technology</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/community-preparedness-recovery-resilience-13782">Community Preparedness, Recovery and Resilience: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/disaster-risk-reduction-17074">Disaster Risk Reduction: An Introduction</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-master-emergency-management-20922"><strong>MSc Emergency Management and Resilience</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/risk-incidents-leadership-10606">Emergency Management: Risk, Incidents and Leadership</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/emergency-planning-preparedness-10607">Emergency Planning and Preparedness: An Introduction</a> from <em>Coventry University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/emergencies-disasters-trends-issues-12391">Emergencies and Disasters: Trends and Issues</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/7093exq-01-12392">Emergency and Disaster Training and Exercising: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/research-process-13191">Researching Risk, Disasters and Emergencies</a> from <em>Coventry University</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-continuity-management-crisis-management-13205">Business Continuity Management and Crisis Management: An Introduction</a> from <em>Coventry University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/foundations-in-resilience-13781">[New] Foundations in Resilience, Security and Emerging Technology</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/community-preparedness-recovery-resilience-13782">Community Preparedness, Recovery and Resilience: An Introduction</a> from <em>Coventry University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/deakin-university-master-sustainable-development-20928"><strong>Masters Degree in Sustainable Development and Humanitarian Action</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/disaster-management-7128">Introduction to Humanitarian Aid</a> from <em>Deakin University</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-sustainability-development-9408">Introduction to Sustainability and Development</a> from <em>Deakin University</em> ★★★★★(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/anglia-ruskin-university-master-mental-health-20925"><strong>MSc Mental Health</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/exploring-mental-health-20589">Understanding Mental Health: Continuum, Culture and Social Media</a> from <em>Anglia Ruskin University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/anglia-ruskin-uni-master-child-mental-wellbeing-22405"><strong>MSc Child and Adolescent Mental Wellbeing</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/exploring-mental-health-20589">Understanding Mental Health: Continuum, Culture and Social Media</a> from <em>Anglia Ruskin University</em></li>
</ul>
<h3 id="heading-micromasters-6">MicroMasters</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/uqx-sustainable-energy-18337"><strong>Sustainable Energy</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-energy-principles-and-renewable-energy-9792">Energy Principles and Renewable Energy</a> from <em>University of Queensland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-climate-science-and-policy-9793">Climate Science and Policy</a> from <em>University of Queensland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-energy-and-development-9794">Energy and Development</a> from <em>University of Queensland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-low-emission-technologies-and-supply-systems-9795">Low Emission Technologies and Supply Systems</a> from <em>University of Queensland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-sustainable-energy-capstone-assessment-9796">Sustainable Energy Capstone Assessment</a> from <em>Queensland University of Technology</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/michiganx-social-work-practice-policy-and-researc-18312"><strong>Social Work: Practice, Policy and Research</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-social-work-practice-advocating-social-justice-and-change-5976">Social Work Practice: Advocating Social Justice and Change</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-social-work-practice-with-individuals-families-and-small-groups-7303">Social Work Practice with Individuals, Families, and Small Groups</a> from <em>University of Michigan</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-social-work-research-7304">Social Work: Research</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-diversity-and-social-justice-in-social-work-7305">Diversity and Social Justice in Social Work</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-social-work-practice-in-community-organization-management-and-policy-evaluation-7306">Social Work Practice in Community Organization, Management and Policy/Evaluation</a> from <em>University of Michigan</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-social-welfare-policy-and-services-7339">Social Welfare Policy and Services</a> from <em>University of Michigan</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/purduex-water-and-wastewater-treatment-52940"><strong>Water and Wastewater Treatment</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/physicochemical-processes-of-environmental-engine-48246">Physico/Chemical Processes of Environmental Engineering</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nutrient-removal-and-resource-recovery-in-wastewa-48247">Nutrient Removal and Resource Recovery in Wastewater</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/modern-biotechnologies-for-wastewater-treatmen-48248">Modern Biotechnologies for Wastewater Treatment</a> from <em>Purdue University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/biological-principles-in-wastewater-treatment-48249">Biological Principles in Wastewater Treatment</a> from <em>Purdue University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/louvainx-international-law-18304"><strong>International Legal Studies</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-international-human-rights-law-2917">International Human Rights Law</a> from <em>Université catholique de Louvain</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-international-humanitarian-law-7258">International Humanitarian Law</a> from <em>Université catholique de Louvain</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-international-investment-law-7259">International Investment Law</a> from <em>Université catholique de Louvain</em> ★☆☆☆☆(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/louvainx-international-law-58780"><strong>International Law</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-international-human-rights-law-2917">International Human Rights Law</a> from <em>Université catholique de Louvain</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-international-law-3179">International Law</a> from <em>Université catholique de Louvain</em> ★★★★☆(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-international-humanitarian-law-7258">International Humanitarian Law</a> from <em>Université catholique de Louvain</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-international-investment-law-7259">International Investment Law</a> from <em>Université catholique de Louvain</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-asylum-and-refugee-law-21026">Asylum and Refugee Law</a> from <em>Université catholique de Louvain</em> ★★★★★(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/wageningenx-chemistry-and-technology-for-sustaina-18303"><strong>Chemistry and Technology for Sustainability</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-biorefinery-from-biomass-to-building-blocks-of-biobased-products-11856">Biorefinery: From Biomass to Building Blocks of Biobased Products</a> from <em>Wageningen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-capstone-chemistry-and-technology-for-sustainability-11857">Capstone Chemistry and Technology for Sustainability</a> from <em>Wageningen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-from-fossil-resources-to-biomass-a-business-and-economics-perspective-11858">From Fossil Resources to Biomass: A Business and Economics Perspective</a> from <em>Wageningen University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-catalytic-conversions-for-biobased-chemicals-and-products-11859">Catalytic Conversions for Biobased Chemicals and Products</a> from <em>Wageningen University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/urosariox-derechos-humanos-desafios-contemporaneo-97274"><strong>Derechos humanos: desafíos contemporáneos</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/comisiones-de-la-verdad-una-mirada-conceptual-his-96634">Comisiones de la verdad: una mirada conceptual, histórica y crítica.</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/derechos-emergentes-ciencias-omicas-biomedicina-y-96642">Derechos emergentes, ciencias ómicas, biomedicina y biotecnología</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/litigio-estrategico-y-derechos-humanos-96673">Litigio estratégico y derechos humanos</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/movilidad-humana-reflexiones-y-desafios-en-el-mun-96688">Movilidad humana: reflexiones y desafíos en el mundo contemporáneo</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teorias-de-la-justicia-96709">Teorías de la justicia</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/victimas-y-estado-de-derecho-en-el-marco-de-la-ju-96715">Víctimas y estado de derecho en el marco de la justicia transicional</a> from <em>Universidad del Rosario</em></li>
</ul>
<h2 id="heading-art-amp-design">Art &amp; Design</h2>
<h3 id="heading-micromasters-7">MicroMasters</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/writing-for-performance-and-the-entertainment-ind-21966"><strong>Writing for Performance and the Entertainment Industries</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-capstone-bringing-it-all-together-21291">Capstone: Bringing it all together</a> from <em>University of Cambridge</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/nyux-integrated-digital-media-18296"><strong>Integrated Digital Media</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-creative-coding-13438">Creative Coding</a> from <em>New York University (NYU)</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-media-law-13440">Media Law</a> from <em>New York University (NYU)</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-integrated-digital-media-capstone-13441">Integrated Digital Media Capstone</a> from <em>New York University (NYU)</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/hecmontrealx-ux-design-and-evaluation-21964"><strong>UX Design and Evaluation</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-ux-evaluation-user-testing-21088">UX Evaluation: User Testing</a> from <em>HEC Montréal</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-ux-prototyping-21093">UX Prototyping</a> from <em>HEC Montréal</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-ux-data-analysis-21095">UX Data Analysis</a> from <em>HEC Montréal</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-ux-management-21098">UX Management</a> from <em>HEC Montréal</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/hecmontrealx-design-et-evaluation-21982"><strong>Design et Évaluation UX</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-le-design-ux-21089">Le design UX</a> from <em>HEC Montréal</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-le-prototypage-ux-21090">Le prototypage UX</a> from <em>HEC Montréal</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-l-evaluation-ux-tests-utilisateurs-21091">L’évaluation UX : Tests utilisateurs</a> from <em>HEC Montréal</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-la-recherche-ux-21094">La recherche UX</a> from <em>HEC Montréal</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-l-analyse-de-donnees-ux-21096">L'analyse de données UX</a> from <em>HEC Montréal</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-a-l-experience-utilisateur-21118">Introduction à l'expérience utilisateur</a> from <em>HEC Montréal</em></li>
</ul>
<h2 id="heading-data-science">Data Science</h2>
<h3 id="heading-masters-degrees-7">Master's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/georgia-tech-master-analytics-20602"><strong>Online Master of Science in Analytics (OMS Analytics)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-knowledge-based-ai-cognitive-systems-1025">Knowledge-Based AI: Cognitive Systems</a> from <em>Georgia Institute of Technology</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-machine-learning-for-trading-1026">Machine Learning for Trading</a> from <em>Georgia Institute of Technology</em> ★★★☆☆(15)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-reinforcement-learning-1849">Reinforcement Learning</a> from <em>Brown University</em> ★★★☆☆(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/bigdataanalytics-2759">Big Data Analytics for Healthcare</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-to-analytics-modeling-8217">Introduction to Analytics Modeling</a> from <em>Georgia Institute of Technology</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-data-analytics-for-business-8222">Data Analytics for Business</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-computing-for-data-analysis-8223">Computing for Data Analysis</a> from <em>Georgia Institute of Technology</em> ★★★☆☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-artificial-intelligence-8565">Artificial Intelligence</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-data-analysis-and-visualization-8566">Data Analysis and Visualization</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-database-systems-concepts-design-8573">Database Systems Concepts &amp; Design</a> from <em>Georgia Institute of Technology</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-fa19-statistical-modeling-and-regression-analysis-8996">FA19: Statistical Modeling and Regression Analysis</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-machine-learning-9695">Machine Learning</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-simulation-and-modeling-for-engineering-and-science-9804">Simulation and Modeling for Engineering and Science</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-fa19-deterministic-optimization-9947">FA19: Deterministic Optimization</a> from <em>Georgia Institute of Technology</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-sp18-time-series-analysis-10171">SP18: Time Series Analysis</a> from <em>Georgia Institute of Technology</em> ★★☆☆☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-human-computer-interaction-i-fundamentals-design-principles-14444">Human-Computer Interaction I: Fundamentals &amp; Design Principles</a> from <em>Georgia Institute of Technology</em> ★★★★★(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-human-computer-interaction-ii-cognition-context-culture-14445">Human-Computer Interaction II: Cognition, Context &amp; Culture</a> from <em>Georgia Institute of Technology</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-human-computer-interaction-iii-ethics-needfinding-prototyping-14446">Human-Computer Interaction III: Ethics, Needfinding &amp; Prototyping</a> from <em>Georgia Institute of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-human-computer-interaction-iv-evaluation-agile-methods-beyond-14447">Human-Computer Interaction IV: Evaluation, Agile Methods &amp; Beyond</a> from <em>Georgia Institute of Technology</em> ★★★★★(2)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/illinois-master-computer-science-data-science-20890"><strong>Master of Computer Science in Data Science</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/cloud-computing-2717">Cloud Computing Concepts, Part 1</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(21)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloudnetworking-2732">Cloud Networking</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/patterndiscovery-2733">Pattern Discovery in Data Mining</a> from <em>University of Illinois at Urbana-Champaign</em> ★★☆☆☆(21)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/textretrieval-2734">Text Retrieval and Search Engines</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/clusteranalysis-2735">Cluster Analysis in Data Mining</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/textanalytics-2736">Text Mining and Analytics</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/datavisualization-2737">Data Visualization</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(21)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloud-applications-part1-2738">Cloud Computing Applications, Part 1: Cloud Systems and Infrastructure</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloudcomputing2-2942">Cloud Computing Concepts: Part 2</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloud-computing-project-5342">Cloud Computing Project</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-mining-project-6227">Data Mining Project</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloud-applications-2-6309">Cloud Computing Applications, Part 2: Big Data and Applications in the Cloud</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/iot-devices-il-37699">IoT Devices</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/iot-networking-37700">IoT Networking</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/iot-cloud-37701">IoT Cloud</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/iot-communications-37702">IoT Communications</a> from <em>University of Illinois at Urbana-Champaign</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/higher-school-economics-master-data-science-20887"><strong>Master of Data Science</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/first-steps-in-linear-algebra-for-machine-learnin-17334">First Steps in Linear Algebra for Machine Learning</a> from <em>Higher School of Economics</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/calculus-and-optimization-for-machine-learning-17335">Calculus and Optimization for Machine Learning</a> from <em>Higher School of Economics</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/discrete-math-and-analyzing-social-graphs-17336">Discrete Math and Analyzing Social Graphs</a> from <em>Higher School of Economics</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/probability-theory-statistics-18167">Probability Theory, Statistics and Exploratory Data Analysis</a> from <em>Higher School of Economics</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/cu-boulder-master-data-science-20889"><strong>Master of Science in Data Science</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/data-mining-project-6227">Data Mining Project</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/managing-describing-analyzing-data-21153">Managing, Describing, and Analyzing Data</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ethical-issues-data-science-37621">Ethical Issues in Data Science</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cybersecurity-for-data-science-40795">Cybersecurity for Data Science</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/algorithms-searching-sorting-indexing-40796">Algorithms for Searching, Sorting, and Indexing</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/trees-graphs-basics-40797">Trees and Graphs: Basics</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/anova-and-experimental-design-40798">ANOVA and Experimental Design</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/generalized-linear-models-and-nonparametric-regre-40799">Generalized Linear Models and Nonparametric Regression</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/modern-regression-analysis-in-r-40800">Modern Regression Analysis in R</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-science-as-a-field-40801">Data Science as a Field</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-mining-pipeline-41005">Data Mining Pipeline</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/dynamic-programming-greedy-algorithms-43547">Dynamic Programming, Greedy Algorithms</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/probability-theory-foundation-for-data-science-43771">Probability Theory: Foundation for Data Science</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/statistical-inference-for-estimation-in-data-scie-45214">Statistical Inference for Estimation in Data Science</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-data-visualization-48056">Fundamentals of Data Visualization</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-mining-methods-48057">Data Mining Methods</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/statistical-inference-and-hypothesis-testing-in-d-54342">Statistical Inference and Hypothesis Testing in Data Science Applications</a> from <em>University of Colorado Boulder</em></li>
</ul>
<h3 id="heading-micromasters-8">MicroMasters</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/mitx-statistics-and-data-science-18342"><strong>Statistics and Data Science</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-fundamentals-of-statistics-11482">Fundamentals of Statistics</a> from <em>Massachusetts Institute of Technology</em> ★★★★☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-machine-learning-with-python-from-linear-models-to-deep-learning-11483">Machine Learning with Python: from Linear Models to Deep Learning</a> from <em>Massachusetts Institute of Technology</em> ★★★☆☆(25)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/uc-san-diegox-data-science-18326"><strong>Data Science</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-probability-and-statistics-in-data-science-using-python-8213">Probability and Statistics in Data Science using Python</a> from <em>University of California, San Diego</em>  ★★☆☆☆(31)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-machine-learning-fundamentals-8216">Machine Learning Fundamentals</a> from <em>University of California, San Diego</em>  ★★★★☆(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-big-data-analytics-using-spark-8221">Big Data Analytics Using Spark</a> from <em>University of California, San Diego</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/gtx-analytics-essential-tools-and-methods-18323"><strong>Analytics: Essential Tools and Methods</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-to-analytics-modeling-8217">Introduction to Analytics Modeling</a> from <em>Georgia Institute of Technology</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-data-analytics-for-business-8222">Data Analytics for Business</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-computing-for-data-analysis-8223">Computing for Data Analysis</a> from <em>Georgia Institute of Technology</em> ★★★☆☆(6)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/hkustx-big-data-technology-62100"><strong>Big Data Technology</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/big-data-technology-capstone-project-58699">Big Data Technology Capstone Project</a> from <em>The Hong Kong University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/big-data-computing-with-spark-58716">Big Data Computing with Spark</a> from <em>The Hong Kong University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-mining-and-knowledge-discovery-58717">Data Mining and Knowledge Discovery</a> from <em>The Hong Kong University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/foundations-of-data-analytics-58718">Foundations of Data Analytics</a> from <em>The Hong Kong University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mathematical-methods-for-data-analysis-58719">Mathematical Methods for Data Analysis</a> from <em>The Hong Kong University of Science and Technology</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/usmx-umgc-bioinformatics-18322"><strong>Bioinformatics</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-dna-sequences-alignments-and-analysis-8157">DNA Sequences: Alignments and Analysis</a> from <em>University System of Maryland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-proteins-alignment-analysis-and-structure-8160">Proteins: Alignment, Analysis and Structure</a> from <em>University System of Maryland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-statistical-analysis-in-bioinformatics-8163">Statistical Analysis in Bioinformatics</a> from <em>University System of Maryland</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/adelaidex-big-data-18320"><strong>Big Data</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-big-data-fundamentals-8156">Big Data Fundamentals</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-big-data-analytics-8158">Big Data Analytics</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-big-data-capstone-project-8159">Big Data Capstone Project</a> from <em>University of Adelaide</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-computational-thinking-and-big-data-8161">Computational Thinking and Big Data</a> from <em>University of Adelaide</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-programming-for-data-science-8162">Programming for Data Science</a> from <em>University of Adelaide</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/rosariox-fundamentos-de-investigacion-en-ciencias-97273"><strong>Fundamentos de investigación en ciencias de la salud</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/bioetica-74422">Bioética</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/bioestadistica-96624">Bioestadística</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentos-de-investigacion-cientifica-96656">Fundamentos de investigación científica</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/metodos-de-investigacion-cualitativos-96685">Métodos de investigación cualitativos</a> from <em>Universidad del Rosario</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/metodos-de-investigacion-cuantitativos-96686">Métodos de investigación cuantitativos</a> from <em>Universidad del Rosario</em></li>
</ul>
<h3 id="heading-microbachelors-5">MicroBachelors</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/ricex-elements-of-data-science-21960"><strong>Elements of Data Science</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-discrete-time-signals-and-systems-17448">Discrete Time Signals and Systems</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-signals-systems-and-learning-20053">Signals, Systems, and Learning</a> from <em>Rice University</em></li>
</ul>
<h2 id="heading-programming">Programming</h2>
<h3 id="heading-masters-degrees-8">Master's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/uniandes-master-software-engineering-20881"><strong>Maestría en Ingeniería de Software</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/introduccion-programacion-java-9065">Introducción a la programación orientada a objetos en Java</a> from <em>Universidad de los Andes</em> ★★★★★(18)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/uml-21107">Introducción a UML</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduccion-desarrollo-web-32641">Introducción al desarrollo web</a> from <em>Universidad de los Andes</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/programacion-python-32745">Programación en Python</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/principios-ingenieria-software-automatizada-agil--52926">Principios de ingeniería de software automatizada y ágil</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/metodologias-agiles-desarrollo-software-uniandes-52932">Metodologías ágiles de desarrollo de software</a> from <em>Universidad de los Andes</em></li>
</ul>
<h3 id="heading-micromasters-9">MicroMasters</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/ubcx-software-development-20669"><strong>Software Development</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-software-development-capstone-project-8198">Software Development Capstone Project</a> from <em>The University of British Columbia</em> ★☆☆☆☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-software-construction-data-abstraction-8200">Software Construction: Data Abstraction</a> from <em>The University of British Columbia</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-software-construction-object-oriented-design-8201">Software Construction: Object-Oriented Design</a> from <em>The University of British Columbia</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-software-engineering-introduction-8205">Software Engineering: Introduction</a> from <em>The University of British Columbia</em> ★★★☆☆(2)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/usmx-umgc-cloud-computing-18321"><strong>Cloud Computing</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-cloud-computing-security-8164">Cloud Computing Security</a> from <em>University System of Maryland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-cloud-computing-for-enterprises-8168">Cloud Computing for Enterprises</a> from <em>University System of Maryland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-cloud-computing-engineering-and-management-8172">Cloud Computing Engineering and Management</a> from <em>University System of Maryland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-cloud-computing-infrastructure-8181">Cloud Computing Infrastructure</a> from <em>University System of Maryland</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/usmx-umgc-software-testing-and-verification-18325"><strong>Software Testing and Verification</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-software-testing-management-8171">Software Testing Management</a> from <em>University System of Maryland</em> ★★☆☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-software-testing-fundamentals-8179">Software Testing Fundamentals</a> from <em>University System of Maryland</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-formal-software-verification-8180">Formal Software Verification</a> from <em>University System of Maryland</em> ★★☆☆☆(1)</li>
</ul>
<h3 id="heading-microbachelors-6">MicroBachelors</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/ibm-full-stack-cloud-application-development-56783"><strong>Full Stack Cloud Application Development</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-python-basics-for-data-science-12115">Python Basics for Data Science</a> from <em>IBM</em> ★★☆☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-to-web-development-with-html5-css3-and-javascript-20965">Introduction to Web Development with HTML5, CSS3, and JavaScript</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-developing-cloud-native-applications-20967">Developing Cloud Native Applications</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-application-development-with-node-js-express-20968">Application Development with Node.Js &amp; Express</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-introduction-to-containers-kubernetes-and-openshift-21414">Introduction to Containers, Kubernetes and OpenShift</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/django-application-development-with-sql-and-datab-34099">Django Application Development with SQL and Databases</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/microservices-serverless-openshift-34100">Microservices, Serverless, OpenShift</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/full-stack-application-development-project-34101">Full Stack Application Development Project</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloud-application-developer-capstone-56547">Cloud Application Developer Capstone</a> from <em>IBM</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/nyux-introduction-to-databases-21962"><strong>Introduction to Databases</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-advanced-database-administration-20799">Advanced Database Administration</a> from <em>New York University (NYU)</em> ★★★★★(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/snhux-data-management-with-python-and-sql-32185"><strong>Data Management with Python and SQL</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/scripting-with-python-32104">Scripting with Python</a> from <em>Southern New Hampshire University</em></li>
</ul>
<h2 id="heading-personal-development">Personal Development</h2>
<h3 id="heading-micromasters-10">MicroMasters</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/tecdemonterreyx-habilidades-profesionales-negocia-18302"><strong>Habilidades profesionales: negociación y liderazgo</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-liderazgo-y-comportamiento-organizacional-12285">Liderazgo y comportamiento organizacional</a> from <em>Tecnológico de Monterrey</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-pensamiento-critico-toma-de-decisiones-razonadas-12286">Pensamiento crítico: toma de decisiones razonadas</a> from <em>Tecnológico de Monterrey</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-liderazgo-orientado-al-florecimiento-humano-12287">Liderazgo orientado al florecimiento humano</a> from <em>Tecnológico de Monterrey</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-comunicacion-efectiva-para-el-lider-actual-12292">Comunicación efectiva para el líder actual</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-habilidades-de-negociacion-y-comunicacion-efectiva-12293">Habilidades de negociación y comunicación efectiva</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-estrategias-y-estilos-de-negociacion-12294">Estrategias y estilos de negociación</a> from <em>Tecnológico de Monterrey</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/tecdemonterreyx-humanities-and-soft-skills-20668"><strong>Humanities &amp; Soft Skills</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-critical-thinking-reasoned-decision-making-17197">Critical thinking: reasoned decision making</a> from <em>Tecnológico de Monterrey</em> ★★☆☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-effective-communication-for-today-s-leader-19305">Effective Communication for Today's Leader</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leadership-focused-on-human-flourishing-19306">Leadership focused on Human Flourishing</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-negotiation-skills-and-effective-communication-19307">Negotiation Skills and Effective Communication</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-negotiation-strategies-and-styles-19308">Negotiation Strategies and Styles</a> from <em>Tecnológico de Monterrey</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-leadership-and-organizational-behavior-19309">Leadership and organizational behavior</a> from <em>Tecnológico de Monterrey</em> ★★★★☆(1)</li>
</ul>
<h3 id="heading-microbachelors-7">MicroBachelors</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/doanex-business-and-professional-communication-fo-32188"><strong>Business and Professional Communication for Success</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/professional-business-presentations-32128">Professional Business Presentations</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-writing-techniques-32129">Business Writing Techniques</a> from <em>Doane University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-communications-the-basics-32130">Business Communications - The Basics</a> from <em>Doane University</em></li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/tesu-information-literacy-104373"><strong>Information Literacy</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/information-literacy-104346">Information Literacy</a> from <em>Thomas Edison State University</em></li>
</ul>
<h2 id="heading-information-security-infosec">Information Security (InfoSec)</h2>
<h3 id="heading-masters-degrees-9">Master's degrees</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/georgia-tech-master-cybersecurity-20593"><strong>Online Master of Science in Cybersecurity (OMS Cybersecurity)</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-software-development-process-2335">Software Development Process</a> from <em>Georgia Institute of Technology</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-software-architecture-design-3418">Software Architecture &amp; Design</a> from <em>Georgia Institute of Technology</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-intro-to-information-security-3420">Intro to Information Security</a> from <em>Georgia Institute of Technology</em> ★★☆☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-software-analysis-testing-8568">Software Analysis &amp; Testing</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/udacity-database-systems-concepts-design-8573">Database Systems Concepts &amp; Design</a> from <em>Georgia Institute of Technology</em> ★★★★☆(1)</li>
</ul>
<p><a target="_blank" href="https://www.classcentral.com/course/coventry-university-master-cybersecurity-20919"><strong>MSc Cyber Security</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/cryptography-11655">An Introduction to Cryptography</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/network-security-basics-11668">Basics of Network Security</a> from <em>Coventry University</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ethical-hacking-an-introduction-13186">Ethical Hacking: An Introduction</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cyber-security-in-the-software-development-life-c-13188">Cyber Security in the Software Development Life Cycle</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/security-operations-14397">Security Operations</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-rise-of-connected-devices-17056">The Internet of Things: The Rise of Connected Devices</a> from <em>Coventry University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/basics-of-automotive-cyber-security-17073">Automotive Cyber Security: An Introduction</a> from <em>Coventry University</em> ★★★☆☆(2)</li>
</ul>
<h3 id="heading-micromasters-11">MicroMasters</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/ritx-cybersecurity-18317"><strong>Cybersecurity</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-cybersecurity-fundamentals-7844">Cybersecurity Fundamentals</a> from <em>Rochester Institute of Technology</em> ★★★★★(25)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-cybersecurity-risk-management-7845">Cybersecurity Risk Management</a> from <em>Rochester Institute of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-computer-forensics-7857">Computer Forensics</a> from <em>Rochester Institute of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-cybersecurity-capstone-7873">Cybersecurity Capstone</a> from <em>Rochester Institute of Technology</em> ★★★☆☆(1)</li>
</ul>
<h3 id="heading-microbachelors-8">MicroBachelors</h3>
<p><a target="_blank" href="https://www.classcentral.com/course/nyux-cybersecurity-fundamentals-21967"><strong>Cybersecurity Fundamentals</strong></a></p>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-information-security-introduction-to-information-security-21423">Information Security - Introduction to Information Security</a> from <em>New York University (NYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-information-security-authentication-and-access-control-21426">Information Security - Authentication and Access Control</a> from <em>New York University (NYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-information-security-advanced-topics-21428">Information Security - Advanced topics</a> from <em>New York University (NYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-network-security-introduction-to-network-security-21430">Network Security - Introduction to Network Security</a> from <em>New York University (NYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-network-security-protocols-21431">Network Security - Protocols</a> from <em>New York University (NYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-network-security-advanced-topics-21432">Network Security - Advanced Topics</a> from <em>New York University (NYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-penetration-testing-discovering-vulnerabilities-21433">Penetration Testing - Discovering Vulnerabilities</a> from <em>New York University (NYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-penetration-testing-exploitation-21434">Penetration Testing - Exploitation</a> from <em>New York University (NYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/edx-penetration-testing-post-exploitation-21435">Penetration Testing - Post Exploitation</a> from <em>New York University (NYU)</em></li>
</ul>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ I uncovered 1700 Coursera Courses that Are Still Completely Free ]]>
                </title>
                <description>
                    <![CDATA[ By Dhawal Shah Is Coursera Free? At Class Central, we get that question so often that I wrote a guide to answer it. Nowadays, most Coursera courses are free to audit. But if you want to complete graded assignments or get a course certificate, you hav... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/coursera-free-online-courses-6d84cdb30da/</link>
                <guid isPermaLink="false">66d45e9a182810487e0ce17a</guid>
                
                    <category>
                        <![CDATA[ Data Science ]]>
                    </category>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ self-improvement  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ startup ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ freeCodeCamp ]]>
                </dc:creator>
                <pubDate>Wed, 15 Mar 2023 10:00:00 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2021/02/coursera-free-courses.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>By Dhawal Shah</p>
<p>Is Coursera Free? At <a target="_blank" href="https://www.classcentral.com/">Class Central</a>, we get that question so often that I wrote <a target="_blank" href="https://www.classcentral.com/report/coursera-signup-for-free/">a guide to answer it</a>. Nowadays, most Coursera courses are free to audit. But if you want to complete graded assignments or get a course certificate, you have to pay.</p>
<p>Coursera’s entire catalog used to be entirely free. But in late 2015, they <a target="_blank" href="https://blog.coursera.org/an-update-on-assessments-grades-and/">introduced a paywall</a>. Over the following years, this monetization approach expanded to other online course providers, <a target="_blank" href="https://www.classcentral.com/report/edx-paywall-graded-assignments/">including edX</a>.</p>
<p>But I always knew that there were a few courses on Coursera that remained completely free. When you enroll in these courses, they offer a “<em>Full Course, No Certificate</em>” option, as you can see below.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/03/coursera-free-course-no-certificate.png" alt="Image" width="600" height="400" loading="lazy">
<em>Free Coursera course: “Full Course, No Certificate” option (with graded assignments)</em></p>
<p>By contrast, other courses tend to offer a more restrictive free-to-audit option, which doesn’t include graded assignments. This option is also quite easy to miss. You have to look for the “<em>audit</em>” link at the very bottom of the window that pops up when you enroll.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/03/coursera-free-audit-course.png" alt="Image" width="600" height="400" loading="lazy">
<em>Free Coursera course: Free audit option (without graded assignments)</em></p>
<h2 id="heading-which-courses-are-entirely-free">Which Courses are Entirely Free?</h2>
<blockquote>
<p>Out of Coursera’s 7000 or so active courses, I expected to find about 50 fully-free courses. Imagine my surprise (shock, really) when I found that close to 1700 Coursera courses are still completely free</p>
</blockquote>
<p>The biggest challenge is finding <em>which</em> Coursera courses are entirely free. The Coursera website doesn’t provide any “free course” filter. To know if a course is fully free, you have to log into Coursera, enroll in the course, and look for the “<em>Full Course, No Certificate</em>” option.</p>
<p>But there are thousands of courses on Coursera, so short of checking them one by one, it’s tricky to manually put together a list of their fully-free courses. So instead, we went with an automated approach.</p>
<p>Originally, I used the browser automation tool <a target="_blank" href="https://www.classcentral.com/subject/selenium">Selenium</a> to check the courses for me. My colleague <a target="_blank" href="https://www.classcentral.com/@bob">Bob</a> set me up with an <a target="_blank" href="https://www.classcentral.com/institution/aws">AWS instance</a> and <a target="_blank" href="https://aws.amazon.com/cloud9/">Cloud9 IDE</a>, where I could do this automation. Below is a screenshot of the setup. (Yes, I prefer PHP.)</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2023/03/cloud9-selenium-php-1.png" alt="Image" width="600" height="400" loading="lazy">
<em>Automating the search for free Coursera courses with Selenium</em></p>
<p>Out of Coursera’s 7000 or so active courses, I expected to find about 50 fully-free courses. Imagine my surprise (shock, really) when I found that close to 1700 Coursera courses are still completely free (that is, including the graded assignments, minus only the free certificate).</p>
<h2 id="heading-free-coursera-courses">Free Coursera Courses</h2>
<p>Below, I've compiled the 1700 entirely free courses offered on Coursera. It includes a number of highly-rated courses, including a few from Class Central’s <a target="_blank" href="https://www.classcentral.com/collection/top-free-online-courses">Best Online Courses of All Time</a>, such as Barbara Oakley's <a target="_blank" href="https://www.classcentral.com/course/learning-how-to-learn-2161">Learning How to Learn</a>.</p>
<p>Here are some stats about the course list:</p>
<ul>
<li>Combined, these courses have <strong>76M</strong> enrollments.</li>
<li>Combined, they have received <strong>41K</strong> reviews on Class Central.</li>
<li>There are <strong>9</strong> courses with over <strong>1M</strong> enrollments.</li>
<li>The most popular one, <a target="_blank" href="https://www.classcentral.com/course/the-science-of-well-being-10346">Yale's Science of Well-Being</a>, has <strong>4.3M</strong> enrollments.</li>
<li><strong>58%</strong> of the courses are in English and <strong>14%</strong> are in Spanish.</li>
</ul>
<p>To help you navigate the course list, I’ve broken it down by subject. Click on one to jump to the corresponding courses.</p>
<ul>
<li><a class="post-section-overview" href="#heading-personal-development-78">Personal Development (78)</a></li>
<li><a class="post-section-overview" href="#heading-health-amp-medicine-196">Health &amp; Medicine (196)</a></li>
<li><a class="post-section-overview" href="#heading-science-194">Science (194)</a></li>
<li><a class="post-section-overview" href="#heading-humanities-197">Humanities (197)</a></li>
<li><a class="post-section-overview" href="#heading-computer-science-103">Computer Science (103)</a></li>
<li><a class="post-section-overview" href="#heading-programming-81">Programming (81)</a></li>
<li><a class="post-section-overview" href="#heading-mathematics-44">Mathematics (44)</a></li>
<li><a class="post-section-overview" href="#heading-engineering-88">Engineering (88)</a></li>
<li><a class="post-section-overview" href="#heading-social-sciences-212">Social Sciences (212)</a></li>
<li><a class="post-section-overview" href="#heading-business-255">Business (255)</a></li>
<li><a class="post-section-overview" href="#heading-art-amp-design-67">Art &amp; Design (67)</a></li>
<li><a class="post-section-overview" href="#heading-data-science-45">Data Science (45)</a></li>
<li><a class="post-section-overview" href="#heading-education-amp-teaching-85">Education &amp; Teaching (85)</a></li>
<li><a class="post-section-overview" href="#heading-information-security-infosec-16">Information Security (InfoSec) (16)</a></li>
</ul>
<h2 id="heading-more-free-courses">More Free Courses</h2>
<p>If you don’t find what you need in the course list below, <a target="_blank" href="https://www.classcentral.com/subjects">y</a>ou may want to have a look at my other freeCodeCamp articles:</p>
<ul>
<li><a target="_blank" href="https://www.freecodecamp.org/news/free-certificates/">1000+ Free Developer Certifications</a></li>
<li><a target="_blank" href="https://www.freecodecamp.org/news/ivy-league-free-online-courses-a0d7ae675869/">Here are 850+ Ivy League Courses You Can Take Right Now for Free</a></li>
<li><a target="_blank" href="https://www.freecodecamp.org/news/free-online-programming-cs-courses/">860+ Free Online Programming &amp; Computer Science Courses</a></li>
</ul>
<hr>
<h2 id="heading-personal-development-78">Personal Development (78)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/learning-how-to-learn-2161">Learning How to Learn: Powerful mental tools to help you master tough subjects</a> from <em>Deep Teaching Solutions</em> ★★★★★(23000)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mindshift-8289">Mindshift: Break Through Obstacles to Learning and Discover Your Hidden Potential</a> from <em>McMaster University</em> ★★★★★(7364)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/learning-how-to-learn-youth-12569">Learning How To Learn for Youth</a> from <em>Arizona State University</em> ★★★★★(948)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/apprendre-comment-apprendre-18067">Apprendre comment apprendre (ACA) : Des outils mentaux puissants qui vous aideront à maîtriser des sujets difficiles</a> from <em>Deep Teaching Solutions</em> ★★★★★(377)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/successfulnegotiation-2460">Successful Negotiation: Essential Strategies and Skills</a> from <em>University of Michigan</em> ★★★★★(217)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/aprendo-4631">Aprender</a> from <em>Universidad Nacional Autónoma de México</em> ★★★★★(106)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/know-thyself-the-examined-life-432">Know Thyself - The Value and Limits of Self-Knowledge: The Examined Life</a> from <em>University of Edinburgh</em> ★★★★★(30)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/skills-management-11218">How to Get Skilled: Introduction to Individual Skills Management (Project-Centered Course)</a> from <em>State University of New York</em> ★★★★☆(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mindware-8128">Mindware: Critical Thinking for the Information Age</a>  from <em>University of Michigan</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/human-needs-8253">The Arts and Science of Relationships: Understanding Human Needs</a> from <em>University of Toronto</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/aprender-4227">Aprendendo a aprender: ferramentas mentais poderosas para ajudá-lo a dominar assuntos difíceis (em Português) [Learning How to Learn]</a> from <em>Deep Teaching Solutions</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/competencias-digitales-ofimatica-13590">Competencias digitales. Herramientas de ofimática (Microsoft Word, Excel, Power Point)</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-footprint-8277">Digital Footprint</a> from <em>University of Edinburgh</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/transmedia-storytelling-7173">Transmedia Storytelling: Narrative worlds, emerging technologies, and global audiences</a> from <em>University of New South Wales</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/operating-system-foundations-117538">Operating System Foundations</a> from <em>Infosec</em> ★★☆☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/learning-how-to-learn-ar-13352">تعّلم كيف تتعلم: أدوات ذهنية قوية لمساعدتك على إتقان موضوعات صعبة</a> from <em>Deep Teaching Solutions</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ruhe-xuexi-5699">学会如何学习：帮助你掌握复杂学科的强大智力工具（Learning How to Learn）</a> from <em>Deep Teaching Solutions</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/managing-emotions-uncertainty-stress-22856">Managing Emotions in Times of Uncertainty &amp; Stress</a> from <em>Yale University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/-genius-106126">The Nature of Genius</a> from <em>Yale University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/lesson-small-talk-and-conversational-vocabulary-17922">Lesson | Small Talk &amp; Conversational Vocabulary</a> from <em>Georgia Institute of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/e-learning-5921">Mastering Remote Work and Online Study in U.S. in the post-COVID Era</a> from <em>State University of New York</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/get-hired-7091">Job Success: Get Hired or Promoted in 3 Steps</a> from <em>State University of New York</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/manage-stress-police-21650">Understanding and Managing the Stresses of Police Work</a> from <em>University of Toronto</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/makingprogress-13366">"Making" Progress Teach-Out</a> from <em>Emory University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/familia-trabajo-sociedad-9572">Trabajar para ser feliz</a> from <em>Universidad Austral</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/research-for-impact-13093">Research for Impact</a> from <em>University of Cape Town</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/translation-in-practice-9775">Translation in Practice</a> from <em>Nanjing University</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/media-2839">English for Media Literacy</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/success-ar-13183">علم النجاح: ما يجب أن تعرفه من الباحثين</a>  from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/brilliant-passionate-you-22019">Brilliant, Passionate You</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/negotiation-skills-fr-32666">Réussir une négociation : Stratégies et compétences clés</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/negotiation-skills-de-32667">Erfolgreich Verhandeln: Strategien und Fähigkeiten</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/influencing-people-ar-32776">التأثير على الأشخاص</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/influencing-people-pt-32814">Como influenciar pessoas</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/negociacion-4188">Negociación exitosa: Estrategias y habilidades esenciales (en español)</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/negociacao-4217">Negociações de sucesso: estratégias e habilidades essenciais (em Português)</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/international-travel-8782">International Travel Preparation, Safety, &amp; Wellness</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/intro-learning-transfer-13683">Introduction to Learning Transfer and Life Long Learning (3L)</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/upravlinnya-chasom-5261">Працюйте розумніше, а не більше: управління часом для особистої та професійної продуктивності</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/negotiation-ar-13419">مقدمة عن التفاوض: دليل استراتيجي لتصبح مُفاوضًا ذا مبادئ ومُقنعًا</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/negotiation-ru-45211">Введение: как стать убедительным переговорщиком</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lesson-express-yourself-pronunciation-17918">Lesson | Express Yourself: Pronunciation</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lesson-organize-your-pitch-17919">Lesson | Organize Your Pitch</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lesson-get-ready-for-the-interview-17920">Lesson | Get Ready for the Interview</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lesson-understand-and-be-understood-on-the-phone-17921">Lesson | Understand and Be Understood on the Phone</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lesson-telephone-language-17923">Lesson | Telephone Language</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lesson-video-conferencing-face-to-face-but-online-17924">Lesson | Video Conferencing: Face to Face but Online</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/persuade-speech-ar-13351">الخطابة الإقناعية: تحفيز الجماهير بالحجج المُقنِعة واللغة المؤثِّرة</a> from <em>University of Washington</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teamwork-and-creativity-es-64341">Trabajo en equipo y creatividad</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/organizational-concepts-and-language-ar-64343">اللغة والمفاهيم التنظيمية</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teamwork-and-creativity-fr-64344">Travail d'équipe et créativité</a>  from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teamwork-and-creativity-ar-64345">العمل الجماعي والإبداع</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/empowering-yourself-post-truth-world-15225">Empowering Yourself in a Post-Truth World</a> from <em>State University of New York</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/poweronboarding-2256">Power Onboarding</a> from <em>Northwestern University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/esprit-critique-35099">Exercer son esprit critique à l’ère informationnelle</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/futureofwork-12539">Designing the Future of Work</a> from <em>University of New South Wales</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/conflict-transformation-8457">Conflict Transformation</a> from <em>Emory University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fondamentaux-negociation-11052">Les Fondamentaux de la Négociation</a>  from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/zhichang-suyang-2369">職場素養 (Professionalism)</a>  from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/etica-4639">La solución del conflicto ético</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/competencias-digitales-access-13589">Competencias digitales de ofimática: Microsoft Access</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/competencias-digitales-herramientas-basi-13591">Competencias digitales. Conceptos y herramientas básicas</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/formacion-pensamiento-critico-40301">La formación del pensamiento crítico en la era digital</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/hablar-bien-en-publico-10518">Cómo hablar bien en público</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pensamiento-sistemico-en-el-siglo-xxi-110387">Pensamiento Sistémico en el Siglo XXI</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/competencias-empleabilidad-linkyou-19404">Competencias para la empleabilidad</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/negociacion-iae-11560">Negociación 4.0</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/communicate-with-impact-ru-22769">Повествование и влияние: Эффектная коммуникация</a> from <em>Macquarie University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/communicate-with-impact-fr-22772">Storytelling et influence : Communiquer pour convaincre</a> from <em>Macquarie University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/career-guide-and-interview-prep-for-data-analyst--89740">Data Analyst Career Guide and Interview Preparation</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/communicating-trustworthy-information-in-the-digi-66528">Science Communication: Communicating Trustworthy Information in the Digital World</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mi-primer-empleo-9375">Mi Primer Empleo (MPE)</a> from <em>Universidad de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/etkilikonusma-3660">Etkili Konuşma (Effective Speaking)</a> from <em>Koç University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/professionalism-in-an-era-of-change-13563">Professionalism in an era of change</a> from <em>Utrecht University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/como-engajar-equipes-e-criar-cultura-em-ambientes-54367">Como engajar equipes e criar cultura em ambientes virtuais</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/critical-thinking-1-110430">التفكير الناقد | Critical Thinking</a> from <em>Alfaisal University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/a-tanulas-tanulasa-17984">A tanulás tanulása: Hatékony mentális eszközök, melyek segítenek megbirkózni a nehéz tantárgyakkal (Learning How to Learn)</a> from <em>Deep Teaching Solutions</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/land-your-next-role-119583">Land Your Next Role</a> from <em>Aptly</em></li>
</ul>
<h2 id="heading-health-amp-medicine-196">Health &amp; Medicine (196)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/clinical-research-5037">Understanding Clinical Research: Behind the Statistics</a> from <em>University of Cape Town</em> ★★★★★(735)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/medical-research-19515">Understanding Medical Research: Your Facebook Friend is Wrong</a> from <em>Yale University</em> ★★★★★(364)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-concepts-chinese-medicine-9496">Health Concepts in Chinese Medicine</a> from <em>The Hong Kong University of Science and Technology</em> ★★★★★(86)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/vitalsigns-1887">Vital Signs: Understanding What the Body Is Telling Us</a> from <em>University of Pennsylvania</em> ★★★★★(51)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/epidemiology-733">Epidemiology: The Basic Science of Public Health</a> from <em>The University of North Carolina at Chapel Hill</em> ★★★★☆(29)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/severe-to-profound-intellectual-disabili-15206">Severe to Profound Intellectual Disability: Circles of Care and Education</a> from <em>University of Cape Town</em> ★★★★★(24)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/positive-psychiatry-8783">Positive Psychiatry and Mental Health</a>  from <em>The University of Sydney</em> ★★★★★(21)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid-19-contact-tracing-19669">COVID-19 Contact Tracing</a> from <em>Johns Hopkins University</em> ★★★★★(16)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/get-active-5260">Sit Less, Get Active</a> from <em>University of Edinburgh</em> ★★★★☆(16)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/organ-donation-8708">Organ Donation: From Death to Life</a>  from <em>University of Cape Town</em> ★★★★★(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/manage-health-covid-19-19289">Mind Control: Managing Your Mental Health During COVID-19</a> from <em>University of Toronto</em> ★★★★★(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/epidemics-678">Epidemics - the Dynamics of Infectious Diseases</a> from <em>Pennsylvania State University</em> ★★★★☆(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid-19-what-you-need-to-know-19270">COVID-19: What You Need to Know</a> from <em>Osmosis University</em> ★★★★★(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/clinicalterminology-839">Clinical Terminology for International and U.S. Students</a> from <em>University of Pittsburgh</em> ★★★★★(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid-19-training-healthcare-20907">COVID-19 Training for Healthcare Workers</a> from <em>Stanford University</em> ★★★★★(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/dentmedpenn-2902">Introduction to Dental Medicine</a> from <em>University of Pennsylvania</em> ★★★★☆(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/infection-prevention-5062">Infection Prevention in Nursing Homes</a> from <em>The University of North Carolina at Chapel Hill</em> ★★★★★(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/bacteria-3203">Bacteria and Chronic Infections</a> from <em>University of Copenhagen</em> ★★★★★(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/physical-therapy-exercise-11686">Managing Your Health: The Role of Physical Therapy and Exercise</a> from <em>University of Toronto</em> ★★★★☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/diabetes-664">Diabetes - a Global Challenge</a> from <em>University of Copenhagen</em> ★★★★☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/chemhealth-2053">Chemicals and Health</a> from <em>Johns Hopkins University</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/chronicpain-1769">Preventing Chronic Pain: A Human Systems Approach</a> from <em>University of Minnesota</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid-19-19029">Science Matters: Let's Talk About COVID-19</a> from <em>Imperial College London</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-gender-spectrum-8300">Health Across the Gender Spectrum</a> from <em>Stanford University</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid19-epidemiology-19250">Fighting COVID-19 with Epidemiology: A Johns Hopkins Teach-Out</a> from <em>Johns Hopkins University</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/systems-thinking-5723">Systems Thinking In Public Health</a> from <em>Johns Hopkins University</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edivet-1675">EDIVET: Do you have what it takes to be a veterinarian?</a> from <em>University of Edinburgh</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mentalhealth-400">The Social Context of Mental Health and Illness</a> from <em>University of Toronto</em> ★★★☆☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/screening-4793">Disease Screening in Public Health</a> from <em>University of Geneva</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/datamanagement-540">Data Management for Clinical Research</a> from <em>Vanderbilt University</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/abdomen-anatomy-4420">Anatomy of the Abdomen and Pelvis; a journey from basis to clinic.</a>  from <em>Leiden University</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/newnordicdiet-669">The New Nordic Diet - from Gastronomy to Health</a>  from <em>University of Copenhagen</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/breastfeeding-10633">Stanford's Short Course on Breastfeeding</a> from <em>Stanford University</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/clinicalskills-2574">Teaching and Assessing Clinical Skills</a> from <em>University of Michigan</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/measuring-and-maximizing-impact-of-covid-19-conta-20985">Measuring and Maximizing Impact of COVID-19 Contact Tracing</a> from <em>Johns Hopkins University</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/adhd-everyday-strategies-6041">ADHD: Everyday Strategies for Elementary Students</a> from <em>State University of New York</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ebolaessentials-3326">Ebola: Essential Knowledge for Health Professionals</a> from <em>University of Amsterdam</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/antibiotic-stewardship-11992">Antibiotic Stewardship</a>  from <em>Stanford University</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/michigan-sport-related-concussion-traini-15223">Michigan Sport-Related Concussion Training Certification</a>  from <em>University of Michigan</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/aidsfearandhope-3153">AIDS: Fear and Hope</a> from <em>University of Michigan</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategies-senior-housing-covid19-23267">Strategies for Senior Housing Communities during COVID-19</a> from <em>Johns Hopkins University</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/trunk-anatomy-10390">Anatomy of the Chest, Neck, Abdomen, and Pelvis</a> from <em>Yale University</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/onehealth-20756">Bats, Ducks, and Pandemics: An Introduction to One Health Policy</a> from <em>Princeton University</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/parasitology-3154">Tropical Parasitology: Protozoans, Worms, Vectors and Human Diseases</a> from <em>Duke University</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/hha-3726">Foundations for Assisting in Home Care</a> from <em>State University of New York</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/chickens-2937">Chicken Behaviour and Welfare</a> from <em>University of Edinburgh</em> ★★★☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/globalhealthoverview-685">Global Health: An Interdisciplinary Overview</a> from <em>University of Geneva</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ebola-3202">Ebola Virus Disease: An Evolving Epidemic</a> from <em>Emory University</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/clinical-kidney-transplantation-4422">Clinical Kidney, Pancreas and Islet Transplantation</a> from <em>Leiden University</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/everyday-chinese-medicine-9386">Everyday Chinese Medicine</a> from <em>The Chinese University of Hong Kong</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/implant-dentistry-7191">Implant Dentistry</a> from <em>The University of Hong Kong</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-health-introduction-2076">An Introduction to Global Health</a> from <em>University of Copenhagen</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cataractsurgery-2344">Introduction to Cataract Surgery</a> from <em>University of Michigan</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid-vaccine-ambassador-61414">COVID Vaccine Ambassador Training: How to Talk to Parents</a>  from <em>Johns Hopkins University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/addiction-treatment-17925">Addiction Treatment: Clinical Skills for Healthcare Providers</a> from <em>Yale University</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-behavior-change-19269">Health Behavior Change: From Evidence to Action</a> from <em>Yale University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/essentials-global-health-7337">Essentials of Global Health</a> from <em>Yale University</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/healthcarejobs-3084">Career 911: Your Future Job in Medicine and Healthcare</a> from <em>Northwestern University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/pregnancychildbirth-1404">Childbirth: A Global Perspective</a> from <em>Emory University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/actualizacion-manejo-diabetes-tipo-2-12593">Actualización en el manejo del paciente con diabetes mellitus tipo 2</a> from <em>Universidad Nacional Autónoma de México</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/zhong-yao-zhi-shi-4329">杏林探宝——认知中药</a> from <em>Shanghai Jiao Tong University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/everyday-chinese-medicine-2-18189">Everyday Chinese Medicine 2</a> from <em>The Chinese University of Hong Kong</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/diabetes-essential-facts-7632">Diabetes – the Essential Facts</a> from <em>University of Copenhagen</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/easing-the-burden-of-obesity-diabetes-cv-8663">Easing the burden of obesity, diabetes and cardiovascular disease</a> from <em>The University of Sydney</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mrifundamentals-5043">MRI Fundamentals</a> from <em>Korea Advanced Institute of Science and Technology</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/healthcare-it-7664">Health Care IT: Challenges and Opportunities</a> from <em>Icahn School of Medicine at Mount Sinai</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/clinicalepidemiology-5970">Clinical Epidemiology</a> from <em>Utrecht University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid-19-capacitacion-trabajadores-de-la-salud-23194">Capacitación sobre COVID-19 para trabajadores de salud</a> from <em>Stanford University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/stories-of-infection-8444">Stories of Infection</a> from <em>Stanford University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/oralcavity-9263">The Oral Cavity: Portal to Health and Disease</a> from <em>University of Pennsylvania</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/thoracic-oncology-6908">Thoracic Oncology</a> from <em>University of Michigan</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/humanitarian-public-health-2-17156">Public Health in Humanitarian Crises 2</a> from <em>Johns Hopkins University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/strategies-assisted-living-covid19-23187">Strategies for Assisted Living Communities during COVID-19</a> from <em>Johns Hopkins University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/-dyslexia-116700">Overcoming Dyslexia</a> from <em>Yale University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-health-diplomacy-6750">Global Health Diplomacy</a> from <em>State University of New York</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/precision-medicine-21640">Precision Medicine</a> from <em>University of Geneva</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/personalizedmed-2573">Case Studies in Personalized Medicine</a> from <em>Vanderbilt University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/hwts-1721">Introduction to Household Water Treatment and Safe Storage</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/foodsafetytox-2941">食品安全與毒理 (Food Safety &amp; Toxicology)</a> from <em>National Taiwan University</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/foodsafety2-8863">食品安全與風險分析（Food Safety＆Risk Analysis）</a> from <em>National Taiwan University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/nutricion-obesidad-sobrepeso-12594">Nutrición y obesidad: control de sobrepeso</a> from <em>Universidad Nacional Autónoma de México</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/actua-dolor-cronico-12048">Actúa ante el dolor crónico</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/implant-dentistry-chinese-9265">口腔种植学 （Implant Dentistry）</a> from <em>The University of Hong Kong</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/urbanisation-health-promoting-sustainable-solutio-45899">Urbanisation and Health - Promoting Sustainable Solutions</a> from <em>University of Copenhagen</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-care-innovation-6017">Innovating Solutions for Aging Populations</a> from <em>University of Copenhagen</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/acute-stroke-race-scale-13754">Prehospital care of acute stroke and patient selection for endovascular treatment using the RACE scale</a> from <em>University of Barcelona</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/alimentacion-vuelta-al-mundo-7417">Alimentación y dietética para una vuelta al mundo a vela</a> from <em>University of Barcelona</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ehealth-6876">eHealth: More than just an electronic record</a> from <em>The University of Sydney</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/quality-healthcare-6316">Leading Healthcare Quality and Safety</a> from <em>George Washington University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cuidados-del-recien-nacido-10309">Cuidados y procedimientos generales en la atención del recién nacido</a> from <em>Universidad de Chile</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/medical-applications-particle-accelerato-12557">Medical Applications of Particle Accelerators (NPAP MOOC)</a> from <em>Lund University</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/infertilite-4858">İnfertilite Hemşireliği (Infertility Nursing)</a> from <em>Koç University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid-19lectureseries-19497">Lecture Series for Preventing and Controlling COVID-19</a> from <em>Xi'an Jiaotong University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid-19-training-healthcare-hindi-48172">स्वास्थ्य कर्मचारियों के लिए कोविड-19 ट्रेनिंग</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-after-cancer-cancer-survivorship-for-prima-48384">Health After Cancer: Cancer Survivorship for Primary Care</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid-19-training-healthcare-portuguese-br-55980">Formação sobre a COVID-19 para Profissionais de Saúde</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/formation-covid-19-pour-personnels-de-sante-58310">Formation COVID-19 pour personnels de santé</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teaching-lgbtq-health-121090">Teaching LGBTQ+ Health</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/feedingtheworld-3913">Feeding the World</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/hearing-loss-in-children-19627">Hearing Loss in Children</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/va-health-care-6216">Service Transformed: Lessons in U.S. Veteran Centered Care</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/rastreamento-contatos-covid-19-20780">Rastreamento de contato da COVID-19</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/rastreo-contactos-covid-19-20781">Rastreo de los contactos de la COVID-19</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lets-talk-about-it-a-health-and-immigration-teach-54610">Let's talk about it: A Health and Immigration Teach Out</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid-vaccine-ambassador-spanish-89845">Embajador de la Vacuna COVID: Cómo Hablar con los Padres</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-quality-maternal-and-newborn-care-22339">Global Quality Maternal and Newborn Care</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/planetary-health-for-nurses-ysn-120105">Planetary Health for Nurses</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-science-of-well-being-for-teens-121052">The Science of Well-Being for Teens</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/hacking-covid-19--course-3-unraveling-origins-of--61352">Hacking COVID-19 — Course 3: Unraveling COVID-19's Origins</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-resilience-healthcare-workers-45896">Mental Health and Resilience for Healthcare Workers</a> from <em>University of Toronto</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/2022-prevent-cancer-89864">2022 Cancer Prevention Web-Based Activity</a> from <em>University of Virginia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/adolescenthealth-3333">Global Adolescent Health</a> from <em>University of Melbourne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/bjmuepiabc-2355">流行病学基础（上）</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/methodologysocial-2387">社会调查与研究方法 （上）Methodologies in Social Research (Part I)</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/methodologysocial2-2783">社会调查与研究方法 （下）Methodologies in Social Research (Part 2)</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/geng-nian-qi-4242">更年期综合管理</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/yoga-8829">大学生瑜伽</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sexuality-and-disability-25534">Community Awareness Course: Sexuality and Disability</a> from <em>University of Minnesota</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/supervision-raisonnement-clinique-13135">Supervision du raisonnement clinique</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/international-health-regulations-13838">Global Health Security, Solidarity and Sustainability through the International Health Regulations</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/troubles-spectre-autisme-diagnostic-17359">Troubles du spectre de l'autisme : diagnostic</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid-19-recherche-contacts-22528">COVID-19 : à la recherche des contacts</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/troubles-spectre-autisme-biologie-neurosciences-37632">Troubles du spectre de l'autisme : biologie et neurosciences</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/troubles-spectre-autisme-interventions-46027">Troubles du spectre de l'autisme : interventions</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ebola-vaincre-ensemble-4299">Ebola : Vaincre ensemble !</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/zika-6827">In the footsteps of Zika… approaching the unknown</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/violence-against-healthcare-8713">Violence Against Healthcare</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/recruitment-minorities-clinical-trials-13466">Faster Together, Enhancing the Recruitment of Minorities in Clinical Trials</a>  from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-society-and-wellness-in-covid-19-times-33579">Health, Society, and Wellness in COVID-19 Times</a>  from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/talkmentalillness-34079">#talkmentalillness</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ghresponder-3283">Foundations for Global Health Responders</a> from <em>University of Colorado System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/engineering-humanitarian-9504">Introduction to Public Health Engineering in Humanitarian Contexts</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/taiwan-medical-33433">Pioneers of Medicine and Medical Breakthroughs in Taiwan</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lung-cancer-9971">一堂課讓你認識肺癌（Basic Concepts of Lung Cancer: Diagnosis and Treatment）</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/dialisis-peritoneal-12587">Diálisis peritoneal</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/farmaco-odontologos-12588">Farmacología para odontólogos</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/farmacovigilancia-ocular-12591">Farmacovigilancia ocular</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cuidado-heridas-12592">Cuidado de heridas en el ámbito hospitalario</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tratamiento-caries-12761">Manejo moderno de la caries dental</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cancer-prostata-12790">Cáncer de próstata</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/residente-22138">El rol docente del médico residente</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/evaluacion-aprendizaje-escenarios-clinicos-18033">Evaluación del Aprendizaje en Escenarios Clínicos</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-population-health-managemen-13057">Population Health: Fundamentals of Population Health Management</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/population-health-governance-13330">Population Health: Governance</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/healthbehaviour-13568">Population Health: Health &amp; Health Behaviour</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/population-health-study-design-14402">Population Health: Study Design</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/responsible-data-analysis-15156">Population Health: Responsible Data Analysis</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/alternativepaymentmodels-17048">Population Health: Alternative Payment Models</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/panelmanagement-17893">Population Health: Panel Management Next Level</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/anticonconcepcion-hormonal-12362">Anticoncepción hormonal al alcance de todos</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pap-covid19-19344">Primeros Auxilios Psicológicos (PAP). Edición especial COVID-19</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/curanderismo-influencias-globales-58307">Curanderismo:Influencias Globales de la Medicina Tradicional</a> from <em>University of New Mexico</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tools-and-practices-for-addressing-pandemic-chall-93328">Tools and Practices for Addressing Pandemic Challenges</a> from <em>Politecnico di Milano</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/trustworthy-ai-for-healthcare-management-110634">Trustworthy AI for Healthcare Management</a> from <em>Politecnico di Milano</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/reaching-vulnerable-groups-through-pandemic-polic-116695">Reaching Vulnerable Groups through Pandemic Policy</a> from <em>Politecnico di Milano</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/dolor-neuropatico-anestesiologia-18146">Diagnóstico y tratamiento del dolor neuropático en atención primaria</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/anticoagulacion-104060">Anticoagulación</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid19clinicalupdate-19358">COVID-19 - A clinical update</a> from <em>University of Florida</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/biomedvis-19382">Biomedical Visualisation</a> from <em>University of Glasgow</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-social-dimensions-of-antimicrobial-resistance-94882">The Social Dimensions of Antimicrobial Resistance</a> from <em>University of Amsterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/yoga-sjtu-22273">循序渐进练瑜伽</a> from <em>Shanghai Jiao Tong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sjtuyoga-22558">Improving Immunity Based on Traditional Eastern Exercises</a> from <em>Shanghai Jiao Tong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chang-jian-man-xing-bing-4271">常见慢性病的健康管理</a> from <em>Shanghai Jiao Tong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/materials-oral-health-8301">Materials in Oral Health</a> from <em>The University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/epidemics-hkux-hku01x-8745">Epidemics</a> from <em>The University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-health-policy-7652">Global Health Policy</a> from <em>University of Tokyo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-models-innovative-care-9799">Business Models for Innovative Care for Older People</a> from <em>University of Copenhagen</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/non-communicable-diseases-in-humanitaria-12223">Non-Communicable Diseases in Humanitarian Settings</a> from <em>University of Copenhagen</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/patient-perspectives-on-medications-21555">Understanding Patient Perspectives on Medications</a> from <em>University of Copenhagen</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/non-alcoholic-fatty-liver-disease--the-essentials-22725">Non-Alcoholic Fatty Liver Disease – The Essentials</a> from <em>University of Copenhagen</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/patient-perspectives-on-medications-qualitative-i-36579">Patient Perspectives on Medications: Qualitative Interviews</a> from <em>University of Copenhagen</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/kangjunyao-chaojixijun-5038">抗菌药与超级细菌 －－天使与魔鬼的博弈</a> from <em>Fudan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/quanqiu-weisheng-7295">全球卫生导论</a> from <em>Fudan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ictus-agudo-escala-race-13755">Atención prehospitalaria del ictus agudo y selección de pacientes para tratamiento endovascular con la escala RACE</a> from <em>University of Barcelona</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/avc-echelle-race-14480">ÉCHELLE RACE: Dépistage préhospitalier de l’AVC impliquant une occlusion de gros vaisseaux cérébraux</a> from <em>University of Barcelona</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/covid-19-esp-32153">Manejo del enfermo semicrítico y crítico por COVID-19</a> from <em>University of Barcelona</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-1365">Global Health and Humanitarianism</a> from <em>University of Manchester</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/clinical-research-biostatistics-wolfram-13693">Doing Clinical Research: Biostatistics with the Wolfram Language</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/trauma-surgery-basics-17026">The Basics of Trauma Surgery</a> from <em>Technische Universität München (Technical University of Munich)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/unfallchirurgie-12057">Grundlagen der Unfallchirurgie</a> from <em>Technische Universität München (Technical University of Munich)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/clinicalsimulations-13804">Essentials in Clinical Simulations Across the Health Professions</a> from <em>George Washington University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/idea-2-impact-17047">idea 2 IMPACT: An Introduction to Translating Assistive Health Technologies and Other Products</a> from <em>University of Pittsburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/self-reflection-meditation-11054">Meditation: A way to achieve your goals in your life</a> from <em>Korea Advanced Institute of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/manejopromocion-21024">Manejo de Crisis Epilépticas y Promoción de la Inclusión Social</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/recuperacionoptimizadacirugiacolorrectal-40257">Recuperación Optimizada en Cirugía Colorrectal</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sistemas-y-modelos-de-organizacion-de-la-atencion-120195">Sistemas y modelos de organización de la atención en salud</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/enfermedades-no-transmisibles-10325">Atención Primaria en Salud: El desafío de las Enfermedades no Transmisibles</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/regulated-competition-healthcare-systems-16978">Regulated Competition in Healthcare Systems: Theory &amp; Practice</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/circaclock-2664">Circadian clocks: how rhythms structure life</a> from <em>Ludwig-Maximilians-Universität München</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/yingyang-jiankang-4344">营养与健康</a> from <em>Nanjing University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/virology-epidemiology-92431">Virology and Epidemiology in the Time of COVID-19</a> from <em>American Museum of Natural History</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/revisao-sistematica-19330">Revisão Sistemática e Meta-análise</a> from <em>Universidade Estadual de Campinas</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cosmetologia-34259">Cosmetologia em prol do envelhecimento com saúde e beleza</a> from <em>Universidade Estadual de Campinas</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cosmeticos-78904">Cosmetologia: Prática de Manipulação de Cosméticos</a> from <em>Universidade Estadual de Campinas</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sbe-10520">Saúde Baseada em Evidências</a> from <em>Universidade Estadual de Campinas</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/engaging-strategic-management-healthcare-organiza-126765">Engaging in Strategic Management in Healthcare Organizations</a> from <em>Northeastern University</em></li>
</ul>
<h2 id="heading-science-194">Science (194)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/mountains-101-7455">Mountains 101</a> from <em>University of Alberta</em> ★★★★★(597)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/dino101-1057">Dino 101: Dinosaur Paleobiology</a> from <em>University of Alberta</em> ★★★★★(139)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/medicalneuro-384">Medical Neuroscience</a> from <em>Duke University</em> ★★★★★(51)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/solarsystem-1813">The Science of the Solar System</a> from <em>California Institute of Technology</em> ★★★★★(51)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/theropods-birds-5236">Paleontology: Theropod Dinosaurs and the Origin of Birds</a> from <em>University of Alberta</em> ★★★★★(42)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/astrobio-415">Astrobiology and the Search for Extraterrestrial Life</a> from <em>University of Edinburgh</em> ★★★★★(33)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/geneticsevolution-381">Introduction to Genetics and Evolution</a> from <em>Duke University</em> ★★★★★(31)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/climate-change-mitigation-5054">Climate Change Mitigation in Developing Countries</a> from <em>University of Cape Town</em> ★★★★★(30)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/humanphysio-380">Introductory Human Physiology</a> from <em>Duke University</em> ★★★★☆(29)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ancient-marine-reptiles-5235">Paleontology: Ancient Marine Reptiles</a> from <em>University of Alberta</em> ★★★★★(29)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-things-work-431">How Things Work: An Introduction to Physics</a> from <em>University of Virginia</em> ★★★★★(28)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/neurobio-1606">Understanding the Brain: The Neurobiology of Everyday Life</a> from <em>The University of Chicago</em>  ★★★★★(28)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/early-vertebrate-evolution-5417">Paleontology: Early Vertebrate Evolution</a> from <em>University of Alberta</em> ★★★★★(27)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/astro-3007">Astronomy: Exploring Time and Space</a> from <em>University of Arizona</em> ★★★★★(23)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/einstein-765">Understanding Einstein: The Special Theory of Relativity</a> from <em>Stanford University</em> ★★★★★(19)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/coursera-dog-emotion-and-cognition-3627">Dog Emotion and Cognition</a> from <em>Duke University</em> ★★★★☆(19)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/bigbang-722">From the Big Bang to Dark Energy</a> from <em>University of Tokyo</em> ★★★★☆(17)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ntufsc-1264">Introduction to Forensic Science</a> from <em>Nanyang Technological University</em> ★★★★☆(17)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/animal-1357">Animal Behaviour and Welfare</a> from <em>University of Edinburgh</em> ★★★★☆(13)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/disasterprep-481">Disaster Preparedness</a> from <em>University of Pittsburgh</em> ★★★★☆(13)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/physicalchemistry-1456">Introduction to Physical Chemistry</a> from <em>University of Manchester</em> ★★★★☆(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/neuromarketing-1395">An Introduction to Consumer Neuroscience &amp; Neuromarketing</a>  from <em>Copenhagen Business School</em> ★★★☆☆(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/astrotech-1360">AstroTech: The Science and Technology behind Astronomical Discovery</a> from <em>University of Edinburgh</em> ★★★★☆(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cats-and-dogs-8318">The Truth About Cats and Dogs</a> from <em>University of Edinburgh</em> ★★★★★(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/behavioralgenetics-1765">Introduction to Human Behavioral Genetics</a> from <em>University of Minnesota</em> ★★★★★(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/plantknows-975">Understanding Plants - Part I: What a Plant Knows</a> from <em>Tel Aviv University</em> ★★★★★(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/eqp-554">Exploring Quantum Physics</a> from <em>University of Maryland, College Park</em> ★★★★☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/microbiome-2305">Gut Check: Exploring Your Microbiome</a> from <em>University of Colorado Boulder</em> ★★★★☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/bibrain-2667">The Bilingual Brain</a> from <em>University of Houston System</em> ★★★★☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/bluebrain-504">Synapses, Neurons and Brains</a>  from <em>Hebrew University of Jerusalem</em> ★★★★☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/chem991-2375">Introduction to Chemistry: Reactions and Ratios</a> from <em>Duke University</em> ★★★★★(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/compneuro-449">Computational Neuroscience</a> from <em>University of Washington</em> ★★★★☆(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/black-holes-astro-101-11460">Astro 101: Black Holes</a> from <em>University of Alberta</em> ★★★★★(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-warming-1151">Global Warming I: The Science and Modeling of Climate Change</a> from <em>The University of Chicago</em>  ★★★★☆(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/water-1364">Water Supply and Sanitation Policy in Developing Countries Part 1: Understanding Complex Problems</a> from <em>University of Manchester</em> ★★★★★(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ecology-conservation-10618">Ecology: Ecosystem Dynamics and Conservation</a> from <em>American Museum of Natural History</em> ★★★★★(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/advancedchemistry-1468">Advanced Chemistry</a> from <em>University of Kentucky</em> ★★★★★(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/origins-668">Origins - Formation of the Universe, Solar System, Earth and Life</a> from <em>University of Copenhagen</em> ★★★★★(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/greeningtheeconomy-2167">Greening the Economy: Lessons from Scandinavia</a> from <em>Lund University</em> ★★★★☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/visualpercepbrain-2363">Visual Perception and the Brain</a> from <em>Duke University</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/archaeoastronomy-7789">Archaeoastronomy</a> from <em>Politecnico di Milano</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/analyze-709">Analyzing the Universe</a> from <em>Rutgers University</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/spectroscopy-8550">Introduction to Molecular Spectroscopy</a> from <em>University of Manchester</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/agriculture-economics-nature-3067">Agriculture, Economics and Nature</a> from <em>University of Western Australia</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/introthermodynamics-815">Introduction to Thermodynamics: Transferring Energy from Here to There</a> from <em>University of Michigan</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sleep-3233">Sleep: Neurobiology, Medicine, and Society</a> from <em>University of Michigan</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/materials-science-5074">Materials Science: 10 Things Every Engineer Should Know</a> from <em>University of California, Davis</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/coursera-general-chemistry-concept-development-and-application-3885">General Chemistry: Concept Development and Application</a> from <em>Rice University</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/circular-economy-metals-9659">A Circular Economy of Metals: Towards a Sustainable Societal Metabolism</a> from <em>Leiden University</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ourearth-1378">Our Earth: Its Climate, History, and Processes</a> from <em>University of Manchester</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/finiteelementmethods-3537">The Finite Element Method for Problems in Physics</a> from <em>University of Michigan</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/chem992-2665">Introduction to Chemistry: Structures and Solutions</a> from <em>Duke University</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/music-as-biology-5439">Music as Biology: What We Like to Hear and Why</a> from <em>Duke University</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/fisica-sperimentale-meccanica-termodinam-11210">Introduzione alla fisica sperimentale: meccanica, termodinamica</a> from <em>Politecnico di Milano</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/plant-biology-6799">Understanding Plants - Part II: Fundamentals of Plant Biology</a> from <em>Tel Aviv University</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/otherearths-1271">Imagining Other Earths</a> from <em>Princeton University</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ciencia-673">Pensamiento científico</a> from <em>Universidad Nacional Autónoma de México</em> ★★★☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/thehorsecourse-1809">The Horse Course: Introduction to Basic Care and Management</a> from <em>University of Florida</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/stem-cells-10745">The Science of Stem Cells</a> from <em>American Museum of Natural History</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/smac-1299">Statistical Mechanics: Algorithms and Computations</a> from <em>École normale supérieure</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/emergent-phenomena-5705">Emergent Phenomena in Science and Everyday Life</a> from <em>University of California, Irvine</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/material-behavior-5944">Material Behavior</a> from <em>Georgia Institute of Technology</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainablefood-1402">Sustainable Food Production Through Livestock Health Management</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/chemical-biology-21800">Chemical Biology</a> from <em>University of Geneva</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/extrasolarplanets-723">The Diversity of Exoplanets</a> from <em>University of Geneva</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/water-management-5319">Water Resources Management and Policy</a> from <em>University of Geneva</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/thermo-base-5793">Thermodynamique : fondements</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/air-pollution-health-threat-9829">Air Pollution – a Global Threat to our Health</a> from <em>University of Copenhagen</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-driven-astronomy-8140">Data-driven Astronomy</a> from <em>The University of Sydney</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/best-practice-farming-sustainable-2050-9575">Discover Best Practice Farming for a Sustainable 2050</a> from <em>University of Western Australia</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/experiments-2052">Experimentation for Improvement</a> from <em>McMaster University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/amnhevolution-862">Evolution: A Course for Educators</a> from <em>American Museum of Natural History</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/amnhearth-863">The Dynamic Earth: A Course for Educators</a> from <em>American Museum of Natural History</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/chimp-13137">Chimpanzee Behavior and Conservation</a> from <em>Duke University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/postharvestloss-2990">Global Postharvest Loss Prevention: Fundamentals, Technologies, and Actors</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/reproductive-health-4252">Introduction to Reproduction</a> from <em>Northwestern University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-neurobiology1-6029">Advanced Neurobiology I</a> from <em>Peking University</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/advancedneurobiologyii-7367">Advanced Neurobiology II</a> from <em>Peking University</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-health-human-animal-ecosystem-8336">Global Health at the Human-Animal-Ecosystem Interface</a> from <em>University of Geneva</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/eclipse-8105">The Sun and the Total Eclipse of August 2017</a> from <em>University of Colorado Boulder</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/particles2planets-1382">Mechanics: Motion, Forces, Energy and Gravity, from Particles to Planets</a> from <em>University of New South Wales</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mecanique-newton-4428">Mécanique de Newton</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mecanique-point-materiel-4502">Mécanique du point matériel</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/faecalsludge-8258">Introduction to Faecal Sludge Management</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/estaciones-clima-4600">Las estaciones del año y el clima</a> from <em>Universidad Nacional Autónoma de México</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/quimica-en-mi-casa-4625">¡¿Cómo?! ¿Química en mi casa?</a> from <em>Universidad Nacional Autónoma de México</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/evolution-today-6975">Evolution Today</a>  from <em>Leiden University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/fsi-4880">Fundamentals of Fluid-Solid Interactions</a> from <em>École Polytechnique</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mecanique-quantique-10371">Mécanique quantique</a> from <em>École Polytechnique</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/fisica-sperimentale-fisica-moderna-11208">Introduzione alla fisica sperimentale: elettromagnetismo, ottica, fisica moderna</a> from <em>Politecnico di Milano</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/arctic-introduction-climate-5036">Introduction to the Arctic: Climate</a> from <em>University of Alberta</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/science-and-religion-101-9341">Science &amp; Religion 101</a> from <em>University of Alberta</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainableag-539">Sustainable Agricultural Land Management</a> from <em>University of Florida</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/coursera-the-evolving-universe-3626">The Evolving Universe</a> from <em>California Institute of Technology</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/transformation-global-food-system-19696">Transformation of the Global Food System</a> from <em>University of Copenhagen</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/origensdavida-2579">Origens da Vida no Contexto Cósmico</a> from <em>Universidade de São Paulo</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/astronomy-704">Confronting The Big Questions: Highlights of Modern Astronomy</a> from <em>University of Rochester</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/oceanography-8578">Oceanography: a key to better understand our world</a> from <em>University of Barcelona</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/estrategiasparaganar-meteorologia-6762">Estrategias para ganar. Meteorología en la vuelta al mundo</a> from <em>University of Barcelona</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/industrial-biotech-8886">Industrial Biotechnology</a> from <em>University of Manchester</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/climate-science-1328">From Climate Science to Action</a> from <em>Online Learning Campus - World Bank Group</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/human-spaceflight-4535">A Brief History of Human Spaceflight</a> from <em>University of Houston System</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/climate-change-and-human-rights-104326">Climate Change and Human Rights</a> from <em>New York University (NYU)</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/patenting-bio-ipr-8559">Patenting in Biotechnology</a> from <em>Technical University of Denmark (DTU)</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-warming-model-5704">Global Warming II: Create Your Own Models in Python</a> from <em>The University of Chicago</em>  ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/acoustics2-2288">Introduction to Acoustics (Part 2)</a> from <em>Korea Advanced Institute of Science and Technology</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/astrobiology-exploring-other-worlds-13556">Astrobiology: Exploring Other Worlds</a> from <em>University of Arizona</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/biosphere-science-future-10470">Biosphere 2 Science for the Future of Our Planet</a> from <em>University of Arizona</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/shengwu-huaxue-4553">结构生物化学（Structural Biochemistry)</a> from <em>Nanjing University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/wood-science-8134">Wood Science: Beyond Building</a> from <em>West Virginia University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/explorelight-3589">Exploring Light: Hands-on Activities and Strategies for Teachers</a> from <em>Exploratorium</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/black-agricultural-solutions-64533">Black Agricultural Solutions to Food Apartheid: A Teach-Out</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tropicalforests101-65775">Tropical Forest Landscapes 101: Conservation &amp; Restoration</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/yuzhou-duihua-9460">宇宙之旅：对话 (Journey of the Universe: Weaving Knowledge and Action)</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/diqiu-fanrong-9461">Thomas Berry的世界观：地球社区的繁荣 (The Worldview of Thomas Berry: The Flourishing of the Earth Community)</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/yuzhou-zhi-lu-9462">宇宙之旅：展现生命 (Journey of the Universe: The Unfolding of Life)</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/algae-biotechnology-23182">Algae Biotechnology</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-seaweeds-126266">Introduction to Seaweeds</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/algae-10442">Introduction to Algae</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/space-medicine-duke-58595">Space Medicine</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sheng-li-xue-4208">人体生理学导论（中文版）</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/material-informatics-6534">Materials Data Sciences and Informatics</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/dianci-2356">电磁学上——恒定电场</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/biologicalevolution-2357">生物演化</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/da-xue-hua-xue-4514">大学化学</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/dianci-2-4536">电磁学下——恒磁场与时变电磁场</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/genetic-lab-4796">遗传学实验</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/biologyconcept-9647">生物学概念与途径</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-modern-physics-1-relativity-and-cos-55080">Understanding Modern Physics I: Relativity and Cosmology</a> from <em>The Hong Kong University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/understanding-modern-physics-3-simplicity-and-com-58206">Understanding Modern Physics III: Simplicity and Complexity</a> from <em>The Hong Kong University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/physique-particules-5837">Physique des particules - une introduction</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/papers-molecular-genetics-5872">Classical papers in molecular genetics</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/climate-changes-mountains-water-10522">Climate Change and Water in Mountains: A Global Concern</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/genetic-epidemiology-32239">Genetic Epidemiology Foundations</a> from <em>University of Colorado System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/m-scopy-1-4752">Transmission electron microscopy for materials science</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mecanique-solide-5039">Mécanique : Solide Indéformable</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mecanique-lagrangienne-5084">Mécanique Lagrangienne</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/thermo-apps-6343">Thermodynamique : applications</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sanitation-fr-6886">Planification et Design de Systèmes et Technologies d’Assainissement</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/intro-sig-2-7334">Introduction aux Systèmes d’Information Géographique - Partie 2</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-arctic-11729">Global Arctic</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/electricity-1373">Electric Industry Operations and Markets</a> from <em>Moscow Institute of Physics and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/agribusiness-management-56517">農企業管理學 (Agribusiness Management)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/wuli-2714">普通物理學-電磁學、光學及近代物理 (General Physics (1))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ji-chu-guang-xue-4214">基礎光學一 (Introduction to Optics (1))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mechanics-of-materials-1-5053">材料力學一 (Mechanics of Materials (1))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/darwin-origen-evolucionismo-moderno-17354">Charles Darwin: El origen del evolucionismo moderno</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/qimica-carbono-19110">Una aproximación a la química del carbono</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/seguridad-hidrica-19217">Seguridad hídrica</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/geotermia-9053">Introducción a la geotermia</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/estudio-bienes-comunes-9967">Introducción al estudio de los bienes comunes</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cyhfisica-1150">Conceptos y Herramientas para la Física Universitaria</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fisica-dimension-movimiento-11320">Física: Dimensión y Movimiento</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mind-of-the-universe-genetic-privacy-10675">Mind of the Universe - Genetic Privacy: should we be concerned?</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/women-environmental-biology-17295">Women in environmental biology</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/physique-2-infinis-liens-12182">D'un infini à l'autre - Voyages de l'infiniment grand à l'infiniment petit</a> from <em>École Polytechnique</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-waves-vibrations-12271">Fundamentals of waves and vibrations</a> from <em>École Polytechnique</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/physique-2-infinis-infiniment-grand-12528">Vers l'infiniment grand - Voyages de l'infiniment grand à l'infiniment petit</a> from <em>École Polytechnique</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/quantum-optics-two-photons-16900">Quantum Optics 2 - Two photons and more</a> from <em>École Polytechnique</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/density-functional-theory-27988">Density Functional Theory</a> from <em>École Polytechnique</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/physique-infiniment-petit-10177">Vers l'infiniment petit - Voyages de l'infiniment grand à l'infiniment petit</a> from <em>École Polytechnique</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/physique-2-infinis-et-nous-10674">Les deux infinis et nous - Voyages de l'infiniment grand à l'infiniment petit</a> from <em>École Polytechnique</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-functional-ceramics-19337">Advanced Functional Ceramics</a> from <em>Yonsei University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tesoros-de-la-fisica-4646">Tesoros de la Física y sus Descubridores I</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/arctic-development-34234">Arctic Development</a> from <em>University of Alberta</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/science-literacy-9966">Science Literacy</a>  from <em>University of Alberta</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/coursera-getting-started-in-cryo-em-3544">Getting started in cryo-EM</a> from <em>California Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-materials-science-34050">Fundamentals of Materials Science</a> from <em>Shanghai Jiao Tong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/shengming-kexue-fazhanshi-5873">生命科学发展史</a> from <em>Shanghai Jiao Tong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/conceptos-estudio-del-medio-ambiente-11769">Conceptos base para el estudio del medio ambiente</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/meteorology-8297">Strategies for winning. Meteorology in a round the world regatta</a>  from <em>University of Barcelona</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tecnicas-microscopicas-caracterizacion-6473">Técnicas Microscópicas de Caracterización</a>  from <em>University of Barcelona</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/oceanografia-6755">Oceanografía: una clave para entender mejor nuestro mundo</a> from <em>University of Barcelona</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/water-part-2-8292">Water Supply and Sanitation Policy in Developing Countries Part 2: Developing Effective Interventions</a> from <em>University of Manchester</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/bajemostemperatura-3432">Bajemos la temperatura: De la ciencia climática a la acción</a> from <em>Online Learning Campus - World Bank Group</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/large-marine-ecosystems-10792">Large Marine Ecosystems: Assessment and Management</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/climate-adaptation-11521">Climate Adaptation in Africa</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sex-from-molecules-to-elephants-61339">Sex from Molecules to Elephants</a> from <em>Hebrew University of Jerusalem</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/metagenomics-11323">Metagenomics applied to surveillance of pathogens and antimicrobial resistance</a> from <em>Technical University of Denmark (DTU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/stathermo-3440">Statistical Thermodynamics: Molecules to Machines</a> from <em>Carnegie Mellon University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/california-ecosystems-9578">Ecosystems of California</a> from <em>University of California, Santa Cruz</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/demanda-de-transporte-7119">Introducción a los modelos de demanda de transporte</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/deceptiondetox-7328">Deception Detox - using research methods and statistics to change the world</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/planning-climate-change-african-cities-9146">Planning for Climate Change in African Cities</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mind-of-the-universe-science-in-progress-10719">Mind of the Universe: Science in Progress</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tianwenxue-5275">天文探秘</a> from <em>Nanjing University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/intro-astronomy-nju-11757">走进天文学</a> from <em>Nanjing University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/climate-change-nj-93370">Climate and Climate Change in New Jersey</a> from <em>American Museum of Natural History</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/amnhclimate-4193">Our Earth's Future</a> from <em>American Museum of Natural History</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-particle-accelerator-techno-13281">Fundamentals of particle accelerator technology (NPAP MOOC)</a> from <em>Lund University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/organic-chemistry-4267">有机化学</a> from <em>Xi'an Jiaotong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/challenging-forensic-science-12477">Challenging Forensic Science: How Science Should Speak to Court</a> from <em>University of Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/science-forensique-tribunal-13465">La science forensique au tribunal: témoin digne de foi ?</a>  from <em>University of Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ecologie-4892">Comprendre l'écologie, pour une économie innovante</a> from <em>ESCP Europe</em></li>
</ul>
<h2 id="heading-humanities-197">Humanities (197)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/happiness-2860">A Life of Happiness and Fulfillment</a> from <em>Indian School of Business</em> ★★★★★(508)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/modpo-356">Modern &amp; Contemporary American Poetry (“ModPo”)</a> from <em>University of Pennsylvania</em> ★★★★★(190)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/humanlanguage-2940">Miracles of Human Language: An Introduction to Linguistics</a> from <em>Leiden University</em> ★★★★★(90)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/introphil-418">Introduction to Philosophy</a> from <em>University of Edinburgh</em> ★★★★☆(75)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/philosophy-science-religion-3-10623">Philosophy, Science and Religion: Religion and Science</a> from <em>University of Edinburgh</em> ★★★★☆(60)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/hy-2353">Chinese for Beginners</a> from <em>Peking University</em> ★★★★☆(59)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/food-and-health-5057">Stanford Introduction to Food and Health</a> from <em>Stanford University</em> ★★★★☆(46)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/moralities-911">Moralities of Everyday Life</a> from <em>Yale University</em> ★★★★★(42)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/childnutrition-816">Child Nutrition and Cooking</a> from <em>Stanford University</em> ★★★★☆(31)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ancientgreeks-502">The Ancient Greeks</a> from <em>Wesleyan University</em> ★★★★★(31)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/modern-world-430">The Modern World, Part One: Global History from 1760 to 1910</a> from <em>University of Virginia</em> ★★★★★(25)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/modernmiddleeast1-976">The Emergence of the Modern Middle East - Part I</a> from <em>Tel Aviv University</em> ★★★★★(25)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/careerdevelopment-6011">English for Career Development</a> from <em>University of Pennsylvania</em> ★★★★★(24)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/philosophy-science-religion-2-9085">Philosophy, Science and Religion: Philosophy and Religion</a> from <em>University of Edinburgh</em> ★★★★☆(23)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mythology-353">Greek and Roman Mythology</a> from <em>University of Pennsylvania</em> ★★★★★(21)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/modern-postmodern-1-598">The Modern and the Postmodern (Part 1)</a> from <em>Wesleyan University</em> ★★★★★(21)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/composition-617">English Composition I</a> from <em>Duke University</em> ★★★☆☆(19)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/poetry-workshop-4185">Sharpened Visions: A Poetry Workshop</a> from <em>California Institute of the Arts</em> ★★★★☆(19)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/henry-8669">Patrick Henry: Forgotten Founder</a> from <em>University of Virginia</em> ★★★★★(16)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/magicmiddleages-3477">Magic in the Middle Ages</a> from <em>University of Barcelona</em> ★★★★☆(16)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/journalism-6009">English for Journalism</a> from <em>University of Pennsylvania</em> ★★★★☆(15)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sciwrite-464">Writing in the Sciences</a> from <em>Stanford University</em> ★★★★★(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/newchinahistory1-520">Understanding China, 1700-2000: A Data Analytic Approach, Part 1</a> from <em>The Hong Kong University of Science and Technology</em> ★★★★★(13)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/big-history-4485">Big History: Connecting Knowledge</a> from <em>Macquarie University</em> ★★★★☆(13)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/plato-5237">Ancient Philosophy: Plato &amp; His Predecessors</a> from <em>University of Pennsylvania</em> ★★★★★(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/stem-6538">English for Science, Technology, Engineering, and Mathematics</a> from <em>University of Pennsylvania</em> ★★★★★(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/learn-speak-korean1-6645">Learn to Speak Korean 1</a> from <em>Yonsei University</em> ★★★★★(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/kierkegaard-667">Søren Kierkegaard - Subjectivity, Irony and the Crisis of Modernity</a> from <em>University of Copenhagen</em> ★★★★☆(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/effectivealtruism-3446">Effective Altruism</a> from <em>Princeton University</em> ★★★★☆(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/hisfiction-1173">Plagues, Witches, and War: The Worlds of Historical Fiction</a> from <em>University of Virginia</em> ★★★★☆(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/modernmiddleeast2-3204">The Emergence of the Modern Middle East - Part II</a> from <em>Tel Aviv University</em> ★★★★★(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/muslimworld-663">Constitutional Struggles in the Muslim World</a> from <em>University of Copenhagen</em> ★★★★★(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/intellectual-humility-practice-7656">Intellectual Humility: Practice</a> from <em>University of Edinburgh</em> ★★★★★(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/jefferson-1343">Age of Jefferson</a> from <em>University of Virginia</em> ★★★★★(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/aristotle-5238">Ancient Philosophy: Aristotle and His Successors</a> from <em>University of Pennsylvania</em> ★★★★☆(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/philosophy-physical-sciences-1356">Philosophy and the Sciences: Introduction to the Philosophy of Physical Sciences</a> from <em>University of Edinburgh</em> ★★★★★(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/intellectual-humility-science-7657">Intellectual Humility: Science</a> from <em>University of Edinburgh</em> ★★★★★(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/jerusalem-974">The Fall and Rise of Jerusalem</a> from <em>Tel Aviv University</em> ★★★★☆(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/soulbeliefs-703">Soul Beliefs: Causes and Consequences - Unit 1: Historical Foundations</a> from <em>Rutgers University</em> ★★★☆☆(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sports-518">Sports and Society</a> from <em>Duke University</em> ★★★★★(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/calvin-659">Calvin - Histoire et réception d'une Réforme</a> from <em>University of Geneva</em> ★★★★☆(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-6010">English for Business and Entrepreneurship</a> from <em>University of Pennsylvania</em> ★★★★★(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/more-chinese-for-beginners-5988">More Chinese for Beginners</a> from <em>Peking University</em> ★★★★★(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/holocaust-introduction-1-5280">The Holocaust - An Introduction (I): Nazi Germany: Ideology, The Jews and the World</a> from <em>Yad Vashem - The World Holocaust Remembrance Center</em> ★★★★★(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/history-israel-4791">The History of Modern Israel - Part I: From an Idea to a State</a> from <em>Tel Aviv University</em> ★★★★☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/introancientegypt-7326">Introduction to Ancient Egypt and Its Civilization</a> from <em>University of Pennsylvania</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/modern-world-2-4355">The Modern World, Part Two: Global History since 1910</a> from <em>University of Virginia</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/holocaust-introduction-2-5368">The Holocaust - An Introduction (II): The Final Solution</a> from <em>Yad Vashem - The World Holocaust Remembrance Center</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/unethicaldecision-1389">Unethical Decision Making in Organizations</a> from <em>University of Lausanne</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/wondersancientegypt-9577">Wonders of Ancient Egypt</a> from <em>University of Pennsylvania</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/chinesecharacters-4433">Chinese Characters for beginner 汉字</a> from <em>Peking University</em> ★★★☆☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/reasonandpersuasion-980">Reason and Persuasion: Thinking Through Three Dialogues By Plato</a> from <em>National University of Singapore</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/foreigneyes-3705">America Through Foreign Eyes</a> from <em>Rice University</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/shiji-1652">史記 (Shi Ji)</a> from <em>National Taiwan University</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/etudier-en-france-7629">Étudier en France: French Intermediate course B1-B2</a> from <em>École Polytechnique</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/classics-chinese-humanities-653">Classics of Chinese Humanities: Guided Readings</a> from <em>The Chinese University of Hong Kong</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mediterraneanhistory-5041">The Mediterranean, a Space of Exchange (from the Renaissance to Enlightenment)</a> from <em>University of Barcelona</em> ★☆☆☆☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/western-christianity-200-1650-8106">A Journey through Western Christianity: from Persecuted Faith to Global Religion (200 - 1650)</a>  from <em>Yale University</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/philosophy-cognitive-sciences-7055">Philosophy and the Sciences: Introduction to the Philosophy of Cognitive Sciences</a> from <em>University of Edinburgh</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-talmud-5915">The Talmud: A Methodological Introduction</a> from <em>Northwestern University</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/hsk-4-10480">Chinese for HSK 4</a> from <em>Peking University</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/newchinahistory2-3792">Understanding China, 1700-2000: A Data Analytic Approach, Part 2</a> from <em>The Hong Kong University of Science and Technology</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/qin-shi-huang-702">中國古代歷史與人物：秦始皇（Qin Shi Huang)</a> from <em>National Taiwan University</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/portestrangeiros-3693">Pluralidades em Português Brasileiro</a> from <em>Universidade Estadual de Campinas</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/archoftitus-5077">Arch of Titus: Rome and the Menorah</a> from <em>Yeshiva University</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ancientegypt-3597">Ancient Egypt</a> from <em>University of Pennsylvania</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/911-attack-1011">Understanding 9/11: Why 9/11 Happened &amp; How Terrorism Affects Our World Today</a> from <em>Duke University</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/know-thyself-the-unconscious-12835">Know Thyself - The Value and Limits of Self-Knowledge: The Unconscious</a> from <em>University of Edinburgh</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sports-marketing-12178">Sports Marketing</a> from <em>Northwestern University</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/chinese-for-hsk5-12224">Chinese for HSK 5</a> from <em>Peking University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/dpc-3318">東坡詞 (Ci Poetry of Su Dong Po)</a> from <em>National Taiwan University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/correccion-estilo-variaciones-5340">Corrección, estilo y variaciones de la lengua española</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/valle-de-los-reyes-8793">El Valle de los Reyes</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/social-change-korea-8299">Gender, Family, and Social Change in Contemporary South Korea</a> from <em>Yonsei University</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/macondo-gabriel-garcia-marquez-4767">Leer a Macondo: la obra de Gabriel García Márquez</a> from <em>Universidad de los Andes</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/youth-sports-6208">The Science of Training Young Athletes</a> from <em>University of Florida</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/bighistory-7638">Big History - From the Big Bang until Today</a> from <em>University of Amsterdam</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/history-israel-sovereign-state-6969">The History of Modern Israel - Part II: Challenges of Israel as a sovereign state</a> from <em>Tel Aviv University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/soulbeliefs3-4228">Soul Beliefs: Causes and Consequences - Unit 3: How Does It All End?</a> from <em>Rutgers University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/writing-your-world-8794">Writing your World: Finding yourself in the academic space</a>  from <em>University of Cape Town</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cultural-competence-aboriginal-sydney-8237">Cultural Competence - Aboriginal Sydney</a> from <em>The University of Sydney</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/shakespeare-10410">Introduction to Who Wrote Shakespeare</a> from <em>Goldsmiths University of London</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-holocaust-4222">The Holocaust: The Destruction of European Jewry</a> from <em>University of California, Santa Cruz</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/russian-history-lenin-putin-9573">Russian History: from Lenin to Putin</a> from <em>University of California, Santa Cruz</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/organising-empire-assyrian-way-10145">Organising an Empire: The Assyrian Way</a> from <em>Ludwig-Maximilians-Universität München</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/doping-5274">Doping : Sports, Organizations and Sciences</a> from <em>University of Lausanne</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-science-ethics-9630">Data Science Ethics</a> from <em>University of Michigan</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/relativism-13660">Relativism</a> from <em>University of California, Irvine</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-english-skills-how-to-navigate-tone-form-17304">Lesson | Business English Skills: How to Navigate Tone, Formality, and Directness in Emails</a> from <em>University of Washington</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/zhexue-daolun-4345">哲学导论（中文版）</a> from <em>University of Edinburgh</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/philosophy-science-religion-1-8024">Philosophy, Science and Religion: Science and Philosophy</a> from <em>University of Edinburgh</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/hanzi-2-10324">Chinese Characters for beginner (2) 汉字(2)</a> from <em>Peking University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ethique-3886">Le Bien, le Juste, l'Utile. Introduction aux éthiques philosophiques</a> from <em>University of Geneva</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/medieval-europe-7661">Deciphering Secrets: The Illuminated Manuscripts of Medieval Europe</a> from <em>University of Colorado System</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/rcd-1419">紅樓夢(The Red Chamber Dream)</a> from <em>National Taiwan University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ntuugp-1604">活用希臘哲學 (Understanding the Greek Philosophy)</a> from <em>National Taiwan University</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/learn-chinese-mandarin-11931">Learning Chinese : Start From Scratch (零到一學中文)</a> from <em>National Taiwan University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/medieval-arabia-12400">The Cosmopolitan Medieval Arabic World</a> from <em>Leiden University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/como-persuadir-8062">¿Cómo persuadir? Jugando con palabras, imágenes y números</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/recherche-documentaire-6506">La recherche documentaire</a> from <em>École Polytechnique</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/god-korean-context-9388">Re-imaging God in Korean Context</a> from <em>Yonsei University</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/intellectual-change-early-china-the-warr-10759">Intellectual Change in Early China: Warring States and Han</a> from <em>The Chinese University of Hong Kong</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/historia-reglas-futbol-7080">Historia de las reglas del fútbol en Inglaterra y en Argentina</a> from <em>Universidad Austral</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/nigro-levante-occidente-8298">Alle origini della civiltà mediterranea: archeologia della città dal Levante all’Occidente - III-I millennio a.C.</a> from <em>Sapienza University of Rome</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/alfabetizacao-midiatica-20860">Alfabetização Midiática, Informacional e Diálogo Intercultural - UNESCO e UNICAMP</a> from <em>Universidade Estadual de Campinas</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/benjamin-franklin-and-his-world-120108">Benjamin Franklin and His World</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/skepticism-13615">Skepticism</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/christianity-ecology-58919">Christianity &amp; Ecology</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lesson-business-english-skills-introducing-yourse-17302">Lesson | Business English Skills: Introducing Yourself in Business Settings</a>  from <em>University of Washington</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lesson-business-english-skills-how-to-write-effec-17303">Lesson | Business English Skills: How to Write Effective Openings and Closings to Emails</a> from <em>University of Washington</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ukraine-history-culture-and-identities-121126">Ukraine: History, Culture and Identities</a> from <em>University of Washington</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ethics-culture-and-global-perspectives-ar-64338">الأخلاقيات والثقافة ووجهات النظر العالمية</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ethics-culture-and-global-perspectives-fr-64339">Éthique, culture et perspectives mondiales</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ethics-culture-and-global-perspectives-es-64340">Ética, cultura y perspectivas globales</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/player-evaluation-team-performance-and-roster-man-121050">Player Evaluation, Team Performance and Roster Management</a> from <em>State University of New York</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/magna-carta-13872">Magna Carta and its Legacies: Freedom and protest</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/uol-public-history-22023">Applied Public History: Places, People, Stories</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/write-your-first-novel-18955">Write Your First Novel</a> from <em>Michigan State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/luther-and-the-west-7071">Luther and the West</a> from <em>Northwestern University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/spanish-in-healthcare-settings-11166">Spanish for Successful Communication in Healthcare Settings</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/englishspeech-3228">Essentials for English Speeches and Presentations 英语演讲与演示</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/paradox-4430">悖论：思维的魔方</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lunwen-xiezuo-chujie-5949">论文写作初阶（Academic Writing and Research）</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-chinese-6177">中级商务汉语（入职与营销篇）</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/intermediatechinesebusiness-7422">中级商务汉语——商务活动篇</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/hanyu-yufa-8551">现代汉语核心语法</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/zhongri-jiaoliushi-8563">中日文化交流史</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/archeology-22247">A l’avènement du christianisme : l’archéologie des derniers païens</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/litterature-mondiale-66349">Littérature mondiale</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/langues-diversite-92873">Langues et diversité: de la variation au plurilinguisme</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/geographie-politique-culturelle-frontier-9417">Frontières en tous genres</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/old-norse-mythology-sources-58199">Old Norse Mythology in the Sources</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leadership-excellence-sport-15236">Leadership d'excellence par le sport de haut niveau</a> from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/zhuangzi-renqing-12169">莊子─人情 (Zhuangzi─Between People)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/learn-intermediate-chinese-mandarin-12501">是誰在說話 -- 可愛的臺灣。（Intermediate Chinese）</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/poetry-prose-novel-12657">現代文學導讀：詩、散文、小說</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-red-chamber-dream-daguan-garden-33431">又見大觀：《紅樓夢》中的烏托邦 (The Red Chamber Dream (3): Daguan Garden)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/inquiry-into-confucius-and-mencius-33432">深扣孔孟 (An Inquiry into Confucius and Mencius)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chinese-garden-literature-1-59538">中國園林文學 (一) (Chinese Garden Literature (1))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/rcd2-2359">紅樓夢-母神崇拜 (The Red Chamber Dream (2))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mencius1-4104">東亞儒學：孟子一(East Asian Confucianisms: Mencius (1))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mencius2-6296">東亞儒學：孟子二 (East Asian Confucianisms: Mencius(2))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tang-poems-6850">唐詩新思路 (Tang Poetry)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/east-asian-confucianisms-humanism1-8250">東亞儒家：人文精神一(East Asian Confucianisms: Humanism (1))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/developmental-psychology-8391">發展心理學：哲學觀與方法論 (Developmental Psychology: Philosophical Bases and Methodology)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/east-asian-confucianisms-humanism2-9629">東亞儒家：人文精神二(East Asian Confucianisms: Humanism (2))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/quimica-etica-13219">Química, guerra y ética</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/escritura-esp-13496">Fundamentos de la escritura</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/escritura-academica-esp-13497">Fundamentos de la escritura académica</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/importance-power-music-our-society-10447">The Importance and Power of Music in our Society</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/roosevelt-4424">The Rooseveltian Century</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ue-historia-instituciones-politicas-22662">Unión Europea: Historia, Instituciones y Políticas</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/oralpha-literacy-for-new-citizens-for-trainers-33504">Oralpha: Literacy for new citizens, a course for trainers</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leeramacondo-laobradegabrielgarciamarque-4662">Leer a Macondo: la obra de Gabriel García Márquez</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/newhorrizon-23240">Try RRI! A guide for Responsible Research and Innovation</a> from <em>University of Amsterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/media-ethics-governance-9312">Media ethics &amp; governance</a> from <em>University of Amsterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/enpublicspeaking-65952">Training and Practicing in English Public Speaking</a> from <em>Shanghai Jiao Tong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/zhong-yi-yao-wen-hua-4244">中医药与中华传统文化</a>  from <em>Shanghai Jiao Tong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/structuring-values-modern-china-12712">Structuring Values in Modern China</a> from <em>The Chinese University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/religion-thought-modern-china-12713">Religion and Thought in Modern China: the Song, Jin, and Yuan</a> from <em>The Chinese University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/china-strategy-es-66330">La estrategia china</a> from <em>The Chinese University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/religious-transformation-early-china-the-11711">Religious Transformation in Early China: the Period of Division</a> from <em>The Chinese University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/conciencia-lingstica-54335">Conciencia Lingüística</a> from <em>Universidad Autónoma de Madrid</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/japanese-language-1-86185">Let’s Read! Learning Japanese through Science &amp; Technology-1</a> from <em>University of Tokyo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/japanese-language-2-93291">Let’s Read! Learning Japanese through Science &amp; Technology-2</a> from <em>University of Tokyo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/missoes-jesuitas-guaranis-historia-antropologia-56499">I. Missões jesuíticas nos territórios guaranis: história</a> from <em>Universidade de São Paulo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/max-weber-4317">《新教伦理与资本主义精神》导读</a> from <em>Fudan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/womens-spirituality-12226">A Voice of Their Own. Women's Spirituality in the Middle Ages.</a> from <em>University of Barcelona</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/deaf-culture-8555">American Deaf Culture</a> from <em>University of Houston System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/hebrewpoetry1-3235">Modern Hebrew Poetry שירה עברית מודרנית</a>  from <em>Hebrew University of Jerusalem</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/moses-6020">Moses' Face: Moses' images as reflected in Jewish literature</a> from <em>Hebrew University of Jerusalem</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ai-empathy-ethics-80063">AI, Empathy &amp; Ethics</a> from <em>University of California, Santa Cruz</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/odessa-102550">Odessa: Jews in the Modern World</a> from <em>University of California, Santa Cruz</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/odesa-104383">Odesa: Jews in the Modern World</a> from <em>University of California, Santa Cruz</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/history-of-medicine-119388">The History of Medicine: Philosophy, Science, and Psychology</a> from <em>University of California, Santa Cruz</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/asian-environmental-humanities-11209">Asian Environmental Humanities: Landscapes in Transition</a> from <em>University of Zurich</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ingenieria-gastronomica-ciencia-cocina-33403">Introducción a la Ingeniería Gastronómica - ¡Ciencia en la Cocina!</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/thought-experiments-56522">Thought Experiments: An introduction to philosophy</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/metaphysics-95206">Reality Bites: Introduction to metaphysics</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/epistemology-95207">The Epistemic Quest for Truth: Introduction to epistemology</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/diversifying-transforming-football-leadership-119978">A Guide to Diversifying and Transforming Football Leadership</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/erasmus-philosophy-skepticism-8622">The Politics of Skepticism</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ma-ke-si-4241">理解马克思</a> from <em>Nanjing University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/egitto-13405">L’Egitto prima e dopo i faraoni. Dalla nascita dello Stato (3000 a.C. ca.) alle prime comunità cristiane (IV secolo d.C.)</a> from <em>Sapienza University of Rome</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/egypt-sapienza-40836">Egypt before and after pharaohs.</a>  from <em>Sapienza University of Rome</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/paesaggi-roma-antica-9311">Paesaggi di Roma Antica. Archeologia e storia del Palatino.</a> from <em>Sapienza University of Rome</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/writing-english-university-7189">Writing in English at University</a> from <em>Lund University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/akademiskt-skrivande-7192">Akademiskt skrivande</a> from <em>Lund University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/solutions-future-food-problem-8775">Unravelling solutions for Future Food problems</a> from <em>Utrecht University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/improving-statistical-questions-17049">Improving Your Statistical Questions</a> from <em>Eindhoven University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chinese-philosophy-4322">中国哲学经典著作导读</a> from <em>Xi'an Jiaotong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/kongzi-6209">《论语》的智慧</a> from <em>Xi'an Jiaotong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/daojiao-6220">品读道家的智慧</a> from <em>Xi'an Jiaotong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/dopage-1400">Dopage : Sports, Organisations et Sciences</a> from <em>University of Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/silla-science-technology-11046">Science and Technology in the Silla Cultural Heritage</a> from <em>Pohang University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/chosenissues-20790">Chosen Issues in Holocaust History</a> from <em>Yad Vashem - The World Holocaust Remembrance Center</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/el-holocausto-94405">El Holocausto: el abismo de la humanidad</a> from <em>Yad Vashem - The World Holocaust Remembrance Center</em></li>
</ul>
<h2 id="heading-computer-science-103">Computer Science (103)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/information-systems-audit-17979">Information Systems Auditing, Controls and Assurance</a> from <em>The Hong Kong University of Science and Technology</em> ★★★★★(488)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/algs4partI-339">Algorithms, Part I</a> from <em>Princeton University</em> ★★★★★(59)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/crypto-616">Cryptography I</a> from <em>Stanford University</em> ★★★★★(53)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/insidetheinternet-335">Internet History, Technology, and Security</a> from <em>University of Michigan</em> ★★★★★(41)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/algs4partII-340">Algorithms, Part II</a> from <em>Princeton University</em> ★★★★★(21)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/bitcointech-3655">Bitcoin and Cryptocurrency Technologies</a> from <em>Princeton University</em> ★★★★☆(21)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/intrologic-329">Introduction to Logic</a> from <em>Stanford University</em> ★★★☆☆(20)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/optimization-487">Discrete Optimization</a> from <em>University of Melbourne</em> ★★★★☆(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/images-462">Image and Video Processing: From Mars to Hollywood with a Stop at the Hospital</a> from <em>Duke University</em> ★★★★☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/comparch-342">Computer Architecture</a> from <em>Princeton University</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/aofa-921">Analysis of Algorithms</a> from <em>Princeton University</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/interactivegraphics-2067">Interactive Computer Graphics</a> from <em>University of Tokyo</em> ★★★☆☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/internet-of-things-dragonboard-4260">Internet of Things: Setting Up Your DragonBoard™ Development Platform</a> from <em>University of California, San Diego</em>  ★★★☆☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/crypto2-425">Cryptography II</a> from <em>Stanford University</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/programming-languages-part-b-6920">Programming Languages, Part B</a> from <em>University of Washington</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/deteccion-objetos-3194">Detección de objetos</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/quantitative-formal-modeling-1-4864">Quantitative Formal Modeling and Worst-Case Performance Analysis</a> from <em>EIT Digital</em> ★★★☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/programming-languages-part-c-7187">Programming Languages, Part C</a> from <em>University of Washington</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ntumlone-mathematicalfoundations-1326">機器學習基石上 (Machine Learning Foundations)---Mathematical Foundations</a> from <em>National Taiwan University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mastering-digital-twins-13294">Mastering Digital Twins</a> from <em>EIT Digital</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/network-transformation-101-12216">Intel® Network Academy - Network Transformation 101</a> from <em>Intel</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/approximation-algorithms-part-1-5026">Approximation Algorithms Part I</a> from <em>École normale supérieure</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cs-programming-java-13151">Computer Science: Programming with a Purpose</a> from <em>Princeton University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ntumltwo-2847">機器學習技法 (Machine Learning Techniques)</a> from <em>National Taiwan University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/iot-software-architecture-6507">Software Architecture for the Internet of Things</a> from <em>EIT Digital</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/electrones-en-accion-4726">Electrones en Acción: Electrónica y Arduinos para tus propios Inventos</a> from <em>Pontificia Universidad Católica de Chile</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/northeastern-data-privacy-20025">Data Privacy Fundamentals</a> from <em>Northeastern University</em>  ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-embedded-machine-learning-32821">Introduction to Embedded Machine Learning</a> from <em>Edge Impulse</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/internet-of-things-sensing-actuation-4182">Internet of Things: Sensing and Actuation From Devices</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/internet-of-things-capstone-5124">Internet of Things Capstone: Build a Mobile Surveillance System</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/algorithms-part1-ru-39397">Алгоритмы, часть I</a> from <em>Princeton University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computerscience2-10671">Computer Science: Algorithms, Theory, and Machines</a> from <em>Princeton University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ml-foundations-ko-60054">머신 러닝 기초: 사례 연구 접근 방식</a> from <em>University of Washington</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/uol-machine-learning-for-all-ko-61441">모두를 위한 머신 러닝</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-applied-cryptography-118914">Introduction to Applied Cryptography</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advancedmodeling-cn-7758">Advanced Modeling for Discrete Optimization 离散优化建模高阶篇</a> from <em>The Chinese University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/basic-modeling-cn-7760">Basic Modeling for Discrete Optimization 离散优化建模基础篇</a> from <em>The Chinese University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lisan-youhua-jianmo-jichupian-7772">离散优化建模基础篇 Basic Modeling for Discrete Optimization</a> from <em>The Chinese University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lisan-youhua-jianmo-gaojiepian-7775">离散优化建模高阶篇 Advanced Modeling for Discrete Optimization</a> from <em>The Chinese University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lisan-youhua-suanfapian-11217">离散优化算法篇 Solving Algorithms for Discrete Optimization</a> from <em>The Chinese University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/solving-algorithms-discrete-optimization-11219">Solving Algorithms for Discrete Optimization</a> from <em>University of Melbourne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/movingtothecloud-6607">Moving to the Cloud</a> from <em>University of Melbourne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/osvirtsecurity-2348">操作系统与虚拟化安全</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pkuco-2351">计算机组成 Computer Organization</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/catmooc-2354">计算机辅助翻译原理与实践 Principles and Practice of Computer-Aided Translation</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/algorithms-3230">算法设计与分析 Design and Analysis of Algorithms</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/industrial-iot-markets-security-ko-60061">산업용 IoT 시장 및 보안</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/linux-kernel-programming-yocto-project-119207">Linux Kernel Programming and Introduction to Yocto Project</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/operations-research-modeling-33417">Operations Research (1): Models and Applications</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/operations-research-algorithms-33430">Operations Research (2): Optimization Algorithms</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ntumlone-algorithmicfoundations-9737">機器學習基石下 (Machine Learning Foundations)---Algorithmic Foundations</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/rengong-zhineng-10375">人工智慧：搜尋方法與邏輯推論 (Artificial Intelligence - Search &amp; Logic)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ai2-11519">人工智慧：機器學習與理論基礎 (Artificial Intelligence - Learning &amp; Theory)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/getting-started-with-tensor-flow2-ko-60051">TensorFlow 2 시작하기</a> from <em>Imperial College London</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/arduino-aplicaciones-7108">Arduino y algunas aplicaciones</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/population-health-predictive-analytics-19151">Population Health: Predictive Analytics</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/clasificacion-imagenes-4609">Clasificación de imágenes: ¿cómo reconocer el contenido de una imagen?</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/deep-learning-business-9431">Deep Learning for Business</a> from <em>Yonsei University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduccion-a-la-inteligencia-artificial-contemp-108438">Introducción a la inteligencia artificial contemporánea</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/blockchain-decision-maker-13811">Blockchain for the decision maker</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/io-efficient-algorithms-16913">I/O-efficient algorithms</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/iot-devices-6748">Introduction to Architecting Smart IoT Devices</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/iot-architecture-6839">Architecting Smart IoT Devices</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/system-validation-behavior-7420">System Validation (2): Model process behaviour</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/system-validation-software-protocols-7803">System Validation (4): Modelling Software, Protocols, and other behaviour</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/system-validation-modal-formulas-7808">System Validation (3): Requirements by modal formulas</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/moocimage-filtrage-85211">Traitement d'images : introduction au filtrage</a> from <em>Institut Mines-Télécom</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/limpieza-de-datos-para-el-procesamiento-de-lengua-46001">Limpieza de datos para el procesamiento de lenguaje natural</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/optimizacin-de-redes-neuronales-profundas-55115">Optimización de Redes Neuronales Profundas</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nlp-modelos-y-algoritmos-61634">NLP Modelos y Algoritmos</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/foundations-google-kubernetes-engine-gke-it-66031">Architecting Google Kubernetes Engine: Foundations in italiano</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/linux-on-linuxone-110655">Linux on LinuxONE</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tech-support-career-guide-and-interview-preparati-121053">Tech Support Career Guide and Interview Preparation</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sdn-97397">Software Defined Networking</a> from <em>The University of Chicago</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mlops-fundamentals-ko-104079">MLOps (Machine Learning Operations) Fundamentals 한국어</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mlops-fundamentals-br-104322">MLOps (Machine Learning Operations) Fundamentals Português</a>  from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mlops-fundamentals-fr-106119">MLOps (Machine Learning Operations) Fundamentals en Français</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/feature-engineering-ko-120103">Feature Engineering - 한국어</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tensorflow-on-google-cloud---espaol-120571">TensorFlow on Google Cloud - Español</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/blockchain-scalability-21843">Blockchain Scalability and its Foundations in Distributed Systems</a> from <em>The University of Sydney</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cyber-physical-systems-1-9791">Cyber-Physical Systems: Modeling and Simulation</a> from <em>University of California, Santa Cruz</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/procesamiento-de-imagenes-102586">Procesamiento de Imágenes</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/machine-learning-projects-ko-60049">머신 러닝 프로젝트 구조화</a> from <em>DeepLearning.AI</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nlp-sequence-models-ko-60050">시퀀스 모델</a> from <em>DeepLearning.AI</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/neural-networks-deep-learning-ko-60052">신경망 및 딥 러닝</a> from <em>DeepLearning.AI</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/deep-neural-network-ko-60053">심층 신경망 개선: 하이퍼파라미터 튜닝, 정규화 및 최적화</a> from <em>DeepLearning.AI</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/convolutional-neural-networks-ko-60055">컨볼루션 신경망</a> from <em>DeepLearning.AI</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/jisuanji-caozuo-xitong-4316">计算机操作系统</a> from <em>Nanjing University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ai-ethics-56498">Artificial Intelligence: Ethics &amp; Societal Challenges</a> from <em>Lund University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/network-transformation-102-13264">Intel® Network Academy - Network Transformation 102</a> from <em>Intel</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/opencl-fpga-introduction-18979">Introduction to OpenCL on FPGAs</a> from <em>Intel</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/approximation-algorithms-part-2-5688">Approximation Algorithms Part II</a> from <em>École normale supérieure</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/videogames-5778">A complexidade sensível: Um paralelo entre videogames e arte</a> from <em>Universidade Estadual de Campinas</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/machinetranslation-21135">Machine Translation</a> from <em>Karlsruhe Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cnns-and-rnns-32772">Fundamentals of CNNs and RNNs</a> from <em>Sungkyunkwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/machine-learning-basics-66360">Machine Learning Basics</a> from <em>Sungkyunkwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-iot-boards-12535">Introduction and Programming with IoT Boards</a> from <em>Pohang University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloud-iot-platform-12536">Programming with Cloud IoT Platforms</a> from <em>Pohang University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ai-privacy-and-convenience-ko-121159">AI 프라이버시 및 편의성</a> from <em>LearnQuest</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/blockchain-security-121428">Blockchain Security</a> from <em>Infosec</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/aruba-mobility-basics-spanish-89674">Aruba Mobility Basics for Spanish Speakers</a>  from <em>Aruba</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/aruba-network-security-arabic-116696">Aruba Network Security Basics for Arabic Speakers</a> from <em>Aruba</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computer-vision-with-embedded-machine-learning-55075">Computer Vision with Embedded Machine Learning</a> from <em>Edge Impulse</em></li>
</ul>
<h2 id="heading-programming-81">Programming (81)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/python-statistics-financial-analysis-12648">Python and Statistics for Financial Analysis</a> from <em>The Hong Kong University of Science and Technology</em> ★★★★☆(437)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/programming1-385">Learn to Program: The Fundamentals</a> from <em>University of Toronto</em> ★★★★★(109)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/androidpart1-1178">Programming Mobile Applications for Android Handheld Systems: Part 1</a> from <em>University of Maryland, College Park</em> ★★★★☆(41)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/programming-languages-452">Programming Languages, Part A</a> from <em>University of Washington</em> ★★★★★(27)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/androidpart2-3076">Programming Mobile Applications for Android Handheld Systems: Part 2</a> from <em>University of Maryland, College Park</em> ★★★★☆(15)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/codeyourself-2938">Code Yourself! An Introduction to Programming</a> from <em>University of Edinburgh</em> ★★★★☆(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/digitalmedia-529">Creative Programming for Digital Media &amp; Mobile Apps</a> from <em>University of London International Programmes</em> ★★★★☆(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/controle-moderno-8482">Introdução ao Controle Moderno</a> from <em>Instituto Tecnológico de Aeronáutica</em> ★★★★★(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/programming2-390">Learn to Program: Crafting Quality Code</a> from <em>University of Toronto</em> ★★★★☆(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/onlinegames-544">Online Games: Literature, New Media, and Narrative</a> from <em>Vanderbilt University</em> ★★★★★(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/intropoocpp-849">Introduction à la programmation orientée objet (en C++)</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/problem-solving-programming-video-games-11500">Problem Solving, Python Programming, and Video Games</a> from <em>University of Alberta</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/initprogcpp-644">Initiation à la programmation (en C++)</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/containerized-apps-on-aws-19698">Building Containerized Applications on AWS</a> from <em>Amazon Web Services</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/r-programming-ar-37043">R البرمجة باستخدام لغة</a> from <em>Johns Hopkins University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/intropoojava-441">Introduction à la programmation orientée objet (en Java)</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/initprogjava-643">Initiation à la programmation (en Java)</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/hipython-4286">用Python玩转数据 Data Processing Using Python</a> from <em>Nanjing University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sas-programming-certification-review-12859">Practical SAS Programming and Certification Review</a> from <em>SAS</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/python-databases-ko-60097">Python에서 데이터베이스 사용하기</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/r-programming-ko-60066">R 프로그래밍</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/java-programming-arrays-lists-data-ar-36568">برمجة Java: المصفوفات، والقوائم، والبيانات المصنفة</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/java-programming-ar-37626">برمجة Java: حل المشكلات باستخدام البرامج</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sql-for-data-science-de-65147">SQL für Data Science</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ruanjian-gongcheng-102549">软件工程</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/aoo-1737">面向对象技术高级课程（The Advanced Object-Oriented Technology）</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pkujava-3227">Java程序设计</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/se-6082">软件工程</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sheng-c-biancheng-6294">C#程序设计</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/programmation-56642">Introduction à la programmation</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/matlab-ko-62882">MATLAB을 사용한 프로그래밍 소개</a> from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/projet-programmation-java-12186">Projet de programmation (en Java)</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/scala2-functional-programming-45173">Functional Programming Principles in Scala (Scala 2 version)</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/c-bian-cheng-2337">計算機程式設計 (Computer Programming)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pbc1-10425">用 Python 做商管程式設計（一）(Programming for Business Computing in Python (1))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pbc3-11205">用 Python 做商管程式設計（三）(Programming for Business Computing in Python (3))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introjava-4621">Introducción a Java</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-software-product-management-pt-34086">Introdução ao Gerenciamento de produtos de software</a> from <em>University of Alberta</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/containerized-applications-on-aws-92393">Containerized Applications on AWS</a> from <em>Amazon Web Services</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/machine-learning-on-aws-119182">Introduction to Machine Learning on AWS</a> from <em>Amazon Web Services</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/preparing-cloud-professional-cloud-architect-exam-17890">Preparing for the Google Cloud Professional Cloud Architect Exam em Português Brasileiro</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/deploying-and-managing-windows-workloads-on-googl-64793">Deploying and Managing Windows Workloads on Google Cloud</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lab-poo-parte-1-33509">Laboratório de Programação Orientada a Objetos - Parte 1</a> from <em>Universidade de São Paulo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/lab-poo-parte-2-57730">Laboratório de Programação Orientada a Objetos - Parte 2</a> from <em>Universidade de São Paulo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/intro-teste-de-software-10389">Introdução ao Teste de Software</a> from <em>Universidade de São Paulo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/360-vr-video-production-9814">VR and 360 Video Production</a> from <em>Google Daydream Impact</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ar-11596">Introduction to Augmented Reality and ARCore</a> from <em>Google Daydream Impact</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/python-crash-course-ko-60041">파이썬 단기집중과정</a> from <em>Google</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ibm-building-cloud-native-and-multicloud-32718">Building Cloud Native and Multicloud</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/career-guide-and-interview-prep-for-full-stack-cl-86347">Software Developer Career Guide and Interview Preparation</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/google-kubernetes-engine-it-58787">Getting Started with Google Kubernetes Engine in italiano</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/preparing-cloud-professional-cloud-architect-exam-58868">Preparing Cloud Professional Cloud Architect Exam italiano</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/google-kubernetes-engine-fr-59058">Getting Started with Google Kubernetes Engine en français</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/google-kubernetes-engine-ko-59505">Getting Started with Google Kubernetes Engine 한국어</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/logging-monitoring-observability-google-cloud-fr-59510">Logging, Monitoring and Observability in Google Cloud en Français</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/developing-a-google-sre-culture-fr-59752">Developing a Google SRE Culture en Français</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/deploying-secure-kubernetes-containers-in-product-70704">Architecting Google Kubernetes Engine Production in italiano</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ml-pipelines-google-cloud-ko-106118">ML Pipelines on Google Cloud - 한국어</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tensorflow-on-google-cloud-ko-120179">TensorFlow on Google Cloud - 한국어</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/essential-cloud-infrastructure-core-services-zhtw-120181">Essential Google Cloud Infrastructure: Core Services - 繁體中文</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/google-cloud-fundamentals-core-infrastructure-zht-120182">Google Cloud Fundamentals: Core Infrastructure - 繁體中文</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/essential-google-cloud-infrastructure-foundation--120183">Essential Google Cloud Infrastructure: Foundation - 繁體中文</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/elastic-cloud-infrastructure-scaling-and-automati-120572">Elastic Cloud Infrastructure: Scaling and Automation - 繁體中文</a>  from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/machine-learning-in-enterprise-fr-121060">Machine Learning in the Enterprise - Français</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tensorflow-on-google-cloud---portugues-brasileiro-126261">TensorFlow on Google Cloud - Português Brasileiro</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/programacion-en-python-ii-aprendiendo-a-estructur-119222">Programación en Python II: aprendiendo a estructurar datos</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/softwaretesting-3357">软件测试 (Software Testing)</a> from <em>Nanjing University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introducao-aplicativos-android-10721">Introdução ao Desenvolvimento de Aplicativos Android</a> from <em>Universidade Estadual de Campinas</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/jisuanji-wangluo-4198">系统平台与计算环境</a> from <em>Xi'an Jiaotong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cloud-computing-basics-ko-60044">클라우드 컴퓨팅 기초(Cloud 101)</a> from <em>LearnQuest</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mobile-architecture-94690">Mobile Architecture</a> from <em>Meta</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/meta-software-development-practices-94893">Software Development Practices</a> from <em>Meta</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-ios-development-104045">Advanced iOS Development</a> from <em>Meta</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/what-is-the-metaverse-110388">What is the Metaverse?</a> from <em>Meta</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/whatsapp-business-platform-for-developers-122067">WhatsApp Business Platform for Developers</a> from <em>Meta</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/automation-360-54964">Getting Started with Automation 360</a> from <em>Automation Anywhere</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tencent-cloud-practitioner-43702">Tencent Cloud Practitioner</a> from <em>Tencent Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tencent-cloud-solutions-architect-associate-56220">Tencent Cloud Solutions Architect Associate</a>  from <em>Tencent Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tencent-cloud-sysops-associate-58982">Tencent Cloud SysOps Associate</a> from <em>Tencent Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tencent-cloud-solutions-architect-professional-70699">Tencent Cloud Solutions Architect Professional</a> from <em>Tencent Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tencent-cloud-developer-associate-99652">Tencent Cloud Developer Associate</a> from <em>Tencent Cloud</em></li>
</ul>
<h2 id="heading-mathematics-44">Mathematics (44)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/fibonacci-6684">Fibonacci Numbers and the Golden Ratio</a> from <em>The Hong Kong University of Science and Technology</em> ★★★★★(229)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/maththink-370">Introduction to Mathematical Thinking</a> from <em>Stanford University</em> ★★★★☆(53)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/single-variable-calculus-5066">Calculus: Single Variable Part 1 - Functions</a> from <em>University of Pennsylvania</em> ★★★★★(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/differentiation-calculus-5068">Calculus: Single Variable Part 2 - Differentiation</a> from <em>University of Pennsylvania</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-calculus-12547">Introduction to Calculus</a> from <em>The University of Sydney</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/integration-calculus-5069">Calculus: Single Variable Part 3 - Integration</a> from <em>University of Pennsylvania</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/applications-calculus-5070">Calculus: Single Variable Part 4 - Applications</a> from <em>University of Pennsylvania</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ac-922">Analytic Combinatorics</a> from <em>Princeton University</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/probability-statistics-11755">Probability and Statistics: To p or not to p?</a> from <em>University of London International Programmes</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/complex-analysis-6418">Introduction to Complex Analysis</a> from <em>Wesleyan University</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/introductiontoprobability-7792">An Intuitive Introduction to Probability</a> from <em>University of Zurich</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ordinary-differential-equations-9736">Differential Equations Part I Basic Theory</a> from <em>Korea Advanced Institute of Science and Technology</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/matrix-methods-13644">Matrix Methods</a> from <em>University of Minnesota</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduccion-al-calculo-4225">Pre-Calculus</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/power-sample-size-14413">Power and Sample Size for Multilevel and Longitudinal Study Designs</a> from <em>University of Florida</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/hesap-calculus-dersi-1412">Çok değişkenli Fonksiyon I: Kavramlar / Multivariable Calculus I: Concepts</a> from <em>Koç University</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/statistical-inferences-7353">Improving your statistical inferences</a> from <em>Eindhoven University of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/stanford-statistics-33479">Introduction to Statistics</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/discrete-calculus-5067">Single Variable Calculus</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/causal-inference-12136">Causal Inference</a> from <em>Columbia University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/causal-inference-2-13095">Causal Inference 2</a> from <em>Columbia University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/probability-intro-ko-60065">R을 사용한 확률 및 데이터 소개</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/inferential-statistics-intro-de-65371">Inferenzstatistik</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/dmathgen-4431">离散数学概论 Discrete Mathematics Generality</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/prob1-7800">頑想學概率：機率一 (Probability (1))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/estadistica-probabilidad-13773">Estadística y probabilidad</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/funciones-algebraicas-19727">Funciones algebraicas y trascendentes</a>  from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/algebra-basica-4653">Álgebra básica</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/calculo-4-4167">4.- El Cálculo - Otros Modelos</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/calculo-2-4226">2.- El Cálculo - Modelo Cuadrático</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/calculo-1-4231">1.- El Cálculo - Modelo Lineal</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/calculo-3-4284">3.- El Cálculo - Modelo Cúbico</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/calculodiferencial-4760">5.- Cálculo Diferencial e Integral unidos por el Teorema Fundamental del Cálculo</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/calculo-diferencial-4884">Cálculo Diferencial e Integral unidos por el Teorema Fundamental del Cálculo</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/discrete-mathematics-8133">Discrete Mathematics</a> from <em>Shanghai Jiao Tong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/discrete-mathematics-ch-8275">离散数学</a> from <em>Shanghai Jiao Tong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/jiegou-fangcheng-moxing-696">Structural Equation Model and its Applications | 结构方程模型及其应用 (普通话)</a> from <em>The Chinese University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/structural-equation-model-cantonese-5947">Structural Equation Model and its Applications | 结构方程模型及其应用 (粤语)</a> from <em>The Chinese University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-math-1938">Invitation to Mathematics הזמנה למתמטיקה</a> from <em>Hebrew University of Jerusalem</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introgalois-1298">Introduction à la théorie de Galois</a> from <em>École normale supérieure</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/multivarii-1958">Çok Değişkenli Fonksiyonlarda Türev ve Entegral II: İleri Konular ve Uygulamalar / Multivariable Calculus II: Applications and Advanced Topics</a> from <em>Koç University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/calculus-diferansiyel-hesap-4165">Çok değişkenli Fonksiyon II: Uygulamalar / Multivariable Calculus II: Applications</a> from <em>Koç University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/linearalgebra1-5045">Doğrusal Cebir I: Uzaylar ve İşlemciler / Linear Algebra I: Spaces and Operators</a> from <em>Koç University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/linearalgebra2-5046">Doğrusal Cebir II: Kare Matrisler, Hesaplama Yöntemleri ve Uygulamalar / Linear Algebra II: Square Matrices, Calculation Methods and Applications</a> from <em>Koç University</em></li>
</ul>
<h2 id="heading-engineering-88">Engineering (88)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/statics1-564">Introduction to Engineering Mechanics</a> from <em>Georgia Institute of Technology</em> ★★★★★(170)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mechanics-1-5031">Mechanics of Materials I: Fundamentals of Stress &amp; Strain and Axial Loading</a> from <em>Georgia Institute of Technology</em> ★★★★★(110)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/intro-indoor-air-quality-9706">Introduction to Indoor Air Quality</a> from <em>The Hong Kong University of Science and Technology</em> ★★★★★(91)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/statics2-1148">Applications in Engineering Mechanics</a> from <em>Georgia Institute of Technology</em> ★★★★★(63)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mastering-statics-13737">Mastering Statics</a> from <em>The Hong Kong University of Science and Technology</em> ★★★★★(35)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/dynamics-7788">Engineering Systems in Motion: Dynamics of Particles and Bodies in 2D Motion</a> from <em>Georgia Institute of Technology</em> ★★★★★(34)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/3dmotion-2064">Advanced Engineering Systems in Motion: Dynamics of Three Dimensional (3D) Motion</a> from <em>Georgia Institute of Technology</em> ★★★★★(32)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mechanics2-5385">Mechanics of Materials II: Thin-Walled Pressure Vessels and Torsion</a> from <em>Georgia Institute of Technology</em> ★★★★★(27)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/materials-structures-6188">Mechanics of Materials IV: Deflections, Buckling, Combined Loading &amp; Failure Theories</a> from <em>Georgia Institute of Technology</em> ★★★★★(21)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/beam-bending-6184">Mechanics of Materials III: Beam Bending</a> from <em>Georgia Institute of Technology</em> ★★★★★(20)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ourenergyfuture-2055">Our Energy Future</a> from <em>University of California, San Diego</em>  ★★★★★(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/machine-design1-7404">Machine Design Part I</a> from <em>Georgia Institute of Technology</em> ★★★★★(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/introse-1381">Introduction to Systems Engineering</a> from <em>University of New South Wales</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/opv-1822">Organic Solar Cells - Theory and Practice</a> from <em>Technical University of Denmark (DTU)</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/analysenumerique-846">Analyse numérique pour ingénieurs</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sanitation-2230">Planning &amp; Design of Sanitation Systems and Technologies</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/bim-fundamentals-12179">BIM Fundamentals for Engineers</a> from <em>National Taiwan University</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-energy-6189">Politics and Economics of International Energy</a> from <em>Institut d'Etudes Politiques de Paris</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/fluidpower-1770">Fundamentals of Fluid Power</a> from <em>University of Minnesota</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/robotica-inicial-4659">Robótica</a> from <em>Universidad Nacional Autónoma de México</em> ★★☆☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/onl-2232">Optique non-linéaire</a> from <em>École Polytechnique</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/geodesign-2016">Geodesign: Change Your World</a> from <em>Pennsylvania State University</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/analisis-sistemas-de-transporte-4728">Análisis de Sistemas de Transporte</a> from <em>Pontificia Universidad Católica de Chile</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/globalenergyandclimatepolicy-8604">Global Energy and Climate Policy</a> from <em>SOAS University of London</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mosfet-547">MOS Transistors</a> from <em>Columbia University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/nanotechnology-9262">Nanotechnology: A Maker’s Course</a> from <em>Duke University</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/modeling-simulation-natural-processes-8554">Simulation and modeling of natural processes</a> from <em>University of Geneva</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/gis-1-13293">Geographical Information Systems - Part 1</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/structures-1187">L'art des structures 1 : Câbles et arcs</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/microcontroleurs-1238">Comprendre les Microcontroleurs</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/geomatique-1605">Éléments de Géomatique</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/intro-sig-1-6205">Introduction aux Systèmes d’Information Géographique - Partie 1</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/bim-application-12117">BIM Application for Engineers</a> from <em>National Taiwan University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sistemas-digitales-1457">Sistemas Digitales: De las puertas lógicas al procesador</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/digital-systems-7359">Digital Systems: From Logic Gates to Processors</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/nanosar1-1012">التقانة والمستشعرات النانوية - الجزء الاول</a> from <em>Technion - Israel Institute of Technology</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/nanosensors1-5200">Nanotechnology and Nanosensors, Part1</a> from <em>Technion - Israel Institute of Technology</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ingenieria-trafico-11950">Ingeniería de Tráfico</a> from <em>Pontificia Universidad Católica de Chile</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/spobuildaerodynamics-1392">Sports and Building Aerodynamics</a> from <em>Eindhoven University of Technology</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/exploring-renewable-energy-17025">Exploring Renewable Energy Schemes</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/material-science-engineering-6210">Material Processing</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/high-throughput-6537">Introduction to High-Throughput Materials Development</a> from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/linear-circuits-ac-analysis-9474">Linear Circuits 2: AC Analysis</a>  from <em>Georgia Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/city-and-you-find-best-place-8668">The City and You: Find Your Best Place</a> from <em>University of Toronto</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gestion-eau-4753">Gestion et Politique de l'eau</a>  from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mobiurba-4409">Mobilité et urbanisme</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/env-urbain-afrique-4515">Villes africaines: Environnement et enjeux de développement durable</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/bidonvilles-4516">Villes africaines : Restructuration des quartiers précaires</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mobilite-afrique-4589">Villes africaines: Mobilités et transports urbains</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sig-1-8801">Systèmes d’Information Géographique - Partie 1</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sig-2-8802">Systèmes d’Information Géographique - Partie 2</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/enseignes-et-afficheurs-led-9206">Enseignes et afficheurs à LED</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/3d-cad-fundamental-9997">3D CAD Fundamental</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/3d-cad-application-10672">3D CAD Application</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/como-autoconstruir-tu-vivienda-segunda-e-12387">Cómo autoconstruir tu vivienda. Segunda etapa</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pensamiento-sistemico-4332">Pensamiento sistémico</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/como-autoconstruir-tu-vivienda-4642">Cómo autoconstruir tu vivienda</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/hydro-wind-solar-power-resources-variability-fore-56510">Hydro, Wind &amp; Solar power: Resources, Variability &amp; Forecast</a> from <em>École Polytechnique</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/plastic-electronics-10161">Plastic electronics</a> from <em>École Polytechnique</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/freeform-electronics-17374">Recent Advances in Freeform Electronics</a> from <em>Yonsei University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/wireless-communications-7503">Wireless Communications for Everybody</a> from <em>Yonsei University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/copy-of-fpga-intro-58997">FPGA computing systems: Partial Dynamic Reconfiguration</a> from <em>Politecnico di Milano</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fpga-computing-systems-58998">FPGA computing systems: A Bird’s Eye View</a> from <em>Politecnico di Milano</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/analisis-sistemas-electricos-y-transicion-energet-108440">Análisis de Sistemas Eléctricos y Transición Energética</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/quantitative-model-checking-7502">Quantitative Model Checking</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/informationtheory-316">Information Theory</a> from <em>The Chinese University of Hong Kong</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/4g-principes-des-reseaux-mobiles-86349">4G : Principes des réseaux mobiles</a> from <em>Institut Mines-Télécom</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/4g-network-fundamentals-89696">4G Network Fundamentals</a> from <em>Institut Mines-Télécom</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/renewable-energy-fundamentals-32691">Renewable Energy: Fundamentals and Job Opportunities</a> from <em>University at Buffalo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/corrosion-15237">Protecting the World: Introducing Corrosion Science and Engineering</a> from <em>University of Manchester</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/environmental-management-ethics-8803">Environmental Management &amp; Ethics</a> from <em>Technical University of Denmark (DTU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/nanosensors2-5199">Nanotechnology and Nanosensors, Part 2</a> from <em>Technion - Israel Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/taknulujia-alnnanu2-5452">التقانة والمستشعرات النانوية - الجزء الثاني</a> from <em>Technion - Israel Institute of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-basic-vibrations-13421">Introduction to Basic Vibrations</a> from <em>Korea Advanced Institute of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-advanced-vibrations-13685">Introduction to Advanced Vibrations</a> from <em>Korea Advanced Institute of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/electronica-digital-bit-a-bit-disenando-circuitos-54373">Electrónica Digital Bit a Bit: Diseñando en Verilog para FPGA</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/electronica-digital-bit-a-bit-fundamentos-54374">Electrónica Digital Bit a Bit: Fundamentos, Verilog y FPGA</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/equilibrio-7113">Equilibrio, ¿por qué se caen las cosas?</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/computers-waves-simulations-13150">Computers, Waves, Simulations: A Practical Introduction to Numerical Methods using Python</a> from <em>Ludwig-Maximilians-Universität München</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/transiao-energtica-e-ecologica-em-paises-do-sul-46418">Transição energética e ecológica em países do sul</a> from <em>École normale supérieure</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pds-2576">Processamento Digital de Sinais - Amostragem</a> from <em>Universidade Estadual de Campinas</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/controle-5870">Introdução ao Controle de Sistemas</a> from <em>Instituto Tecnológico de Aeronáutica</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/resposta-frequencia-6179">Controle Usando a Resposta em Frequência</a> from <em>Instituto Tecnológico de Aeronáutica</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/microwave-antenna-22094">Microwave engineering and antennas</a> from <em>Eindhoven University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/rf-mmwave-circuit-design-32152">RF and millimeter-Wave Circuit Design</a> from <em>Eindhoven University of Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ferrous-technology-1-10362">Ferrous Technology I</a> from <em>Pohang University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ferrous-technology-2-10363">Ferrous Technology II</a> from <em>Pohang University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/developments-of-structural-dynamics-60064">Developments of structural dynamics</a> from <em>ISAE-SUPAERO</em></li>
</ul>
<h2 id="heading-social-sciences-212">Social Sciences (212)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/socialpsychology-555">Social Psychology</a> from <em>Wesleyan University</em> ★★★★★(87)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/modelthinking-317">Model Thinking</a> from <em>University of Michigan</em> ★★★★★(66)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/eu-making-europe-work-7408">EU policy and implementation: making Europe work!</a>  from <em>Leiden University</em> ★★★★★(51)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/game-theory-1-308">Game Theory</a> from <em>Stanford University</em> ★★★★☆(35)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/chinesepolitics1-3790">Chinese Politics Part 1 – China and Political Science</a> from <em>The Hong Kong University of Science and Technology</em> ★★★★★(31)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-science-of-well-being-10346">The Science of Well-Being</a> from <em>Yale University</em> ★★★★★(29)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-psych-647">Introduction to Psychology</a> from <em>University of Toronto</em> ★★★★★(27)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/terrorism-701">Terrorism and Counterterrorism: Comparing Theory and Practice</a> from <em>Leiden University</em> ★★★★★(25)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/monetary-policy-asia-pacific-11646">Monetary Policy in the Asia Pacific</a> from <em>The Hong Kong University of Science and Technology</em> ★★★★★(24)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/econtransform1-8348">China’s Economic Transformation Part 1: Economic Reform and Growth in China</a> from <em>The Hong Kong University of Science and Technology</em> ★★★★★(20)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/americanlaw-2872">An Introduction to American Law</a> from <em>University of Pennsylvania</em> ★★★★★(19)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-psychology-12509">Introduction to Psychology</a>  from <em>Yale University</em> ★★★★★(16)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/welcomegametheory-2883">Welcome to Game Theory</a> from <em>University of Tokyo</em> ★★★★★(16)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/moral-politics-2986">Moral Foundations of Politics</a>  from <em>Yale University</em> ★★★★☆(15)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/researchmethods-1767">Understanding Research Methods</a> from <em>University of London International Programmes</em> ★★★★☆(15)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/arbitration-10152">International Law in Action: the Arbitration of International Disputes</a> from <em>Leiden University</em> ★★★★★(15)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/susdev-1533">The Age of Sustainable Development</a> from <em>Columbia University</em> ★★★★★(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/chinesepolitics2-3791">Chinese Politics Part 2 – China and the World</a> from <em>The Hong Kong University of Science and Technology</em> ★★★★★(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/security-safety-globalized-world-7770">Security &amp; Safety Challenges in a Globalized World</a> from <em>Leiden University</em> ★★★★★(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/classical-sociological-theory-4298">Classical Sociological Theory</a>  from <em>University of Amsterdam</em> ★★★★★(13)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/warparadoxes-1361">Paradoxes of War</a> from <em>Princeton University</em> ★★★★☆(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/networksonline-744">Social and Economic Networks: Models and Analysis</a> from <em>Stanford University</em> ★★★★★(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/environlaw-725">Introduction to Environmental Law and Policy</a> from <em>The University of North Carolina at Chapel Hill</em> ★★★★★(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/intlcriminallaw-712">Introduction to International Criminal Law</a> from <em>Case Western Reserve University</em> ★★★★★(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/gametheory2-1469">Game Theory II: Advanced Applications</a> from <em>Stanford University</em> ★★★★☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/awc-2677">America's Written Constitution</a> from <em>Yale University</em> ★★★★☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mswm-4080">Municipal Solid Waste Management in Developing Countries</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★★(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/memory-and-movies-5254">Understanding Memory: Explaining the Psychology of Memory through Movies</a> from <em>Wesleyan University</em> ★★★★☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/international-law-in-action-4423">International Law in Action: A Guide to the International Courts and Tribunals in The Hague</a> from <em>Leiden University</em> ★★★★★(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cfel-2137">Copyright for Educators &amp; Librarians</a> from <em>Duke University</em> ★★★★★(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/risk-in-modern-society-10210">Risk in Modern Society</a>  from <em>Leiden University</em> ★★★★★(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/commscience-1198">Introduction to Communication Science</a> from <em>University of Amsterdam</em> ★★★★☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/erasmus-econometrics-4723">Econometrics: Methods and Applications</a> from <em>Erasmus University Rotterdam</em> ★★★★☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/microeconomics-part1-624">Microeconomics: The Power of Markets</a> from <em>University of Pennsylvania</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/constitution-2082">Introduction to Key Constitutional Concepts and Supreme Court Cases</a> from <em>University of Pennsylvania</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/digitaldemocracy-337">Securing Digital Democracy</a> from <em>University of Michigan</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/formadores-ciudadania-8046">Formadores de Ciudadanía</a> from <em>Universidad de los Andes</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/womens-health-human-rights-8615">International Women's Health and Human Rights</a> from <em>Stanford University</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/microeconomics-part2-5295">Microeconomics: When Markets Fail</a> from <em>University of Pennsylvania</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/auc-3008">America's Unwritten Constitution</a> from <em>Yale University</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/comparative-political-economy-1676">Configuring the World, part 1: Comparative Political Economy</a> from <em>Leiden University</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/globalenvmanangement-4087">Global Environmental Management</a> from <em>Technical University of Denmark (DTU)</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/political-philosophy-4234">Revolutionary Ideas: Utility, Justice, Equality, Freedom</a> from <em>University of Pennsylvania</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/law-student-4897">A Law Student's Toolkit</a> from <em>Yale University</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/egypt-738">Egiptología (Egyptology)</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★☆☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cgt-636">Games without Chance: Combinatorial Game Theory</a>  from <em>Georgia Institute of Technology</em> ★★★☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/international-water-law-10234">International Water Law</a> from <em>University of Geneva</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/emotions-3159">Emotions: a Philosophical Introduction</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/after-the-arab-spring-8807">After the Arab Spring – Democratic Aspirations and State Failure</a> from <em>University of Copenhagen</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/internetgiants-3586">Internet Giants: The Law and Economics of Media Platforms</a> from <em>The University of Chicago</em>  ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/international-security-management-17930">International Security Management</a> from <em>Erasmus University Rotterdam</em> ★★★☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/roman-art-archaeology-5796">Roman Art and Archaeology</a> from <em>University of Arizona</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/political-philosophy-2-4171">Revolutionary Ideas: Borders, Elections, Constitutions, Prisons</a> from <em>University of Pennsylvania</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/norms-5910">Social Norms, Social Change I</a> from <em>University of Pennsylvania</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/everyday-parenting-8875">Everyday Parenting: The ABCs of Child Rearing</a> from <em>Yale University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-systemic-risk-55173">Global Systemic Risk</a>  from <em>Princeton University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/resilienceinchildren-1768">Resilience in Children Exposed to Trauma, Disaster and War: Global Perspectives</a> from <em>University of Minnesota</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/droitshomme-1596">Introduction aux Droits de l’Homme</a> from <em>University of Geneva</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/m-infra-1-4576">Management of Urban Infrastructures – part 1</a> from <em>École Polytechnique Fédérale de Lausanne</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/korean-economy-6207">The Korean Economic Development</a> from <em>Yonsei University</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/bienestar-equidad-derechos-humanos-8487">Bienestar, equidad y derechos humanos</a> from <em>Universidad de los Andes</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/economic-growth-part-1-5733">Economic Growth and Distributive Justice Part I - The Role of the State</a> from <em>Tel Aviv University</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-sustainable-development-10311">The Sustainable Development Goals – A global, transdisciplinary vision for the future</a> from <em>University of Copenhagen</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/geopolitics-europe-7225">Geopolitics of Europe</a> from <em>Institut d'Etudes Politiques de Paris</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/urban-education-5675">Critical Issues in Urban Education</a> from <em>The University of Chicago</em>  ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/gender-sexuality-8384">Gender and Sexuality: Diversity and Inclusion in the Workplace</a> from <em>University of Pittsburgh</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/feminism-social-justice-13290">Feminism and Social Justice</a> from <em>University of California, Santa Cruz</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sdgbusiness-13760">Driving business towards the Sustainable Development Goals</a> from <em>Erasmus University Rotterdam</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/recoveringthepast-700">Recovering the Humankind's Past and Saving the Universal Heritage</a> from <em>Sapienza University of Rome</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/geopoliticaygobernanzaglobal-4630">Geopolítica y gobernanza global: riesgos y oportunidades</a> from <em>ESADE Business and Law School</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/love-social-justice-8844">Love as a Force for Social Justice</a> from <em>Stanford University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/change-7429">Social Norms, Social Change II</a> from <em>University of Pennsylvania</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/networkdynamics-9306">Network Dynamics of Social Behavior</a> from <em>University of Pennsylvania</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/copyright-for-multimedia-5369">Copyright for Multimedia</a> from <em>Emory University</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-diplomacy-un-8620">Global Diplomacy: the United Nations in the World</a> from <em>University of London International Programmes</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/intro-common-law-12100">Introduction to English Common Law</a> from <em>University of London International Programmes</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/enfant-developpement-16876">Développement psychologique de l'enfant</a> from <em>University of Geneva</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/contrats-3158">Rédaction de contrats</a> from <em>University of Geneva</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ecosystem-services-8088">Ecosystem Services: a Method for Sustainable Development</a> from <em>University of Geneva</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/genre-9351">Genre : quels enjeux ? Violences, globalisation, biomédecine, sexualités.</a> from <em>University of Geneva</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/nonviolence-4872">From Freedom Rides to Ferguson: Narratives of Nonviolence in the American Civil Rights Movement</a> from <em>Emory University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/lawandecon-524">Property and Liability: An Introduction to Law and Economics</a> from <em>Wesleyan University</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/shaonian-fuli-4838">少年福利與權利 (Welfare and Rights of Youth)</a> from <em>National Taiwan University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/international-humanitarian-law-12277">International Humanitarian Law in Theory and Practice</a>  from <em>Leiden University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/representaciones-culturales-1969">Representaciones culturales de las sexualidades</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/democracia-2083">Democracia y decisiones públicas. Introducción al análisis de políticas públicas</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/pap-3224">Primeros Auxilios Psicológicos (PAP)</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainability-social-ecological-systems-8795">Sustainability of Social-Ecological Systems: the Nexus between Water, Energy and Food</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/corporate-governance-mitos-realidades-10750">Corporate governance. Mitos y realidades</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/sexualidad-4637">Sexualidad...mucho más que sexo</a> from <em>Universidad de los Andes</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/market-power-4898">The Power of Markets I: The Basics of Supply and Demand and Consumer Behavior</a>  from <em>University of Rochester</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/afrique-mondialisation-9757">Afrique et mondialisation, regards croisés</a> from <em>Institut d'Etudes Politiques de Paris</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/enjoyable-econometrics-16977">Enjoyable Econometrics</a> from <em>Erasmus University Rotterdam</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/whendisastermeetsconflict-17360">When Disaster Meets Conflict</a> from <em>Erasmus University Rotterdam</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/reputationcrisisfacebookmeetscambridgeanalytica-22704">Reputation Crisis? Facebook meets Cambridge Analytica</a> from <em>Erasmus University Rotterdam</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/local-economic-development-10376">Local Economic Development</a> from <em>Erasmus University Rotterdam</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/archaeology-city-levant-west-8558">At the Origins of the Mediterranean Civilization: Archaeology of the City from the Levant to the West - 3rd-1st millennium BC</a> from <em>Sapienza University of Rome</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/palatine-carafa-8624">The Changing Landscape of Ancient Rome. Archaeology and History of the Palatine Hill</a> from <em>Sapienza University of Rome</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/america-latina-5909">América Latina en los cambios internacionales: amenazas y oportunidades.</a>  from <em>Universidad de Chile</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/technology-shaping-democracy-2020-election-22196">How Technology is Shaping Democracy and the 2020 Election</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/police-brutality-in-the-united-states-22211">Community Awareness: Police Brutality in the U.S.</a>  from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/questionnaire-design-es-66320">Diseño de cuestionarios para encuestas sociales</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/justice-and-equity-in-technology-policy-118912">Justice and Equity in Technology Policy</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leading-for-equity-diversity-inclusion-8736">Leading for Equity, Diversity and Inclusion in Higher Education</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/firearm-licensing-17978">Firearm Purchaser Licensing Teach-Out: The Background Check Policy Not Enough People Are Talking About</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/erpo-22041">ERPO: A Civil Approach to Gun Violence Prevention Teach-Out</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/black-lives-matter-40644">Black Lives Matter</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/preventative-law-avoiding-negative-court-involvem-120188">Helping Families Avoid Negative Court Involvement Teach-Out</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/race-cultural-diversity-american-life-9082">Race and Cultural Diversity in American Life and History</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/health-and-safety-of-home-based-childcare-center-117507">Health and Safety of a Home-Based Childcare Center</a> from <em>State University of New York</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/refugees-21st-century-18077">Refugees in the 21st Century</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/citizenship-rule-of-law-18188">Citizenship and the Rule of Law</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/foundations-of-diversity-and-inclusion-at-work-te-21397">Foundations of Diversity and Inclusion at Work TeachOut</a> from <em>University of Virginia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainability-through-soccer-8302">Sustainability through Soccer: Systems-Thinking in Action</a> from <em>University of Virginia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/criminallaw-1736">刑法学总论 Criminal Law</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pkufamilysociology-4432">家庭社会学导论</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tgnc-gender-identity-social-change-8603">What does it mean to identify as Transgender or Gender Non-Conforming (TGNC)?</a> from <em>University of Minnesota</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/social-science-research-chinese-society-8628">Social Science Approaches to the Study of Chinese Society Part 2</a> from <em>The Hong Kong University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/russian-water-management-20210">Политика и управление водными ресурсами</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mentaliser-55914">Mentaliser : de la théorie à l’intervention clinique</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/international-organizations-56553">International Organizations for Interpreters</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/research-humanitarian-114643">Operational Research for Humanitarians</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/childrens-rights-7767">Children's Human Rights - An Interdisciplinary Introduction</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/drugs-11600">Drugs, drug use, drug policy and health</a>  from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-sustainability-imperative-59520">The Sustainability Imperative</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economic-policy-ar-13295">فهم صنع السياسات الاقتصادية</a> from <em>IE Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/african-cities1-12187">African cities : An Introduction to Urban Planning</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/iglus-19062">Innovative Governance of Large Urban Systems</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/villes-africaines-1-1282">Villes africaines I: Introduction à la planification urbaine</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ecosol1-4410">Economie du sol et de l'immobilier I</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economie-sol-immobilier-2-6035">Economie du sol et de l'immobilier II</a> from <em>École Polytechnique Fédérale de Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/originalite-et-modernite-du-mutualisme-11543">Originalité et modernité du mutualisme</a> from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/taiwan-law-in-focus-economy-society-and-democracy-55167">Taiwan Law in Focus: Economy, Society and Democracy</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/shiyan-jingji-xue-2370">實驗經濟學 (Experimental Economics: Behavioral Game Theory)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-8796">經濟學概論：誘因與市場（Introduction to Economics: Incentive and Markets）</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/game-theory-and-business-strategy-10743">賽局與產業競爭策略 (Game Theory and Business Strategy)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/anticorrupcion-introduccion-14490">Anticorrupción: Introducción a conceptos y perspectiva práctica</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gestion-riesgo-16921">Gestión integral del riesgo de desastres</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gobiernos-locales-8236">Los gobiernos locales como actores internacionales</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainability-global-challenges-and-local-action-121146">The Great Sustainability Transition: Global challenges, Local actions</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/international-law-in-action-2-5973">International Law In Action: Investigating and Prosecuting International Crimes</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/political-economy-8960">Political Economy of Institutions and Development</a> from <em>Leiden University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/iniciacion-jeroglificos-egipcios-12580">Iniciación a los jeroglíficos egipcios</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/proteccion-datos-37633">Ley de protección de datos. Conoce tus derechos</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/accion-comunitaria-110347">Acción Comunitaria. Enfoques para la transformación social</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ciudades-politicas-urbanas-10444">Ciudades en crisis y nuevas políticas urbanas</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/accessibility-scenic-arts-11497">Accessibility to the Scenic Arts</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/interculturalidad-17291">Comprender las dimensiones interculturales en la cotidianidad</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/arctic-economy-23272">Arctic Economy</a>  from <em>University of Alberta</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/orbitalperspective-8291">Introduction to the Orbital Perspective</a> from <em>University of Arizona</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/alternative-mobility-narratives-24344">Alternative Mobility Narratives</a> from <em>University of Amsterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/dangdai-yingyong-xinli-xue-4554">当代应用心理学</a> from <em>Shanghai Jiao Tong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ethnic-yunnan-43783">The amazing world of the ethnic groups of Yunnan Province</a> from <em>Shanghai Jiao Tong University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economic-growth-part-2-5732">Economic Growth and Distributive Justice Part II - Maximize Social Wellbeing</a> from <em>Tel Aviv University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/legaltech-19503">El Abogado del Futuro: Legaltech y la Transformación Digital del Derecho</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-literacy-what-is-why-matters-58297">Data Literacy – What is it and why does it matter?</a> from <em>Sorbonne Universités</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/european-citizenship-47283">European Citizenship – Development, Scope, and Challenges</a> from <em>University of Copenhagen</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainable-development-ideas-and-imaginaries-110312">Sustainable Development - Ideas and Imaginaries</a> from <em>University of Copenhagen</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/econometria-basica-aplicada-10703">Econometria Básica Aplicada</a> from <em>Universidade de São Paulo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introducao-analise-macroeconomica-10706">Introdução à Análise Macroeconômica</a> from <em>Universidade de São Paulo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/market-efficiency-4899">The Power of Markets III: Input Markets and Promoting Efficiency</a> from <em>University of Rochester</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/market-structure-4900">The Power of Markets II: Market Structure and Firm Behavior</a> from <em>University of Rochester</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/responsiblemgmnt-3745">Managing Responsibly: Practicing Sustainability, Responsibility and Ethics</a> from <em>University of Manchester</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/donnes-et-gouvernance-urbaine-60073">Données et Gouvernance Urbaine</a> from <em>Institut d'Etudes Politiques de Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-urban-governance-60074">Data and Urban Governance</a> from <em>Institut d'Etudes Politiques de Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/desarrollo-urbano-6622">Cities are back in town : sociología urbana para un mundo globalizado</a> from <em>Institut d'Etudes Politiques de Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/geopolitique-6953">Géopolitique de l'Europe</a> from <em>Institut d'Etudes Politiques de Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/grand-paris-metropolis-11069">Searching for the Grand Paris</a> from <em>Institut d'Etudes Politiques de Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/israel-7329">Israel State and Society</a>  from <em>Hebrew University of Jerusalem</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/urban-air-mobility-80069">Urban Air Mobility</a> from <em>Technische Universität München (Technical University of Munich)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/valuechains-8966">The Economics of Agro-Food Value Chains</a> from <em>Technische Universität München (Technical University of Munich)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/conspiracy-planet-58671">Conspiracy Planet</a> from <em>University of California, Santa Cruz</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/equilibrio-redes-transporte-19268">¿Cómo viajamos por la ciudad? Asignación y equilibrio en redes de transporte.</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustentabilida-desafios-latinoamerica-120194">Sustentabilidad: los desafíos desde Latinoamérica</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/corp-sustainability-10667">Corporate Sustainability. Understanding and Seizing the Strategic Opportunity</a>  from <em>Università Bocconi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/transport-eu-law-12380">Cross-border road transport in EU law context</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/enable20-12589">Business Model Innovation for Sustainable Landscape Restoration</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/studying-cities-social-science-methods-f-13837">Studying Cities: Social Science Methods for Urban Research</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/earth-economics-19587">Earth Economics</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/effective-engagement-of-csos-in-development-32155">Effective Engagement of Civil Society in Development</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/effective-engagement-of-civil-society-in-developm-32194">Effective Engagement of Civil Society in Development</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/participacion-eficaz-de-la-sociedad-civil-en-el-d-45209">Participación eficaz de la sociedad civil en el desarrollo</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/engagement-efficace-de-la-societe-civile-dans-le--45212">L’engagement efficace de la société civile dans le développement</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/necessary-condition-analysis-95169">Necessary Condition Analysis (NCA)</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/landscape-restoration-sustainable-develo-8547">A Business Approach to Sustainable Landscape Restoration</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/xin-li-xue-sheng-huo-4180">心理学与生活</a> from <em>Nanjing University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/competencias-lab-8290">Competencias Laborales: Perfiles, Evaluación y Capacitación.</a> from <em>Universidad de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustentabilidad-economias-sociales-8315">Sustentabilidad y Economías Sociales</a> from <em>Universidad de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/working-for-a-sustainable-future-86177">Working for a sustainable future: concepts and approaches</a> from <em>Lund University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/transiciones-energeticas-y-ecologicas-en-los-pais-19376">Transiciones energéticas y ecológicas en los países del Sur</a> from <em>École normale supérieure</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ecological-and-energetical-transitions-in-souther-19383">Ecological and Energy Transitions in Southern Countries</a> from <em>École normale supérieure</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cartographie-7226">Cartographie thématique</a> from <em>École normale supérieure</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/transitions-energetiques-pays-du-sud-9218">Les transitions énergétique &amp; écologique dans les pays du Sud</a> from <em>École normale supérieure</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economia-do-trabalho-9995">Introdução à Economia do Trabalho: Teorias e Políticas</a> from <em>Universidade Estadual de Campinas</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/inequalityanddemocracy-17141">Inequality and Democracy</a> from <em>Utrecht University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/humanrights-7413">Human Rights for Open Societies</a> from <em>Utrecht University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/child-development-9059">Understanding child development: from synapse to society</a> from <em>Utrecht University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ecologie-politique-8124">Ecologie Politique: défi de la durabilité pour les démocraties</a> from <em>University of Lausanne</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/macroeconomics-for-business-management-43769">Macroeconomics for Business Management</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mobilites-vehicules-electriques-9673">Mobilités et véhicules électriques</a>  from <em>École des Ponts Paritech</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/electric-vehicles-mobility-9909">Electric Vehicles and Mobility</a> from <em>École des Ponts Paritech</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/capitalismo-consciente-5593">Capitalismo Consciente</a> from <em>Insper</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/antisemitisme-19023">L’antisémitisme : De ses origines à nos jours</a> from <em>Yad Vashem - The World Holocaust Remembrance Center</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/antisemitismo-22212">Antisemitismo: Desde sus orígenes hasta el presente</a> from <em>Yad Vashem - The World Holocaust Remembrance Center</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/economics-society-markets-and-inequality-120570">Economics: Society, Markets, and [In]equality</a> from <em>Parsons School of Design</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/power-and-foreign-policy-in-international-relatio-120142">Power and Foreign Policy in International Relations</a> from <em>O.P. Jindal Global University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/vocesdecambiosocial-19011">Voces de cambio social</a> from <em>Laureate International Universities</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/vozes-da-mudanca-social-19012">Vozes da Mudança Social</a> from <em>Laureate International Universities</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/abc-sostenibilidad-97263">El ABC de la sostenibilidad</a>  from <em>Campus BBVA</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/art-and-science-of-economic-policy-97394">The Art and Science of Economic Policy</a> from <em>Indian Institute for Human Settlements (IIHS)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/shaping-urban-futures-104415">Shaping Urban Futures</a> from <em>Indian Institute for Human Settlements (IIHS)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/abc-sustainability-117516">The ABC of sustainability</a>  from <em>Campus BBVA</em></li>
</ul>
<h2 id="heading-business-255">Business (255)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/strategy-law-ethics-6195">Making Successful Decisions through the Strategy, Law &amp; Ethics Model</a> from <em>University of Michigan</em> ★★★★★(44)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/financialmarkets-912">Financial Markets</a> from <em>Yale University</em> ★★★★☆(36)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/personal-branding-4865">Introduction to Personal Branding</a> from <em>University of Virginia</em> ★★★★☆(15)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/intorb-1371">International Leadership and Organizational Behavior</a> from <em>Università Bocconi</em> ★★★★☆(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-2-19373">Fundamentals of Business Finance, with Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em> ★★★★★(14)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/forensicaccounting-2465">Forensic Accounting and Fraud Examination</a> from <em>West Virginia University</em> ★★★★☆(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-financial-crisis-4893">The Global Financial Crisis</a> from <em>Yale University</em> ★★★★☆(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-3-19369">Fundamentals of Leadership, with Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em> ★★★★★(11)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/organizational-analysis-459">Organizational Analysis</a>  from <em>Stanford University</em> ★★★★☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/oilandgas-5356">Oil &amp; Gas Industry Operations and Markets</a>  from <em>Duke University</em> ★★★★★(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/content-marketing-7799">The Strategy of Content Marketing</a> from <em>University of California, Davis</em> ★★★★☆(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/supplychain-2065">Supply Chain Management: A Learning Perspective</a>  from <em>Korea Advanced Institute of Science and Technology</em> ★★★★☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/food-beverage-management-3498">Food &amp; Beverage Management</a> from <em>Università Bocconi</em> ★★★★☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/entpecon-1603">Beyond Silicon Valley: Growing Entrepreneurship in Transitioning Economies</a> from <em>Case Western Reserve University</em> ★★★★☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-6-19367">Fundamentals of Sales and Marketing, with Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em> ★★★★★(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/social-impact-2136">Social Impact Strategy: Tools for Entrepreneurs and Innovators</a> from <em>University of Pennsylvania</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/adsoc-2487">Advertising and Society</a> from <em>Duke University</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/globalenergybusiness-1307">Fundamentals of Global Energy Business</a> from <em>University of Colorado System</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/changetheworld-1269">How to Change the World</a> from <em>Wesleyan University</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/creativity-innovation-677">Creativity, Innovation and Transformation</a> from <em>Pennsylvania State University</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/dairy-4055">Dairy Production and Management</a> from <em>Pennsylvania State University</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/private-equity-4408">Private Equity and Venture Capital</a> from <em>Università Bocconi</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/artsculturestrategy-2678">Arts and Culture Strategy</a> from <em>University of Pennsylvania</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/futuremanagement-2920">Managing the Company of the Future</a> from <em>University of London International Programmes</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/erasmus-innovationmanagement-5943">Innovation Management</a> from <em>Erasmus University Rotterdam</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-8-19374">Fundamentals of Management, with Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-7-19375">Fundamentals of Operations, with Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/bridging-strategy-design-delivery-gap-12170">Bridging the Gap between Strategy Design and Delivery</a> from <em>Brightline Initiative</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/duke-behavioral-finance-6635">Behavioral Finance</a> from <em>Duke University</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/scalingoperations-2707">Scaling Operations: Linking Strategy and Execution</a> from <em>Northwestern University</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-5-19368">Fundamentals of Financial Planning, with Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-4-19370">Fundamentals of Customers and Competition, with Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/startupfinancewithoutvc-5831">How to Finance and Grow Your Startup – Without VC</a> from <em>University of London International Programmes</em> ★★★☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/innovacion-734">Desarrollo rápido de productos innovadores para mercados emergentes</a> from <em>Tecnológico de Monterrey</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/infrafinance-1380">Financing and Investing in Infrastructure</a> from <em>Università Bocconi</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-10-19371">Fundamentals of Negotiation, with Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/wharton-crowdfunding-9664">Crowdfunding</a> from <em>University of Pennsylvania</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/brand-3929">Brand Management: Aligning Business, Brand and Behaviour</a> from <em>University of London International Programmes</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepreneur-guide-beginners-19704">The entrepreneur's guide for beginners</a> from <em>University of Barcelona</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/finanzen-7794">Das liebe Geld - Finance im Alltag</a> from <em>University of Zurich</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/empreendedorismo-2577">O Empreendedorismo e as Competências do Empreendedor</a> from <em>Universidade Estadual de Campinas</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-9-19372">Fundamentals of Funding, with Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-esp-8-19446">Fundamentos de la Administración con Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/giving2-2481">Giving 2.0: The MOOC</a> from <em>Stanford University</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/schedule-projects-fr-33459">Budgétisation et planification de projets</a> from <em>University of California, Irvine</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/project-management-basics-fr-64224">Gestion de projet : les bases de la réussite</a> from <em>University of California, Irvine</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/financial-markets-global-pt-32714">Mercados financeiros</a> from <em>Yale University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/quantitative-customer-insights-10428">Customer Insights: Quantitative Techniques</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/company-future-management-ar-13180">إدارة شركات المستقبل</a> from <em>University of London International Programmes</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/international-organizations-management-11072">International Organizations Management</a>  from <em>University of Geneva</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/startup-idea-6449">How to Validate your Startup Idea</a> from <em>University of New South Wales</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/reussir-le-changement-5871">Réussir le Changement</a> from <em>ESSEC Business School</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/globalbusiness2-2699">International Business II</a> from <em>University of New Mexico</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/entstrategicmgmt-3596">Entrepreneurial Strategic Management</a> from <em>University of New Mexico</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/adminestremp-5071">Administración Estratégica y Emprendedora</a> from <em>University of New Mexico</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/international-business-7249">International Business I</a> from <em>University of New Mexico</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/finanzas-empresariales-4633">Fundamentos de Finanzas Empresariales</a>  from <em>Universidad de los Andes</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/techcommercialpart1-2567">Technology Commercialization, Part 1: Setting up your Idea Filtering System</a> from <em>University of Rochester</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/emprender-6034">Emprender la emprendeduría</a> from <em>University of Barcelona</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/new-technologies-business-leaders-10365">New Technologies for Business Leaders</a> from <em>Rutgers University</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/pppefficace-6008">Les Partenariats Public-Privé (PPP): Comment offrir de meilleures infrastructures pour les services publics</a> from <em>Online Learning Campus - World Bank Group</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/innovative-finance-9707">Innovative Finance: Hacking finance to change the world</a>  from <em>University of Cape Town</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/empresas-alimentos-bebidas-4729">Gestión de las empresas de alimentación y bebidas</a> from <em>Università Bocconi</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-valuation-and-strategy-12104">Advanced Valuation and Strategy - M&amp;A, Private Equity, and Venture Capital</a> from <em>Erasmus University Rotterdam</em> ★☆☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-esp-6-19435">Fundamentos de las Ventas y el Marketing con Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-esp-3-19442">Fundamentos del Liderazgo con Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/budgeting-essentials-development-9350">Budgeting essentials and development</a> from <em>Fundação Instituto de Administração</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/effectuation-1331">Effectuation : l'entrepreneuriat pour tous</a> from <em>EMLYON Business School</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/remote-team-management-21633">How to Manage a Remote Team</a> from <em>GitLab</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/valuing-nature-and-people-to-inform-business-deci-70698">Valuing nature and people to inform business decision-making</a> from <em>Capitals Coalition</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-software-ate-finance-27230">How Software Ate Finance</a> from <em>Stanford University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/wharton-social-impact-ko-121425">사회적 영향을 위한 비즈니스 전략</a> from <em>University of Pennsylvania</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/social-entrepreneurship-getting-started-21747">Becoming a Social Entrepreneur: Getting Started</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leading-diverse-teams-and-organizations-22539">Leading Diverse Teams &amp; Organizations</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/motivate-people-teams-ar-32753">إلهام الأفراد وتحفيزهم</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/managing-talent-ar-37585">إدارة المواهب</a>  from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leading-diverse-teams-33420">Leading Diverse Teams</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/project-risk-management-ru-33457">Управление рисками проекта и изменениями</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/project-risk-management-de-33458">Projektrisiken und -änderungen managen</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/schedule-projects-de-33460">Budget- und Terminplanung von Projekten</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/project-risk-management-fr-33461">Gérer les risques et les modifications d’un projet</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/project-planning-ar-37080">بدء المشاريع والتخطيط لها</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/project-planning-pt-37083">Iniciando e planejando projetos</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/project-planning-es-37084">Inicio y planificación de proyectos</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/schedule-projects-ru-39513">Составление бюджета и графиков проектов</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/project-planning-ru-45988">Инициирование и планирование проектов</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/project-planning-fr-64225">Initier et planifier des projets</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/project-management-basics-ar-65618">إدارة المشروع: أساسيات النجاح</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/finansy-5689">Фінанси для нефінансових спеціалістів</a> from <em>University of California, Irvine</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/financial-markets-global-es-32713">Mercados financieros</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/financial-markets-global-ru-32715">Финансовые рынки</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/financial-markets-global-fr-32716">Marchés financiers</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/financial-markets-global-ar-32717">الأسواق المالية</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/connected-leadership-121051">Connected Leadership</a> from <em>Yale University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/analytics-business-metrics-ko-60039">데이터 중심 기업을 위한 비즈니스 지표</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketing-digital-fr-64229">Le marketing dans un monde numérique</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leaders-es-64332">Liderazgo</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/organizational-concepts-and-language-es-64337">Conceptos y lenguaje de las organizaciones</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/organizational-concepts-and-language-fr-64342">Concepts et langage organisationnels</a>  from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leaders-fr-64516">Leadership</a>  from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leaders-ar-65141">القيادة</a>  from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-marketing-building-iconic-brands-102535">Global Marketing: Building Iconic Brands</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/empathy-data-risk-110391">Empathy, Data, and Risk</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/risk-management-empathy-data-119220">Empathy and Data in Risk Management</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/subsistence-marketplaces-1363">Subsistence Marketplaces</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/customer-insights-orientation-10374">Customer Insights: New Product Development Orientation</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/launch-online-business-39285">Launch Your Online Business</a> from <em>State University of New York</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/corporatestrategy-9859">Corporate Strategy</a>  from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/people-management-6317">The Manager's Toolkit: A Practical Guide to Managing People at Work</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/explore-management-concepts-through-metaphor-and--45954">Explore Management Concepts through Metaphor and Music</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/uva-darden-getting-started-agile-ar-64349">اجتماع النهج الرشيق (Agile) والتفكير التصميمي</a> from <em>University of Virginia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/design-coaching-strategy-5583">Designing and Implementing Your Coaching Strategy</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-seo-strategies-5608">Advanced Search Engine Optimization Strategies</a> from <em>University of California, Davis</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/zhenge-beida-zaixian-chuangye-5916">真格—北大在线创业课堂</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/innovation-medias-transformation-digitale-92396">Innovation, médias et transformation digitale</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/global-statistics-11053">Global Statistics - Composite Indices for International Comparisons</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-analytics-decision-making-ko-60038">의사 결정을 위한 비즈니스 분석</a> from <em>University of Colorado Boulder</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/researcher-management-leadership-training-19465">Researcher Management and Leadership Training</a> from <em>University of Colorado System</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/raison-etre-et-entreprise-a-mission-19244">Raison d’être et Entreprise à Mission</a> from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepreneuriat-social-changer-d-echelle-22032">L'entrepreneuriat social : changer d'échelle</a>  from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/companies-and-climate-change-37051">Companies and climate change</a> from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/belles-histoires-d-entreprises-a-impact-37081">Belles histoires d'entreprises à impact</a> from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/partenariats-qui-changent-le-monde-5227">Les partenariats qui changent le monde : alliances innovantes entre entreprises et associations</a> from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepreneuriatquichangelemonde-6202">L'entrepreneuriat social : de l'envie au projet</a> from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/animer-seance-collaborative-10763">Animer une séance collaborative</a> from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/excellence-operationnelle-11459">L'excellence opérationnelle en pratique</a>  from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/innovation-manageriale-12095">L'innovation managériale en pratique</a> from <em>ESSEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/shang-guan-zixun-jingji-xue-12338">商管研究中的賽局分析（二）：資訊經濟學</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/operations-research-theory-39300">Operations Research (3): Theory</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketing-stp-crm-7804">行銷典範轉移: 變動中的消費世界 (Marketing in a changing world)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gabr-9300">商管研究中的賽局分析（一）：通路選擇、合約制定與共享經濟 (Game Theoretic Analysis for Business Research (1))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pbc2-10786">用 Python 做商管程式設計（二）(Programming for Business Computing in Python (2))</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/designthinking-docencia-96160">Innovar tu enseñanza con design thinking</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/empresas-familiares-122053">Empresas familiares</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/finanzaspersonales-2565">Finanzas personales</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/contabilidad-7412">Contabilidad para no contadores</a>  from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/techstartup-2995">Créer et développer une startup technologique</a> from <em>École Polytechnique</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduccion-a-la-innovacion-empresarial-y-creaci-89812">Introducción a la Innovación Empresarial y Creación de Valor</a> from <em>Tecnológico de Monterrey</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/coaching-en-las-ondas-13257">Tu consultorio de Coaching en las ondas</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mercado-digital-16881">Contratación y mercado digital. Aspectos legales y otras cuestiones de interés</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/competencias-digitales-ofimatica-excel-59500">Competencias digitales de ofimática: Microsoft Excel</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/competencias-digitales-ofimatica-word-59501">Competencias digitales de ofimática: Microsoft Word</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/competencias-digitales-ofimatica-powerpoint-64379">Competencias digitales de ofimática: Microsoft PowerPoint</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gestion-comunicacion-interna-organizaciones-126045">Gestión de la comunicación interna en las organizaciones</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/patrocinio-deportivo-5814">Patrocinio Deportivo</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sports-sponsorship-6572">Sport Sponsorship. Let them Play</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/finanzas-basicas-8347">Kit básico (para evitar los errores más frecuentes) de finanzas</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/negocios-internacionales1-4933">Negocios Internacionales I</a> from <em>University of New Mexico</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/negocios-internacionales2-4941">Negocios Internacionales II</a> from <em>University of New Mexico</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/disaster-risk-management-korean-policies-13259">Disaster Risk Management and Korean Policies</a> from <em>Yonsei University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketing-internacional-asia-9770">Marketing Internacional en Asia</a> from <em>Yonsei University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tomar-decisiones-financieras-que-agregan-valor-22786">¿Cómo tomar decisiones financieras que agreguen valor?</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduccion-al-mantenimiento-de-activos-fisicos-106138">Introducción al mantenimiento de activos físicos</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketingverde-4651">Marketing Verde</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/blockchain-professionals-12595">Blockchain 360: A State of the Art for Professionals</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/business-implications-ai-nano-course-17046">Business Implications of AI: A Nano-course</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainable-digital-innovation-32151">Sustainable Digital Innovation</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-analytics-for-lean-six-sigma-8092">Data Analytics for Lean Six Sigma</a> from <em>University of Amsterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/manager-dans-lincertain-58336">Manager dans l'incertain</a> from <em>Institut Mines-Télécom</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/finanzas-corporativas-17318">Finanzas Corporativas</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/diseno-experiencia-servicios-17383">Diseño de Experiencia en Servicios</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/analisis-costos-direccion-empresas-17384">Introducción al análisis de Costos para la Dirección de Empresas</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/inversiones-en-cripto-61328">Cómo Invertir en Cripto</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/coberturas-de-riesgo-7082">Coberturas de riesgo con futuros y opciones para agrobusiness</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/excel-aplicado-negocios-avanzado-9571">Excel aplicado a los negocios (Nivel Avanzado)</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/excel-essentials-es-32810">Habilidades de Excel para el negocio: Conceptos básicos</a> from <em>Macquarie University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/excel-intermediate-1-ru-33414">Умения работы с Excel для бизнеса: уровень Intermediate I</a> from <em>Macquarie University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/excel-essentials-de-33501">Excel-Kenntnisse für Unternehmen: Grundlagen</a> from <em>Macquarie University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/excel-essentials-pt-34090">Habilidades de Excel para negócios: Fundamentos</a> from <em>Macquarie University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/excel-intermediate-2-ar-46396">مهارات الإكسل الخاصة التجارية: المستوى المتوسط الثاني</a> from <em>Macquarie University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/excel-intermediate-2-fr-64226">Compétences Excel professionnelles : Intermédiaire II</a> from <em>Macquarie University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/excel-intermediate-1-fr-64227">Compétences Excel professionnelles : Intermédiaire I</a> from <em>Macquarie University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/foundx-beta-course-21794">FoundX Startup School Course</a> from <em>University of Tokyo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainable-tourism-10334">Sustainable Tourism – promoting environmental public health</a> from <em>University of Copenhagen</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepchangement-2903">Devenir entrepreneur du changement</a> from <em>HEC Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/criacao-startups-8546">Criação de Startups: Como desenvolver negócios inovadores</a> from <em>Universidade de São Paulo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/consolidando-empresas-10710">Consolidando empresas: Estrutura jurídica e financeira</a> from <em>Universidade de São Paulo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gestionpersonas-3017">Claves para Gestionar Personas</a> from <em>IESE Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/startup-fintech-capstone-es-66065">Curso con proyecto final: Comienza tu futuro en fintech</a> from <em>University of Cape Town</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/entrepreneurial-culture-digital-age-12080">Be entrepreneurial in Cultural Industries in the digital age</a> from <em>Institut d'Etudes Politiques de Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/entreprendre-culture-12081">Entreprendre dans les Industries Culturelles à l'ère du numérique</a> from <em>Institut d'Etudes Politiques de Paris</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/design-strategy-11229">Design-Led Strategy: Design thinking for business strategy and entrepreneurship</a> from <em>The University of Sydney</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/financing-infrastructure-in-african-citi-10225">Financing Infrastructure in African Cities</a> from <em>United Cities and Local Governments of Africa</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leadership21st-1411">Leadership in 21st Century Organizations</a> from <em>Copenhagen Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/getvirtual-119587">GetVirtual: How to Launch Your Online Business</a> from <em>University of California, Santa Cruz</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/planificacion-gestion-pymes-21108">Planificación y gestión estratégica para Pymes</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/escalamiento-exitoso-e-innovacion-en-los-negocios-41007">Escalamiento exitoso e Innovación en los Negocios</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gestionempresarialpyme-4342">Gestión Empresarial Exitosa para Pymes</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/liderazgo-educativo-4349">Liderazgo Instruccional: Perspectiva Global y Prácticas Locales</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gestion-organizaciones-efectivas-4721">Gestión de organizaciones efectivas</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/camino-excelencia-gestion-proyectos-7109">Camino a la Excelencia en Gestión de Proyectos</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/transferencia-tecnologica-investigacion-9889">Transferencia tecnológica: De la investigación al mercado.</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/libre-competencia-10216">Buenas Prácticas en Libre Competencia</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/emprendimiento-social-negocios-sustentab-11302">Diseño y Creación de un Emprendimiento Social</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/scientific-approach-innovation-managemen-13223">A Scientific Approach to Innovation Management</a> from <em>Università Bocconi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/towards-agenda-2030-21937">Management of International Development: Towards Agenda 2030</a> from <em>Università Bocconi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/private-equity-fr-39494">Capital-investissement et capital-risque</a> from <em>Università Bocconi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/private-equity-investment-funds-4390">Private Equity and Investment Funds</a> from <em>Università Bocconi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/arts-heritage-7466">Arts and Heritage Management</a> from <em>Università Bocconi</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainable-finance-19711">Principles of Sustainable Finance</a>  from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/trade-and-investment-policies-for-development-110583">Trade &amp; investment: evidence-based policies for development</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sustainable-finance-ko-121224">지속 가능한 금융의 원칙</a> from <em>Erasmus University Rotterdam</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/competitive-strategy-pt-39396">Estratégia competitiva</a>  from <em>Ludwig-Maximilians-Universität München</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/competitive-strategy-ru-40302">Конкурентная стратегия</a>  from <em>Ludwig-Maximilians-Universität München</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/competitive-strategy-ar-40767">الاستراتيجية التنافسية</a>  from <em>Ludwig-Maximilians-Universität München</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/competitivestrategyzh-2848">竞争策略（中文版）</a> from <em>Ludwig-Maximilians-Universität München</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/advanced-competitive-strategy-zh-4202">高阶竞争策略（中文版）</a> from <em>Ludwig-Maximilians-Universität München</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/research-kitchen-8055">Research kitchen</a> from <em>Ludwig-Maximilians-Universität München</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketing-gerencial-7104">Marketing Gerencial</a> from <em>Universidad de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/costosparanegocios-7115">Costos para los Negocios</a> from <em>Universidad de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/music-industry-6342">Today’s Music Industry</a> from <em>West Virginia University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ai-business-future-of-work-55790">AI, Business &amp; the Future of Work</a> from <em>Lund University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/conceitos-basicos-logistica-10702">Conceitos Básicos de Logística e Supply Chain</a> from <em>Universidade Estadual de Campinas</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-brpt-9-19428">Fundamentos de Financiamento com o 10,000 Women da Goldman Sachs</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-brpt-7-19429">Fundamentos de Operações com o 10,000 Women da Goldman Sachs</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-brpt-8-19430">Fundamentos de Gerenciamento com o 10,000 Women da Goldman Sachs</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-esp-7-19431">Fundamentos de las Operaciones con Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-brpt-6-19432">Fundamentos de Vendas e Marketing com o 10,000 Women da Goldman Sachs</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-brpt-5-19433">Fundamentos de Planejamento Financeiro com o 10,000 Women da Goldman Sachs</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-brpt-4-19434">Fundamentos de Clientes e Concorrência com o 10,000 Women da Goldman Sachs</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-brpt-3-19436">Fundamentos de Liderança com o 10,000 Women da Goldman Sachs</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-esp-5-19437">Fundamentos de la Planificación Financiera con Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-brpt-2-19438">Fundamentos de Finanças da Empresa com o 10,000 Women da Goldman Sachs</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-brpt-1-19439">Expanda Seus Negócios com o 10,000 Women da Goldman Sachs</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-esp-4-19440">Fundamentos de los Clientes y la Competencia con Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-esp-1-19441">Haz Crecer Tu Negocio con Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-esp-2-19443">Fundamentos de los Aspectos Financieros del Negocio con Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-esp-9-19444">Fundamentos de la Financiación con Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-brpt-10-19445">Fundamentos de Negociação com o 10,000 Women da Goldman Sachs</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-esp-10-19447">Fundamentos de la Negociación con Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10kw-social-impact-60040">Social Impact Strategy with Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10kw-digital-marketing-60057">Digital Marketing Strategy with Goldman Sachs 10,000 Women</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10kw-innovation-strategy-60062">Innovation Strategy with Goldman Sachs 10,000 Women</a>  from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-6-hi-91998">Goldman Sachs 10,000 Women के साथ, विक्रय और विपणन के मूल सिद्धांत</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-10-hi-104420">Goldman Sachs 10,000 Women के साथ, सन्धिकरण के मूल सिद्धांत</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-2-hi-104421">Goldman Sachs 10,000 Women के साथ, व्यावसायिक वित्त के मूल सिद्धांत</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-9-hi-104422">Goldman Sachs 10,000 Women के साथ, निधिकरण के मूल सिद्धांत</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-1-hi-104423">Goldman Sachs 10,000 Women के साथ, अपने व्यवसाय की वृद्धि करें</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-8-hi-104424">Goldman Sachs 10,000 Women के साथ, प्रबंधन के मूल सिद्धांत</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-7-hi-104425">Goldman Sachs 10,000 Women के साथ, संचालन के मूल सिद्धांत</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-5-hi-104426">Goldman Sachs 10,000 Women के साथ, वित्तीय योजना के मूल सिद्धांत</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-4-hi-104427">Goldman Sachs 10,000 Women के साथ, ग्राहकों और प्रतिस्पर्धा के मूल सिद्धांत</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/10k-women-3-hi-104428">Goldman Sachs 10,000 Women के साथ, नेतृत्व के मूल सिद्धांत</a> from <em>Goldman Sachs</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/leadership-and-disruption-40314">Leadership and Disruption</a> from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fia-gestao-clubes-federacoes-esportivas-8146">A prática da gestão de clubes e federações esportivas</a>  from <em>Fundação Instituto de Administração</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/doing-business-in-europe-9712">Doing Business in Europe</a> from <em>ESCP Europe</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/marketing-analitico-5085">Introdução ao Marketing Analítico</a> from <em>Insper</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gestao-de-operacoes-10707">Gestão de Operações</a> from <em>Insper</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/administracao-financeira-10713">Administração Financeira</a> from <em>Insper</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gap-2575">Gestão para a Aprendizagem: Módulo Gestão Estratégica</a> from <em>Fundação Lemann</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/valuecreation-19335">Innovation for Impact (i4i) The Carlson-Polizzotto Method of Value Creation</a> from <em>Northeastern University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/agile-atlassian-jira-11877">Agile with Atlassian Jira</a> from <em>Atlassian</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/plan-de-negocios-110584">Plan de Negocios</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/motivando-equipos-de-trabajo-121123">Motivando Equipos de Trabajo</a> from <em>Universidad de Palermo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/automation-business-analyst-126298">Automation Business Analyst</a> from <em>UiPath</em></li>
</ul>
<h2 id="heading-art-amp-design-67">Art &amp; Design (67)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/introclassicalmusic-2987">Introduction to Classical Music</a> from <em>Yale University</em> ★★★★★(25)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/musictheory-1358">Fundamentals of Music Theory</a> from <em>University of Edinburgh</em> ★★★★☆(24)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/historyofrock1-690">History of Rock, Part One</a> from <em>University of Rochester</em> ★★★★★(18)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/beatles-1135">The Music of the Beatles</a> from <em>University of Rochester</em> ★★★★★(18)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/beethovensonatas-730">Exploring Beethoven’s Piano Sonatas</a> from <em>Curtis Institute of Music</em> ★★★★☆(15)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/romanarchitecture-910">Roman Architecture</a> from <em>Yale University</em> ★★★★☆(13)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/film-images-542">Film, Images &amp; Historical Interpretation in the 20th Century: The Camera Never Lies</a> from <em>University of London International Programmes</em> ★★★☆☆(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/scanfilmtv-665">Scandinavian Film and Television</a> from <em>University of Copenhagen</em> ★★★★☆(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/historyofrock2-692">History of Rock, Part Two</a> from <em>University of Rochester</em> ★★★★★(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/creative-3139">Ignite Your Everyday Creativity</a> from <em>State University of New York</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/musicsbigbang-538">Music's Big Bang: The Genesis of Rock 'n' Roll</a> from <em>University of Florida</em> ★★★★★(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/classicalcomp-735">Write Like Mozart: An Introduction to Classical Music Composition</a> from <em>National University of Singapore</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/audiomusicengpart1-686">Fundamentals of Audio and Music Engineering: Part 1 Musical Sound &amp; Electronics</a> from <em>University of Rochester</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/mafash-1374">Management of Fashion and Luxury Companies</a> from <em>Università Bocconi</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/coursera-art-activity-interactive-strategies-for-engaging-with-art-1796">Art &amp; Activity: Interactive Strategies for Engaging with Art</a> from <em>The Museum of Modern Art</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/user-experience-design-6535">Introduction to User Experience Design</a>  from <em>Georgia Institute of Technology</em> ★★★☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/script-writing-5718">Script Writing: Write a Pilot Episode for a TV or Web Series (Project-Centered Course)</a> from <em>Michigan State University</em> ★★☆☆☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/rollingstones-2352">The Music of the Rolling Stones, 1962-1974</a> from <em>University of Rochester</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/serious-gaming-6185">Serious Gaming</a> from <em>Erasmus University Rotterdam</em> ★★★★★(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/design-language-16927">The Language of Design: Form and Meaning</a> from <em>California Institute of the Arts</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/kunqu-652">崑曲之美</a> from <em>The Chinese University of Hong Kong</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-blues-6026">The Blues: Understanding and Performing an American Art Form</a> from <em>University of Rochester</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/painting-8349">In the Studio: Postwar Abstract Painting</a> from <em>The Museum of Modern Art</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/audio-2488">Audio Signal Processing for Music Applications</a> from <em>Stanford University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/age-of-cathedrals-9671">Age of Cathedrals</a> from <em>Yale University</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/20cnwm-2358">20世纪西方音乐 Western Music in the 20th Century</a> from <em>Peking University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/vocal-production-7797">The Art of Vocal Production</a> from <em>Berklee College of Music</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/tango-14410">So You Think You Know Tango?</a> from <em>Emory University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/intro-produccion-audiovisual-9357">Introducción a la producción audiovisual</a> from <em>Universidad Nacional Autónoma de México</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/music-society-7344">Music &amp; Society</a> from <em>Leiden University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/olympicgames-1772">The Olympic Games and the Media</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/music-ensembles-731">Fundamentals of Rehearsing Music Ensembles</a> from <em>The University of North Carolina at Chapel Hill</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/innovation-through-design-11588">Innovation Through Design: Think, Make, Break, Repeat</a> from <em>The University of Sydney</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/exploring-beethoven-piano-sonatas-2-7773">Exploring Beethoven’s Piano Sonatas Part 2</a> from <em>Curtis Institute of Music</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/experiments-with-sound-10762">Art of the MOOC: Experiments with Sound</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/activismo-movimientos-sociales-7194">ART of the MOOC: Activismo y Movimientos Sociales</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/arte-publico-pedagogia-7196">ART of the MOOC: Arte Público y Pedagogía</a>  from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/activism-social-movements-7195">ART of the MOOC: Activism and Social Movements</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/write-a-feature-length-screenplay-for-film-or-tel-17968">Write A Feature Length Screenplay For Film Or Television</a> from <em>Michigan State University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teachingstrings-2303">Teaching the Violin and Viola: Creating a Healthy Foundation</a> from <em>Northwestern University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/melodic-forms-simple-harmony-13653">Approaching Music Theory: Melodic Forms and Simple Harmony</a> from <em>California Institute of the Arts</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-graphic-design-fr-33465">Fondamentaux de l’infographie</a> from <em>California Institute of the Arts</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-graphic-design-ru-33466">Основы графического дизайна</a> from <em>California Institute of the Arts</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentals-of-graphic-design-de-33467">Grundlagen des Grafikdesigns</a> from <em>California Institute of the Arts</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ux-design-open-content-shell-120180">Introduction to UX Design MasterTrack Certificate Program</a> from <em>University of Minnesota</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/intimacy-creativity-entering-minds-composers-20982">Intimacy of Creativity: Entering the Minds of Composers</a> from <em>The Hong Kong University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/innovationarts-2390">Leading Innovation in Arts and Culture</a> from <em>Vanderbilt University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/the-cycle-7748">The Cycle: Management of Successful Arts and Cultural Organizations</a> from <em>University of Maryland, College Park</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teoria-musical-12643">Teoria Musical</a> from <em>Berklee College of Music</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/produccionycomposicion-4718">Producción Musical y su Efecto en la Composición</a> from <em>Berklee College of Music</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/guitarra-4763">Introducción a la guitarra</a> from <em>Berklee College of Music</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/improvisacao-no-jazz-9458">Improvisação no Jazz</a> from <em>Berklee College of Music</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/improvisacion-de-jazz-9579">Improvisación de jazz</a>  from <em>Berklee College of Music</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/usos-didacticos-del-cine-9996">Usos didácticos del cine: Introducción al análisis</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/microfilmer-2706">微影人的自我修养</a> from <em>Fudan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduccion-arte-sonoro-14495">Introducción al Arte Sonoro</a> from <em>University of Barcelona</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/richard-schechners-introduction-to-performance-st-21161">Richard Schechner's Introduction to Performance Studies</a>  from <em>New York University (NYU)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/artactivity-1414">Art &amp; Activity: Interactive Strategies for Engaging with Art</a> from <em>The Museum of Modern Art</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/photography-1-6985">透过摄影看世界</a> from <em>The Museum of Modern Art</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/globaltheatre-2918">Theatre and Globalization</a> from <em>Ludwig-Maximilians-Universität München</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/comonoscambialatecnologia-7110">¿Cómo (nos) cambia la Tecnología?</a> from <em>Universidad de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tecnica-violino-viola-19126">PRINCÍPIOS GERAIS DA TÉCNICA DO VIOLINO E DA VIOLA DE ARCO</a> from <em>Universidade Estadual de Campinas</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/exploring-beethoven-piano-sonatas-4-12766">Exploring Beethoven's Piano Sonatas Part 4</a> from <em>Curtis Institute of Music</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/exploring-beethoven-piano-sonatas-5-16976">Exploring Beethoven's Piano Sonatas Part 5</a> from <em>Curtis Institute of Music</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/exploring-beethoven-piano-sonatas-6-17980">Exploring Beethoven's Piano Sonatas Part 6</a> from <em>Curtis Institute of Music</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/exploring-beethoven-piano-sonatas-3-10141">Exploring Beethoven's Piano Sonatas Part 3</a> from <em>Curtis Institute of Music</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/co-design-for-all-119621">Co-design for All: doing co-design in practice</a> from <em>Eindhoven University of Technology</em></li>
</ul>
<h2 id="heading-data-science-45">Data Science (45)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/hadoop-4269">Hadoop Platform and Application Framework</a> from <em>University of California, San Diego</em>  ★★☆☆☆(25)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/wgs-bacteria-8907">Whole genome sequencing of bacterial genomes - tools and applications</a> from <em>Technical University of Denmark (DTU)</em> ★★★★★(22)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/procmin-2445">Process Mining: Data science in Action</a> from <em>Eindhoven University of Technology</em> ★★★★☆(17)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/datasciencemathskills-7745">Data Science Math Skills</a> from <em>Duke University</em> ★★★★☆(12)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/bioinformatics-745">Biology Meets Programming: Bioinformatics for Beginners</a> from <em>University of California, San Diego</em>  ★★★☆☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/practical-time-series-analysis-10151">Practical Time Series Analysis</a> from <em>State University of New York</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/research-data-management-and-sharing-5758">Research Data Management and Sharing</a> from <em>The University of North Carolina at Chapel Hill</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/programacion-estadistica-r-4657">Introducción a Data Science: Programación Estadística con R</a> from <em>Universidad Nacional Autónoma de México</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/text-mining-analytics-7338">Hands-on Text Mining and Analytics</a> from <em>Yonsei University</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/python-data-processing-7751">Data Processing Using Python</a> from <em>Nanjing University</em> ★★★☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/3d-modeling-rhinoscript-20997">Design Computing: 3D Modeling in Rhinoceros with Python/Rhinoscript</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/python-data-analysis-ko-61439">파이썬의 데이터 과학 소개</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/python-social-network-analysis-ko-61440">파이썬의 응용 소셜 네트워크 분석</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sampling-methods-es-66334">Muestreo de personas, redes y registros</a> from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-cleaning-ar-37047">الحصول على البيانات وتنظيفها</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/exploratory-data-analysis-ar-39395">تحليل البيانات الاستكشافية</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/managing-data-analysis-de-39511">Datenanalyse verwalten</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/managing-data-analysis-ru-39512">Управление анализом данных</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-scientists-tools-ko-60063">데이터 과학자의 도구 상자</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-scientists-tools-de-65146">Der Werkzeugkasten des Data Scientist</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/managing-data-analysis-es-65446">Gestión del análisis de datos</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/big-data-introduction-ar-13278">مقدمة عن البيانات الضخمة</a> from <em>University of California, San Diego</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/datascimed-10645">Data Science in Stratified Healthcare and Precision Medicine</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/doing-economics-measuring-climate-change-89721">Doing Economics: Measuring Climate Change</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-science-k-means-clustering-python-13623">Foundations of Data Science: K-Means Clustering in Python</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/informatics-21603">Bacterial Bioinformatics</a> from <em>University of Virginia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/pkubioinfo-1209">Bioinformatics: Introduction and Methods 生物信息学: 导论与方法</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/spss-ruanjian-3226">医学统计学与SPSS软件（基础篇）</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/renqun-wangluo-4189">人群与网络</a>  from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sheng-wu-xin-xi-xue-4361">生物信息学: 导论与方法</a> from <em>Peking University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/missing-data-es-66063">Cómo manejar datos faltantes</a> from <em>University of Maryland, College Park</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-collection-analytics-project-es-66064">Cómo combinar y analizar datos complejos</a> from <em>University of Maryland, College Park</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/bigdataanalysis-10676">大數據分析：商業應用與策略管理 (Big Data Analytics: Business Applications and Strategic Decisions)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-science-perspectives-on-pandemic-management-110586">Data science perspectives on pandemic management</a> from <em>Politecnico di Milano</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/security-privacy-big-data-protection-13291">Security and Privacy for Big Data - Part 2</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-intelligence-organisations-entreprise-busine-120193">La Data Intelligence au service des organisations</a> from <em>Institut Mines-Télécom</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/principios-esenciales-de-diseno-en-tableau-44583">Principios esenciales de diseño en Tableau</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/redesecologicas-39506">Redes Ecológicas</a> from <em>Universidade de São Paulo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sql-data-science-pt-36569">Bancos de dados e SQL para Ciência de Dados</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/sql-data-science-ru-36570">Базы данных и SQL в обработке и анализе данных</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/what-is-datascience-ko-66471">데이터 과학이란 무엇인가?</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-engineering-career-guide-and-interview-prepa-121054">Data Engineering Career Guide and Interview Preparation</a> from <em>IBM</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/analyzing-visualizing-data-google-way-120178">Analyzing and Visualizing Data the Google Way</a> from <em>Google Cloud</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/mineria-de-datos-introduccion-11949">Introducción a la Minería de Datos</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/gestao-de-dados-cientificos-64389">Gestão de Dados Científicos</a> from <em>Insper</em></li>
</ul>
<h2 id="heading-education-amp-teaching-85">Education &amp; Teaching (85)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/teaching-character-866">Teaching Character and Creating Positive Classrooms</a>  from <em>Relay Graduate School of Education</em> ★★★★★(22)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/usuniversities-1620">Applying to U.S. Universities</a> from <em>University of Pennsylvania</em> ★★★★☆(10)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/edref-2793">American Education Reform: History, Policy, Practice</a> from <em>University of Pennsylvania</em> ★★★★★(9)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ltto-1393">Learning to Teach Online</a> from <em>University of New South Wales</em> ★★★★☆(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/academicinfoseek-5153">Academic Information Seeking</a> from <em>Technical University of Denmark (DTU)</em> ★★★★★(8)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/disability-inclusion-education-12590">Disability Inclusion in Education: Building Systems of Support</a>  from <em>University of Cape Town</em> ★★★★★(7)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/togetherteacher-2113">Get Organized: How to be a Together Teacher</a> from <em>Relay Graduate School of Education</em> ★★★★☆(6)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/ictinprimary-1763">ICT in Primary Education: Transforming children's learning across the curriculum</a> from <em>University of London International Programmes</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/futureeducation-2033">What future for education?</a> from <em>University of London International Programmes</em> ★★★★★(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/teaching-learning-876">Foundations of Teaching for Learning: Learners and Learning</a> from <em>Commonwealth Education Trust</em> ★★★★☆(5)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/assessmentforlearning-12014">Assessment for Learning</a> from <em>University of Illinois at Urbana-Champaign</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/aboriginaled-394">Aboriginal Worldviews and Education</a> from <em>University of Toronto</em> ★★★★★(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/blendedlearning-1199">Blended Learning: Personalizing Education for Students</a> from <em>New Teacher Center</em> ★★★★☆(4)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/teaching-efl-esl-reading-5968">Teaching EFL/ESL Reading: A Task Based Approach</a> from <em>University of London International Programmes</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/learning-assessment-883">Foundations of Teaching for Learning: Introduction to Student Assessment</a> from <em>Commonwealth Education Trust</em> ★★★★☆(3)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/instructmethodshpe-949">Instructional Methods in Health Professions Education</a> from <em>University of Michigan</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/contenido-matematica-escolar-11756">Contenido de las matemáticas de primaria</a> from <em>Universidad de los Andes</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/teach-children-with-visual-impairment-17012">Teaching Children with Visual Impairment: Creating Empowering Classrooms</a> from <em>University of Cape Town</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/artinquiry-865">Art &amp; Inquiry: Museum Teaching Strategies For Your Classroom</a> from <em>The Museum of Modern Art</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/disabilityaware-3829">Disability Awareness and Support</a> from <em>University of Pittsburgh</em> ★★★★★(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/teaching-plan-882">Foundations of Teaching for Learning: Planning for Teaching and Learning</a> from <em>Commonwealth Education Trust</em> ★★★☆☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/professional-teacher-884">Foundations of Teaching for Learning: Being a Professional</a> from <em>Commonwealth Education Trust</em> ★★★★☆(2)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/classdiscussion-7421">Orchestrating Whole Classroom Discussion</a> from <em>University of Pennsylvania</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/college-life-4910">U101: Understanding College and College Life</a> from <em>University of Washington</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/como-hacer-una-tesis-9595">Cómo hacer una tesis</a> from <em>Universidad Nacional Autónoma de México</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/english-2582">English for Teaching Purposes</a> from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/educating-deaf-children-13761">Educating Deaf Children: Becoming an Empowered Teacher</a> from <em>University of Cape Town</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/teachingscience-7791">Teaching Science at University</a> from <em>University of Zurich</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/assessment-higher-education-10184">Assessment in Higher Education: Professional Development for Teachers</a> from <em>Erasmus University Rotterdam</em> ★★★★☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/teaching-874">Foundations of Teaching for Learning: Introduction</a> from <em>Commonwealth Education Trust</em> ★★☆☆☆(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/educacion-superior-5911">El desafío de Innovar en la Educación Superior</a> from <em>Universidad de Chile</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/tinkering-motion-8852">Tinkering Fundamentals: Motion and Mechanisms</a> from <em>Exploratorium</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/what-is-a-socially-just-university-58994">Community Awareness: What is a Socially Just University</a>  from <em>University of Michigan</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/inclusive-online-teaching-21160">Inclusive Online Teaching Teach-Out</a> from <em>Johns Hopkins University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/moocs-4095">ART of the MOOC: Public Art and Pedagogy</a> from <em>Duke University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/learning-knowledge-human-development-12183">Learning, Knowledge, and Human Development</a>  from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/multimodal-literacies-7057">Multimodal Literacies: Communication and Learning in the Era of Digital Media</a>  from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ubiquitouslearning-11068">Ubiquitous Learning and Instructional Technologies</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/learnerdifferences-11070">Negotiating Learner Differences: Towards Productive Diversity in Learning</a> from <em>University of Illinois at Urbana-Champaign</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/how-to-create-video-for-online-courses-126757">How to Create Video for Online Courses</a> from <em>University of Edinburgh</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/getinmooc-8415">Get Interactive: Practical Teaching with Technology</a> from <em>University of London International Programmes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/glasscock-22026">English and Academic Preparation - Pre-Collegiate</a> from <em>Rice University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/my-favorite-lectures-hkust-13861">My Favorite Lectures @ HKUST</a>  from <em>The Hong Kong University of Science and Technology</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cultures-pedagogies-57786">Cultures et pédagogies</a> from <em>University of Geneva</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/idea-of-a-university-19255">大學之理念 (The Idea of a University)</a> from <em>National Taiwan University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/innovacioneducativa-19041">Atrévete a innovar tu enseñanza con pensamiento de diseño</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/enlinea-21330">Cursos en línea: modelo para armar</a> from <em>Universidad Nacional Autónoma de México</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/social-pedagogy-europe-13225">Social Pedagogy across Europe</a>  from <em>Universitat Autònoma de Barcelona (Autonomous University of Barcelona)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/aprendizaje-matematicas-primaria-13414">Aprendizaje de las matemáticas de primaria</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/escoger-carrera-y-universidad-12013">PlanU: escoge la mejor carrera y universidad para ti</a> from <em>Universidad de los Andes</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/emprendiendo-en-stem-15150">Emprendiendo en STEM</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/matematica-aulas-heterogeneas-16990">Jugar y Aprender Matemática en aulas heterogéneas</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/alfabetizacion-temprana-contextos-rurales-18057">La alfabetización temprana en contextos rurales</a>  from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/trabajo-proyectos-escuelas-rurales-18099">El trabajo por proyectos en escuelas de contextos rurales</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ensenar-ciencias-naturales-18163">La enseñanza de las Ciencias Naturales en la escuela primaria</a> from <em>Universidad Austral</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/artificial-intelligence-education-for-teachers-21570">Artificial Intelligence (AI) Education for Teachers</a> from <em>Macquarie University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/interactive-teaching-39417">Interactive Teaching（インタラクティブ・ティーチング）</a> from <em>University of Tokyo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/study-in-japan-7172">Studying at Japanese Universities</a> from <em>University of Tokyo</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/innovacion-docencia-universitaria-13643">Claves para la innovación en la docencia universitaria</a> from <em>University of Barcelona</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/thinkglobal-idp-ub-98188">THINK GLOBAL: TEACHERS TRAINING COURSE (IDP-ICE)</a> from <em>University of Barcelona</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/k-12-online-education-1531">K-12 Blended &amp; Online Learning</a> from <em>University System of Georgia</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/art-activity-10383">Art &amp; Activity: Interactive Strategies for Engaging with Art</a> from <em>The Museum of Modern Art</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/music-education-5950">The Place of Music in 21st Century Education</a> from <em>The University of Sydney</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/welcome-to-munich-119219">Welcome to Munich</a> from <em>Technische Universität München (Technical University of Munich)</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/childliteracy-672">Children Acquiring Literacy Naturally</a> from <em>University of California, Santa Cruz</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/formacion-docente-habilidades-siglo-veintiuno-20576">Formación docente basada en la práctica para desarrollar habilidades del siglo XXI</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/aulaconstructivista-4303">Hacia una práctica constructivista en el aula</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/aprendizaje-universitario-introduccion-10749">Introducción al Aprendizaje Universitario</a> from <em>Pontificia Universidad Católica de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/being-a-teacher-875">Foundations of Teaching for Learning: Being a Teacher</a> from <em>Commonwealth Education Trust</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teacher-curriculum-877">Foundations of Teaching for Learning: Curriculum</a> from <em>Commonwealth Education Trust</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/teacher-relationships-885">Foundations of Teaching for Learning: Developing Relationships</a> from <em>Commonwealth Education Trust</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/wangluo-kecheng-xuexi-pingjia-5919">网络课程与学习评价</a> from <em>Nanjing University</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/potenciando-aprendizaje-8368">Potenciando mi aprendizaje en el primer año de Universidad</a> from <em>Universidad de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/docencia-capacitacion-laboral-9632">Docencia para la capacitación laboral y el aprendizaje a lo largo de la vida.</a> from <em>Universidad de Chile</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/escola4pontozero-97269">Escola 4.0 Educação e Cultura Maker no Contexto da Nova BNCC</a> from <em>Universidade Estadual de Campinas</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tsi-math-prep-55178">Math Prep: College &amp; Work Ready</a> from <em>University of North Texas</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tinkering-867">Tinkering Fundamentals: A Constructionist Approach to STEM Learning</a> from <em>Exploratorium</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/tinkering-circuits-8961">Tinkering Fundamentals: Circuits</a> from <em>Exploratorium</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/uchytelskyy-kouchynh-13554">Учительський коучинг: сприяння розвитку сталих змін</a> from <em>Match Teacher Residency</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/ensino-hibrido-4435">Ensino Híbrido: Personalização e Tecnologia na Educação</a> from <em>Fundação Lemann</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/programae-4470">Aprenda a ensinar programação com o Programaê!</a> from <em>Fundação Lemann</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/fundamentosgoogle-4476">Fundamentos do Google para o Ensino</a> from <em>Fundação Lemann</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/khanacademy-4479">Explorando os recursos educacionais da Khan Academy</a> from <em>Fundação Lemann</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-edtech-80056">Introduction to EdTech</a> from <em>EDHEC Business School</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/preparing-for-and-passing-technical-certification-22485">Preparing for and Passing Technical Certifications</a> from <em>ROI Training</em></li>
</ul>
<h2 id="heading-information-security-infosec-16">Information Security (InfoSec) (16)</h2>
<ul>
<li><a target="_blank" href="https://www.classcentral.com/course/cybersecurity-in-healthcare-20908">Cybersecurity in Healthcare (Hospitals &amp; Care Centres)</a> from <em>Erasmus University Rotterdam</em> ★★★★★(1)</li>
<li><a target="_blank" href="https://www.classcentral.com/course/cybersecurity-for-everyone-43819">Cybersecurity for Everyone</a> from <em>University of Maryland, College Park</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cybersecurity-13790">Cybersecurity Awareness and Innovation</a> from <em>EIT Digital</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/introduction-to-cybersecurity-foundations-97259">Introduction to Cybersecurity Foundations</a> from <em>Infosec</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cybersecurity-policy-foundations-117537">Cybersecurity Policy Foundations</a> from <em>Infosec</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/check-point-jump-start-network-security-19646">Check Point Jump Start: Network Security</a> from <em>Checkpoint</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/check-point-jump-start-maestro-19647">Check Point Jump Start: Maestro Hyperscale Network Security</a> from <em>Checkpoint</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/check-point-jump-start-smb-network-security-21940">Check Point Jump Start: SMB Network Security</a> from <em>Checkpoint</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/check-point-jump-start-cloud-security-32217">Check Point Jump Start: Cloud Security</a>  from <em>Checkpoint</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/check-point-jump-start-cloudguard-posture-managem-43852">Check Point Jump Start: CloudGuard Posture Management</a> from <em>Checkpoint</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/check-point-jump-start-harmony-endpoint-security-53071">Check Point Jump Start: Harmony Endpoint Security</a> from <em>Checkpoint</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/check-point-jump-start-quantum-management-114644">Check Point Jump Start: Quantum Management</a> from <em>Checkpoint</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/check-point-jump-start-harmony-mobile-119221">Check Point Jump Start: Harmony Mobile</a> from <em>Checkpoint</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cybersecurity-for-managers-81461">Cybersecurity for Managers</a> from <em>Campus BBVA</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/cybersecurity-for-tech-professionals-95202">Cybersecurity for Tech Professionals</a> from <em>Campus BBVA</em></li>
<li><a target="_blank" href="https://www.classcentral.com/course/data-cybersecurity-118915">Data &amp; Cybersecurity</a> from <em>Campus BBVA</em></li>
</ul>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How to Audit a Class Online – Learn from Free University Courses ]]>
                </title>
                <description>
                    <![CDATA[ By Seth Goldin These days, there are thousands of publicly available college courses on the web. You can audit those courses even if you're not enrolled in a program. In our video course, Sam Crombie and I explore what auditing is and why you should ... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-to-audit-a-class-university-course/</link>
                <guid isPermaLink="false">66d45edb3dce891ac3a967f0</guid>
                
                    <category>
                        <![CDATA[ education ]]>
                    </category>
                
                    <category>
                        <![CDATA[ online courses ]]>
                    </category>
                
                    <category>
                        <![CDATA[ university ]]>
                    </category>
                
                    <category>
                        <![CDATA[ youtube ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ freeCodeCamp ]]>
                </dc:creator>
                <pubDate>Wed, 16 Feb 2022 14:13:29 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2022/02/allaboutauditing.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>By Seth Goldin</p>
<p>These days, there are thousands of publicly available college courses on the web. You can audit those courses even if you're not enrolled in a program.</p>
<p>In <a target="_blank" href="https://youtu.be/QeRSEoqpKVI">our video course</a>, Sam Crombie and I explore what auditing is and why you should consider trying it. </p>
<p>We discuss how to choose a topic and a course to learn about that topic, and then how to make the most of your experience. By the end, you’ll be ready to audit courses on the web and succeed in them.</p>
<p>This condensed accompanying article will highlight key information from our video.</p>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/QeRSEoqpKVI" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" loading="lazy"></iframe></div>
<h2 id="heading-learning-on-the-internet">Learning on the Internet</h2>
<p>The internet, a recent addition to our educational arsenal, has revolutionized accessibility to content. It has led to the rise of auto-didacticism, or self-guided learning.</p>
<p>Whether you're using the internet to complement, substitute, or as a component of conventional education, you're in control. To be an autodidact is to determine the topic you study, the source you learn from, and when you learn it.</p>
<p>The ability to learn on your own using the internet is among the most valuable skills you can develop. There has never been a better time to pursue what you're interested in!</p>
<h2 id="heading-what-does-it-mean-to-audit-a-class">What does it Mean to Audit a Class?</h2>
<p>Auditing a course means taking a course offered by an institution for no credit or grade. You might audit a course (instead of taking it for credit) because of time, financial constraints, or the difficulty of material.</p>
<p>Auditing usually gives you access to lecture videos, notes, projects, and/or assignments. But it lacks personalized interaction with professors, teaching assistants, lab instructors, or other students. Fortunately, online communities can act as a substitute for such traditional class support.</p>
<p>In other words, to 'audit' is <em>to learn from a complete outline of a course without interaction or feedback</em>.</p>
<p>Since the early days of the internet, people have been auditing university courses in many forms. One of the earliest institution-supported platforms for e-learning was MIT’s OpenCourseWare (OCW).</p>
<p>OCW has <a target="_blank" href="https://news.mit.edu/2002/ocw">operated since 2002</a> and has posted hundreds of variations of their courses to audit. Other platforms have posted or compiled public learning materials, such as <a target="_blank" href="https://collegecompendium.org">College Compendium</a>.</p>
<p>“Learning on the web” also encompasses news, online encyclopedias, documentation, blogs, and forums. Choosing when/where/how to learn involves deciding between organized or personalized materials.</p>
<p>With a <em>structured</em> curriculum, you always know what you’re supposed to do next. You can be confident that someone has taken the time to arrange the order of your learning in a beneficial way.</p>
<p>A <em>customizable</em> curriculum enables you to learn from several resources in any order. Everything is according to your personal needs and preferred learning style.</p>
<p>Auditing courses on the web provides a cost-conscious, low-risk format for academic exploration. You keep the benefits of a structured college curriculum while retaining customizability.</p>
<p>Auditing a course bridges the gap between self-guided and institution-based learning.</p>
<p>Auditing is only one component of an ecosystem of resources on the web that exist to help people learn. Many resources complement one another, utilized by platforms and courses interchangeably. Take advantage of them!</p>
<h2 id="heading-why-audit-courses-online">Why Audit Courses Online?</h2>
<p>Auditing as an educational resource has many use-cases. You may benefit academically, intellectually, or professionally while learning from computer science courses. For example:</p>
<h3 id="heading-if-youre-a-student-applying-to-college">If you're a student applying to college:</h3>
<p>Understanding an institution’s offerings in specific departments can be very valuable. Auditing allows you to explore the type of instruction and topics offered.</p>
<p>With more and more college students taking advantage of e-learning, you can likely find specific course material. Auditing classes at a university you're interested in attending may inform your decision. </p>
<h3 id="heading-if-youre-a-student-enrolled-in-college">If you're a student enrolled in college:</h3>
<p>Auditing courses can supplement ongoing classes. It can also cover material on niche or advanced topics your school may not offer.</p>
<p>This also applies to courses you're looking to take in the future at your university. We recommend consulting with your department to ensure you aren’t breaking any rules.</p>
<p>For students in a bootcamp/certificate program, university courses can complement your curriculum. They can give you perspective into the organization and implementation of conventional academics.</p>
<h3 id="heading-if-youre-a-professional-looking-to-upskill-or-learn-something-new">If you're a professional looking to upskill or learn something new:</h3>
<p>Auditing is a fantastic way to pick up new skills or refresh old knowledge. Learning from online courses can differentiate and keep you competitive within your profession.</p>
<p>If you have a technical career, learning new languages and frameworks is a necessity. Through auditing, you'll be able to stay up-to-date with changing technologies.</p>
<p>Even if your situation isn’t reflected in one of these examples, auditing is for everyone. The breadth of available content means that, regardless of your background, auditing has something for you.</p>
<h2 id="heading-how-to-choose-the-right-course-to-audit">How to Choose the Right Course to Audit</h2>
<p>Before diving into a new topic, consider the following:</p>
<ol>
<li>What are you interested in?</li>
<li>Why are you interested in that topic?</li>
<li>What are you hoping to gain by learning about it?</li>
<li>How excited are you about spending your free time learning your chosen topic?</li>
<li>Did you choose the topic for independent study or is it a component of an ongoing curriculum?</li>
</ol>
<p>Your answers will help you figure out what you want to learn and why.</p>
<p>If you can't find a topic you’re passionate about, consider actionable content. Your motivations should be reflected in the course you ultimately decide to audit:</p>
<ol>
<li>Have you always wanted to learn how to build an app, a website, or a game?</li>
<li>Are you trying to practice and improve your skills for coding interviews?</li>
<li>Are you looking to expand your skills in a particular field such as data science?</li>
</ol>
<p>After identifying your interests, acknowledging your skill level is critical. Consider how much prior exposure you have to your topic of choice. A lot of courses are inherently sorted by proficiency.</p>
<p>Prerequisites often contain information within the scope of your selected topic. They can help you identify your competence and where it may make sense to begin. Recognizing your goals is also essential:</p>
<ol>
<li>Is there something specific you want to leave the course understanding?</li>
<li>If the course is applied, what do you to build by the end, or have the capability to build?</li>
<li>Are you aiming to build skills to pass an interview?</li>
</ol>
<p>If you can identify what you’re working towards, you may be more focused and assign a higher value to your progress.</p>
<p>Assessing your interests, skill level, and goals will help you make this decision. Ultimately, choosing the right topic may mean a gut feeling of genuine excitement or strong motivation.</p>
<p>Selecting a course to learn from the thousands available can be overwhelming. Contemplate your preferred learning style and available timeframe to find a starting point.</p>
<p>When reviewing potential courses, evaluate:</p>
<ol>
<li>How much time can you commit to this course?</li>
<li>What might alter your schedule, and how would that impact your goals?</li>
<li>What teaching styles have you enjoyed in the past? Do you prefer lecture-heavy or project-based courses?</li>
<li>What forms of content do you enjoy consuming? Written notes? Powerpoint slides? Audio/podcast? Video lecture with slides? Video lecture without slides? Reading documentation and experimenting?</li>
<li>Do you enjoy fast-paced “drink from a firehose” courses or deeper discussions?</li>
<li>Is there a particular source you’d prefer to learn from?</li>
</ol>
<p>We encourage you to experiment before committing. Read the course description, syllabus, prerequisites, and other information covering course structure and delivery.</p>
<p>If you feel comfortable with proceeding, advance to the first lesson. Work through the lecture and relevant assignments as if you were a student taking the class.</p>
<p>Take note of how the content was delivered. Check your comprehension of any corresponding supplemental material.</p>
<p>Do you feel prepared to proceed with subsequent lessons? If you’re confident and excited, you’ve found the right course!</p>
<h3 id="heading-how-to-make-the-most-of-your-audit"><strong>How to Make the Most of Your Audit</strong></h3>
<p>Let’s get the most out of your audit. Thinking about scheduling, accountability, and available resources will help you succeed.</p>
<p>The most difficult part of taking an online course often isn’t getting started. Rather, it's pushing forward when the work becomes more time-consuming or demanding.</p>
<p>Return to the earlier reasons that led you to choose a specific topic and course. What are you hoping to get out of this experience, and what schedule enables you to make the most of your learning?</p>
<p>If there is a time-sensitive nature to learning any material, think about the potential impact of going through the material more quickly. It may make sense to prioritize some parts of a course over others.</p>
<p>Educators and content creators often put a lot of thought into the organization of their courses. But that does not always mean that structure will be the perfect fit for you.</p>
<p>Everyone has different levels of dedication. Learning often and on a regular basis is generally a good method for success.</p>
<p>Auditing can be a long process. Breaking down your course into short-term goals can make your path feel less intimidating and more rewarding.</p>
<p>It’s impossible to “fail” a free online course with no grades, so if you’re struggling with something, take your time. Review the material and chat with other people learning online for help.</p>
<p>Engaging with other people learning online is one of the best ways to stay motivated. While you’re likely driven to be reading <em>this</em> article, everyone can do with some peer support from time to time.</p>
<p>Finding someone to hold you accountable is a great way to ensure you put in continuous effort. Enlist a friend to audit the class with you, or regularly inquire about your progress.</p>
<h3 id="heading-common-challenges-of-auditing-a-course">Common challenges of auditing a course</h3>
<p>There are several common pitfalls that auditors often experience. They usually all lead to the same thing – not completing your course.</p>
<p>Throughout your audit, pay attention to see if you're mismanaging your time. Identify potential distractions and avoid speeding through material you’re unfamiliar with.</p>
<p>You can also enrich your learning through complementary resources. Educators often link to relevant material for you to peruse.</p>
<p>You can expand far beyond the resources provided in the course you’re currently auditing. There may be relevant public textbooks, YouTube series, and freeCodeCamp courses and articles. You can even dive into academic papers.</p>
<p>There are a lot of actions you can take to improve your auditing experience and make the most of your time. Use them!</p>
<h2 id="heading-next-steps-after-completing-a-course">Next Steps After Completing a Course</h2>
<p>At this point, you’ve completed your hypothetical course. Before moving on, ensure you’ve fully reviewed the material.</p>
<p>There’s little point to auditing a course if you walk away without a strong understanding of the content. Now assess:</p>
<ol>
<li>Have you reached your goals, or made progress on them?</li>
<li>Do you have all the skills you’ll need for that project you wanted to build? For an internship or position you’ve been aiming for?</li>
<li>Are you academically prepared to move on to another course building on this subject?</li>
</ol>
<p>Regardless of your answers, congratulations! A successful audit demonstrates strong motivation and effort.</p>
<p>But there’s always more to learn. Your online education is never finished, the question is simply how to proceed in the short term.</p>
<p>If you’re looking to learn a specific skill-set, such as machine learning, chances are one course won’t be enough. Sequencing courses to effectively audit an unofficial “degree” can be incredibly useful.</p>
<p>There are many, many resources on the web where people have compiled courses. Such repositories often create pathways for becoming highly skilled through successive auditing.</p>
<p>In other words, you'll be following a trajectory similar to a real curriculum. Start with foundations of a topic and build on them, gradually becoming more specific.</p>
<p>Another aspect of auditing is the ability to mix and match courses from various sources.</p>
<p>You can learn one topic from MIT OCW and then the next from public Berkeley YouTube lectures. This ability to interchange your learning allows you to pick the classes that appeal the most to you.</p>
<p>Successive auditing from several sources can create an even more valuable learning experience.</p>
<h2 id="heading-auditing-courses-gives-you-freedom">Auditing Courses Gives You Freedom</h2>
<p>Freedom is the central theme of online self-guided learning.</p>
<p>Choose your own content, based on your interests. Choose your learning format, your teacher, and the source of your class. Choose your own schedule. Choose what you learn next. It’s all up to you.</p>
<p>You’re now informed to make these decisions and achieve your goals through auditing.</p>
<p>Thank you for reading! We hope that you come away feeling prepared and excited to learn by auditing courses on the web!</p>
<p>If you’re unsure where to start, try searching for your interest on <a target="_blank" href="https://collegecompendium.org/">collegecompendium.org</a>. We’ve curated hundreds of courses for you on all manner of popular programming areas.</p>
<p>For a deeper dive into everything discussed in this article and more, check out our video course here:</p>
<p>This article was co-authored by <a target="_blank" href="https://www.freecodecamp.org/news/p/823d8c65-8eee-4c3f-8976-5741394c9589/twitter.com/crombiesamuel">Samuel Crombie</a>. Thank you to <a target="_blank" href="https://www.vecteezy.com/free-vector/computer">Computer Vectors by Vecteezy</a> for the cover image.</p>
 ]]>
                </content:encoded>
            </item>
        
    </channel>
</rss>
