- AIadvanced
Gradients, Counterfactuals, and Whether to Trust an Explanation
When a model is differentiable you can attribute a prediction with calculus instead of sampling. This lesson covers plain saliency, Integrated Gradients and its axioms, Grad-CAM, then counterfactual explanations, which answer what would have to change rather than what mattered. It closes with the evidence that explanations can fail or be deliberately faked, and a protocol for checking yours.
12 steps·~18 min - AIadvanced
Training Energy-Based Models
Training an EBM means shaping an energy landscape so real data sits in valleys, but the intractable partition function blocks plain maximum likelihood. This lesson covers the push-down-push-up principle, contrastive methods (contrastive divergence, noise-contrastive estimation), score matching, and the regularized alternative that avoids sampling entirely.
8 steps·~12 min - Computer Scienceintermediate
Applications, Value, and Challenges
Where digital twins earn their keep and where they struggle. This lesson covers predictive maintenance (the flagship use), applications across manufacturing, aerospace, energy, cities, and healthcare, the underlying value of experimenting safely in virtual space, and an honest account of the challenges: data, model drift, cost, security, and standards.
7 steps·~11 min - Computer Scienceintermediate
Anatomy and Types of Digital Twins
What a digital twin is actually made of and the forms it takes. This lesson covers the virtual model (physics-based, data-driven, and hybrid), the data layer of sensors and pipelines that feeds it, the twin taxonomy from component to process scale, the fidelity-versus-cost tradeoff, and the sense-simulate-act loop that turns a model into a working twin.
7 steps·~11 min - Computer Scienceintermediate
What Is a Digital Twin?
A digital twin is a virtual replica of a specific physical thing, kept in sync by live data. This lesson defines it precisely, covers its three components, its origins with Michael Grieves and NASA, the crucial distinction from an ordinary simulation, and the digital model to digital shadow to digital twin taxonomy that pins down what 'twin' really means.
7 steps·~11 min - AIadvanced
EBMs as a Unifying Lens
Why LeCun treats energy as the common language of machine learning. This lesson shows how classification, generative models, self-supervised learning, JEPA, and diffusion all read as energy-based models, ties the contrastive-versus-regularized split back to self-supervised learning, and gives an honest account of where explicit EBMs help and where they do not.
8 steps·~12 min - AIadvanced
Energy Landscapes: The EBM View
Energy-based models replace input-to-output functions with a scalar energy that scores how compatible a configuration is. This lesson covers the energy function, inference as finding the lowest-energy answer, the energy landscape picture, the link from energy to probability via the partition function, and why this framing handles problems with many valid answers.
8 steps·~12 min - AIadvanced
Beyond Negatives: Non-Contrastive and Masked Methods
How to prevent collapse without negative samples. This lesson covers distillation methods (BYOL, SimSiam) that rely on stop-gradients and asymmetry, regularization methods (Barlow Twins, VICReg) that constrain the embedding's statistics, and the masked-modeling family (MAE, BERT), then ties them to JEPA and the energy-based view.
8 steps·~12 min - AIadvanced
Contrastive Learning
The first family to make joint-embedding self-supervised learning work: pull together two views of the same image, push apart different images. This lesson covers the InfoNCE loss, SimCLR and its reliance on large batches, MoCo's momentum encoder and queue, why negatives block collapse, and the practical costs that motivated negative-free methods.
7 steps·~11 min - AIintermediate
Learning Without Labels: Pretext Tasks
Self-supervised learning turns unlabeled data into its own teacher. This lesson covers why labels are the bottleneck, how a pretext task manufactures free supervision, the shift from predicting pixels to learning embeddings invariant to augmentation, and the collapse problem that every method after it must solve.
8 steps·~12 min - Roboticsadvanced
Vision-Language-Action Models
How a vision-language model becomes a robot brain. This lesson covers the VLA recipe: take a pretrained VLM, add an action output, train on robot demonstrations. It walks through RT-2 (actions as tokens, web-knowledge transfer), OpenVLA (an open 7B model), and pi0 (flow-matching action experts), plus cross-embodiment, what generalization buys, and the real limits.
8 steps·~12 min - Roboticsadvanced
Action Chunking and Diffusion Policies
Two ideas that made imitation learning work: predicting a chunk of future actions instead of one step (ACT, from the ALOHA system) to blunt compounding error, and generating actions by denoising (Diffusion Policy) to capture the many valid ways to do a task. Plus the pooled multi-robot datasets, like Open X-Embodiment, that set up generalist policies.
8 steps·~12 min - Roboticsintermediate
From Control to Imitation Learning
Why modern robots learn skills from demonstrations instead of hand-written controllers. This lesson covers behavior cloning (supervised observation-to-action learning), the distribution-shift and compounding-error problem that makes it fragile, DAgger as the classic fix, and how teleoperated demonstrations became the fuel for robot learning.
8 steps·~12 min - Scienceintermediate
Vaccines, Cancer, and Beyond
What the mRNA platform can actually treat. This lesson covers preventive vaccines, personalized cancer vaccines built from a patient's own tumor mutations (with the Moderna-Merck mRNA-4157 melanoma results), and the protein-replacement and cell-therapy frontiers, plus the honest limits that still constrain the field.
8 steps·~12 min - Scienceintermediate
The Delivery Problem: Lipid Nanoparticles
A therapeutic mRNA is destroyed in the body within minutes and cannot cross a cell membrane on its own. This lesson explains the lipid nanoparticle that solves it: its four components, the ionizable-lipid trick that releases mRNA inside the cell, where the particles travel after injection, and the cold-chain limitation that follows.
8 steps·~12 min - Scienceintermediate
mRNA as a Programmable Drug
Instead of manufacturing a protein, an mRNA medicine delivers the instructions and lets your own cells build it. This lesson covers the anatomy of a therapeutic mRNA, the immune problem that stalled the field for decades, and the modified-nucleoside breakthrough by Kariko and Weissman that made it work, the reason mRNA is a programmable platform.
8 steps·~12 min - Businessintermediate
Anchoring, Value Creation, and Tactics
How to move the price inside the ZOPA. Covers the anchoring power of first offers and the evidence behind it, when to open versus wait, multiple equivalent simultaneous offers (MESOs) that create and claim value at once, common tactics and their counters, and how to negotiate from a weak BATNA.
8 steps·~12 min - Businessbeginner
Leverage: BATNA, Reservation Price, and the ZOPA
Real negotiating power comes from your alternatives, not your volume. This lesson defines your BATNA (best alternative to a negotiated agreement), derives your reservation price from it, and shows how the overlap of both sides' walkaway points, the ZOPA, decides whether a deal is even possible. With a fully worked numeric example.
8 steps·~12 min - Businessbeginner
Positions, Interests, and Two Kinds of Bargaining
Negotiation is a learnable skill, not a personality trait. This lesson separates positions from the interests beneath them, contrasts distributive bargaining (claiming a fixed pie) with integrative bargaining (creating value through trades), and introduces the principled-negotiation framework from Fisher and Ury's Getting to Yes.
8 steps·~12 min - Programmingintermediate
Branches, Tags, and Merging in SVN
How SVN handles parallel work. Covers the trunk-branches-tags convention, cheap copies that make a branch nearly free, why branches and tags are the same mechanism, merge tracking with svn:mergeinfo, reintegrating a branch, and moving between SVN and Git with git svn.
8 steps·~12 min - Programmingbeginner
The Core Subversion Workflow
The everyday SVN commands and the model behind them. Covers the update-edit-commit cycle, status codes and diffs, the copy-modify-merge approach to conflicts, locking for unmergeable binary files, useful properties like svn:ignore, and how to undo changes safely.
8 steps·~12 min - Programmingbeginner
Subversion: The Centralized Version Control Model
How Subversion (SVN) works and why it still exists in a Git world. Covers the centralized model, the central repository and working copy, global revision numbers and atomic commits, and the real reasons teams keep SVN: large binaries, path-based access control, and a single source of truth.
8 steps·~12 min - Programmingintermediate
Integration Engines and the Interoperability Career
The hub that makes healthcare data flow: how an integration engine like Mirth Connect routes, filters, and transforms messages between systems, how it compares to a general dataflow tool like Apache NiFi, the other standards you will meet, and the concrete skills to break into interoperability engineering.
9 steps·~14 min - Programmingintermediate
FHIR: Resources and the REST API
The modern, web-native healthcare standard. How FHIR models clinical data as modular resources, links them with references, and exchanges them over a plain REST API using JSON. Includes a real Patient resource, the core interactions, profiles and US Core, and the R4 versus R5 reality.
8 steps·~12 min

