Skip to content

Instantly share code, notes, and snippets.

View Jbat1Jumper's full-sized avatar
😬
Grrrr

Nikita Zdanovitch Jbat1Jumper

😬
Grrrr
View GitHub Profile
# Source: https://gist.github.com/48f44d3974db698d3127f52b6e7cd0d3
###########################################################
# Automation of Everything #
# How To Combine Argo Events, Workflows, CD, and Rollouts #
# https://youtu.be/XNXJtxkUKeY #
###########################################################
# Requirements:
# - k8s v1.19+ cluster with nginx Ingress
@Jbat1Jumper
Jbat1Jumper / GLSL-Math.md
Created August 15, 2018 04:42 — forked from patriciogonzalezvivo/GLSL-Math.md
GLSL Math functions

Trigonometry

const float PI = 3.1415926535897932384626433832795;
const float PI_2 = 1.57079632679489661923;
const float PI_4 = 0.785398163397448309616;

float PHI = (1.0+sqrtf(5.0))/2.0;