All Learning Pathways
400 pathways across AI, Blockchain, Robotics, and Design. New here? Each category is ordered start to finish, just look for the "Start here" badge in a category and take courses in the order they appear, we'll always point you to what's next once you finish one.
Mastering Claude & the Anthropic Ecosystem
8-part guided trackClaude in Production: The Sharp Edges
7-part guided trackAnthropic's Enterprise Playbook
7-part guided trackBeyond Claude: OpenAI, Google & Open Models
11-part guided trackAI Agents & Automation
9-part guided trackDeploying & Scaling AI Agents
11-part guided trackAI Agent Security & Trust
11-part guided trackApplied Machine Learning
10-part guided trackComputer Vision Deep Dive
4-part guided trackNLP & Language Systems
8-part guided trackGenerative & Multimodal AI
6-part guided trackAI Hardware & Efficient Models
5-part guided trackWhat AI Actually Costs to Run
6-part guided trackGetting Hired in AI
8-part guided trackAI Services People Pay For
6-part guided trackAI on Trial: Copyright, Law & Regulation
6-part guided trackAI Career, Business & Society
13-part guided trackAI x Web3
2-part guided trackRobot Control & Dynamics
9-part guided trackPerception & Autonomy
12-part guided trackRobot Manipulation, Vision & Learning
12-part guided trackRobot Brains: Onboard Compute & Foundation Stacks
7-part guided trackSpecialized Robotics Applications
5-part guided trackHumanoid & Home Robotics
12-part guided trackRobotics in Industry & Business
18-part guided trackRobot Integration & Commissioning
6-part guided trackThe Robotics Job Market
7-part guided trackRobotics Hands-On Starter Kit
11-part guided trackDrones & Aerial Robotics
4-part guided trackBitcoin Mastery
8-part guided trackEthereum Mastery
6-part guided trackSolana & Base Ecosystems
5-part guided trackLayer 2s, Scaling & Interoperability
5-part guided trackStablecoins & Real-World Money
8-part guided trackCrypto Compliance, Law & Tax
7-part guided trackCrypto Back Office: Compliance, Accounting & Treasury
5-part guided trackDeFi, Trading & Market Cycles
16-part guided trackCrypto Fundraising & Tokenomics
4-part guided trackNFTs, Gaming & Digital Culture
5-part guided trackBlockchain Security & Trust
12-part guided trackCrypto Engineering Careers: Audit, Rust & ZK
8-part guided trackWeb3 Career, DevRel & Business
7-part guided trackBlockchain Infrastructure & Data
6-part guided trackHands-On Builder Projects
7-part guided trackAI Research Frontiers
6-part guided trackSeptember 2026: What's Actually New
13-part guided trackSeptember 2026: The Model Wave
10-part guided trackSeptember 2026: Robots Meet the Real World
9-part guided trackSeptember 2026: Chains Upgrade, Rules Land
10-part guided trackCanva Mastery
9-part guided trackFigma & Adobe
3-part guided trackAI Design Tools: Claude, ChatGPT & Gemini
7-part guided trackDesign Fundamentals: Color, Type & Branding
10-part guided trackUI/UX & Product Design
7-part guided trackMarketing, Print & Presentation Design
7-part guided trackBuilding a Design Career
2-part guided trackMore AI Courses
Standalone, any order
BeginnerStart hereUnderstand how modern AI actually works, no hype required.
prompt = "Explain gas fees like I'm 12" response = model.generate(prompt) print(response)
BeginnerLearn to talk to AI so it actually does what you mean.
SYSTEM: You are a senior copyeditor. Be concise and direct. USER: Rewrite this sentence for clarity. Text: "The utilization of the aforementioned methodology..." Think step by step, then give only the final rewrite.
BeginnerUnderstand how machines actually learn from data, not just what buzzwords mean.
X_train, X_val, X_test = split(data, ratios=[0.7, 0.15, 0.15]) model.fit(X_train, y_train) val_score = model.evaluate(X_val, y_val) # Only after tuning is done, touch the test set once test_score = model.evaluate(X_test, y_test)
IntermediateOpen the black box and see how deep learning actually works under the hood.
output = activation(sum(weight_i * input_i for i, input_i in enumerate(inputs)) + bias) loss = loss_function(output, target) gradients = backpropagate(loss, network) weights -= learning_rate * gradients
IntermediateSee how machines turn pixels into understanding.
image = load_image("stop_sign.jpg") # shape: (224, 224, 3)
edges = conv2d(image, filter=vertical_edge_kernel)
features = cnn.extract_features(image)
prediction = classifier(features)
print(prediction) # {"stop_sign": 0.97, "yield_sign": 0.02}
BeginnerSay the right thing to an AI model, and it does the right thing back.
BeginnerTurn spreadsheets and dashboards into questions you can just ask.
IntermediateGive a language model a library card instead of asking it to memorize everything.
BeginnerPowerful tools deserve careful hands. Learn to build and use AI responsibly.
BeginnerNo math degree required: understand what machine learning actually is and how it learns.
BeginnerFrom a text prompt to a finished frame: how AI actually paints and animates.
BeginnerWhere AI actually earns its keep inside a real company, not just in demos.
AdvancedTwo ways to customize a model's behavior, and knowing which one actually solves your problem.
IntermediateDemystify the transformer architecture and training process behind GPT, Claude, and Gemini.
IntermediateAutocomplete grew up. Learn to actually work with an AI pair programmer, not against it.
More Blockchain Courses
Standalone, any order
BeginnerThe internet of money, explained the fun and simple way.
BeginnerProtect your funds. Spot scams before they cost you.
BeginnerStart hereUnderstand how blockchains actually work, from blocks to consensus.
block.hash = sha256(prevHash + data + nonce)
while (!block.hash.startsWith('0000')) nonce++
IntermediateWrite, deploy, and secure the programs that run on-chain.
function withdraw() external {
uint amount = balances[msg.sender];
balances[msg.sender] = 0;
payable(msg.sender).transfer(amount);
}
BeginnerThe habits that separate a self-custody wallet from a very expensive lesson.
BeginnerBitcoin was the first use case, not the whole idea.
BeginnerCode that executes exactly as written, no middleman required.
IntermediateBanking, rebuilt from open-source code instead of institutions.
BeginnerUnique digital ownership, minus the profile-picture noise.
IntermediateHow blockchains handle more users without breaking what makes them trustworthy.
BeginnerYour keys, your crypto, your responsibility.
IntermediateGovernance where the bylaws are code and the votes are on-chain.
IntermediateCrypto that's designed to be boring, on purpose.
BeginnerTracing a product's journey with a record nobody can quietly edit.
AdvancedWrite the code that runs a smart contract, line by line.
More Robotics Courses
Standalone, any order
BeginnerStart hereMeet the machines that sense, think, and move through the real world.
BeginnerThe two halves of every robot, sensing the world and acting on it, and the components behind each.
IntermediateA robot that breaks down is worse than no robot at all. Reliability engineering is its own discipline.
BeginnerTeach a machine to see, and you've solved half of robotics.
IntermediateThe plumbing that lets a robot's dozens of programs talk to each other.
AdvancedHow a robot builds a map of a place it's never seen, while figuring out where it is on that map.
IntermediateThe geometry problem every robotic arm has to solve before it can touch anything.
IntermediateHow hundreds of self-driving carts share one warehouse without colliding.
BeginnerWhy the robot shaped like us is suddenly the hottest bet in the industry.
AdvancedHow dozens or thousands of simple robots pull off tasks no single robot could handle alone.
BeginnerFarming is one of the oldest jobs on Earth, and robots are quietly rewriting how it's done.
IntermediateWhen a robot's mistake means a patient's life, precision isn't optional, it's the whole point.
BeginnerThe cheapest, most satisfying way to actually learn robotics is to build one badly, then fix it.


































































































































































































































































































































































