Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
monkey3three committed Jun 18, 2024
1 parent 182b25b commit e45c6d5
Show file tree
Hide file tree
Showing 11 changed files with 93 additions and 47 deletions.
1 change: 0 additions & 1 deletion .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
"ExpandedNodes": [
""
],
"SelectedNode": "\\chatroom.html",
"PreviewInSolutionExplorer": false
}
Binary file modified .vs/slnx.sqlite
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified .vs/unblocked88.github.io/v17/.wsuo
Binary file not shown.
Binary file modified .vs/unblocked88.github.io/v17/workspaceFileList.bin
Binary file not shown.
15 changes: 6 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
# monkey3three
Password is 12345
Remember that this may change.
There is no longer a password.

## What if this is blocked for you?

Create an issue containing what blocker they are using. Don't have time now but eventually I will get around to this.

## Updates?
I will release a '1.0' patch for the github version, no features or anything added just cleaning things up. I will probably update monkey3three indefintely, or for a long time at least. But I am moving on from the github version, 2.0 website releasing soon. Really soon in fact, I'm almost done. Though I may have leaked the website beta accidentally... If you look hard enough you'll see it.
## 2.0 is out!!!!
https://monkey3three.ddns.net is the 2.0 website. Feedback is appreciated!

## Netlify Version [DEPRECATED]

Got rid of this because Netlify was going to charge me as it was about to hit the bandwith limit, yet I was on the free tier. I was meaning to delete this one for a while because of this reason but since its almost
100% bandwith used for this month, I've finally done it. Netlify files are still up on github, feel free to host it for yourself.

## New Version AKA 2.0
Making a new version of monkey3three using Apache, will be up soon. Since it's not a static website it's a lot more things I can do. If you have any suggestions, just post something in the discussions tab of the github.
Update: ported over pretty much everything, got a ssl certificate (took me 2 months) and i am ready to start adding features! (4th may 2024)
update2: 2.0 releasing pretty soon.
update 3: almost done!
## Future of this version?
This will remain up, but will not receive any updates unless something breaks.
73 changes: 37 additions & 36 deletions index.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,42 @@
<!DOCTYPE html>
<html>
<title>monkey3three</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">

<body>
<center>
<input type="password" placeholder="passcode" id="tutorial">
<button onclick="protectpasscode()">CHECK</button>
<script>
function protectpasscode() {
const result = document.getElementById("tutorial").value;
let passcode = 12345;
let space = '';
if (result == space) {
alert("Type passcode")
} else {
if (result == passcode) {
window.open("https://monkey3three.github.io/unblocked88.github.io/index2.html");

} else {
alert("Incorrect Passcode");
location.reload();


}
}
}
</script>
</center>
</body>

</html>

<h1 style="color:red;">monkey3three</h1>
<hr>
<img src="https://komarev.com/ghpvc/?username=GITHUB-USERNAME&amp;label=Site%20views&amp;color=ce9927&amp;style=flat" alt="GITHUB-USERNAME">
<style>
body {
background-color: white;
.button {
background-color: #808080;
border: none;
color: red;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}

</style>

<a href="https://monkey3three.github.io/unblocked88.github.io/about.html" class="button">About</a>
<a href="https://monkey3three.github.io/unblocked88.github.io/games.html" class="button">Games</a>
<a href="https://github.com/monkey3three/unblocked88.github.io" class="button">Source Code</a>
<a href="https://monkey3three.github.io/unblocked88.github.io/downloads.html" class="button">Downloads</a>
<a href="https://monkey3three.github.io/unblocked88.github.io/search.html" class="button">Search</a>
<a href="https://monkey3three.github.io/unblocked88.github.io/changelog.html" class="button">Changelog</a>
<a href="https://monkey3three.github.io/unblocked88.github.io/chatroom.html" class="button">Chatroom</a>
<body style="background-color:black;">

<style>
hr {
height: 1px;
background-color: #800000;
border: none;
}
</style>

<style>
h1 {
text-align: center;
}
</style>
10 changes: 9 additions & 1 deletion index2.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ <h1 style="color:red;">monkey3three</h1>
cursor: pointer;
}
</style>
<style>
a {
color: red;
}
p {
color: red;
}
</style>
<a href="https://monkey3three.github.io/unblocked88.github.io/about.html" class="button">About</a>
<a href="https://monkey3three.github.io/unblocked88.github.io/games.html" class="button">Games</a>
<a href="https://github.com/monkey3three/unblocked88.github.io" class="button">Source Code</a>
Expand All @@ -26,7 +34,7 @@ <h1 style="color:red;">monkey3three</h1>
<a href="https://monkey3three.github.io/unblocked88.github.io/changelog.html" class="button">Changelog</a>
<a href="https://monkey3three.github.io/unblocked88.github.io/chatroom.html" class="button">Chatroom</a>
<body style="background-color:black;">

<p>V2 is out! This version is deprecated.</p> <a href="https://monkey3three.ddns.net">2.0 website</a>
<style>
hr {
height: 1px;
Expand Down
41 changes: 41 additions & 0 deletions indexarchive.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<html>
<title>monkey3three</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">

<body>
<center>
<input type="password" placeholder="passcode" id="tutorial">
<button onclick="protectpasscode()">CHECK</button>
<script>
function protectpasscode() {
const result = document.getElementById("tutorial").value;
let passcode = 12345;
let space = '';
if (result == space) {
alert("Type passcode")
} else {
if (result == passcode) {
window.open("https://monkey3three.github.io/unblocked88.github.io/index2.html");

} else {
alert("Incorrect Passcode");
location.reload();


}
}
}
</script>
</center>
</body>

</html>

<style>
body {
background-color: white;
}

</style>


0 comments on commit e45c6d5

Please sign in to comment.