Skip to content

Instantly share code, notes, and snippets.

View Angulare's full-sized avatar

Anne-Gail Moreland Angulare

  • Fin Tech Studios
View GitHub Profile
@Angulare
Angulare / fuzzy-vhs-dream-clouds-pixi.markdown
Created September 26, 2021 22:31
Fuzzy VHS Dream Clouds 📼 ☁️ [PIXI]
@Angulare
Angulare / index.html
Created September 26, 2021 22:27
Moire x
<script id="vertexShader_buffer" type="x-shader/x-vertex">attribute vec4 a_position;
uniform mat4 u_modelViewMatrix;
uniform mat4 u_projectionMatrix;
void main() {
gl_Position = a_position;
}
</script>
<script id="fragmentShader_under" type="x-shader/x-vertex">
#extension GL_OES_standard_derivatives : enable
@Angulare
Angulare / index.html
Created July 28, 2021 05:23
Neural Network visualization - more realistic but less cool
<canvas id=c></canvas>
<!--
ALGORITHM:
structure:
- gen( x,y,z ):
- create node at x,y,z // blue
- append some children to list:
- within a certain distance to parent
- outside a certain distance from any node
@Angulare
Angulare / index.html
Created July 28, 2021 05:10
Neural Network visualization - more realistic but less cool
<canvas id=c></canvas>
<!--
ALGORITHM:
structure:
- gen( x,y,z ):
- create node at x,y,z // blue
- append some children to list:
- within a certain distance to parent
- outside a certain distance from any node
@Angulare
Angulare / exploding-universe-2.markdown
Last active July 28, 2021 04:02
Exploding Universe 2
@Angulare
Angulare / index.html
Created April 12, 2021 19:32
Three.js – Particle Sphere
<div id="canvas-container"></div>
@Angulare
Angulare / index.pug
Created April 12, 2021 18:29
Perlin Noise
doctype html
head
title Perlin noise | Fireball explosion
meta(charset='utf-8')
.container-fluid.fixed-top.header.disable-selection
.row
.col
h1
strong Perlin Noise
//p.small(href='#',role='button')
@Angulare
Angulare / index.pug
Created April 12, 2021 18:20
panetary* science (pure CSS 3D)
- var n_rings = 10, n_dots = 1;
.assembly
while n_rings--
.ring
- n_dots += 4;
- for(var i = 0; i < n_dots; i++)
.pos
.dot