From b776085e1ba2e698626c77f36f993e76bbf4a131 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Wed, 17 Aug 2022 16:11:34 +0530 Subject: fixed --- LICENCE | 34 +++++++++++++++++++ README.md | 4 ++- index.html | 17 ++++++++++ script.js | 112 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 45 +++++++++++++++++++++++++ text.txt | 36 ++++++++++++++++++++ 6 files changed, 247 insertions(+), 1 deletion(-) create mode 100644 LICENCE create mode 100644 index.html create mode 100644 script.js create mode 100644 style.css create mode 100644 text.txt diff --git a/LICENCE b/LICENCE new file mode 100644 index 0000000..d80eb47 --- /dev/null +++ b/LICENCE @@ -0,0 +1,34 @@ +MIT/X Consortium License + +© 2014-2020 Hiltjo Posthuma +© 2018 Devin J. Pohly +© 2014-2017 Quentin Rameau +© 2009-2012 Aurélien APTEL +© 2008-2017 Anselm R Garbe +© 2012-2017 Roberto E. Vargas Caballero +© 2012-2016 Christoph Lohmann <20h at r-36 dot net> +© 2013 Eon S. Jeon +© 2013 Alexander Sedov +© 2013 Mark Edgar +© 2013-2014 Eric Pruitt +© 2013 Michael Forney +© 2013-2014 Markus Teich +© 2014-2015 Laslo Hunhold + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md index 651089c..a757d0b 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ -# xgenos-github.io +

+ Tap here +

diff --git a/index.html b/index.html new file mode 100644 index 0000000..403dae4 --- /dev/null +++ b/index.html @@ -0,0 +1,17 @@ + + + + + + + + + + Biswakalyan + + + + +
+ + diff --git a/script.js b/script.js new file mode 100644 index 0000000..caaf9ee --- /dev/null +++ b/script.js @@ -0,0 +1,112 @@ +var Typer={ + text: null, + 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="text.txt"; +Typer.init(); + +var timer = setInterval("t();", 10); +function t() { + Typer.addText({"keyCode": 123748}); + + if (Typer.index > Typer.text.length) { + clearInterval(timer); + } +} + diff --git a/style.css b/style.css new file mode 100644 index 0000000..6849033 --- /dev/null +++ b/style.css @@ -0,0 +1,45 @@ +body { + background-color: #000 + +} + +#console { + font-family: courier, monospace; + color: #fff; + width:750px; + margin-left:auto; + margin-right:auto; + margin-top:100px; + font-size:14px; +} + +a { + color: #0bc; + text-decoration: none; +} + +#a { + color: #0f0; +} + +#c { + color: #0bc; +} + +#b { + color: #ff0096; +} + +#k { + animation: change 1s; +} + +#op{ + color: #888888 +} + +@keyframes change { + 0% { color: #0f0; } + 50% { color: #0f0; } + 99% { color: black; } +} diff --git a/text.txt b/text.txt new file mode 100644 index 0000000..da396b8 --- /dev/null +++ b/text.txt @@ -0,0 +1,36 @@ +genos@biswakalyan:~$ ./genos.sh + +  /$$$$$$  /$$$$$$$$ /$$   /$$  /$$$$$$   /$$$$$$ + /$$__  $$| $$_____/| $$$ | $$ /$$__  $$ /$$__  $$ +| $$  \__/| $$      | $$$$| $$| $$  \ $$| $$  \__/ +| $$ /$$$$| $$$$$   | $$ $$ $$| $$  | $$|  $$$$$$ +| $$|_  $$| $$__/   | $$  $$$$| $$  | $$ \____  $$ +| $$  \ $$| $$      | $$\  $$$| $$  | $$ /$$  \ $$ +|  $$$$$$/| $$$$$$$$| $$ \  $$|  $$$$$$/|  $$$$$$/ + \______/ |________/|__/  \__/ \______/  \______/ + +Cybersecurity Enthusiast / Developer + +instagram : _xgenos + +twitter : _xgenos_ + +github : xgenos + +youtube : Biswakalyan + +dev : Biswakalyan + +linkdin : Biswakalyan Bhuyan + +HackerOne : Biswakalyan Bhuyan + +for any enquiries : biswakalyan@aol.com + +follow me : https://allmylinks.com/biswakalyan890 + +In case if you find this website ugly : It's Minimal. Tap on the minimal to know more about it :) + +Visit my fuckin portfolio website : https://xgenos.github.io/portfolio + +© GENOS / https://github.com/xgenos -- cgit v1.2.3-59-g8ed1b