blob: 75082ac40e4a10f9691b5ab792edb13f008d0e7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<link rel="stylesheet" href="/style.css" />
<script src="/client.js"></script>
<h1>Claude: the Julia afficianado</h1>
<p style="margin: 0 30pt; color: #a00;">You paste code in; Claude will suggest optimizations. <b>Security notes:</b> do not consider anything submitted here to be private. Also, there are no guards in place against prompt injection, beyond whatever Claude appears to have built-in.</p>
<div id="request">
<textarea id="code" name="code" placeholder="# Paste Julia code here">
</textarea>
<button onclick="request()">I'm feeling slow!</button>
</div>
<div id="response">
</div>
|