Skip to content

Instantly share code, notes, and snippets.

View unrealapex's full-sized avatar
🏳️‍⚧️
trans rights are human rights!

Erin unrealapex

🏳️‍⚧️
trans rights are human rights!
View GitHub Profile

This file was edited using the power of Vim

// code taken from https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest
function reqListener () {
console.log(this.responseText);
}
var oReq = new XMLHttpRequest();
oReq.addEventListener("load", reqListener);
oReq.open("GET", "http://www.example.org/example.txt");
oReq.send();
@unrealapex
unrealapex / boilerplate.html
Created October 3, 2021 21:40
HTML Boilerplate
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
</head>
<body>
@unrealapex
unrealapex / fade.css
Last active October 19, 2021 22:26
css fade in and out animation
.fade {
animation: fade 2s ease-in infinite;
}
@keyframes fade {
0% {
opacity: 0;
}
25% {
opacity: 0.5;
Cues Notes

Summary