"
];
update = [
"
",
"Checking for updates...",
"Downloading update...",
'
==========> 10%',
'
====================> 20%',
'
==============================> 30%',
'
========================================> 40%',
'
==================================================> 50%',
'
============================================================> 60%',
'
======================================================================> 70%',
'
================================================================================> 80%',
'
==========================================================================================> 90%',
'
====================================================================================================> 100%',
"Updating terminal...",
"Finishing installation...",
"Update complete!",
"
"
];
const updateElement = document.getElementById("update");
let i = 0;
const intervalId = setInterval(() => {
if (i >= update.length) {
clearInterval(intervalId);
} else {
updateElement.innerHTML += update[i];
i++;
}
}, 1000);
whoami = [
"
",
"The paradox of “Who am I?” is: we never know, but, we constantly find out.",
"
"
];
social = [
"
",
'discord
discord/adilsadqi' + '',
'instagram
instagram/adilsadqi' + '',
'twitter
twitter/adilsadqi' + '',
'whatsapp
whatsapp/adilsadqi' + "",
'phone
phone/number' + "",
"
"
];
socialjb = [
"
",
'instagram
instagram/jabersadqi' + '',
"
"
];
secret = [
"
",
'
sudo Only use if you\'re admin',
"
"
];
projects = [
"
",
"Still Learning... But here is some projects i did in the past :",
"ROUTER ON RASPBERRY PI, AUTOMATION ON RASPBERRY PI, CUSTOMIZE OS ON VM, SERVER CREATION ON RASPBERRY PI AND VM, BOTS CREATION, WEBSITE CREATION, CLOUD CREATION.",
"
"
];
help = [
"
",
'
whois Who is Adil?',
'
whoami Who are you?',
'
windows Windows Sadqi',
'
social Display social networks',
'
secret Find the password',
'
projects View coding projects',
'
history View command history',
'
help You obviously already know what this does',
'
email Do not email me ;)',
'
clear Clear terminal',
'
banner Display the header',
"
",
];
root = [
"
",
'
update Update terminal',
'
close Close this page',
'
exit Exit from terminal',
'
history View command history',
'
help This is what you need if you get lost',
'
clear Clear terminal',
'
version Check teminal version',
'
sudo Check it out',
'
creator Author and creator of this terminal',
'
sadqi Look for specific name in Sadqi family',
'
weather Check local weather in realtime',
"
",
]
banner = [
'
Adil Sadqi Not A Corporation. No Rights reserved.',
" ",
" █████╗ ██████╗ ██╗██╗ ███████╗ █████╗ ██████╗ ██████╗ ██╗",
" ██╔══██╗██╔══██╗██║██║ ██╔════╝██╔══██╗██╔══██╗██╔═══██╗██║",
" ███████║██║ ██║██║██║ ███████╗███████║██║ ██║██║ ██║██║",
" ██╔══██║██║ ██║██║██║ ╚════██║██╔══██║██║ ██║██║▄▄ ██║██║",
" ██║ ██║██████╔╝██║███████╗ ███████║██║ ██║██████╔╝╚██████╔╝██║",
" ╚═╝ ╚═╝╚═════╝ ╚═╝╚══════╝ ╚══════╝╚═╝ ╚═╝╚═════╝ ╚══▀▀═╝ ╚═╝ ©",
" ",
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
'
Welcome to my interactive web terminal.',
"
For a list of available commands, type 'help' Or type 'windows' For Windows Version. ",
];