mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-13 16:17:54 +00:00
79 lines
2.3 KiB
HTML
79 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Lynchmark Newsletter - Issue 1</title>
|
||
<style>
|
||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
body {
|
||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||
line-height: 1.6;
|
||
color: #ccc;
|
||
background: #111;
|
||
padding: 20px;
|
||
}
|
||
.email {
|
||
max-width: 600px;
|
||
margin: 0 auto;
|
||
background: #000;
|
||
border: 1px solid #333;
|
||
padding: 40px 24px;
|
||
}
|
||
h1 {
|
||
font-size: 24px;
|
||
font-weight: 700;
|
||
margin-bottom: 20px;
|
||
color: #fff;
|
||
}
|
||
p {
|
||
margin-bottom: 16px;
|
||
font-size: 15px;
|
||
}
|
||
.highlight {
|
||
background: #222;
|
||
padding: 2px 4px;
|
||
border-radius: 2px;
|
||
font-weight: 600;
|
||
}
|
||
.signature {
|
||
margin-top: 30px;
|
||
font-style: italic;
|
||
color: #999;
|
||
}
|
||
.footer {
|
||
margin-top: 40px;
|
||
padding-top: 20px;
|
||
border-top: 1px solid #333;
|
||
font-size: 12px;
|
||
color: #666;
|
||
}
|
||
.footer a {
|
||
color: #ccc;
|
||
text-decoration: none;
|
||
}
|
||
.footer a:hover { text-decoration: underline; }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="email">
|
||
<h1>Lynchmark Newsletter</h1>
|
||
|
||
<p>gpt‑5.1‑codex‑max was just added to API after having been introduced in Codex only 2 weeks ago. I just benchmarked it and it scored better than gpt‑5.1‑codex.</p>
|
||
|
||
<p>Codex alone scores <span class="highlight">7/11 D</span> but Max scores <span class="highlight">8/11 C‑</span>.</p>
|
||
|
||
<p>Still worse than Gemini 3 Pro and Claude Opus 4.5 and DeepSeek v3.2 but on par with Claude Sonnet 4.5.</p>
|
||
|
||
<p>This shows even with this release, how far behind OpenAI is and why they 'declared code red'. The rumors of the upcoming model by OpenAI codenamed Garlic next week is very anticipated now.</p>
|
||
|
||
<p class="signature">— Lynchmark</p>
|
||
|
||
<div class="footer">
|
||
<p>Lynchmark tests LLMs by requiring correct CDN imports and library‑specific implementations in browser JavaScript.</p>
|
||
<p><a href="https://lynchmark.com">View full benchmark results</a> | <a href="https://lynchmark.com/unsubscribe.html">Unsubscribe</a></p>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|