Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html><body>
<script type="text/javascript" src="https://unpkg.com/trianglify@^4/dist/trianglify.bundle.js"></script>
<script>
var w = 1080;
var h = 1920;
const options = {
width: w,
height: h,
cellSize: 100+Math.floor(Math.random()*40)
@m4rk4
m4rk4 / espn-fcast
Created October 30, 2020 01:53
espn-fcast
var socket;
var fcastUrl;
fetch('https://fastcast.semfs.engsvc.go.com/public/websockethost')
.then(
function(response) {
if (response.status !== 200) {
console.log('Looks like there was a problem. Status Code: ' + response.status);
return;
}