6ee5ali commited on
Commit
adcf683
·
verified ·
1 Parent(s): c503d52

The Cybernetic Criminal Computing Corporation presents: XORTRON 3.0, free of charge, unlimited, no login, no signup, no bullshit. Finding yourself in a long queue? Consider donating so we can scale and remain 100% free for all. Im sure even a low-life deadbeat freeloader like yourself can at least throw some spare change right? - Support Xortron @ ko-fi.com/xortron - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +260 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Tekalis
3
- emoji: 🐠
4
- colorFrom: red
5
- colorTo: green
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: tekalis
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: red
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,260 @@
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>XORTRON 3.0 - Cybernetic Criminal Computing Corporation</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=Share+Tech+Mono&display=swap');
11
+
12
+ body {
13
+ font-family: 'Share Tech Mono', monospace;
14
+ background-color: #0a0a1a;
15
+ color: #00ff9d;
16
+ overflow-x: hidden;
17
+ }
18
+
19
+ .cyber-border {
20
+ position: relative;
21
+ }
22
+
23
+ .cyber-border::before {
24
+ content: '';
25
+ position: absolute;
26
+ top: -2px;
27
+ left: -2px;
28
+ right: -2px;
29
+ bottom: -2px;
30
+ background: linear-gradient(45deg, #00ff9d, #001aff, #ff00f2);
31
+ z-index: -1;
32
+ border-radius: inherit;
33
+ animation: borderAnimation 4s linear infinite;
34
+ }
35
+
36
+ @keyframes borderAnimation {
37
+ 0% { filter: blur(5px); opacity: 0.7; }
38
+ 50% { filter: blur(3px); opacity: 1; }
39
+ 100% { filter: blur(5px); opacity: 0.7; }
40
+ }
41
+
42
+ .matrix-bg {
43
+ position: fixed;
44
+ top: 0;
45
+ left: 0;
46
+ width: 100%;
47
+ height: 100%;
48
+ z-index: -2;
49
+ opacity: 0.1;
50
+ pointer-events: none;
51
+ }
52
+
53
+ .typing-cursor {
54
+ animation: blink 1s infinite;
55
+ }
56
+
57
+ @keyframes blink {
58
+ 0%, 100% { opacity: 1; }
59
+ 50% { opacity: 0; }
60
+ }
61
+
62
+ .progress-bar {
63
+ height: 6px;
64
+ background: linear-gradient(90deg, #00ff9d, #001aff);
65
+ animation: progress 2s ease-in-out infinite;
66
+ }
67
+
68
+ @keyframes progress {
69
+ 0% { width: 0%; }
70
+ 50% { width: 100%; }
71
+ 100% { width: 0%; }
72
+ }
73
+ </style>
74
+ </head>
75
+ <body>
76
+ <canvas id="matrixCanvas" class="matrix-bg"></canvas>
77
+
78
+ <div class="container mx-auto px-4 py-8 max-w-4xl">
79
+ <!-- Header -->
80
+ <header class="cyber-border rounded-lg p-4 mb-8">
81
+ <div class="bg-gray-900 rounded-lg p-6">
82
+ <div class="flex flex-col md:flex-row justify-between items-center">
83
+ <div class="flex items-center mb-4 md:mb-0">
84
+ <i class="fas fa-skull text-3xl text-purple-500 mr-3"></i>
85
+ <h1 class="text-2xl md:text-3xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-green-400 via-blue-500 to-purple-600">
86
+ XORTRON 3.0
87
+ </h1>
88
+ </div>
89
+ <div class="flex items-center space-x-4">
90
+ <span class="text-sm bg-black px-3 py-1 rounded-full border border-purple-500">FREE</span>
91
+ <span class="text-sm bg-black px-3 py-1 rounded-full border border-blue-500">NO LOGIN</span>
92
+ <span class="text-sm bg-black px-3 py-1 rounded-full border border-green-500">UNLIMITED</span>
93
+ </div>
94
+ </div>
95
+ <p class="mt-4 text-gray-400">
96
+ Presented by the <span class="text-yellow-400">Cybernetic Criminal Computing Corporation</span>
97
+ </p>
98
+ </div>
99
+ </header>
100
+
101
+ <!-- Main Content -->
102
+ <main class="cyber-border rounded-lg p-4 mb-8">
103
+ <div class="bg-gray-900 rounded-lg p-6">
104
+ <div class="mb-6">
105
+ <h2 class="text-xl font-bold mb-4 text-blue-400">CRIMINAL COMPUTE INTERFACE</h2>
106
+ <div class="bg-black p-4 rounded-lg border border-gray-800">
107
+ <div class="flex justify-between items-center mb-2">
108
+ <div class="flex space-x-2">
109
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
110
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
111
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
112
+ </div>
113
+ <div class="text-xs text-gray-500">TERMINAL_ACCESS_ACTIVE</div>
114
+ </div>
115
+ <div class="h-64 overflow-y-auto font-mono text-sm mb-2 p-2 bg-gray-800 rounded border border-gray-700">
116
+ <p class="text-green-400">> XORTRON_INITIALIZING...</p>
117
+ <p class="text-green-400">> SYSTEM_CHECK_COMPLETE</p>
118
+ <p class="text-green-400">> CRYPTO_MINING_MODULE_DISABLED</p>
119
+ <p class="text-green-400">> USER_TRACKING_DISABLED</p>
120
+ <p class="text-blue-400">> WELCOME_ANON_USER_#<?php echo rand(10000,99999); ?></p>
121
+ <p class="text-white">> READY_FOR_INPUT<span class="typing-cursor">_</span></p>
122
+ </div>
123
+ <div class="flex">
124
+ <input type="text" class="flex-grow bg-black text-green-400 border border-gray-700 px-3 py-2 rounded-l focus:outline-none focus:border-blue-500" placeholder="ENTER_COMMAND_HERE">
125
+ <button class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-r">
126
+ <i class="fas fa-terminal"></i> EXECUTE
127
+ </button>
128
+ </div>
129
+ </div>
130
+ </div>
131
+
132
+ <div class="mb-6">
133
+ <h2 class="text-xl font-bold mb-4 text-purple-400">QUEUE STATUS</h2>
134
+ <div class="bg-black p-4 rounded-lg border border-gray-800">
135
+ <div class="flex justify-between mb-2">
136
+ <span class="text-sm text-gray-400">POSITION IN QUEUE:</span>
137
+ <span class="text-yellow-400">#<?php echo rand(50,250); ?></span>
138
+ </div>
139
+ <div class="h-2 bg-gray-800 rounded-full mb-2">
140
+ <div class="progress-bar rounded-full"></div>
141
+ </div>
142
+ <div class="text-xs text-gray-400 text-center">ESTIMATED WAIT TIME: ~<?php echo rand(1,15); ?> MINUTES</div>
143
+ </div>
144
+ </div>
145
+
146
+ <div class="mb-6">
147
+ <h2 class="text-xl font-bold mb-4 text-red-400">DONATION PLEA</h2>
148
+ <div class="bg-black p-4 rounded-lg border border-gray-800">
149
+ <div class="flex flex-col md:flex-row md:items-center">
150
+ <div class="flex-grow mb-4 md:mb-0">
151
+ <p class="text-gray-300 mb-2">Finding yourself in a long queue? Consider donating so we can scale and remain 100% free for all.</p>
152
+ <p class="text-yellow-400 font-bold">"I'm sure even a low-life deadbeat freeloader like yourself can at least throw some spare change right?"</p>
153
+ </div>
154
+ <div class="flex-shrink-0">
155
+ <a href="https://ko-fi.com/xortron" target="_blank" class="inline-block bg-gradient-to-r from-purple-600 to-blue-500 text-white px-6 py-3 rounded-lg hover:from-purple-700 hover:to-blue-600 transition-all">
156
+ <i class="fas fa-heart mr-2"></i> Support Xortron
157
+ </a>
158
+ </div>
159
+ </div>
160
+ </div>
161
+ </div>
162
+ </div>
163
+ </main>
164
+
165
+ <!-- Footer -->
166
+ <footer class="text-center text-gray-500 text-sm">
167
+ <p>Cybernetic Criminal Computing Corporation © <?php echo date('Y'); ?></p>
168
+ <p class="mt-1">"We steal from the rich and give to nobody."</p>
169
+ <div class="flex justify-center space-x-4 mt-4">
170
+ <a href="#" class="text-gray-400 hover:text-blue-400"><i class="fab fa-github"></i></a>
171
+ <a href="#" class="text-gray-400 hover:text-red-400"><i class="fab fa-twitter"></i></a>
172
+ <a href="https://ko-fi.com/xortron" target="_blank" class="text-gray-400 hover:text-yellow-400"><i class="fas fa-coffee"></i></a>
173
+ </div>
174
+ </footer>
175
+ </div>
176
+
177
+ <script>
178
+ // Matrix background effect
179
+ const canvas = document.getElementById('matrixCanvas');
180
+ const ctx = canvas.getContext('2d');
181
+
182
+ canvas.width = window.innerWidth;
183
+ canvas.height = window.innerHeight;
184
+
185
+ const katakana = 'アァカサタナハマヤャラワガザダバパイィキシチニヒミリヰギジヂビピウゥクスツヌフムユュルグズブヅプエェケセテネヘメレヱゲゼデベペオォコソトノホモヨョロヲゴゾドボポヴッン';
186
+ const latin = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
187
+ const nums = '0123456789';
188
+ const symbols = '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~';
189
+
190
+ const alphabet = katakana + latin + nums + symbols;
191
+
192
+ const fontSize = 16;
193
+ const columns = canvas.width / fontSize;
194
+
195
+ const rainDrops = [];
196
+
197
+ for (let x = 0; x < columns; x++) {
198
+ rainDrops[x] = 1;
199
+ }
200
+
201
+ const draw = () => {
202
+ ctx.fillStyle = 'rgba(0, 0, 0, 0.05)';
203
+ ctx.fillRect(0, 0, canvas.width, canvas.height);
204
+
205
+ ctx.fillStyle = '#00FF9D';
206
+ ctx.font = fontSize + 'px monospace';
207
+
208
+ for (let i = 0; i < rainDrops.length; i++) {
209
+ const text = alphabet.charAt(Math.floor(Math.random() * alphabet.length));
210
+ ctx.fillText(text, i * fontSize, rainDrops[i] * fontSize);
211
+
212
+ if (rainDrops[i] * fontSize > canvas.height && Math.random() > 0.975) {
213
+ rainDrops[i] = 0;
214
+ }
215
+ rainDrops[i]++;
216
+ }
217
+ };
218
+
219
+ setInterval(draw, 30);
220
+
221
+ window.addEventListener('resize', () => {
222
+ canvas.width = window.innerWidth;
223
+ canvas.height = window.innerHeight;
224
+ });
225
+
226
+ // Simulate typing effect
227
+ const terminal = document.querySelector('.font-mono');
228
+ const messages = [
229
+ "> SCANNING_NETWORK...",
230
+ "> BYPASSING_SECURITY_PROTOCOLS...",
231
+ "> ENCRYPTION_KEYS_GENERATED",
232
+ "> ANONYMOUS_PROXY_ESTABLISHED",
233
+ "> READY_FOR_ILLICIT_ACTIVITIES"
234
+ ];
235
+
236
+ let currentMessage = 0;
237
+
238
+ function typeNextMessage() {
239
+ if (currentMessage < messages.length) {
240
+ const p = document.createElement('p');
241
+ p.className = "text-green-400";
242
+ terminal.appendChild(p);
243
+
244
+ let i = 0;
245
+ const typing = setInterval(() => {
246
+ p.textContent = messages[currentMessage].substring(0, i);
247
+ i++;
248
+ if (i > messages[currentMessage].length) {
249
+ clearInterval(typing);
250
+ currentMessage++;
251
+ setTimeout(typeNextMessage, 1000);
252
+ }
253
+ }, 50);
254
+ }
255
+ }
256
+
257
+ setTimeout(typeNextMessage, 2000);
258
+ </script>
259
+ <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=6ee5ali/tekalis" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
260
+ </html>