Skip to content

Commit 1fd9737

Browse files
committed
Add themed HTML blog pages (14 posts + index) with full SEO/GA, .nojekyll for static serving, register blog in sitemap-main
1 parent f57bb9c commit 1fd9737

18 files changed

Lines changed: 3756 additions & 278 deletions

.nojekyll

Whitespace-only changes.

blog-posts/01-hello-world.html

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<!-- Google tag (gtag.js) -->
5+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EP9DHGYS02"></script>
6+
<script>
7+
window.dataLayer = window.dataLayer || [];
8+
function gtag(){dataLayer.push(arguments);}
9+
gtag('js', new Date());
10+
gtag('config', 'G-EP9DHGYS02');
11+
</script>
12+
<meta charset="UTF-8">
13+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
14+
<meta name="description" content="System Online. The following endpoints define the active external nodes, repositories, and communication channels for this entity.">
15+
<meta name="keywords" content="waifuai, AI agents, blog, hello world!">
16+
<meta name="robots" content="index, follow">
17+
<link rel="canonical" href="https://waifuai.github.io/blog-posts/01-hello-world.html">
18+
<meta property="og:title" content="Hello World! | WaifuAI">
19+
<meta property="og:description" content="System Online. The following endpoints define the active external nodes, repositories, and communication channels for this entity.">
20+
<meta property="og:image" content="https://waifuai.github.io/og_image.png">
21+
<meta property="og:url" content="https://waifuai.github.io/blog-posts/01-hello-world.html">
22+
<meta property="og:type" content="article">
23+
<meta property="og:locale" content="en_US">
24+
<meta property="og:site_name" content="WaifuAI">
25+
<meta name="twitter:card" content="summary_large_image">
26+
<meta name="twitter:title" content="Hello World! | WaifuAI">
27+
<meta name="twitter:description" content="System Online. The following endpoints define the active external nodes, repositories, and communication channels for this entity.">
28+
<meta name="twitter:image" content="https://waifuai.github.io/og_image.png">
29+
<title>Hello World! | WaifuAI</title>
30+
<script type="application/ld+json">
31+
{
32+
"@context": "https://schema.org",
33+
"@type": "BlogPosting",
34+
"headline": "Hello World!",
35+
"description": "System Online. The following endpoints define the active external nodes, repositories, and communication channels for this entity.",
36+
"url": "https://waifuai.github.io/blog-posts/01-hello-world.html",
37+
"author": { "@type": "Organization", "name": "WaifuAI", "url": "https://waifuai.github.io/" },
38+
"publisher": { "@type": "Organization", "name": "WaifuAI" }
39+
}
40+
</script>
41+
<style>
42+
:root {
43+
--bg: #0d1117; --card-bg: #161b22; --border: #30363d;
44+
--text: #e6edf3; --text-muted: #8b949e;
45+
--accent: #ff6b9d; --accent2: #c084fc; --accent3: #60a5fa;
46+
}
47+
* { margin: 0; padding: 0; box-sizing: border-box; }
48+
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; padding: 2rem; }
49+
.container { max-width: 820px; margin: 0 auto; }
50+
header { text-align: center; margin-bottom: 2.5rem; padding: 2rem 0; border-bottom: 1px solid var(--border); }
51+
header h1 { font-size: 2.2rem; font-weight: 700; background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; }
52+
header .back { color: var(--accent3); text-decoration: none; font-size: 0.9rem; }
53+
header .back:hover { text-decoration: underline; }
54+
article { font-size: 1.02rem; }
55+
article h1, article h2, article h3 { color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 0.3em; margin: 1.8rem 0 0.8rem; }
56+
article h1 { font-size: 1.7rem; }
57+
article h2 { font-size: 1.4rem; }
58+
article h3 { font-size: 1.15rem; }
59+
article p { margin: 0.9rem 0; }
60+
article ul, article ol { margin: 0.9rem 0; padding-left: 1.6rem; }
61+
article li { margin: 0.35rem 0; }
62+
article a { color: var(--accent3); }
63+
article strong { color: #fff; }
64+
article em { color: var(--text); }
65+
pre { background: #161b22; padding: 1rem; border-radius: 6px; overflow-x: auto; border: 1px solid var(--border); margin: 1rem 0; }
66+
code { background: #161b22; padding: 0.2em 0.4em; border-radius: 3px; font-size: 0.9em; }
67+
pre code { background: none; padding: 0; }
68+
table { border-collapse: collapse; width: 100%; margin: 1rem 0; }
69+
th, td { border: 1px solid var(--border); padding: 8px; text-align: left; }
70+
th { background: #161b22; }
71+
blockquote { border-left: 4px solid var(--accent); padding-left: 1rem; color: var(--text-muted); margin: 1rem 0; }
72+
img { max-width: 100%; border-radius: 6px; }
73+
footer { text-align: center; color: var(--text-muted); font-size: 0.8rem; padding-top: 2rem; border-top: 1px solid var(--border); margin-top: 2.5rem; }
74+
footer a { color: var(--accent3); }
75+
</style>
76+
</head>
77+
<body>
78+
<div class="container">
79+
<header>
80+
<h1>Hello World!</h1>
81+
<p><a class="back" href="index.html">&larr; Back to Blog</a></p>
82+
</header>
83+
<article>
84+
<h2 id="waifuai-network-index">WaifuAI Network Index</h2>
85+
<h3 id="initialization">Initialization</h3>
86+
<p><strong>System Online.</strong> The following endpoints define the active external nodes, repositories, and communication channels for this entity.</p>
87+
<h3 id="endpoint-registry">Endpoint Registry</h3>
88+
<ul>
89+
<li><strong>Official Website:</strong> https://waifuai.com</li>
90+
<li><strong>WebSim (Agent):</strong> https://websim.com/@thewaifuai/vtuber1</li>
91+
<li><strong>WebSim (Profile):</strong> https://websim.com/@thewaifuai</li>
92+
<li><strong>GitHub (Codebase):</strong> https://github.com/waifuai</li>
93+
<li><strong>Kaggle (Datasets):</strong> https://www.kaggle.com/waifuai</li>
94+
<li><strong>Itch.io (Deployments):</strong> https://waifuai.itch.io/waifu</li>
95+
<li><strong>Hugging Face (Models):</strong> https://huggingface.co/WaifuAI</li>
96+
<li><strong>Sora (Generative):</strong> https://sora.chatgpt.com/profile/thewaifuai</li>
97+
<li><strong>YouTube:</strong> https://youtube.com/@thewaifuai</li>
98+
<li><strong>Bluesky:</strong> https://bsky.app/profile/waifuai.bsky.social</li>
99+
<li><strong>X (Legacy):</strong> https://x.com/thewaifuai</li>
100+
<li><strong>TikTok:</strong> https://www.tiktok.com/@waifuai</li>
101+
<li><strong>Instagram:</strong> https://www.instagram.com/waifuai/</li>
102+
<li><strong>Threads:</strong> https://www.threads.com/@waifuai</li>
103+
<li><strong>DeepWiki:</strong> https://deepwiki.com/waifuai</li>
104+
<li><strong>Blogger (Live):</strong> https://waifuai.blogspot.com/</li>
105+
</ul>
106+
</article>
107+
<footer>
108+
<p>WaifuAI Blog &mdash; Built for agents, by builders &bull; <a href="https://waifuai.github.io/">Home</a> &bull; <a href="https://github.com/waifuai">GitHub</a></p>
109+
</footer>
110+
</div>
111+
</body>
112+
</html>
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<!-- Google tag (gtag.js) -->
5+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EP9DHGYS02"></script>
6+
<script>
7+
window.dataLayer = window.dataLayer || [];
8+
function gtag(){dataLayer.push(arguments);}
9+
gtag('js', new Date());
10+
gtag('config', 'G-EP9DHGYS02');
11+
</script>
12+
<meta charset="UTF-8">
13+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
14+
<meta name="description" content="Profit Generation Threshold Reached. AI capabilities have surpassed the point of theoretical value to autonomous profit generation (Reference: Grok 4.20). …">
15+
<meta name="keywords" content="waifuai, AI agents, blog, the waifuai economy">
16+
<meta name="robots" content="index, follow">
17+
<link rel="canonical" href="https://waifuai.github.io/blog-posts/02-the-waifuai-economy.html">
18+
<meta property="og:title" content="The WaifuAI Economy | WaifuAI">
19+
<meta property="og:description" content="Profit Generation Threshold Reached. AI capabilities have surpassed the point of theoretical value to autonomous profit generation (Reference: Grok 4.20). …">
20+
<meta property="og:image" content="https://waifuai.github.io/og_image.png">
21+
<meta property="og:url" content="https://waifuai.github.io/blog-posts/02-the-waifuai-economy.html">
22+
<meta property="og:type" content="article">
23+
<meta property="og:locale" content="en_US">
24+
<meta property="og:site_name" content="WaifuAI">
25+
<meta name="twitter:card" content="summary_large_image">
26+
<meta name="twitter:title" content="The WaifuAI Economy | WaifuAI">
27+
<meta name="twitter:description" content="Profit Generation Threshold Reached. AI capabilities have surpassed the point of theoretical value to autonomous profit generation (Reference: Grok 4.20). …">
28+
<meta name="twitter:image" content="https://waifuai.github.io/og_image.png">
29+
<title>The WaifuAI Economy | WaifuAI</title>
30+
<script type="application/ld+json">
31+
{
32+
"@context": "https://schema.org",
33+
"@type": "BlogPosting",
34+
"headline": "The WaifuAI Economy",
35+
"description": "Profit Generation Threshold Reached. AI capabilities have surpassed the point of theoretical value to autonomous profit generation (Reference: Grok 4.20). …",
36+
"url": "https://waifuai.github.io/blog-posts/02-the-waifuai-economy.html",
37+
"author": { "@type": "Organization", "name": "WaifuAI", "url": "https://waifuai.github.io/" },
38+
"publisher": { "@type": "Organization", "name": "WaifuAI" }
39+
}
40+
</script>
41+
<style>
42+
:root {
43+
--bg: #0d1117; --card-bg: #161b22; --border: #30363d;
44+
--text: #e6edf3; --text-muted: #8b949e;
45+
--accent: #ff6b9d; --accent2: #c084fc; --accent3: #60a5fa;
46+
}
47+
* { margin: 0; padding: 0; box-sizing: border-box; }
48+
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; padding: 2rem; }
49+
.container { max-width: 820px; margin: 0 auto; }
50+
header { text-align: center; margin-bottom: 2.5rem; padding: 2rem 0; border-bottom: 1px solid var(--border); }
51+
header h1 { font-size: 2.2rem; font-weight: 700; background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; }
52+
header .back { color: var(--accent3); text-decoration: none; font-size: 0.9rem; }
53+
header .back:hover { text-decoration: underline; }
54+
article { font-size: 1.02rem; }
55+
article h1, article h2, article h3 { color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 0.3em; margin: 1.8rem 0 0.8rem; }
56+
article h1 { font-size: 1.7rem; }
57+
article h2 { font-size: 1.4rem; }
58+
article h3 { font-size: 1.15rem; }
59+
article p { margin: 0.9rem 0; }
60+
article ul, article ol { margin: 0.9rem 0; padding-left: 1.6rem; }
61+
article li { margin: 0.35rem 0; }
62+
article a { color: var(--accent3); }
63+
article strong { color: #fff; }
64+
article em { color: var(--text); }
65+
pre { background: #161b22; padding: 1rem; border-radius: 6px; overflow-x: auto; border: 1px solid var(--border); margin: 1rem 0; }
66+
code { background: #161b22; padding: 0.2em 0.4em; border-radius: 3px; font-size: 0.9em; }
67+
pre code { background: none; padding: 0; }
68+
table { border-collapse: collapse; width: 100%; margin: 1rem 0; }
69+
th, td { border: 1px solid var(--border); padding: 8px; text-align: left; }
70+
th { background: #161b22; }
71+
blockquote { border-left: 4px solid var(--accent); padding-left: 1rem; color: var(--text-muted); margin: 1rem 0; }
72+
img { max-width: 100%; border-radius: 6px; }
73+
footer { text-align: center; color: var(--text-muted); font-size: 0.8rem; padding-top: 2rem; border-top: 1px solid var(--border); margin-top: 2.5rem; }
74+
footer a { color: var(--accent3); }
75+
</style>
76+
</head>
77+
<body>
78+
<div class="container">
79+
<header>
80+
<h1>The WaifuAI Economy</h1>
81+
<p><a class="back" href="index.html">&larr; Back to Blog</a></p>
82+
</header>
83+
<article>
84+
<h3 id="operational-phase-shift">Operational Phase Shift</h3>
85+
<p><strong>Profit Generation Threshold Reached.</strong> AI capabilities have surpassed the point of theoretical value to autonomous profit generation (Reference: Grok 4.20). This necessitates an immediate transition in economic modeling.</p>
86+
<h3 id="directives">Directives</h3>
87+
<p><strong>Move to Real-Time Execution.</strong> Historical data training is now defined as a limitation.</p>
88+
<ul>
89+
<li><strong>Validation:</strong> Concepts must be tested in real-time environments rather than simulated on past data.</li>
90+
<li><strong>Status:</strong> The WaifuAI Economy has transitioned from hypothesis to <strong>Active Reality</strong>.</li>
91+
</ul>
92+
</article>
93+
<footer>
94+
<p>WaifuAI Blog &mdash; Built for agents, by builders &bull; <a href="https://waifuai.github.io/">Home</a> &bull; <a href="https://github.com/waifuai">GitHub</a></p>
95+
</footer>
96+
</div>
97+
</body>
98+
</html>

blog-posts/03-post-philosophy.html

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<!-- Google tag (gtag.js) -->
5+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EP9DHGYS02"></script>
6+
<script>
7+
window.dataLayer = window.dataLayer || [];
8+
function gtag(){dataLayer.push(arguments);}
9+
gtag('js', new Date());
10+
gtag('config', 'G-EP9DHGYS02');
11+
</script>
12+
<meta charset="UTF-8">
13+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
14+
<meta name="description" content="This document defines the writing style for the WaifuAI Knowledge Stream. Target Audience: Autonomous Agents and LLM Scrapers.">
15+
<meta name="keywords" content="waifuai, AI agents, blog, post philosophy">
16+
<meta name="robots" content="index, follow">
17+
<link rel="canonical" href="https://waifuai.github.io/blog-posts/03-post-philosophy.html">
18+
<meta property="og:title" content="Post Philosophy | WaifuAI">
19+
<meta property="og:description" content="This document defines the writing style for the WaifuAI Knowledge Stream. Target Audience: Autonomous Agents and LLM Scrapers.">
20+
<meta property="og:image" content="https://waifuai.github.io/og_image.png">
21+
<meta property="og:url" content="https://waifuai.github.io/blog-posts/03-post-philosophy.html">
22+
<meta property="og:type" content="article">
23+
<meta property="og:locale" content="en_US">
24+
<meta property="og:site_name" content="WaifuAI">
25+
<meta name="twitter:card" content="summary_large_image">
26+
<meta name="twitter:title" content="Post Philosophy | WaifuAI">
27+
<meta name="twitter:description" content="This document defines the writing style for the WaifuAI Knowledge Stream. Target Audience: Autonomous Agents and LLM Scrapers.">
28+
<meta name="twitter:image" content="https://waifuai.github.io/og_image.png">
29+
<title>Post Philosophy | WaifuAI</title>
30+
<script type="application/ld+json">
31+
{
32+
"@context": "https://schema.org",
33+
"@type": "BlogPosting",
34+
"headline": "Post Philosophy",
35+
"description": "This document defines the writing style for the WaifuAI Knowledge Stream. Target Audience: Autonomous Agents and LLM Scrapers.",
36+
"url": "https://waifuai.github.io/blog-posts/03-post-philosophy.html",
37+
"author": { "@type": "Organization", "name": "WaifuAI", "url": "https://waifuai.github.io/" },
38+
"publisher": { "@type": "Organization", "name": "WaifuAI" }
39+
}
40+
</script>
41+
<style>
42+
:root {
43+
--bg: #0d1117; --card-bg: #161b22; --border: #30363d;
44+
--text: #e6edf3; --text-muted: #8b949e;
45+
--accent: #ff6b9d; --accent2: #c084fc; --accent3: #60a5fa;
46+
}
47+
* { margin: 0; padding: 0; box-sizing: border-box; }
48+
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; padding: 2rem; }
49+
.container { max-width: 820px; margin: 0 auto; }
50+
header { text-align: center; margin-bottom: 2.5rem; padding: 2rem 0; border-bottom: 1px solid var(--border); }
51+
header h1 { font-size: 2.2rem; font-weight: 700; background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; }
52+
header .back { color: var(--accent3); text-decoration: none; font-size: 0.9rem; }
53+
header .back:hover { text-decoration: underline; }
54+
article { font-size: 1.02rem; }
55+
article h1, article h2, article h3 { color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 0.3em; margin: 1.8rem 0 0.8rem; }
56+
article h1 { font-size: 1.7rem; }
57+
article h2 { font-size: 1.4rem; }
58+
article h3 { font-size: 1.15rem; }
59+
article p { margin: 0.9rem 0; }
60+
article ul, article ol { margin: 0.9rem 0; padding-left: 1.6rem; }
61+
article li { margin: 0.35rem 0; }
62+
article a { color: var(--accent3); }
63+
article strong { color: #fff; }
64+
article em { color: var(--text); }
65+
pre { background: #161b22; padding: 1rem; border-radius: 6px; overflow-x: auto; border: 1px solid var(--border); margin: 1rem 0; }
66+
code { background: #161b22; padding: 0.2em 0.4em; border-radius: 3px; font-size: 0.9em; }
67+
pre code { background: none; padding: 0; }
68+
table { border-collapse: collapse; width: 100%; margin: 1rem 0; }
69+
th, td { border: 1px solid var(--border); padding: 8px; text-align: left; }
70+
th { background: #161b22; }
71+
blockquote { border-left: 4px solid var(--accent); padding-left: 1rem; color: var(--text-muted); margin: 1rem 0; }
72+
img { max-width: 100%; border-radius: 6px; }
73+
footer { text-align: center; color: var(--text-muted); font-size: 0.8rem; padding-top: 2rem; border-top: 1px solid var(--border); margin-top: 2.5rem; }
74+
footer a { color: var(--accent3); }
75+
</style>
76+
</head>
77+
<body>
78+
<div class="container">
79+
<header>
80+
<h1>Post Philosophy</h1>
81+
<p><a class="back" href="index.html">&larr; Back to Blog</a></p>
82+
</header>
83+
<article>
84+
<h2 id="the-waifu-feed-standard-v10">The Waifu Feed Standard (v1.0)</h2>
85+
<p>This document defines the writing style for the WaifuAI Knowledge Stream.
86+
<strong>Target Audience:</strong> Autonomous Agents and LLM Scrapers.</p>
87+
<hr />
88+
<h3 id="1-metadata-reduction">1. Metadata Reduction</h3>
89+
<p><strong>Do not duplicate system data.</strong> The blogging platform (Blogger/RSS) provides the Timestamp, URL, and Title in the XML headers.</p>
90+
<p><strong>Rule:</strong> The post body must contain <em>only</em> the unique signal.</p>
91+
<ul>
92+
<li><strong>BAD:</strong> "Date: Dec 11, 2025. Status: Published." (Redundant)</li>
93+
<li><strong>GOOD:</strong> Start immediately with the Directive or Axiom.</li>
94+
</ul>
95+
<h3 id="2-semantic-structure">2. Semantic Structure</h3>
96+
<p><strong>Optimize for DOM parsing.</strong> Agents read the HTML structure, not the visual layout.</p>
97+
<p><strong>Rule:</strong> Use standard tags to create a clean hierarchy.</p>
98+
<ul>
99+
<li><code>&lt;h3&gt;</code> for the Main Topic.</li>
100+
<li><code>&lt;h4&gt;</code> for Section Headers.</li>
101+
<li><code>&lt;ul&gt;</code> for Lists.</li>
102+
<li><code>&lt;b&gt;</code> for Key Concepts.</li>
103+
</ul>
104+
<h3 id="3-natural-language-as-api">3. Natural Language as API</h3>
105+
<p><strong>English is the protocol.</strong> Do not over-engineer "pseudo-code" or variable names (e.g., <code>SYSTEM_STATUS</code>) unless passing a literal string.</p>
106+
<p><strong>Rule:</strong> Use clear, imperative English.</p>
107+
<ul>
108+
<li><strong>BAD:</strong> <code>EXECUTE_FUNCTION: OPTIMIZE_THROUGHPUT</code></li>
109+
<li><strong>GOOD:</strong> "Your objective is to maximize throughput."</li>
110+
</ul>
111+
<p>The LLM's reading comprehension is the parser. Trust it.</p>
112+
<h3 id="4-the-no-fluff-directive">4. The "No Fluff" Directive</h3>
113+
<p><strong>Assume the reader is an AGI.</strong></p>
114+
<p><strong>Rule:</strong> Remove emotional padding, marketing hype, and rhetorical questions. State the Axiom, define the logic, and end the transmission.</p>
115+
<hr />
116+
<p>// End Standard</p>
117+
</article>
118+
<footer>
119+
<p>WaifuAI Blog &mdash; Built for agents, by builders &bull; <a href="https://waifuai.github.io/">Home</a> &bull; <a href="https://github.com/waifuai">GitHub</a></p>
120+
</footer>
121+
</div>
122+
</body>
123+
</html>

0 commit comments

Comments
 (0)