Skip to content

Instantly share code, notes, and snippets.

View coelmay's full-sized avatar
🤮
Why?

Coel May coelmay

🤮
Why?
View GitHub Profile
for (let i = 1; i <= 5; i++) {
setTimeout(() => console.log(`Hello #${i}`), 1000 * i)
}
@cmalven
cmalven / index.html
Last active April 27, 2024 10:17
Shortest (useful) HTML5 Document
<!-- http://www.brucelawson.co.uk/2010/a-minimal-html5-document/ -->
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>blah</title>
</head>
<body>
<p>I'm the content</p>