Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 61 | Author: devwajahat
  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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>technical-secret | Backend Architect</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <!-- LOADING SCREEN -->
    <div id="loader">
        <div class="terminal-loader">
            <span class="terminal-text">$ initializing ghost_protocol...</span>
            <span class="cursor"></span>
        </div>
    </div>

    <!-- 3D SCENE CONTAINER -->
    <canvas id="ghost-canvas"></canvas>

    <!-- NAVIGATION -->
    <nav class="nav-overlay">
        <div class="nav-brand">technical-secret</div>
        <ul class="nav-menu">
            <li><a href="#home" data-section="home">_home</a></li>
            <li><a href="#about" data-section="about">_profile</a></li>
            <li><a href="#stack" data-section="stack">_arsenal</a></li>
            <li><a href="#projects" data-section="projects">_missions</a></li>
            <li><a href="#contact" data-section="contact">_comm</a></li>
        </ul>
    </nav>

    <!-- SECTIONS -->
    <main class="content-overlay">
        <!-- HOME/HERO -->
        <section id="home" class="section hero-section active">
            <div class="section-content">
                <h1 class="glitch" data-text="technical-secret">technical-secret</h1>
                <p class="subhead">Backend Architect | Code Operative | Tech Enthusiast</p>
                <div class="status-bar">
                    <span class="status-online">● ONLINE</span>
                    <span class="status-ghost">ghost_protocol: ACTIVE</span>
                </div>
            </div>
            <div class="scroll-indicator">
                <span>SCROLL TO REVEAL</span>
                <div class="arrow-down"></div>
            </div>
        </section>

        <!-- ABOUT -->
        <section id="about" class="section">
            <div class="section-content">
                <h2 class="section-title">_profile.exe</h2>
                <div class="profile-grid">
                    <div class="profile-card">
                        <h3>Identity</h3>
                        <p>Specialized in building secure, scalable backend systems. Like Ghost, I operate behind the scenes, ensuring everything runs flawlessly while staying invisible.</p>
                    </div>
                    <div class="profile-card">
                        <h3>Specialization</h3>
                        <p>Microservices • Distributed Systems • API Architecture • Database Optimization • Cloud Infrastructure</p>
                    </div>
                    <div class="profile-card">
                        <h3>Interests</h3>
                        <p>Cybersecurity | FPS Games | Custom PC Builds | CTF Competitions | Open Source Intelligence</p>
                    </div>
                </div>
            </div>
        </section>

        <!-- TECH STACK -->
        <section id="stack" class="section">
            <div class="section-content">
                <h2 class="section-title">_arsenal.cfg</h2>
                <div class="tech-grid">
                    <div class="tech-category">
                        <h3>Languages</h3>
                        <div class="tech-tags">
                            <span class="tag">Python</span>
                            <span class="tag">Go</span>
                            <span class="tag">Rust</span>
                            <span class="tag">Node.js</span>
                            <span class="tag">C++</span>
                        </div>
                    </div>
                    <div class="tech-category">
                        <h3>Infrastructure</h3>
                        <div class="tech-tags">
                            <span class="tag">Docker</span>
                            <span class="tag">Kubernetes</span>
                            <span class="tag">AWS</span>
                            <span class="tag">PostgreSQL</span>
                            <span class="tag">Redis</span>
                            <span class="tag">Kafka</span>
                        </div>
                    </div>
                    <div class="tech-category">
                        <h3>Tools</h3>
                        <div class="tech-tags">
                            <span class="tag">Git</span>
                            <span class="tag">Nginx</span>
                            <span class="tag">Prometheus</span>
                            <span class="tag">Terraform</span>
                            <span class="tag">Vault</span>
                        </div>
                    </div>
                </div>
            </div>
        </section>

        <!-- PROJECTS -->
        <section id="projects" class="section">
            <div class="section-content">
                <h2 class="section-title">_missions.log</h2>
                <div class="project-list">
                    <div class="project-item">
                        <h3>StealthAuth</h3>
                        <p>Zero-trust authentication system with behavioral biometrics. 50K+ ops/sec.</p>
                        <div class="project-tech">Go • Redis • WebAuthn</div>
                    </div>
                    <div class="project-item">
                        <h3>ShadowDB</h3>
                        <p>Encrypted distributed database with automatic sharding and failover.</p>
                        <div class="project-tech">Rust • Tokio • RAFT</div>
                    </div>
                    <div class="project-item">
                        <h3>OverwatchAPI</h3>
                        <p>Real-time game stats aggregation service. Handles 1M concurrent connections.</p>
                        <div class="project-tech">Node.js • WebSockets • Kubernetes</div>
                    </div>
                </div>
            </div>
        </section>

        <!-- CONTACT -->
        <section id="contact" class="section">
            <div class="section-content">
                <h2 class="section-title">_comm.init</h2>
                <div class="terminal-window">
                    <div class="terminal-header">
                        <span class="terminal-title">secure_channel.sh</span>
                    </div>
                    <div class="terminal-body">
                        <div class="terminal-line">
                            <span class="prompt">$</span> echo "Establishing secure connection..."
                        </div>
                        <div class="terminal-line">
                            <span class="prompt">$</span> contact --reveal --encrypted
                        </div>
                        <div class="terminal-line">
                            <span class="output">
                                Email: <a href="mailto:ghost@technical-secret.dev">ghost@technical-secret.dev</a><br>
                                GitHub: <a href="https://github.com/technical-secret" target="_blank">github.com/technical-secret</a><br>
                                Keybase: <a href="https://keybase.io/technical-secret" target="_blank">keybase.io/technical-secret</a>
                            </span>
                        </div>
                    </div>
                </div>
            </div>
        </section>
    </main>

    <!-- AUDIO EASTER EGG -->
    <audio id="ghost-audio" preload="auto">
        <source src="sounds/radio_chatter.mp3" type="audio/mpeg">
    </audio>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/three@0.128.0/examples/js/loaders/GLTFLoader.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/three@0.128.0/examples/js/controls/OrbitControls.js"></script>
    <script src="script.js"></script>
</body>
</html>