beginnergetting-startedsetup

Install Claude Code

by Steffen Plunder

›_ claude — Round 1
claude — Round 1
% curl -fsSL https://claude.ai/install.sh | bash
Downloading Claude Code installer…
Detected: darwin arm64
Fetching latest release metadata from claude.ai…
✓ claude v2.0 (darwin-arm64, 18.2 MB)
Verifying checksum (sha256)…
✓ checksum OK
Installing to /Users/steffen/.local/bin/claude
✓ installed
Ensuring ~/.local/bin is on PATH…
✓ added export to ~/.zshrc

claude v2.0 installed. Restart your shell or run:
  source ~/.zshrc
✓ installation complete
claude — Round 2
% mkdir game-of-life && cd game-of-life
~/game-of-life
claude — Round 3
% claude
┌  Claude Code v2.0
│  First launch — let's get you signed in.
└
Opening browser for sign-in…
✓ Authenticated as plunder.steffen.2a@kyoto-u.ac.jp
✓ signed in — ready for prompts
claude — Round 4
Please create a small html page with a simulation of the game of life
File created successfully at: /Users/SteffenPlunder/Documents/Workspace/game-of-life/game-of-life.html
game-of-life.html html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Conway's Game of Life</title>
  <style>…</style>
</head>
<body>
  <h1>Conway's Game of Life</h1>
  <canvas id="grid"></canvas>
  <div class="controls">…</div>
  <script>
    // double-buffered grid, toroidal wrap,
    // requestAnimationFrame loop, click-to-toggle.
  </script>
</body>
</html>
claude — Round 5
Open the webpage
⚡ Bash
open /Users/SteffenPlunder/Documents/Workspace/game-of-life/game-of-life.html
Conway's Game of Life localhost — game-of-life.html
beginnergetting-startedsetup

Install Claude Code

by Steffen Plunder

game-of-life.html html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Conway's Game of Life</title>
  <style>…</style>
</head>
<body>
  <h1>Conway's Game of Life</h1>
  <canvas id="grid"></canvas>
  <div class="controls">…</div>
  <script>
    // double-buffered grid, toroidal wrap,
    // requestAnimationFrame loop, click-to-toggle.
  </script>
</body>
</html>
Conway's Game of Life localhost — game-of-life.html
Tutorial (0 / 9)
0.0
Tutorial (0 / 9)
0.0