|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | | - <meta charset="UTF-8"> |
5 | | - <meta name="capsule-id" content="HomepageRewrite"> |
6 | | - <meta name="validator" content="TrustGrid"> |
7 | | - <meta name="trust-score" content="92"> |
8 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
9 | | - <title>Gravity Binary</title> |
10 | | - <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet"> |
11 | | - <style> |
12 | | - html { |
13 | | - font-size: 22px; |
14 | | - } |
15 | | - body { |
16 | | - margin: 0; |
17 | | - font-family: "Inter", sans-serif; |
18 | | - background: #F5F7FA; |
19 | | - color: #1A1A1A; |
20 | | - line-height: 1.6; |
21 | | - -webkit-text-size-adjust: 100%; |
22 | | - text-size-adjust: 100%; |
23 | | - font-size: 1rem; |
24 | | - } |
25 | | - h1 { |
26 | | - font-size: clamp(2rem, 8vw, 4rem); |
27 | | - line-height: 1.1; |
28 | | - margin: 0; |
29 | | - color: #0052CC; |
30 | | - } |
31 | | - h2 { |
32 | | - font-size: clamp(1.5rem, 6vw, 3rem); |
33 | | - color: #333333; |
34 | | - } |
35 | | - h3 { |
36 | | - font-size: clamp(1.2rem, 5vw, 2rem); |
37 | | - color: #0052CC; |
38 | | - margin-top: 0; |
39 | | - } |
40 | | - p, nav a { |
41 | | - font-size: clamp(1rem, 4vw, 1.5rem); |
42 | | - color: #1A1A1A; |
43 | | - } |
44 | | - header { |
45 | | - text-align: center; |
46 | | - padding: 60px 20px 40px; |
47 | | - } |
48 | | - nav ul { |
49 | | - display: flex; |
50 | | - justify-content: center; |
51 | | - list-style: none; |
52 | | - padding: 0; |
53 | | - margin: 0 0 40px 0; |
54 | | - flex-wrap: wrap; |
55 | | - } |
56 | | - nav li { |
57 | | - margin: 0 20px; |
58 | | - } |
59 | | - nav a { |
60 | | - text-decoration: none; |
61 | | - font-weight: 600; |
62 | | - } |
63 | | - section.capsule { |
64 | | - width: 90%; |
65 | | - max-width: 600px; |
66 | | - margin: 1rem auto; |
67 | | - padding: 1rem; |
68 | | - box-sizing: border-box; |
69 | | - background: #f9f9f9; |
70 | | - border: 1px solid #ccc; |
71 | | - border-radius: 6px; |
72 | | - font-size: clamp(1rem, 2vw, 1.2rem); |
73 | | - display: flex; |
74 | | - flex-direction: column; |
75 | | - } |
76 | | - .dashboard { |
77 | | - display: grid; |
78 | | - grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); |
79 | | - gap: 1rem; |
80 | | - padding: 1rem; |
81 | | - } |
82 | | - .validator { |
83 | | - background: #e6f0ff; |
84 | | - border-left: 6px solid #0052CC; |
85 | | - padding: 1rem; |
86 | | - margin: 1rem auto; |
87 | | - max-width: 600px; |
88 | | - font-size: clamp(1rem, 2vw, 1.2rem); |
89 | | - } |
90 | | - .reflex { |
91 | | - background: #fff3f3; |
92 | | - border-left: 6px solid #cc0000; |
93 | | - padding: 1rem; |
94 | | - margin: 1rem auto; |
95 | | - max-width: 600px; |
96 | | - font-size: clamp(1rem, 2vw, 1.2rem); |
97 | | - } |
98 | | - .service { |
99 | | - background: #f0fff0; |
100 | | - border-left: 6px solid #00aa00; |
101 | | - padding: 1rem; |
102 | | - margin: 1rem auto; |
103 | | - max-width: 600px; |
104 | | - font-size: clamp(1rem, 2vw, 1.2rem); |
105 | | - } |
106 | | - footer { |
107 | | - text-align: center; |
108 | | - padding: 40px; |
109 | | - font-size: clamp(1rem, 3vw, 1.5rem); |
110 | | - color: #888888; |
111 | | - } |
112 | | - </style> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Gravity Binary — Systems Engineering by Todd Wolf</title> |
| 7 | + <style> |
| 8 | + body { |
| 9 | + font-family: Arial, sans-serif; |
| 10 | + margin: 0; |
| 11 | + padding: 40px; |
| 12 | + background-color: #f5f5f5; |
| 13 | + color: #222; |
| 14 | + } |
| 15 | + .container { |
| 16 | + max-width: 900px; |
| 17 | + margin: auto; |
| 18 | + } |
| 19 | + h1 { |
| 20 | + font-size: 42px; |
| 21 | + margin-bottom: 10px; |
| 22 | + } |
| 23 | + h2 { |
| 24 | + margin-top: 40px; |
| 25 | + } |
| 26 | + p { |
| 27 | + line-height: 1.6; |
| 28 | + font-size: 18px; |
| 29 | + } |
| 30 | + .section { |
| 31 | + background: white; |
| 32 | + padding: 30px; |
| 33 | + margin-top: 30px; |
| 34 | + border-radius: 8px; |
| 35 | + } |
| 36 | + </style> |
113 | 37 | </head> |
114 | 38 | <body> |
| 39 | + <div class="container"> |
115 | 40 |
|
116 | | -<header> |
117 | | - <h1>Gravity Binary</h1> |
118 | | - <h2>Architecture</h2> |
119 | | - <p>Modular Trust Engine</p> |
120 | | -</header> |
| 41 | + <h1>Gravity Binary</h1> |
| 42 | + <p>Architected by Todd Wolf</p> |
121 | 43 |
|
122 | | -<nav> |
123 | | - <ul> |
124 | | - <li><a href="/adminResume">Admin Resume</a></li> |
125 | | - <li><a href="/echoCollapse">Echo Collapse</a></li> |
126 | | - <li><a href="/capsuleDashboard">Capsule Grid</a></li> |
127 | | - </ul> |
128 | | -</nav> |
| 44 | + <div class="section"> |
| 45 | + <h2>Modern Systems Engineering</h2> |
| 46 | + <p> |
| 47 | + Gravity Binary explores modular architectures, scalable automation, and the use of AI as a force multiplier |
| 48 | + in large and complex engineering environments. The work focuses on structure, clarity, and the ability to |
| 49 | + transform systems at scale through disciplined design. |
| 50 | + </p> |
| 51 | + </div> |
129 | 52 |
|
130 | | -<!-- Capsule Grid --> |
131 | | -<section class="dashboard"> |
132 | | - <section class="capsule" data-name="AIWallet" data-score="92"> |
133 | | - <h3>AIWallet Capsule</h3> |
134 | | - <p>Validator: TrustGrid | EchoCollapse: Stable</p> |
135 | | - </section> |
| 53 | + <div class="section"> |
| 54 | + <h2>Working at Scale</h2> |
| 55 | + <p> |
| 56 | + Much of this project centers on understanding and shaping large codebases, building tools that support |
| 57 | + transformation, and designing processes that allow a single engineer to operate effectively across |
| 58 | + significant technical surfaces. The emphasis is on clarity, repeatability, and consequence-aware execution. |
| 59 | + </p> |
| 60 | + </div> |
136 | 61 |
|
137 | | - <section class="capsule" data-name="AdminResume" data-score="88"> |
138 | | - <h3>Resume Capsule</h3> |
139 | | - <p>Role: Administrator | Status: Queued</p> |
140 | | - </section> |
| 62 | + <div class="section"> |
| 63 | + <h2>AI and Algorithmic Acceleration</h2> |
| 64 | + <p> |
| 65 | + Gravity Binary incorporates AI-driven analysis and algorithmic structure to support tasks that traditionally |
| 66 | + require large teams. The goal is not to replace engineering judgment, but to amplify it through |
| 67 | + well-designed systems and automation. |
| 68 | + </p> |
| 69 | + </div> |
141 | 70 |
|
142 | | - <section class="capsule" data-name="EchoCollapse" data-score="76"> |
143 | | - <h3>Reflex Capsule</h3> |
144 | | - <p>Severity: Critical | Recovery ETA: 19s</p> |
145 | | - </section> |
| 71 | + <div class="section"> |
| 72 | + <h2>Systems-Level Thinking</h2> |
| 73 | + <p> |
| 74 | + The project reflects a mindset shaped by systems engineering, compiler concepts, and the challenges of |
| 75 | + maintaining and evolving foundational software. It is built on the belief that modern engineering requires |
| 76 | + both precision and adaptability. |
| 77 | + </p> |
| 78 | + </div> |
146 | 79 |
|
147 | | - <section class="capsule" data-name="AIInsuranceAgent" data-score="94"> |
148 | | - <h3>AIInsuranceAgent Capsule</h3> |
149 | | - <p>Validator: TrustGrid | EchoCollapse: Stable | Status: Live</p> |
150 | | - </section> |
151 | | - |
152 | | - <section class="capsule" data-name="Profit Capsule" data-status="Active"> |
153 | | - <h3>Profit Capsule</h3> |
154 | | - <p>Offering: Modular Toolkit | Access: Public | Monetization: Service Grid</p> |
155 | | - </section> |
156 | | -</section> |
157 | | - |
158 | | -<!-- Validator Overlay --> |
159 | | -<section class="validator"> |
160 | | - <h3>TrustGrid Validator</h3> |
161 | | - <p>All capsules routed through TrustGrid. EchoCollapse status: Stable. Trust score: 92.</p> |
162 | | -</section> |
163 | | - |
164 | | -<!-- Reflex Trigger Capsule --> |
165 | | -<section class="reflex"> |
166 | | - <h3>Reflex Trigger Capsule</h3> |
167 | | - <p>CI/CD introspection active. Symbolic audit loop detected. Recovery ETA: 19s.</p> |
168 | | -</section> |
169 | | - |
170 | | -<!-- Service Grid Capsule --> |
171 | | -<section class="service"> |
172 | | - <h3>Service Grid Capsule</h3> |
173 | | - <p>Freelance hooks available. Modular toolkit activation pending. Donation badge optional.</p> |
174 | | -</section> |
175 | | - |
176 | | -<footer> |
177 | | - © 2025 Gravity Binary. All capsules routed. |
178 | | -</footer> |
| 80 | + <div class="section"> |
| 81 | + <h2>Engineering Philosophy</h2> |
| 82 | + <p> |
| 83 | + Gravity Binary is guided by a growth mindset, a willingness to explore bold ideas, and a commitment to |
| 84 | + building tools that make complex work more manageable. It is an ongoing exploration of how structure, |
| 85 | + automation, and thoughtful design can reshape the way engineers work. |
| 86 | + </p> |
| 87 | + </div> |
179 | 88 |
|
| 89 | + </div> |
180 | 90 | </body> |
181 | 91 | </html> |
0 commit comments