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 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 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.
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");
}
}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 Example
// C: Intro
#include <stdio.h>
int main() {
printf("Exploring Intro\n");
return 0;
}C++ Example
// C++: Intro
#include <iostream>
int main() {
std::cout << "Exploring Intro" << std::endl;
return 0;
}C# Example
// C#: Intro
using System;
class Demo {
static void Main() {
Console.WriteLine("Exploring Intro");
}
}