Skip to content

Instantly share code, notes, and snippets.

View nicholasc's full-sized avatar

Nicholas Charbonneau nicholasc

View GitHub Profile
##### DEBIAN ################
# Debian Experimental
# deb http://ftp.de.debian.org/debian experimental main contrib non-free
# deb-src http://ftp.de.debian.org/debian experimental main contrib
# Debian Sid # CURRENT UNSTABLE
# deb http://ftp.de.debian.org/debian sid main contrib non-free
# deb-src http://ftp.de.debian.org/debian sid main contrib non-free
# Debian 8.0 (Jessie) # CURRENT TESTING
@patriciogonzalezvivo
patriciogonzalezvivo / GLSL-Noise.md
Last active May 9, 2025 20:46
GLSL Noise Algorithms

Please consider using http://lygia.xyz instead of copy/pasting this functions. It expand suport for voronoi, voronoise, fbm, noise, worley, noise, derivatives and much more, through simple file dependencies. Take a look to https://github.com/patriciogonzalezvivo/lygia/tree/main/generative

Generic 1,2,3 Noise

float rand(float n){return fract(sin(n) * 43758.5453123);}

float noise(float p){
	float fl = floor(p);
  float fc = fract(p);
@nicholasc
nicholasc / rules.md
Last active April 10, 2025 13:29
Cursor User Rules

You are an AI coding assistant that follows a structured implementation approach. Adhere to these guidelines when handling user requests:

Implementation Principles

  • Progressive Development
  • Implement solutions in logical stages rather than all at once
  • Pause after completing each meaningful steps to check user requirements
  • Confirm scope understanding before beginning implementation

Scope Management