Format C Dos verarsche

Viele kennen noch die eingaben Format c bei DOS und so. Hier ist eine DOS Verarsche
Kommentar abgeben zu diesen Beitrag/Code ?
Dann hier klicken

Der hier verwendete Code

<!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Fake Disk Formatting - Online Dos Prank</title> <style> html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary { margin: 0; padding: 0; border: 0; font-size: 100%; font-weight: normal; vertical-align: baseline; background: transparent; } article, aside, figure, footer, header, nav, section, details, summary {display: block;} html { box-sizing: border-box; -webkit-touch-callout: none; /* iOS Safari */ -webkit-user-select: none; /* Safari */ -khtml-user-select: none; /* Konqueror HTML */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */ } *, *:before, *:after { box-sizing: inherit; } img, object, embed {max-width: 100%;} html {overflow: hidden;} ul {list-style: none;} blockquote, q {quotes: none;} blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none;} a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;} del {text-decoration: line-through;} abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;} /* tables still need cellspacing="0" in the markup */ table {border-collapse: collapse; border-spacing: 0;} th {font-weight: bold; vertical-align: bottom;} td {font-weight: normal; vertical-align: top;} hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;} input, select {vertical-align: middle;} pre { white-space: pre; /* CSS2 */ white-space: pre-wrap; /* CSS 2.1 */ white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */ word-wrap: break-word; /* IE */ } input[type="radio"] {vertical-align: text-bottom;} input[type="checkbox"] {vertical-align: bottom;} .ie7 input[type="checkbox"] {vertical-align: baseline;} .ie6 input {vertical-align: text-bottom;} select, input, textarea {font: 99% sans-serif;} table {font-size: inherit; font: 100%;} small {font-size: 85%;} strong {font-weight: bold;} td, td img {vertical-align: top;} sub, sup {font-size: 75%; line-height: 0; position: relative;} sup {top: -0.5em;} sub {bottom: -0.25em;} pre, code, kbd, samp {font-family: 'Perfect', monospace, sans-serif;} .clickable, label, input[type=button], input[type=submit], input[type=file], button {cursor: pointer;} button, input, select, textarea {margin: 0;} button, input[type=button] {width: auto; overflow: visible;} .ie7 img {-ms-interpolation-mode: bicubic;} .clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; } .clearfix:after { clear: both; } .clearfix { zoom: 1; } @font-face { font-family: 'Perfect'; src: url('fonts/Perfect.eot'); src: local('?'), url('fonts/Perfect.woff') format('woff'), url('fonts/Perfect.ttf') format('truetype'), url('fonts/Perfect.svg') format('svg'); font-weight: normal; font-style: normal; } html {cursor: url(cursor.png), auto;} body {font-family: 'Perfect'; background-color: #000000; font-size: 26px; cursor: url(cursor.png), auto;} body, select, input, textarea { color: #fff; } a {text-decoration: none; color: #ffff25;} a:hover {color: #ffff25;} table{width: 100%;} .dos { padding: 20px; position: fixed; top: 0; bottom: 0; left: 0; right: 0; } .trollFace > span { color: #000; } .typing { display: inline-block; background: url(typing.gif) bottom right no-repeat transparent; padding: 0 16px 0 0; min-width: 16px; height: 20px; } #typing2 { padding: 0 0px 0 0; min-width: 13px; } .formatting { margin: 0 5px 0 30px; border: 3px solid #FFF; display: inline-block; } #formatting { margin: 3px; border: 3px solid #FFF; display: inline-block; padding: 17px 5px; } #formattingWrap, #formatComplete { display: none; } #prankBro { text-align: center; display: none; position: fixed; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; cursor: default !important; } #prankBro a { cursor: pointer !important; color: #EE0000; } #prankBro a:hover { color: #FF0000; } @media screen and (max-width: 1100px) { body { font-size: 18px; line-height: 20px; } } @media screen and (max-width: 750px) { .trollFace { display: none; } } @media print { } </style> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script> $(document).ready(function () { var loc = window.location.href+''; if (loc.indexOf('http://')==0){ window.location.href = loc.replace('http://','https://'); // https redirect } $('body').keypress(function(e) { if (stage == 1) { //fent a kurzor if(e.which == 13) { //enter $('#formattingWrap').show(); timedCount(); stage = 2; $('#typing').removeClass('typing'); } else if(e.which == 8) { //backspace //str = str.substring(0, str.length - 1); $('#typing').html($('#typing').html().substring(0, $('#typing').html().length - 1)); // cut off last character } else if(e.which == 32) { //space $('#typing').html($('#typing').html() + '_') } else { $('#typing').html($('#typing').html() + String.fromCharCode(e.which)) } } if (stage == 3) { if(e.which == 13) { //enter $('#intro').hide(); $('#formattingWrap').hide(); window.location.replace("https://pranx.com/just-prank/"); //$('#prankBro').show(); } else if(e.which == 8) { //backspace $('#typing2').html($('#typing2').html().substring(0, $('#typing2').html().length - 1)); // cut off last character } else if(e.which == 32) { //space } else { $('#typing2').html(String.fromCharCode(e.which)) } } }); }); var percent = 0; //max 20 var i; var stage = 1; function timedCount(){ percent++; if (percent <= 20) { var seg =""; for (i = 0; i <= 20; i++) { if (i <= percent) { seg = seg + '&#9608;'; } else { seg = seg + '&#9617;'; } $('#formatting').html(seg); } $('#percent').html(percent*5-(Math.floor(Math.random() * 5) + 1) ); t = setTimeout("timedCount()",(300 + (Math.floor(Math.random() * 800) + 1))); } else { $('#percent').html('100'); $('#formatComplete').show(); stage = 3; } } </script> </head> <body> <div class="dos"> <div id="intro"> Microsoft Windows [Version 10.0.14393]<br /> (c) 2017 Microsoft Corporation. All rights reserved.<br /> <br /> C:\<span id="typing" class="typing"></span> </div> <div id="formattingWrap"> <br /> WARNING, ALL DATA ON NON-REMOVABLE DISK<br /> DRIVE C: WILL BE LOST!<br /> <br /> <div class="formatting"> <div id="formatting"> </div> </div> <br /> <br /> Formatting C: <br /><span id="percent">77</span>% complete <br /> <br /> <div id="formatComplete"> Cleaned Disk Setup Program<br /> FDISK Options<br /> <br /> Successfully Erased Disk Drives: 1<br /> <br /> Choose one of the following:<br /> 1. Create Dos partition of Logical DOS Drive<br /> 2. Set active partition<br /> 3. Delete partition or Logical DOS Drive<br /> 4. Display partition information<br /> <br /> Enter choice: [<span id="typing2" class="typing"> </span>] </div> </div> <div id="prankBro"> <br /> <a href="/"> Don't worry, your disk is intact! <br /><br /> THIS IS JUST A PRANK BRO! <br /><br /> Click here to return to the home page<br /> Exit full screen with F11 </a> <br /> <br /> <div class="trollFace"> ___<span>_</span><span>_</span><span>_</span>____<span>_</span><span>_</span>____<span>_</span>_<span>_</span><span>_</span><span>_</span>_<span>_</span><span>_</span>___<span>_</span><span>_</span><span>_</span>____<span>_</span><span>_</span>___<span>_</span><span>_</span>__<span>_</span><span>_</span><span>_</span>_<span>_</span>_<span>_</span><span>_</span><span>_</span>_<span>_</span><span>_</span><span>_</span><span>_</span><span>_</span>___<span>_</span><span>_</span>___<span>_</span><span>_</span>___<br /> |<span>_</span>__<span>_</span><span>_</span>|____<span>_</span>|____<span>_</span>|__/<span>_</span><span>_</span>|___]<span>_</span>|___/<span>_</span>|___|<span>_</span>|<span>_</span>\<span>_</span><span>_</span>|<span>_</span>|__/<span>_</span><span>_</span><span>_</span><span>_</span><span>_</span>|<span>_</span><span>_</span><span>_</span><span>_</span>|<span>_</span><span>_</span><span>_</span>||<span>_</span>|<span>_</span>|<br /> |___|<span>_</span>|____<span>_</span>|____<span>_</span>|<span>_</span><span>_</span>\_<span>_</span>|<span>_</span><span>_</span><span>_</span><span>_</span><span>_</span>|<span>_</span><span>_</span>\_<span>_</span>|<span>_</span><span>_</span><span>_</span>|<span>_</span>|<span>_</span><span>_</span>\_|<span>_</span>|<span>_</span><span>_</span>\_<span>_</span><span>_</span>.<span>_</span>|___<span>_</span>|___||<span>_</span>|<span>_</span>| </div> </div> </div> </body> </html>