Onekee commited on
Commit
980d605
·
verified ·
1 Parent(s): a4a9702

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +236 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Dqc
3
- emoji: 📚
4
- colorFrom: indigo
5
  colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: dqc
3
+ emoji: 🐳
4
+ colorFrom: red
5
  colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,236 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Digital Clone Generator</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Orbitron', sans-serif;
14
+ background-color: #0f0f17;
15
+ overflow: hidden;
16
+ }
17
+
18
+ .glow {
19
+ text-shadow: 0 0 10px #00ffaa, 0 0 20px #00ffaa;
20
+ }
21
+
22
+ .scanline {
23
+ position: absolute;
24
+ top: 0;
25
+ left: 0;
26
+ width: 100%;
27
+ height: 100%;
28
+ background: linear-gradient(to bottom,
29
+ rgba(0, 255, 170, 0.03) 0%,
30
+ rgba(0, 255, 170, 0.1) 50%,
31
+ rgba(0, 255, 170, 0.03) 100%);
32
+ background-size: 100% 8px;
33
+ pointer-events: none;
34
+ animation: scan 4s linear infinite;
35
+ }
36
+
37
+ @keyframes scan {
38
+ 0% { transform: translateY(-100%); }
39
+ 100% { transform: translateY(100%); }
40
+ }
41
+
42
+ .terminal {
43
+ border: 1px solid #00ffaa;
44
+ box-shadow: 0 0 20px rgba(0, 255, 170, 0.5);
45
+ }
46
+
47
+ .blink {
48
+ animation: blink 1s step-end infinite;
49
+ }
50
+
51
+ @keyframes blink {
52
+ from, to { opacity: 1; }
53
+ 50% { opacity: 0; }
54
+ }
55
+
56
+ .pixel-grid {
57
+ position: absolute;
58
+ top: 0;
59
+ left: 0;
60
+ width: 100%;
61
+ height: 100%;
62
+ background-image:
63
+ linear-gradient(rgba(0, 255, 170, 0.1) 1px, transparent 1px),
64
+ linear-gradient(90deg, rgba(0, 255, 170, 0.1) 1px, transparent 1px);
65
+ background-size: 20px 20px;
66
+ pointer-events: none;
67
+ }
68
+
69
+ .progress-bar {
70
+ transition: width 0.3s ease-out;
71
+ }
72
+
73
+ .status-message {
74
+ height: 1.5rem;
75
+ overflow: hidden;
76
+ }
77
+ </style>
78
+ </head>
79
+ <body class="flex items-center justify-center min-h-screen text-green-400">
80
+ <div class="pixel-grid"></div>
81
+ <div class="scanline"></div>
82
+
83
+ <div class="terminal relative bg-black bg-opacity-90 p-8 rounded-lg max-w-2xl w-full">
84
+ <div class="flex items-center mb-6">
85
+ <div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
86
+ <div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
87
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
88
+ <div class="ml-4 text-sm opacity-70">DIGITAL_CLONE_GENERATOR.exe</div>
89
+ </div>
90
+
91
+ <div class="mb-4 status-message">
92
+ <div class="text-sm opacity-70 mb-2 transition-all duration-300" id="status-line-1">> Initializing neural matrix...</div>
93
+ <div class="text-sm opacity-70 mb-2 transition-all duration-300" id="status-line-2">> Connecting to quantum database...</div>
94
+ <div class="text-sm opacity-70 transition-all duration-300" id="status-line-3">> Loading personality modules...</div>
95
+ </div>
96
+
97
+ <div class="text-2xl md:text-3xl font-bold glow mb-6 h-12 flex items-center" id="loading-text"></div>
98
+
99
+ <div class="flex items-center mb-2">
100
+ <div class="w-full bg-gray-800 rounded-full h-2.5 mr-4">
101
+ <div class="bg-green-500 h-2.5 rounded-full progress-bar" id="progress-bar" style="width: 0%"></div>
102
+ </div>
103
+ <div class="text-sm" id="progress-text">0%</div>
104
+ </div>
105
+
106
+ <div class="text-xs opacity-70 mb-4" id="current-task">Preparing system resources...</div>
107
+
108
+ <div class="absolute bottom-4 right-4 text-xs opacity-50 flex items-center">
109
+ <i class="fas fa-shield-alt mr-1"></i>
110
+ <span>ENCRYPTED CONNECTION</span>
111
+ </div>
112
+ </div>
113
+
114
+ <script>
115
+ // Typing effect for main text
116
+ const text = "GENERATING YOUR DIGITAL CLONE...";
117
+ const loadingElement = document.getElementById('loading-text');
118
+ let index = 0;
119
+ let isDeleting = false;
120
+ let timeout;
121
+
122
+ function typeText() {
123
+ if (index <= text.length && !isDeleting) {
124
+ loadingElement.textContent = text.substring(0, index);
125
+ index++;
126
+ timeout = setTimeout(typeText, 100 + Math.random() * 50);
127
+ } else if (index > 0 && isDeleting) {
128
+ loadingElement.textContent = text.substring(0, index);
129
+ index--;
130
+ timeout = setTimeout(typeText, 30);
131
+ } else {
132
+ isDeleting = !isDeleting;
133
+ if (!isDeleting) index = 0;
134
+ timeout = setTimeout(typeText, isDeleting ? 1000 : 300);
135
+ }
136
+ }
137
+
138
+ // Start the typing effect
139
+ typeText();
140
+
141
+ // Add random glitch effect
142
+ setInterval(() => {
143
+ if (Math.random() > 0.9) {
144
+ loadingElement.classList.add('text-red-400');
145
+ loadingElement.style.transform = 'translateX(' + (Math.random() * 10 - 5) + 'px)';
146
+ setTimeout(() => {
147
+ loadingElement.classList.remove('text-red-400');
148
+ loadingElement.style.transform = '';
149
+ }, 100);
150
+ }
151
+ }, 1000);
152
+
153
+ // Progress bar functionality
154
+ const progressBar = document.getElementById('progress-bar');
155
+ const progressText = document.getElementById('progress-text');
156
+ const currentTask = document.getElementById('current-task');
157
+ const statusLine1 = document.getElementById('status-line-1');
158
+ const statusLine2 = document.getElementById('status-line-2');
159
+ const statusLine3 = document.getElementById('status-line-3');
160
+
161
+ const tasks = [
162
+ "Preparing system resources...",
163
+ "Analyzing biometric data...",
164
+ "Mapping neural pathways...",
165
+ "Synthesizing voice patterns...",
166
+ "Building personality matrix...",
167
+ "Optimizing response algorithms...",
168
+ "Finalizing digital clone...",
169
+ "Verifying integrity checks...",
170
+ "Preparing for deployment..."
171
+ ];
172
+
173
+ const statusMessages = [
174
+ "> Neural synchronization complete",
175
+ "> Quantum connection established",
176
+ "> Personality modules loaded",
177
+ "> Memory banks initialized",
178
+ "> Emotional subroutines active",
179
+ "> Language processors online",
180
+ "> Behavioral patterns analyzed",
181
+ "> Consciousness transfer ready",
182
+ "> Digital clone operational"
183
+ ];
184
+
185
+ let progress = 0;
186
+ let taskIndex = 0;
187
+ let statusIndex = 0;
188
+
189
+ function updateProgress() {
190
+ progress += Math.random() * 5;
191
+ if (progress > 100) progress = 100;
192
+
193
+ progressBar.style.width = progress + '%';
194
+ progressText.textContent = Math.floor(progress) + '%';
195
+
196
+ // Update task every 10% progress
197
+ if (progress % 10 < 1 && progress < 100) {
198
+ taskIndex = (taskIndex + 1) % tasks.length;
199
+ currentTask.textContent = tasks[taskIndex];
200
+
201
+ // Cycle through status messages
202
+ if (statusIndex < statusMessages.length) {
203
+ statusLine1.textContent = statusLine2.textContent;
204
+ statusLine2.textContent = statusLine3.textContent;
205
+ statusLine3.textContent = statusMessages[statusIndex];
206
+ statusIndex++;
207
+ }
208
+ }
209
+
210
+ if (progress >= 100) {
211
+ setTimeout(() => {
212
+ // Reset everything
213
+ progress = 0;
214
+ taskIndex = 0;
215
+ statusIndex = 0;
216
+ progressBar.style.width = '0%';
217
+ progressText.textContent = '0%';
218
+ currentTask.textContent = tasks[0];
219
+ statusLine1.textContent = "> Initializing neural matrix...";
220
+ statusLine2.textContent = "> Connecting to quantum database...";
221
+ statusLine3.textContent = "> Loading personality modules...";
222
+
223
+ // Start again after a brief pause
224
+ setTimeout(updateProgress, 1000);
225
+ }, 1500);
226
+ } else {
227
+ // Random interval for organic feel
228
+ setTimeout(updateProgress, 100 + Math.random() * 200);
229
+ }
230
+ }
231
+
232
+ // Start the progress bar
233
+ setTimeout(updateProgress, 500);
234
+ </script>
235
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Onekee/dqc" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
236
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ make the progress bar progress to 100%, when it reaches 100% reset it.