-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
182b25b
commit e45c6d5
Showing
11 changed files
with
93 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,5 @@ | |
"ExpandedNodes": [ | ||
"" | ||
], | ||
"SelectedNode": "\\chatroom.html", | ||
"PreviewInSolutionExplorer": false | ||
} |
Binary file not shown.
Binary file renamed
BIN
+2.61 KB
...33ec23b-aa73-45b8-acd9-8e389da3d0ef.vsidx → ...f2ab35f-d589-4d9b-81f7-28e62d73b0a0.vsidx
Binary file not shown.
Binary file renamed
BIN
+12.5 MB
...d340d5e-6066-4f03-ba8a-f14e4d772434.vsidx → ...227e69c-beaf-4b76-b17f-08f6dda39f41.vsidx
Binary file not shown.
Binary file renamed
BIN
+11.4 MB
...e70fcbb-0f7f-4b07-a756-a3b1c9a83168.vsidx → ...55cf8a9-7786-4bf3-b413-890c5a9f217b.vsidx
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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&label=Site%20views&color=ce9927&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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
||
|