Files
Vijay Janapa Reddi edbea966bf refactor(tinytorch): rename site-quarto/ to quarto/
Brings the TinyTorch lab guide's Quarto project in line with
book/quarto/, the only other in-tree Quarto publication that builds
both web and PDF outputs from a single source. The previous name had
three redundancies:

  - already under tinytorch/, so "site-" prefix wasn't disambiguating
  - also produces the PDF lab guide, so "site-" was misleading
  - the top-level site/ dir made "site-quarto" read as "the site's
    quarto config" rather than "the tinytorch site, in quarto"

After this rename the convention is straightforward:

  book/quarto/        -> the textbook (web + PDF)
  tinytorch/quarto/   -> the TinyTorch lab guide (web + PDF)
  mlsysim/docs/       -> mlsysim API reference (kept as docs/, since it
                        really is API reference, not a publication)

Touches 7 GitHub workflows, both .gitignore files, the rename target's
own self-references (Makefile, _quarto.yml configs, STYLE.md,
measure-pdf-images.py), and 6 copies of subscribe-modal.js plus a few
shared scripts/configs whose comments documented the old path.

Verified: rebuilt pdf/TinyTorch-Guide.pdf (2.1M) cleanly from the new
location with 'make pdf' from tinytorch/quarto/.
2026-04-22 14:38:18 -04:00

108 lines
3.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact TinyTorch</title>
<link rel="icon" href="assets/flame.svg" type="image/svg+xml">
<style>
body {
margin: 0;
font-family: 'Courier New', Courier, monospace;
background-color: #f0f4f8;
/* Graph Paper Grid Logic */
background-image:
linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
background-size: 20px 20px;
color: #333;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
.container {
margin-top: 100px; /* Space for menu button */
margin-bottom: 50px;
width: 90%;
max-width: 800px;
background: rgba(255, 255, 255, 0.95);
border: 1px solid #333;
box-shadow: 8px 8px 0px rgba(0,0,0,0.1);
padding: 40px;
box-sizing: border-box;
text-align: center;
}
h1 {
margin-top: 0;
border-bottom: 2px dashed #333;
padding-bottom: 10px;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 2rem;
}
p {
font-family: 'Verdana', sans-serif;
font-size: 1.1rem;
line-height: 1.6;
color: #444;
margin-bottom: 20px;
}
a {
color: #ff6600;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.contact-info {
margin-top: 30px;
font-size: 1.2rem;
}
.email-link {
display: block;
margin-top: 15px;
}
</style>
</head>
<body>
<div class="container">
<h1>Contact Us</h1>
<p>If you have any questions, feedback, or just want to connect, feel free to reach out!</p>
<div class="contact-info">
<p>Vijay Janapa Reddi and Kai Kleinbard</p>
<p>
<a href="https://edge.seas.harvard.edu/people/vijay-janapa-reddi" target="_blank" rel="noopener noreferrer">
Vijay's Harvard SEAS Profile
</a>
</p>
<p>
<a href="mailto:vj@eecs.harvard.edu" class="email-link">vj@eecs.harvard.edu</a>
</p>
<p>
<a href="mailto:kai_kleinbard@seas.harvard.edu" class="email-link">kai_kleinbard@seas.harvard.edu</a>
</p>
<p>For any issues or feedback, please post them directly on our GitHub repository:</p>
<p>
<a href="https://github.com/harvard-edge/cs249r_book" target="_blank" rel="noopener noreferrer">
github.com/harvard-edge/cs249r_book
</a>
</p>
</div>
</div>
<script type="module" src="app.js"></script>
</body>
</html>