-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (49 loc) · 1.68 KB
/
Copy pathindex.html
File metadata and controls
51 lines (49 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conversations with Claude</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
line-height: 1.6;
color: #333;
}
h1 {
color: #1a1a1a;
}
ul {
padding-left: 1.5rem;
}
li {
margin-bottom: 0.5rem;
}
a {
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Conversations with Claude</h1>
<p>Documenting some conversations with Claude</p>
<h2>Conversations</h2>
<ul>
<li><a href="conversations/claude-teaches/index.html">Claude Teaches</a></li>
<li><a href="conversations/side-projects/">Various side projects</a></li>
<li><a href="conversations/occam-transpiler/index.html">Occam transpiler sessions</a></li>
<li><a href="conversations/on-determinism/">The other kind of determinism</a></li>
<li><a href="conversations/python-cli-tool/index.html">Python CLI tool sessions</a></li>
<li><a href="conversations/python-browser-app/index.html">Python browser app sessions</a></li>
<li><a href="conversations/shell-utilities/index.html">Shell utilities sessions</a></li>
<li><a href="conversations/model-comparison/index.html">Conversations comparing different models</a></li>
</ul>
</body>
</html>