-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (71 loc) · 4.26 KB
/
Copy pathindex.html
File metadata and controls
80 lines (71 loc) · 4.26 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#0a1230" media="(prefers-color-scheme: dark)" />
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
<!-- Pre-paint theme apply: must run before CSS loads to avoid flash.
Keep in sync with THEME_BOOTSTRAP_SCRIPT in scripts/generate-blog-pages.mjs
(canonical) and the fallback block in src/main.jsx. -->
<script>
(function () {
try {
var stored = localStorage.getItem('jcs-theme');
var theme = (stored === 'light' || stored === 'dark')
? stored
: (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
document.documentElement.setAttribute('data-theme', theme);
} catch (e) {
document.documentElement.setAttribute('data-theme', 'light');
}
})();
</script>
<title>Jacob C. Smith — Systems Engineer & AI Researcher</title>
<meta name="description" content="Jacob C. Smith is an independent systems engineer, AI red-teamer, and consciousness researcher based in Buckhannon, West Virginia. Currently shipping the WVRTP facility inspection system for Readyfuels and the Hermes plugin for Nous Research. Operational analytics, AI red-teaming, local-first AI systems, and consciousness research." />
<meta name="author" content="Jacob C. Smith" />
<meta name="keywords" content="systems engineer, AI systems, AI red-teaming, local-first AI, consciousness research, MCP, LLM tooling, agent stacks, Readyfuels, Nous Research, Buckhannon West Virginia, independent consultant" />
<link rel="canonical" href="https://jacobcdsmith.github.io/" />
<link rel="alternate" type="application/rss+xml" title="Jacob C. Smith — Blog" href="/rss.xml" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- Open Graph -->
<meta property="og:title" content="Jacob C. Smith — Systems Engineer & AI Researcher" />
<meta property="og:description" content="Operational analytics, AI red-teaming, local-first AI systems, and consciousness research. Currently shipping for Readyfuels and Nous Research." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://jacobcdsmith.github.io/" />
<meta property="og:image" content="https://jacobcdsmith.github.io/og-default.svg" />
<meta property="og:site_name" content="Jacob C. Smith" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Jacob C. Smith — Systems Engineer & AI Researcher" />
<meta name="twitter:description" content="Operational analytics, AI red-teaming, local-first AI systems, and consciousness research. Currently shipping for Readyfuels and Nous Research." />
<meta name="twitter:image" content="https://jacobcdsmith.github.io/og-default.svg" />
<!-- Fonts (preconnect handled inside style.css @import) -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Plausible analytics. data-domain MUST match the live site hostname and
the site registered in the Plausible dashboard. Keep in sync with the
same <script> tag in scripts/generate-blog-pages.mjs. If the production
hostname ever changes (e.g. a custom domain replaces GitHub Pages),
update both places together. -->
<script defer data-domain="jacobcdsmith.github.io" src="https://plausible.io/js/script.outbound-links.js"></script>
<script>window.plausible = window.plausible || function() { (window.plausible.q = window.plausible.q || []).push(arguments) }</script>
</head>
<body>
<div id="app"></div>
<!-- GitHub Pages SPA routing: restore path from 404.html query param redirect -->
<script>
(function(l) {
if (l.search[1] === '/') {
var decoded = l.search.slice(1).split('&').map(function(s) {
return s.replace(/~and~/g, '&');
});
window.history.replaceState(null, null,
decoded.shift() + (decoded.length ? '?' + decoded.join('&') : '') + l.hash
);
}
}(window.location));
</script>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>