-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
432 lines (395 loc) · 18.4 KB
/
Copy pathindex.html
File metadata and controls
432 lines (395 loc) · 18.4 KB
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
430
431
432
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SnakeEye Lab | Zero-API Web Apps</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--primary: #667eea;
--secondary: #764ba2;
--accent: #ff6b6b;
--dark: #1a1a2e;
--light: #f8f9fa;
}
html { scroll-behavior: smooth; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
min-height: 100vh;
color: var(--dark);
}
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
/* Header Section */
.header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 60px 20px;
text-align: center;
position: relative;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
margin-bottom: 60px;
border-radius: 20px;
margin-top: 20px;
animation: slideDown 0.8s ease-out;
}
@keyframes slideDown {
from { opacity: 0; transform: translateY(-30px); }
to { opacity: 1; transform: translateY(0); }
}
.header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}
.header h1 {
font-size: 3.5em;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 15px;
font-weight: 900;
letter-spacing: -1px;
animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.theme-tag {
display: inline-block;
background: var(--accent);
color: white;
padding: 8px 20px;
border-radius: 50px;
font-size: 1em;
font-weight: 700;
margin-bottom: 20px;
animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}
.desc {
color: #666;
font-size: 1.15em;
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
font-weight: 500;
}
/* Projects Grid */
.projects-section { padding: 40px 0; }
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 28px;
animation: fadeInUp 1s ease-out 0.3s both;
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.project {
background: white;
border-radius: 16px;
padding: 28px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
border: 2px solid transparent;
position: relative;
overflow: hidden;
}
.project::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.6s ease;
}
.project:hover::before {
left: 100%;
}
.project:hover {
transform: translateY(-15px) scale(1.02);
box-shadow: 0 30px 70px rgba(102, 126, 234, 0.35);
border-color: var(--primary);
}
.emoji {
font-size: 3.5em;
margin-bottom: 15px;
display: inline-block;
transition: transform 0.3s ease;
}
.project:hover .emoji {
transform: scale(1.2) rotate(10deg);
}
.title {
font-size: 1.4em;
font-weight: 800;
color: var(--dark);
margin-bottom: 10px;
}
.text {
color: #666;
font-size: 0.95em;
line-height: 1.6;
margin-bottom: 15px;
}
.tech {
font-size: 0.85em;
color: var(--primary);
font-weight: 700;
margin-bottom: 15px;
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.tech-tag {
background: rgba(102, 126, 234, 0.1);
padding: 4px 10px;
border-radius: 20px;
color: var(--primary);
}
.link {
display: inline-block;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
padding: 12px 24px;
border-radius: 10px;
text-decoration: none;
font-size: 0.95em;
font-weight: 700;
transition: all 0.3s ease;
border: none;
cursor: pointer;
position: relative;
overflow: hidden;
}
.link::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(255, 255, 255, 0.3);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}
.link:hover::after {
width: 300px;
height: 300px;
}
.link:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}
/* Footer */
.footer {
text-align: center;
padding: 40px 20px;
color: white;
font-size: 0.95em;
margin-top: 80px;
}
.footer a {
color: #fff;
text-decoration: underline;
}
@media (max-width: 768px) {
.header h1 { font-size: 2.2em; }
.header { padding: 40px 20px; }
.projects-grid { grid-template-columns: 1fr; gap: 20px; }
.desc { font-size: 1em; }
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<div class="theme-tag">🚀 JAN 2026 | CURRENT MONTH</div> <h1>🐍 SnakeEye Lab</h1>
<div class="desc"><strong>January 2026: Security & Tools</strong><br/>Web Crypto APIs, Encryption, Authentication, Password Management, Secure Practices</div> </div>
<div class="projects-section">
<div class="projects-grid">
<!-- Project Cards -->
<div style="text-align: center; margin: 40px 0 30px 0; padding: 20px; border-top: 3px solid #10b981; border-bottom: 3px solid #10b981;"><h2 style="color: #10b981; font-size: 1.8em; margin: 0; font-weight: 900;">🎯 JANUARY 2026: Security & Tools</h2><p style="color: #666; margin: 8px 0 0 0; font-size: 0.95em;">Web Crypto APIs, Encryption, Authentication & Password Management</p></div>
<!-- JANUARY 2026: SECURITY & TOOLS -->
<div class="project">
<div class="emoji">🔐</div>
<div class="title">Secure Password Manager</div>
<div class="text">Web Crypto API vault with AES-GCM encryption, PBKDF2 key derivation, secure password generation</div>
<div class="tech"><span class="tech-tag">Web Crypto API</span><span class="tech-tag">AES-GCM</span><span class="tech-tag">PBKDF2</span></div>
<a href="./2026-01-security-tools/project-1/index.html" class="link" target="_blank">View Project →</a>
</div>
<div style="text-align: center; margin: 40px 0 30px 0; padding: 20px; border-top: 3px solid #667eea; border-bottom: 3px solid #667eea;">
<!-- FEBRUARY 2026: ZERO-API WEB APPS -->
<h2 style="color: #667eea; font-size: 1.8em; margin: 0; font-weight: 900;">📅 FEBRUARY 2026: Zero-API Web Apps</h2>
</div>
<div class="project">
<div class="emoji">🐍</div>
<div class="title">SnakeEye Lab | Zero-API Portfolio</div>
<div class="text">Interactive project showcase featuring zero-API web applications, pure JavaScript implementations, and production-ready tools</div>
<div class="tech"><span class="tech-tag">Vanilla JS</span><span class="tech-tag">HTML5</span><span class="tech-tag">CSS3</span><span class="tech-tag">Zero Dependencies</span></div>
<a href="https://snakeeye-sudo.github.io/snakeeye-lab/" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">🎯</div>
<div class="title">Threat Modeler · Attack Surface</div>
<div class="text">Interactive canvas to map assets, data flows, and attack paths for comprehensive threat analysis</div>
<div class="tech"><span class="tech-tag">Threat Modeling</span><span class="tech-tag">Attack Graph</span><span class="tech-tag">Canvas</span></div>
<a href="./2026-01-security-tools/project-2/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">🔍</div>
<div class="title">Data Privacy Analyzer</div>
<div class="text">Tool to analyze and classify sensitive data patterns, detect PII (Personally Identifiable Information), and generate privacy reports</div>
<div class="tech"><span class="tech-tag">Regex Patterns</span><span class="tech-tag">PII Detection</span><span class="tech-tag">Data Classification</span></div>
<a href="./2026-01-security-tools/project-3/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">📝</div>
<div style="text-align: center; margin: 40px 0 30px 0; padding: 20px; border-top: 3px solid #667eea; border-bottom: 3px solid #667eea;"><h2 style="color: #667eea; font-size: 1.8em; margin: 0; font-weight: 900;">🔗 DECEMBER 2025: Zero-API Web Apps</h2><p style="color: #666; margin: 8px 0 0 0; font-size: 0.95em;">Pure JavaScript, Local Storage, Production-Ready Apps</p></div>
<div class="title">Smart Notes</div>
<div class="text">Note-taking with rich formatting, local storage persistence, and markdown support</div>
<div class="tech"><span class="tech-tag">Vanilla JS</span><span class="tech-tag">LocalStorage</span></div>
<a href="./2025-12-zero-api-web/smart-notes-app/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">✅</div>
<div class="title">Task Manager</div>
<div class="text">Todo list with categories, priorities, due dates, and persistent storage</div>
<div class="tech"><span class="tech-tag">Vanilla JS</span><span class="tech-tag">CSS Grid</span></div>
<a href="./2025-12-zero-api-web/task-manager/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">💗</div>
<div class="title">HeartSync</div>
<div class="text">UI state management with interactive animations and user preference sync</div>
<div class="tech"><span class="tech-tag">Animations</span><span class="tech-tag">React-like</span></div>
<a href="./2025-12-zero-api-web/heart-sync/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">💰</div>
<div class="title">Expense Tracker</div>
<div class="text">Financial management with analytics, category charts, and persistent storage</div>
<div class="tech"><span class="tech-tag">Charts</span><span class="tech-tag">Analytics</span></div>
<a href="./2025-12-zero-api-web/expense-tracker/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">🎨</div>
<div class="title">Color Picker</div>
<div class="text">Interactive color palette with hex, RGB, HSL converters, and color history</div>
<div class="tech"><span class="tech-tag">Canvas</span><span class="tech-tag">Color Tools</span></div>
<a href="./2025-12-zero-api-web/color-picker/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">🎵</div>
<div class="title">Mood Music Player</div>
<div class="text">Ambient music with mood-based playlists, sound visualization, and volume control</div>
<div class="tech"><span class="tech-tag">Web Audio API</span><span class="tech-tag">Visualization</span></div>
<a href="./2025-12-zero-api-web/mood-music-player/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">🎮</div>
<div class="title">Memory Game</div>
<div class="text">Classic memory matching game with difficulty levels, scoring, and leaderboard</div>
<div class="tech"><span class="tech-tag">CSS Animations</span><span class="tech-tag">Game Logic</span></div>
<a href="./2025-12-zero-api-web/memory-game/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">📊</div>
<div class="title">Habit Tracker</div>
<div class="text">Daily habit tracking with calendar view, streak counting, and progress visualization</div>
<div class="tech"><span class="tech-tag">Calendar</span><span class="tech-tag">Charts</span></div>
<a href="./2025-12-zero-api-web/habit-tracker/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">🌡️</div>
<div class="title">Weather Dashboard</div>
<div class="text">Local weather display with forecasts, climate visualization, and location settings</div>
<div class="tech"><span class="tech-tag">Chart.js</span><span class="tech-tag">Data Viz</span></div>
<a href="./2025-12-zero-api-web/weather-dashboard/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">🎯</div>
<div class="title">Pomodoro Timer</div>
<div class="text">Productivity timer with custom intervals, break notifications, and session statistics</div>
<div class="tech"><span class="tech-tag">Web Notifications</span><span class="tech-tag">Timer</span></div>
<a href="./2025-12-zero-api-web/pomodoro-timer/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">🖼️</div>
<div class="title">Image Gallery</div>
<div class="text">Responsive gallery with lightbox, filters, sorting, and local image upload</div>
<div class="tech"><span class="tech-tag">CSS Grid</span><span class="tech-tag">Lightbox</span></div>
<a href="./2025-12-zero-api-web/image-gallery/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">🔐</div>
<div class="title">Password Generator</div>
<div class="text">Secure password generation with customization, strength checker, copy-to-clipboard</div>
<div class="tech"><span class="tech-tag">Crypto API</span><span class="tech-tag">Security</span></div>
<a href="./2025-12-zero-api-web/password-generator/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">📅</div>
<div class="title">Calendar Planner</div>
<div class="text">Monthly calendar with event scheduling, reminders, and color-coded categories</div>
<div class="tech"><span class="tech-tag">Calendar Logic</span><span class="tech-tag">Events</span></div>
<a href="./2025-12-zero-api-web/calendar-planner/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">🎲</div>
<div class="title">Dice Roller</div>
<div class="text">Tabletop gaming dice roller with history, probability calculator, multiple dice types</div>
<div class="tech"><span class="tech-tag">Math</span><span class="tech-tag">Gaming</span></div>
<a href="./2025-12-zero-api-web/dice-roller/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">📝</div>
<div class="title">Markdown Editor</div>
<div class="text">Real-time markdown editor with live preview, syntax highlighting, and document management</div>
<div class="tech"><span class="tech-tag">Markdown Parser</span><span class="tech-tag">Editor</span></div>
<a href="./2025-12-zero-api-web/markdown-editor/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">⏱️</div>
<div class="title">Stopwatch</div>
<div class="text">Precision stopwatch with lap timing, statistics, and performance analytics</div>
<div class="tech"><span class="tech-tag">Timing API</span><span class="tech-tag">Analytics</span></div>
<a href="./2025-12-zero-api-web/stopwatch/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">🎬</div>
<div class="title">Movie Watchlist</div>
<div class="text">Movie catalog with ratings, reviews, watchlist management, and genre filtering</div>
<div class="tech"><span class="tech-tag">Search Filter</span><span class="tech-tag">CRUD</span></div>
<a href="./2025-12-zero-api-web/movie-watchlist/index.html" class="link" target="_blank">View Project →</a>
</div>
<div class="project">
<div class="emoji">💡</div>
<div class="title">Idea Notebook</div>
<div class="text">Quick idea capture with tagging, search, and organization by categories and timestamps</div>
<div class="tech"><span class="tech-tag">Full-Text Search</span><span class="tech-tag">Tagging</span></div>
<a href="./2025-12-zero-api-web/idea-notebook/index.html" class="link" target="_blank">View Project →</a>
</div>
</div>
</div>
<div class="footer">
<p>✨ <strong>SnakeEye Lab</strong> - 12-Month Journey (Dec 2025 - Dec 2026) | <a href="https://github.com/SnakeEye-sudo/snakeeye-lab" target="_blank">GitHub</a></p> <p style="margin-top: 10px; opacity: 0.8;">Made with ❤️ using Pure JavaScript | All apps work offline with LocalStorage</p>
</div>
</div>
</body>
</html>