Skip to content

Instantly share code, notes, and snippets.

View ReedCopsey's full-sized avatar

Reed Copsey, Jr. ReedCopsey

View GitHub Profile
@ReedCopsey
ReedCopsey / Seq.fold
Last active December 20, 2019 03:17
F# Looping Sample Code
Seq.fold : ('State -> 'T -> 'State) -> 'State -> seq<'T> -> 'State
12/17/2020 1928 Child in snow
12/17/2020 1929 Child grabbing snow
12/17/2020 1930 Snowball being formed
12/17/2020 1931 Snowball flinging towards tree
12/17/2020 1932 Tree gets hit
12/17/2020 1933 Tree vibrates
12/17/2020 1934 Snow falls off branches
12/17/2020 1935 Snow lands on child and dog
12/17/2020 1936 The dog wimpers, then says "Woof"
12/17/2020 1937 The child hugs dog
@ReedCopsey
ReedCopsey / acme.html
Last active November 3, 2022 17:39
Sample Landing Page Embedding
<html>
<head>
<title>3D Viewer: ACME Site</title>
</head>
<body style="margin: 0px;">
<iframe style="border: none; outline: none; overflow: hidden;" width="100%" height="100%" src="https://viewer.ctech.com/envirofaux.html?title=3D%20Viewer%3A%20ACME%20Site&logo=https%3A%2F%2Fenvirofaux.com%2FACME-EnviroFaux.png" allow="fullscreen"></iframe>
</body>
</html>