Classified curriculum · 47 case files

Decode. Learn. Master.

Free tutorials, live code, and hands-on missions.
No sign-up needed, just start learning.

  • Clearance Level tracking
  • Live code playground
  • Agent Certification
  • AI-powered hints

The Lab

Run real code, right in the browser.

function demo() {
  console.log("Welcome, Agent.");
}

demo();

Every case file ships with a live Monaco editor, sandboxed preview, real terminal, and an AI hint on request.

HTML

The markup language that structures every page on the web.

HTML Example
<!-- HTML: Intro -->
<!doctype html>
<html>
  <body>
    <h1>Intro</h1>
    <p>Edit this code and press Run to see it live.</p>
  </body>
</html>

CSS

Style, layout, and visual design for HTML documents.

CSS Example
/* CSS: Intro */
body {
  font-family: sans-serif;
  background: #0B0F17;
  color: #E5E7EB;
}

.card {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #22D3EE55;
}

JavaScript

The programming language that brings web pages to life.

JavaScript Example
// JavaScript: Intro
function demo() {
  console.log("Exploring Intro in JavaScript");
}

demo();

SQL

The standard language for querying and managing relational databases.

SQL Example
-- SQL: Intro
SELECT *
FROM agents
WHERE clearance_level > 0;

Python

A readable, versatile language for scripting, data, and web apps.

Python Example
# Python: Intro
def demo():
    print("Exploring Intro in Python")

demo()

Java

A robust, object-oriented language for portable, large-scale software.

Java Example
// Java: Intro
public class Demo {
  public static void main(String[] args) {
    System.out.println("Exploring Intro");
  }
}

PHP

A server-side language powering a huge share of the web.

PHP Example
<?php
// PHP: Intro
echo "Exploring Intro in PHP";
?>

W3.CSS

A lightweight CSS framework for fast, responsive design.

W3.CSS Example
/* W3.CSS: Intro */
body {
  font-family: sans-serif;
  background: #0B0F17;
  color: #E5E7EB;
}

.card {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #22D3EE55;
}

C

The foundational systems language behind decades of software.

C Example
// C: Intro
#include <stdio.h>

int main() {
  printf("Exploring Intro\n");
  return 0;
}

C++

C with classes — performance and object orientation combined.

C++ Example
// C++: Intro
#include <iostream>

int main() {
  std::cout << "Exploring Intro" << std::endl;
  return 0;
}

C#

A modern, type-safe language for the .NET ecosystem.

C# Example
// C#: Intro
using System;

class Demo {
  static void Main() {
    Console.WriteLine("Exploring Intro");
  }
}

More Case Files

Ready to earn your Agent Certification?

Finish a case file, pass the quiz at 70% or higher, and download your certificate.