Skip to content

Commit

Permalink
Merge branch 'master' into patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
NCPlayz authored Oct 24, 2018
2 parents dfa957e + 0c71a40 commit 966810d
Show file tree
Hide file tree
Showing 28 changed files with 1,373 additions and 5 deletions.
38 changes: 38 additions & 0 deletions BSoD/Ace-Bansal.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>BSoD by Ace-Bansal</title>
</head>
<style>
body{
background-color: #1173aa;
display: flex;
justify-content: center;
align-items: center;
}
p{
color: white;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
}
#smiley{
font-size: 8rem;
}
#text{
font-size: 1.8rem;
font-weight: 100;
}
#handle{
margin-top: 20px;
}
</style>
<body>
<div id="error">
<p id="smiley">:(</p>
<p id="text">Your PC ran into a problem that it couldn't<br/>handle, and now it needs to restart.</p>
<p id="handle">Your Hacktoberfest ends here.</p>
</div>
</body>
</html>
122 changes: 122 additions & 0 deletions BSoD/Archaeologist03.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>BSoD</title>

<style>
html {
font-size: 62.5%;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
margin: 0;
padding: 0;
box-sizing: inherit
}

body {
background-color: #176ea0e5;
text-align: center;
color: aliceblue;
background-color: #176ea0e5;

width: 100vw;
height: 100vh;
overflow: hidden;
}

.wrapper {
width: 100%;
height: 100%;

}

.container {
margin: 0 auto;
margin-top: 10%;
width: 70%;
}


h3 {
margin-bottom: 5rem;
font-size: 17rem;
text-align: left;
margin-left: 5rem;
font-weight: 400;
}

h1 {
font-size: 2.5rem;
font-weight: 500;
margin-bottom: 5rem;
display: block;

}

p {
font-size: 1.5rem;
margin-bottom: 2rem;
}

ul {
list-style: none;
font-size: 2rem;
}

.dont-click {
font-size: 5px;
}

.screen-change {
background-color: darkblue;
transition: all .5s;
}
</style>
</head>

<body>


<div class="wrapper">
<p class="dont-click">ps. dont click screen.</p>

<div class="container">

<h3>:(</h3>
<h1>BLUE SCREEN of DEATH is upon you. You do not have many options now.</h1>
<p>Fallow steps to procede:</p>
<ul>
<li>-Turn off your PC.</li>
<li>-Take your motherboard out.</li>
<li>-Send it to: 00 BSoD NoWhere.</li>
</ul>
</div>
</div>




<script>
const wrapper = document.querySelector(".wrapper");

wrapper.addEventListener("click", function () {
let int = setInterval(() => {
if (!wrapper.classList.contains("screen-change")) {
wrapper.classList.add("screen-change");
} else {
wrapper.classList.remove("screen-change");
}
}, 55);
})
</script>

</body>

</html>
48 changes: 48 additions & 0 deletions BSoD/ITSjwags.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>BSOD</title>
</head>
<style>
body {
background: #0715AA;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: "Lucida Console", "Lucida Sans Typewriter", monaco, "Bitstream Vera Sans Mono", monospace;
height: 100vh;
}
.title {
background-color: #AFABB2;
color: #0715AA;
margin: 40px 0;
padding: 5px 10px;
}
ul {
max-width: 600px;
list-style-type: none;
}
li {
padding: 5px 0;
}
li::before {
content: "*";
margin-left: -50px;
padding: 0 20px;
}
</style>
<body>
<p>All your base are belong to us.</p>
<p class="title">Windows</p>
<ul>
<li>Press any key to terminate the current application</li>
<li>Press CTRL+ALT+DELETE again to restart your computer. You will lose any unsaved inforamtion in all applications.</li>
</ul>
<p>Press any key to continue _</p>
</body>
</html>
24 changes: 24 additions & 0 deletions BSoD/MansiAyer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<DOCTYPE! html>
<head>
<title> StopError </title>
<style>
body
{
background:#0000aa;
color:#ffffff;
font-family:courier;
text-align:center;
}
</style>
</head>
<body>
<h1> A problem has been detected and Windows has been shut down to prevent damage to your computer. </h1>
<p>
If this is the first time you've seen this stop error screen, restart your computer. if this screen appears again, follow these steps:
Check to make sure any new hardware or software is properly installed. If this is a new installation, ask your hardware or software manufacturer for any Windows updates you might need.
If problems continue, disable or remove any newly installed hardware or software. Disable BIOS memory options such as caching or shadowing. If you need to use Safe Mode to remove or disable components, restart your computer, press F8 to select Advanced Startup Options, and then select Safe Mode.
</p>
<h6> Technical information:
*** STOP: 0x000000FE (0x00000008, 0x000000006, 0x00000009, 0x847075cc) </h6>
</body>
</html>
67 changes: 67 additions & 0 deletions BSoD/Ovyerus.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>A problem has occured</title>

<style>
:root {
font-family: 'Courier New', Courier, monospace;
font-size: 18px;
}

body {
background: #000080;
color: #FFF;
margin: 0;
margin-top: 1rem;
}

div {
max-width: 80ch;
}
</style>
</head>
<body>
<div id="main">
A problem has been detected and ReactOS has been shut down to prevent damage to your computer.<br><br>

If this is the first time you've seen this Stop error screen, restart your computer.
If this screen appears again, follow these steps:<br><br>

Check to be sure you have adequate disk space.
If a driver is identified in the Stop message, disable the driver or check with the manufacturer for driver updates.
Try changing video adapters.<br><br>

Check with your hardware vendor for any BIOS updates.
Disable BIOS memory options such as caching or shadowing.
If you need to use Safe Mode to remove or disable components, restart your computeer, press F8 to select Advanced Startup Options,
and then select Safe Mode.<br><br>

Technical information:<br><br>
*** STOP: 0x0000001E (0xHAC708ER, 0xF3570000, 0x20180000, 0x00000000)
<br><br><br>

*** HCKTBR.EXE - Address 0xHAC708ER base at 80000000, DateStamp 1539949297958<br>
*** HCKTBR.EXE - Address 0xF3570000 base at 80000000, DateStamp 1539949297958
*** HCKTBR.EXE - Address 0x20180000 base at 80000000, DateStamp 1539949297958
</div>
<script>
const codes = ['0xHAC708ER', '0xF3570000', '0x20180000'];
const main = document.getElementById('main');
let i = 0;

setInterval(() => {
const text = document.createTextNode(`*** HCKTBR.EXE - Address ${codes[i++]} base at 80000000, DateStamp ${Date.now()}`);
const br = document.createElement('br');

if (i > 2) i = 0;

main.appendChild(text);
main.appendChild(br);
}, 1000);
</script>
</body>
</html>
65 changes: 65 additions & 0 deletions BSoD/capitanfindusfi.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BSoD</title>
<link href="https://fonts.googleapis.com/css?family=Ubuntu+Mono" rel="stylesheet">
<style>
body, html {
margin: 0;
padding: 0;
font-family: 'Ubuntu Mono', monospace;
background-color: #0F2488;
}

main {
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
position: relative;
color: #fff;
box-sizing: border-box;
}

main h4 {
position: absolute;
bottom: 8px;
left: 8px;
font-size: 14px;
margin: 0;
}

#wrap {
color: inherit;
width: 80%;
}

#wrap h1 {
font-size: 116px;
margin: 0 0 8px;
}

#wrap h3 {
font-size: 42px;
margin: 8px 0;
}

#wrap h5 {
font-size: 18px;
margin: 24px 0 0;
}
</style>
</head>
<body>
<main>
<div id="wrap">
<h1>:(</h1>
<h3>Your PC ran into a huge problem and it needs to be restarted. We apologise for the inconvenience</h3>
<h5>You can search for this error online: SUDO_MISSING_OR_DELETED</h5>
</div>
<h4>Didn't you save your work, right?. ¯\_(ツ)_/¯</h4>
</main>
</body>
</html>
Loading

0 comments on commit 966810d

Please sign in to comment.