Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
added new project: base64
added new project: crasher
3 changes: 3 additions & 0 deletions src/routes/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ router.get("/:project", (req: Request, res: Response) => {
else if(project == "base64"){
res.render("projects/base64");
}
else if(project == "crasher"){
res.render("projects/crasher");
}
else {
res.render("404");
}
Expand Down
2 changes: 2 additions & 0 deletions views/projects.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
<br>
<a href="/projects/base64">Base64</a>
<br>
<a href="/projects/crasher">Crasher</a>
<br>
<br>
<p>&copy; 2025 thenamelessdev. Licensed under the <a href="https://opensource.org/license/mit">MIT license.</a></p>
<p>By using the website you aggree to our <a href="/privacy">privacy policy</a></p>
Expand Down
28 changes: 28 additions & 0 deletions views/projects/crasher.ejs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crasher</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"
crossorigin="anonymous">
</head>
<body class="text-center">
<h1>Crasher</h1>
<p><b>THENAMELESSDEV.COM IS NOT LIABLE FOR ANY DEMAGE. BY USING THIS PROJECT YOU ARE LIABLE FOR ANY DEMAGE</b></p>
<a href="/projects"><button class="btn btn-secondary">Go back</button></a>
<hr>
<button class="btn btn-danger" id="start">Start</button>

<script>
let arr = [];

document.getElementById("start").addEventListener("click", () => {
while (true){
console.log("This is the end");
arr.push(new Array(1_000_000).fill("x"));
}
});
</script>
</body>
</html>