Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
bugzorc committed Apr 24, 2024
1 parent 414c9f4 commit dadfef2
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,22 @@
<div id="loader"></div>
<div id="random"></div>
</div>
<script>
var randomTexts = [
"my website is not slow, it's ur wifi",
"all praises to the most high",
"he got caught hash-ing passwords without salt!",
"nah, I code in 1s and 0s, the way God intended",
"I don't need antivirus, I leave debuggers open",
"am not useless, mosquitoes wait for me to have supper",
"am not broke, I declare variables using $-php developer",
"xss out of scope, but it's still a bug",
];
var randomIndex = Math.floor(Math.random() * randomTexts.length);
var randomText = randomTexts[randomIndex];
var randomDiv = document.getElementById('random');
randomDiv.textContent = randomText;
</script>
<!--CONGRATULATIONS YOU HAVE FOUND MY SECRET MESSAGE
CODE:4335$5 1.Bugzorc 2.Casusbelli
Expand Down Expand Up @@ -280,22 +296,6 @@
<!--end-->
</div>
</div>
<script>
var randomTexts = [
"my website is not slow, it's ur wifi",
"all praises to the most high",
"he got caught hash-ing passwords without salt!",
"nah, I code in 1s and 0s, the way God intended",
"I don't need antivirus, I leave debuggers open",
"am not useless, mosquitoes wait for me to have supper",
"am not broke, I declare variables using $-php developer",
"xss out of scope, but it's still a bug",
];
var randomIndex = Math.floor(Math.random() * randomTexts.length);
var randomText = randomTexts[randomIndex];
var randomDiv = document.getElementById('random');
randomDiv.textContent = randomText;
</script>
<!--
V1.0 = lost em' files
V2.0/ V2.1 = home page/ blog home page
Expand Down

0 comments on commit dadfef2

Please sign in to comment.