portable-devtools / index.html
codekingpro's picture
Add files using upload-large-folder tool
483db84 verified
Raw
History Blame Contribute Delete
17.6 kB
<!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>&copy; 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>