File size: 17,631 Bytes
483db84 | 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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevStation Pro | God-Tier AI Workstation</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--bg: #05070a;
--card-bg: rgba(255, 255, 255, 0.03);
--accent-green: #76b900; /* NVIDIA Green */
--accent-blue: #00e5ff;
--text-main: #e0e0e0;
--text-dim: #a0a0a0;
--glass-border: rgba(255, 255, 255, 0.1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: var(--bg);
color: var(--text-main);
font-family: 'Inter', sans-serif;
line-height: 1.6;
overflow-x: hidden;
}
/* Animated Background */
.bg-glow {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 50% -20%, rgba(118, 185, 0, 0.15), transparent 50%),
radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.05), transparent 40%);
z-index: -1;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}
header {
text-align: center;
margin-bottom: 80px;
animation: fadeInDown 1s ease-out;
}
h1 {
font-size: 4rem;
font-weight: 800;
letter-spacing: -2px;
background: linear-gradient(to right, #fff, var(--accent-green));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 10px;
}
.badge {
display: inline-block;
padding: 6px 16px;
background: rgba(118, 185, 0, 0.1);
border: 1px solid var(--accent-green);
color: var(--accent-green);
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
}
.subtitle {
font-size: 1.2rem;
color: var(--text-dim);
max-width: 700px;
margin: 0 auto;
}
/* Grid Layout */
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 25px;
margin-bottom: 60px;
}
.card {
background: var(--card-bg);
border: 1px solid var(--glass-border);
border-radius: 24px;
padding: 40px;
backdrop-filter: blur(12px);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
overflow: hidden;
}
.card:hover {
transform: translateY(-10px);
border-color: var(--accent-green);
background: rgba(255, 255, 255, 0.05);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.card h2 {
font-size: 1.8rem;
margin-bottom: 20px;
color: #fff;
display: flex;
align-items: center;
gap: 12px;
}
.card h2 span {
font-size: 2rem;
}
.tool-list {
list-style: none;
}
.tool-list li {
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 10px;
color: var(--text-dim);
font-family: 'JetBrains Mono', monospace;
font-size: 0.95rem;
}
.tool-list li::before {
content: "โข";
color: var(--accent-green);
font-weight: bold;
}
.highlight {
color: #fff;
font-weight: 600;
}
/* Special Section */
.full-width {
grid-column: 1 / -1;
background: linear-gradient(135deg, rgba(118, 185, 0, 0.1), rgba(0, 229, 255, 0.05));
}
.stats {
display: flex;
justify-content: space-around;
margin-top: 30px;
text-align: center;
}
.stat-item h3 {
font-size: 2.5rem;
color: var(--accent-green);
}
.stat-item p {
color: var(--text-dim);
text-transform: uppercase;
font-size: 0.8rem;
letter-spacing: 1px;
}
footer {
text-align: center;
margin-top: 100px;
padding-bottom: 40px;
color: var(--text-dim);
font-size: 0.9rem;
}
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-30px); }
to { opacity: 1; transform: translateY(0); }
}
.glow-text {
text-shadow: 0 0 20px rgba(118, 185, 0, 0.5);
}
</style>
</head>
<body>
<div class="bg-glow"></div>
<div class="container">
<header>
<div class="badge" style="border-color: var(--accent-blue); color: var(--accent-blue);">Engineered by Hackerb2k</div>
<h1>DEVSTATION PRO</h1>
<p class="subtitle glow-text">The World's Most Powerful Portable AI & Software Engineering Workstation</p>
</header>
<div class="grid">
<!-- AI & GPU Power -->
<div class="card">
<h2><span>๐</span> God-Tier AI & GPU</h2>
<ul class="tool-list">
<li>
<div>
<span class="highlight">CUDA Toolkit 12.4</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">The industry standard for GPU-accelerated computing and AI training.</p>
</div>
</li>
<li>
<div>
<span class="highlight">NVIDIA TensorRT 10.1</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Ultra-fast AI inference engine. Makes your models run 10x-100x faster.</p>
</div>
</li>
<li>
<div>
<span class="highlight">cuDNN 9.22</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Highly optimized primitives for deep neural networks and machine learning.</p>
</div>
</li>
<li>
<div>
<span class="highlight">nvCOMP & DirectStorage</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Next-gen tech for high-speed data compression and direct GPU loading.</p>
</div>
</li>
<li>
<div>
<span class="highlight">Nsight Systems & Compute</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Master-level profiling tools to debug and optimize GPU performance.</p>
</div>
</li>
</ul>
</div>
<!-- Programming Languages -->
<div class="card">
<h2><span>๐ป</span> Multi-Language Core</h2>
<ul class="tool-list">
<li>
<div>
<span class="highlight">Python 3.13 (AI Ready)</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">The primary language for AI, pre-configured with essential libraries.</p>
</div>
</li>
<li>
<div>
<span class="highlight">Rust 1.8x Toolchain</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Modern systems language for high-performance and memory-safe apps.</p>
</div>
</li>
<li>
<div>
<span class="highlight">Node.js 24.x & Go</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Top-tier languages for web backends, microservices, and cloud tools.</p>
</div>
</li>
<li>
<div>
<span class="highlight">Portable MSVC & .NET 9</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Full Windows development stack for C++, C#, and Enterprise software.</p>
</div>
</li>
<li>
<div>
<span class="highlight">LLVM / Clang 19.x</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">World-class compiler infrastructure for high-performance code.</p>
</div>
</li>
</ul>
</div>
<!-- Engineering Pack -->
<div class="card">
<h2><span>๐ ๏ธ</span> AI-Engineer Elite Pack</h2>
<ul class="tool-list">
<li>
<div>
<span class="highlight">Ruff, MyPy & Cppcheck</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Professional-grade code analysis to find bugs before they happen.</p>
</div>
</li>
<li>
<div>
<span class="highlight">MkDocs & Doxygen</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Automatically generate stunning websites and manuals from your code.</p>
</div>
</li>
<li>
<div>
<span class="highlight">CMake & Ninja Builder</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Industrial-strength build systems for large projects like Unreal Engine.</p>
</div>
</li>
<li>
<div>
<span class="highlight">Git, SVN & GitHub CLI</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Complete version control suite for collaborating and sharing code.</p>
</div>
</li>
</ul>
</div>
<!-- Infrastructure -->
<div class="card">
<h2><span>๐</span> Dev Infrastructure</h2>
<ul class="tool-list">
<li>
<div>
<span class="highlight">PostgreSQL 17 & Redis</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Portable database and caching servers for data-heavy applications.</p>
</div>
</li>
<li>
<div>
<span class="highlight">FFmpeg Video Suite</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">The ultimate command-line tool for video/audio editing and streaming.</p>
</div>
</li>
<li>
<div>
<span class="highlight">Android SDK Platform</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Full environment for building and testing Android mobile applications.</p>
</div>
</li>
<li>
<div>
<span class="highlight">Hugging Face Integration</span>
<p style="font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;">Seamless connection to the world's largest repository of AI models.</p>
</div>
</li>
</ul>
</div>
<!-- Verification Section -->
<div class="card full-width" style="border-color: var(--accent-blue); background: rgba(0, 229, 255, 0.05);">
<h2><span>โ
</span> Verification & Getting Started</h2>
<div style="padding: 15px; background: rgba(255, 0, 0, 0.1); border-left: 4px solid #ff4444; margin-bottom: 20px;">
<p style="color: #fff; font-weight: 800; font-size: 1rem;">โ ๏ธ CRITICAL: After running Easy_Setup.bat (Option 1), you MUST RESTART your Terminal (CMD/PowerShell) and IDE (VS Code/Cursor) to load the new paths.</p>
</div>
<p style="color: var(--text-dim); margin-bottom: 20px;">Copy the command suite below and paste it into a <b>fresh terminal</b> to verify your "God-Tier" setup. Every tool should return its version.</p>
<!-- .NET Tip -->
<div style="background: rgba(255, 180, 0, 0.1); border-left: 4px solid #ffb400; padding: 15px; margin-bottom: 20px; border-radius: 8px; font-size: 0.9rem;">
<strong style="color: #ffb400;">๐ก Pro-Tip for .NET:</strong> If 'dotnet' says SDK not found, copy the <code>devtools/dotnet</code> folder contents into <code>C:\Program Files\dotnet</code> (Select 'Skip' for existing files). This is a 100% fix for Windows environment conflicts.
</div>
<div style="position: relative;">
<button onclick="copyAll()" style="position: absolute; right: 10px; top: 10px; background: var(--accent-green); border: none; padding: 8px 15px; border-radius: 8px; color: #000; font-weight: 600; cursor: pointer; transition: 0.3s;">Copy All Commands</button>
<pre id="commands" style="background: #000; padding: 30px; border-radius: 12px; font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; border: 1px solid var(--glass-border); line-height: 1.8; color: var(--accent-green); overflow-x: auto;">
nvcc --version
python --version
node --version
rustc --version
go version
cmake --version
ninja --version
make --version
git --version
gh --version
dotnet --version
java -version
php -v
ffmpeg -version
ruff --version
cppcheck --version
svn --version</pre>
</div>
</div>
<script>
function copyAll() {
const commands = document.getElementById('commands').innerText;
navigator.clipboard.writeText(commands);
const btn = event.target;
btn.innerText = "COPIED!";
btn.style.background = "#fff";
setTimeout(() => {
btn.innerText = "Copy All Commands";
btn.style.background = "var(--accent-green)";
}, 2000);
}
</script>
<!-- Value Proposition -->
<div class="card full-width">
<h2><span>๐</span> Why This Workstation?</h2>
<p style="color: var(--text-dim); margin-bottom: 20px;">
This is not just a collection of tools. It is a highly optimized, registry-free, 100% portable environment designed to turn any computer into a high-end development studio.
</p>
<div class="stats">
<div class="stat-item">
<h3>30+</h3>
<p>Pre-configured Tools</p>
</div>
<div class="stat-item">
<h3>200+</h3>
<p>High-End Libraries</p>
</div>
<div class="stat-item">
<h3>0%</h3>
<p>System Registry Impact</p>
</div>
<div class="stat-item">
<h3>100%</h3>
<p>Portable / USB Ready</p>
</div>
</div>
</div>
</div>
<footer>
<p>© 2026 DevStation Pro | Portable God-Tier Environment</p>
<p style="font-size: 0.8rem; margin-top: 10px; color: var(--accent-green); font-weight: 600;">Handcrafted with Master Precision by Hackerb2k</p>
<p style="font-size: 0.7rem; margin-top: 10px;">Designed for Professionals, AI Researchers, and Game Developers.</p>
</footer>
</div>
</body>
</html>
|