From 9d474f04c9f47625539e6556211ece184b800196 Mon Sep 17 00:00:00 2001 From: "Glitch (unbeeportfolio)" Date: Sun, 20 Nov 2022 16:33:37 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=BF=F0=9F=A4=9A=20Updated=20with=20Gli?= =?UTF-8?q?tch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eeeREADME.md | 1 - index.css | 48 +++++++++++++++++++++++ index.html | 15 +++++++ index.js | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++ unbee.txt | 14 +++++++ 5 files changed, 186 insertions(+), 1 deletion(-) delete mode 100644 eeeREADME.md create mode 100644 index.css create mode 100644 index.html create mode 100644 index.js create mode 100644 unbee.txt diff --git a/eeeREADME.md b/eeeREADME.md deleted file mode 100644 index 5e1c9b1..0000000 --- a/eeeREADME.md +++ /dev/null @@ -1 +0,0 @@ -# ewewweww diff --git a/index.css b/index.css new file mode 100644 index 0000000..e7634c9 --- /dev/null +++ b/index.css @@ -0,0 +1,48 @@ +:root { + background-color: 1606F0n !important; +} + +body { + background-color: rgb(22, 6, 240) +} + +#console { + font-family: courier, monospace; + color: rgb(226, 0, 0); + width:750px; + margin-left:auto; + margin-right:auto; + margin-top:100px; + font-size:13px; +} + +a { + color: rgba(240, 162, 19, 0.761); + text-decoration: none; +} + +#a { + color: #0f0; +} + +#c { + color: #0bc; +} + +#b { + color: #ff0096; +} + +#k { + animation: change 2s; +} + +#op{ + color: #888888 +} + +@keyframes change { + 0% { color: #0f0; } + 50% { color: #0f0; } + 99% { color: black; } +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..234872f --- /dev/null +++ b/index.html @@ -0,0 +1,15 @@ + + + + UNBEE Portfolio + + + + + +
+ + + + diff --git a/index.js b/index.js new file mode 100644 index 0000000..a035862 --- /dev/null +++ b/index.js @@ -0,0 +1,109 @@ +var Typer = { + text: '', + accessCountimer: null, + index: 0, + speed: 2, + file: '', + accessCount: 0, + deniedCount: 0, + init: function () { + accessCountimer = setInterval(function () { + Typer.updLstChr(); + }, 500); + $.get(Typer.file, function (data) { + Typer.text = data; + Typer.text = Typer.text.slice(0, Typer.text.length - 1); + }); + }, + + content: function () { + return $('#console').html(); + }, + + write: function (str) { + $('#console').append(str); + return false; + }, + + addText: function (key) { + if (key.keyCode == 18) { + Typer.accessCount++; + + if (Typer.accessCount >= 3) { + Typer.makeAccess(); + } + } else if (key.keyCode == 20) { + Typer.deniedCount++; + + if (Typer.deniedCount >= 3) { + Typer.makeDenied(); + } + } else if (key.keyCode == 27) { + Typer.hidepop(); + } else if (Typer.text) { + var cont = Typer.content(); + if (cont.substring(cont.length - 1, cont.length) == '|') + $('#console').html( + $('#console') + .html() + .substring(0, cont.length - 1), + ); + if (key.keyCode != 8) { + Typer.index += Typer.speed; + } else { + if (Typer.index > 0) Typer.index -= Typer.speed; + } + var text = Typer.text.substring(0, Typer.index); + var rtn = new RegExp('\n', 'g'); + + $('#console').html(text.replace(rtn, '
')); + window.scrollBy(0, 50); + } + + if (key.preventDefault && key.keyCode != 122) { + key.preventDefault(); + } + + if (key.keyCode != 122) { + // otherway prevent keys default behavior + key.returnValue = false; + } + }, + + updLstChr: function () { + var cont = this.content(); + + if (cont.substring(cont.length - 1, cont.length) == '|') + $('#console').html( + $('#console') + .html() + .substring(0, cont.length - 1), + ); + else this.write('|'); // else write it + }, +}; + +function replaceUrls(text) { + var http = text.indexOf('http://'); + var space = text.indexOf('.me ', http); + + if (space != -1) { + var url = text.slice(http, space - 1); + return text.replace(url, '' + url + ''); + } else { + return text; + } +} + +Typer.speed = 3; +Typer.file = 'unbee.txt'; +Typer.init(); + +var timer = setInterval('t();', 30); +function t() { + Typer.addText({ keyCode: 123748 }); + + if (Typer.index > Typer.text.length) { + clearInterval(timer); + } +} diff --git a/unbee.txt b/unbee.txt new file mode 100644 index 0000000..75d1a2f --- /dev/null +++ b/unbee.txt @@ -0,0 +1,14 @@ +portfolio@UNBEE:~$ cd unbee/About_Me +portfolio@UNBEE:~$ cat unbee.txt

+Hey There! Im "UNBEE.". + +Welcome to my Portfolio page

you want to see some of my work check out my Github but first something about me

+

-Im 20 Years old

+

-I code since im 15!

+

-I have the websites Crypto_Stonnies and Juicyprint

+

Im a professional Web Developer making websites with HTML5, CSS, JS .

+

I also make Websites with Wordpress.

+

I also do a bit of python here and there but im still learning it aswell with Java and C#

+

You can give links to other professional profiles you have on Internet, here:
Github
Twitter.

+You can also give your email ID for contacting you, feel free to send me an email at Email. +

Thanks for viewing!

\ No newline at end of file