-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (45 loc) · 1.49 KB
/
index.html
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
---
layout: default
title: Home
---
<header>
<h1>Welcome</h1>
<div class="section">
<p>HungryRobot's website</p>
<p>Self-taught engineer with classical liberal arts background from <a href="https://www.sjc.edu/">St. John's College</a></p>
<p>Inventor of the Personal Intelligence Framework (PIF)</p>
</div>
</header>
<main>
<section class="section">
<h2>Repositories</h2>
<a href="https://github.com/hungryrobot1/MCP-PIF" class="project-link">
MCP-PIF: Personal Intelligence Framework
</a>
<p>A proof-of-concept/demo framework for structured emergence in human-AI collaboration...</p>
</section>
<section class="section">
<h2>Essays</h2>
{% if site.essays.size > 0 %}
{% for essay in site.essays %}
<a href="{{ essay.url }}" class="writing-link">
{{ essay.title }}
</a>
{% endfor %}
{% else %}
<p>Philosophical explorations and thoughts on AI development...</p>
{% endif %}
</section>
<section class="section">
<h2>Research</h2>
{% if site.research.size > 0 %}
{% for study in site.research %}
<a href="{{ study.url }}" class="writing-link">
{{ study.title }}
</a>
{% endfor %}
{% else %}
<p>Forthcoming case studies and experimental results...</p>
{% endif %}
</section>
</main>