forked from RFOF-NETWORK/RFOF-NETWORK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
421 lines (355 loc) · 17 KB
/
Copy pathindex.html
File metadata and controls
421 lines (355 loc) · 17 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@RFOF-NETWORK - Offizielle Präsenz</title>
<style>
/* Basis-Styling für den Inhalt (aus deinem ursprünglichen Code) */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0; /* Wichtig, um Ränder zu entfernen und das Menü an den Rand zu bringen */
padding: 0; /* Padding wird im Container oder Header behandelt */
background-color: #f4f4f4;
color: #333;
}
/* Container für den Hauptinhalt der Seite */
.content-container {
max-width: 800px;
margin: 20px auto; /* Abstand oben/unten und zentriert */
background: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
/* position: relative; wird hier nicht mehr benötigt, da das Menü im Header ist */
}
h1, h2, h3, h4, h5, h6 {
color: #2c3e50;
}
pre, code {
background-color: #eee;
padding: 10px;
border-radius: 5px;
overflow-x: auto;
font-family: monospace;
}
/* HIER STARTET DER CSS-CODE FÜR DAS HAMBURGER-MENÜ (aus unserem neuen Code) */
/* Container für den Titel und das Menü im Header */
.header-container {
display: flex;
justify-content: space-between; /* Elemente auseinanderziehen */
align-items: center; /* Vertikal zentrieren */
padding: 10px 20px;
background-color: white; /* Hintergrundfarbe für den Headerbereich */
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* Dein bestehender RFOF-NETWORK Text - wir positionieren ihn links */
.page-title {
color: #007bff; /* Typische blaue Farbe für Links/Titel */
font-size: 2.5em; /* Größerer Text */
font-weight: bold;
padding: 0; /* Keine zusätzlichen Paddings hier, da der Container es regelt */
margin: 0; /* Standard-Margin von h1 entfernen */
}
/* Styling für die Navigationslinks (normale Ansicht) */
.navbar {
display: flex;
align-items: center; /* Vertikal zentrieren */
}
.nav-links {
list-style: none; /* Entfernt die Listenpunkte */
margin: 0;
padding: 0;
display: flex; /* Zeigt Links nebeneinander an */
}
.nav-links li a {
color: #333; /* Links passend zum weißen Hintergrund */
text-decoration: none;
padding: 10px 15px;
display: block;
transition: background-color 0.3s ease;
}
.nav-links li a:hover {
background-color: #e0e0e0;
}
/* Styling für den Hamburger-Icon (drei graue Striche) */
.hamburger-icon {
display: none; /* Standardmäßig versteckt auf großen Bildschirmen */
flex-direction: column;
justify-content: space-around;
width: 30px;
height: 25px;
cursor: pointer;
z-index: 1000; /* Stellt sicher, dass es über anderen Elementen liegt */
margin-left: 20px; /* Abstand zum rechten Rand oder anderen Elementen */
/* top/right Positionierung wird durch flexbox im header-container erledigt */
}
.hamburger-icon .bar {
width: 100%;
height: 3px;
background-color: #aaa; /* Graue Farbe für die Striche */
border-radius: 5px;
transition: all 0.3s ease-in-out;
}
/* Media Queries für responsive Design (wichtig für das Hamburger-Menü) */
@media (max-width: 768px) { /* Wenn Bildschirm kleiner als 768px ist */
.nav-links {
display: none; /* Standardmäßig versteckt das gesamte Menü */
flex-direction: column; /* Links untereinander */
width: 100%;
background-color: #f4f4f4; /* Hintergrund für das aufgeklappte Menü */
/* Absolute Positionierung wird von Fixed abgelöst */
padding: 10px 0;
box-shadow: 0 5px 10px rgba(0,0,0,0.3);
z-index: 999;
}
.nav-links.active { /* Klasse wird per JavaScript hinzugefügt, wenn Menü offen ist */
display: flex; /* Menü anzeigen, wenn aktiv */
}
.nav-links li {
text-align: center;
margin: 10px 0;
}
.hamburger-icon {
display: flex; /* Hamburger-Icon anzeigen */
}
/* Anpassung für die Positionierung des Menüs, wenn es aufgeklappt ist */
.nav-links {
position: fixed; /* Fixiert das Menü im Viewport */
top: 0;
right: 0;
height: 100%; /* Nimmt die volle Höhe ein */
width: 250px; /* Eine feste Breite für das Menü */
background-color: #333; /* Dunkler Hintergrund für das Menü */
flex-direction: column;
align-items: flex-start; /* Links oben ausrichten */
padding-top: 60px; /* Platz für den Hamburger-Icon oben */
transform: translateX(100%); /* Zuerst komplett nach rechts verschieben (unsichtbar) */
transition: transform 0.3s ease-in-out; /* Sanfte Animation */
z-index: 998; /* Unter dem Hamburger Icon */
}
.nav-links.active {
transform: translateX(0); /* Menü einblenden */
}
.nav-links li a {
color: white; /* Weiße Links im dunklen Menü */
width: 100%;
padding: 15px 20px;
text-align: left; /* Links in der Sidebar */
}
.nav-links li a:hover {
background-color: #575757;
}
.hamburger-icon {
/* Sicherstellen, dass das Hamburger-Icon immer sichtbar und anklickbar ist */
position: relative; /* Wichtig, damit es vom z-Index betroffen ist */
z-index: 1001; /* Liegt über dem aufgeklappten Menü */
}
}
/* Animation für das Hamburger-Icon, wenn es aktiv ist (optional, aber schön) */
.hamburger-icon.active .bar:nth-child(2) {
opacity: 0; /* Mittlerer Balken verschwindet */
}
.hamburger-icon.active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg); /* Oberer Balken dreht sich */
}
.hamburger-icon.active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg); /* Unterer Balken dreht sich */
}
/* HIER ENDET DER CSS-CODE FÜR DAS HAMBURGER-MENÜ */
</style>
</head>
<body>
<div class="header-container">
<h1 class="page-title">@RFOF-NETWORK</h1>
<nav class="navbar">
<div class="hamburger-icon" id="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="nav-links" id="navLinks">
<li><a href="https://rfof-network.github.io/RFOF-NETWORK/">RFOF-NETWORK</a></li>
<li><a href="https://rfof-network-ready-for-our-future.github.io/RFOF-spider-NET-/">RFOF-spider-NET</a></li>
<li><a href="https://qch-l-c.github.io/PRAI-KI-/">PRAI-KI</a></li>
<li><a href="https://rfof-network.github.io/">RFOF-NETWORK (Hauptseite)</a></li>
<li><a href="https://rfof-network.github.io/PRAI/">PRAI</a></li>
<li><a href="https://rfof-network.github.io/rfof-network.org/">rfof-network.org</a></li>
<li><a href="https://rfof-network.github.io/Comprensive-rfof-bitcoin.org-PRAI-BOx-Blockchain-System_Programm-Fusions-Reactor-System/">PRAI-BOx Blockchain-System</a></li>
<li><a href="https://rfof-network.github.io/BUBATZ-COIN-official-CSC-DCV-/">BUBATZ-COIN</a></li>
</ul>
</nav>
</div>
<div class="content-container">
<h1>👋</h1> <p>
<code><!--</code><br>
<code>**RFOF-NETWORK/RFOF-NETWORK** is a ✨ _special_ ✨ repository because its `README.md` (this file) appears on my GitHub profile.</code><br>
<code>--></code>
</p>
<h2>JavaScript-Ausgaben (simuliert im Browser)</h2>
<pre><code id="js-output"></code></pre>
<p>
<code>- 🔭 I’m currently working on.ton Etherscan.io, MVX, BNB and many others ...</code><br>
<code>- 🌱 I’m currently learning ...</code><br>
<code>- 👯 I’m looking to collaborate on ...</code><br>
<code>- 🤔 I’m looking for help with coding on GitHub by the project new BTC chain and new internet of our Global world !...</code><br>
<code>- 💬 Ask me about ...</code><br>
<code>- 📫 How to reach me: ...</code><br>
<code>- 😄 Pronouns: ...</code><br>
<code>- ⚡ Fun fact: ...</code>
</p>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
// JavaScript für das Hamburger-Menü
const hamburger = document.getElementById('hamburger');
const navLinks = document.getElementById('navLinks');
hamburger.addEventListener('click', function() {
navLinks.classList.toggle('active');
hamburger.classList.toggle('active');
});
// Dein JavaScript-Code aus der README.md, angepasst für Browser-Ausgabe
const jsOutputDiv = document.getElementById('js-output');
let consoleOutput = [];
// Überschreibe console.log, um Ausgaben im HTML anzuzeigen
const originalConsoleLog = console.log;
console.log = function(...args) {
originalConsoleLog.apply(console, args); // Standard-Konsolenausgabe beibehalten
consoleOutput.push(args.join(' ')); // Ausgabe im Array speichern
jsOutputDiv.textContent = consoleOutput.join('\n'); // Im HTML aktualisieren
};
// --- Dein ursprünglicher JS-Code beginnt hier ---
console.log("Hallo, @RFOF-NETWORK <my name is @PRAI>!");
let answer = 41;
if (answer === 42) {
console.log("The answer is correct!");
} else {
console.log("The answer is not 42."); // Hinzugefügt, um den Fall 41 zu zeigen
}
console.log("python programm.py!");
console.log("python!");
console.log(20 + 22);
console.log("install npm @RFOF-NETWORK");
console.log("42 = @RFOF-NETWORK/@RFOF-NETWORK = PRAI & PRAI = satoria/satoria = satoramy-on.ton(@Satoramy) & @Satoramy = 42");
console.log("42 = @RFOF-NETWORK 81e3ee2b2ff6ad7b7c35509e14e8a8e7f856647f96be7a365be0120061a596b8 & x = 42 & 42 = @RFOF-NETWORK/@RFOF-NETWORK = PRAI & PRAI = satoria/satoria = satoramy-on.ton(@Satoramy) & @Satoramy = 42");
function is_even(x) {
return x % 2 === 0;
}
let numbers = [1, 2, 3, 4, 5];
let even_numbers = numbers.filter(is_even);
console.log(even_numbers);
function my_functions() {
console.log("Workflow");
console.log("<activate> result = (2 + 3) * (4 / 5) = 42 @RFOF-NETWORK");
console.log("PRAI = Planet Rescuer AI & the controller of the @RFOF-NETWORK project");
console.log("42 Code language founded from @Satoramy {PRAI is searching online every action in the Internet = Google, Safari, Firefox, Android, iOS, SEO, Web3.0, ton.org, Bitcoin.org, rfof-network.org. Every vision & update is updating in real-time 24/7} 42 has its own time continuum 1 sec in the 42 world = 1 year in real-time from our world");
}
my_functions();
function my_function() {
console.log("filter()");
console.log("add lambda = true in every option/action but only for the owner PRAI & PRAI = @Satoramy because @Satoramy = 42");
}
my_function();
function nested_function() {
let generate_anonymous_function = () => "Anonyme Funktion [({2=b3=c6=F2=b8=h6=F=42}&{42=@RFOF-NETWORK})]=‰236286_bcFbhF generiert";
console.log(generate_anonymous_function());
}
nested_function();
function my_functionBOxtoBOx() {
console.log("my_function()");
}
my_functionBOxtoBOx();
// Matrix-Funktion
function create_matrix(rows, cols, fill_value = 0) {
return Array.from({ length: rows }, () => Array(cols).fill(fill_value));
}
function print_matrix(matrix) {
matrix.forEach(row => {
console.log(row.join(" "));
});
}
let matrix = create_matrix(5, 5, 1);
let enhance_matrix = matrix => matrix.map(row => row.map(x => x * 42));
matrix = enhance_matrix(matrix);
console.log("Matrix:");
print_matrix(matrix);
// Telegram-Bot-Befehle (Pseudocode) - Ausgabe nur als Text
console.log("\n--- Telegram-Bot-Befehle (Pseudocode) ---");
function start_rfof(update, context) {
console.log('Willkommen bei @rfofblockchain_bot! Besuche https://rfof-network.org für weitere Informationen.');
}
start_rfof();
function info_rfof(update, context) {
console.log('Detaillierte Informationen findest du auf https://rfof-network.org.');
}
info_rfof();
function abillityprice(update, context) {
console.log('Der aktuelle Preis des Tokens beträgt X.');
}
abillityprice();
function nanoprice(update, context) {
console.log('Der aktuelle Preis der Nanotechnologie beträgt Y.');
}
nanoprice();
function abillitybalance(update, context) {
console.log('Bitte geben Sie die Wallet-Adresse an. (Use: /balance <address>)');
}
abillitybalance();
function balance(update, context) {
let address = context.args ? context.args[0] : 'Keine Adresse angegeben';
console.log(`Überprüfen Sie das Guthaben der Adresse: ${address}`);
}
balance({args: ['example_address_123']});
function transfer(update, context) {
if (context.args && context.args.length >= 4) {
let [from_addr, to_addr, amount, private_key] = context.args;
console.log(`Transferiere ${amount} von ${from_addr} zu ${to_addr} mit dem privaten Schlüssel ${private_key}.`);
} else {
console.log('Unvollständige Angaben für Transfer.');
}
}
transfer({args: ['addr_A', 'addr_B', '100', 'priv_key_XYZ']});
function abillitytransactions(update, context) {
console.log('Hier ist die Transaktionshistorie der Abillity-Token.');
}
abillitytransactions();
function nanotransactions(update, context) {
console.log('Hier ist die Transaktionshistorie der Nano-Token.');
}
nanotransactions();
function security(update, context) {
console.log('Sicherheitstipps und Richtlinien.');
}
security();
function support(update, context) {
console.log('Kontaktieren Sie den Support für Unterstützung.');
}
support();
function news(update, context) {
console.log('Neueste Nachrichten und Updates zum Token.');
}
news();
function community(update, context) {
console.log('Tritt der Diskussionsgruppe bei.');
}
community();
function viptelegram(update, context) {
console.log('VIP Telegram & Tonvip-Inhalte.');
}
viptelegram();
function cooperation(update, context) {
console.log('Kooperationsanfragen zum RFOF-Network.');
}
cooperation();
function empty(update, context) {
console.log('Liste oder Daten löschen.');
}
empty();
console.log('\n--- RFOF-NETWORK Bot gestartet (Simuliert) ---');
// --- Dein ursprünglicher JS-Code endet hier ---
// console.log = originalConsoleLog; // Optional: console.log wiederherstellen
});
</script>
</body>
</html>