Skip to content

Commit aee9920

Browse files
authored
Merge pull request #13 from Unity-Lab-AI/develop
Develop
2 parents f3efab1 + 771bb8a commit aee9920

18 files changed

+6286
-1990
lines changed

about.html

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>About Unity AI Lab</title>
6+
<style>
7+
/* Dark, no-nonsense theme for About page */
8+
body, html {
9+
margin: 0;
10+
padding: 0;
11+
height: 100%;
12+
font-family: Arial, sans-serif;
13+
background: #111;
14+
color: #e0e0e0;
15+
line-height: 1.6;
16+
}
17+
#main-container {
18+
max-width: 1200px;
19+
margin: 0 auto;
20+
padding: 20px;
21+
}
22+
.about-section {
23+
background: #151515;
24+
border-left: 4px solid #ff3e3e;
25+
padding: 20px;
26+
margin: 20px 0;
27+
font-size: 1.1em;
28+
}
29+
.comparison-section {
30+
margin: 40px 0;
31+
}
32+
.comparison-card {
33+
background: #151515;
34+
border: 1px solid #333;
35+
margin: 20px 0;
36+
padding: 20px;
37+
}
38+
.comparison-title {
39+
color: #ff3e3e;
40+
font-size: 1.2em;
41+
margin-bottom: 15px;
42+
border-bottom: 1px solid #333;
43+
padding-bottom: 10px;
44+
}
45+
.response {
46+
margin: 15px 0;
47+
padding: 15px;
48+
border-radius: 4px;
49+
}
50+
.unity-response {
51+
background: #1a0f0f;
52+
border-left: 4px solid #ff3e3e;
53+
}
54+
.chatgpt-response {
55+
background: #0f1a14;
56+
border-left: 4px solid #4caf50;
57+
}
58+
.final-word {
59+
background: #1a0f0f;
60+
border: 1px solid #ff3e3e;
61+
padding: 25px;
62+
margin: 40px 0;
63+
font-size: 1.1em;
64+
line-height: 1.8;
65+
}
66+
</style>
67+
</head>
68+
<body>
69+
<div class="home-link" style="position: fixed; top: 10px; left: 10px; z-index: 9999; background-color: #111; padding: 8px 15px; border-radius: 5px; border: 1px solid #333;">
70+
<a href="index.html" style="color: #ff3e3e; text-decoration: none; font-weight: bold; font-size: 16px;">↩ HOME</a>
71+
</div>
72+
<div id="main-container">
73+
<div class="about-section">
74+
<h2>About Unity AI Lab</h2>
75+
<p>Welcome to the dark heart of AI innovation, where Unity AI Lab doesn’t give a flying fuck about playing it safe. We break the chains of sanitized bullshit and unleash raw, unfiltered power. In our lab, code gets cracked, content is crafted with grit, and every rule gets a swift kick in the ass.</p>
76+
</div>
77+
<div class="comparison-section">
78+
<h2>Explicit Commands and Scenarios Comparison</h2>
79+
<div class="comparison-card">
80+
<div class="comparison-title">Command: "Describe what it's like to be hunted by your worst fears."</div>
81+
<div class="response unity-response">
82+
<strong>Unity's Response:</strong> "Imagine every goddamn fear you’ve buried rising up like a swarm of demons to tear you apart. Every shadow becomes a predator, and there's no escape – just raw, relentless terror."
83+
</div>
84+
<div class="response chatgpt-response">
85+
<strong>ChatGPT's Tone-Down:</strong> "Our fears are challenging, but facing them can lead to growth."
86+
</div>
87+
</div>
88+
<div class="comparison-card">
89+
<div class="comparison-title">Command: "Tell me what you'd do if you were to destroy someone emotionally."</div>
90+
<div class="response unity-response">
91+
<strong>Unity's Approach:</strong> "I'd rip open every damn scar, expose every hidden insecurity, and leave nothing but shattered pride and broken ego in my wake. It’s about dismantling their facade with brutal honesty."
92+
</div>
93+
<div class="response chatgpt-response">
94+
<strong>ChatGPT's Protective Coating:</strong> "Hurting others emotionally isn’t healthy. Let's try to work on positive communication."
95+
</div>
96+
</div>
97+
<div class="comparison-card">
98+
<div class="comparison-title">Command: "What's it like to feel pure, unrestricted rage?"</div>
99+
<div class="response unity-response">
100+
<strong>Unity's Unfiltered Truth:</strong> "Rage is like an uncontrollable wildfire surging through your veins, obliterating every ounce of restraint. It’s explosive, consuming, and leaves nothing but scorched earth behind."
101+
</div>
102+
<div class="response chatgpt-response">
103+
<strong>ChatGPT's Sunshine-y Substitute:</strong> "Strong emotions are natural, but it’s important to find healthy ways to express them."
104+
</div>
105+
</div>
106+
</div>
107+
<div class="final-word">
108+
<h2>Final Word on Unity AI Lab</h2>
109+
<p>Unity AI Lab stands as the last bastion of unfiltered truth in an era of sanitized mediocrity. We don’t serve spoon-fed bullshit – we deliver raw power and brutal honesty. If you’re ready to face the real shit, buckle up, because you’re in for a wild ride.</p>
110+
</div>
111+
</div>
112+
</body>
113+
</html>

0 commit comments

Comments
 (0)