Skip to content

Instantly share code, notes, and snippets.

View Nosferatu31's full-sized avatar

Gabriel Fernandes Nosferatu31

  • Q-Better
  • Braga, Portugal
View GitHub Profile
@azagniotov
azagniotov / beautiful.rest.api.docs.in.markdown.md
Last active June 30, 2024 05:39
Example to create beautiful REST API docs in Markdown, inspired by Swagger API docs.
name: CI/CD counter app
on:
push:
branches: [ master ]
jobs:
#First we will see the application build or not , then we will deploy in EC2
build:
runs-on: ubuntu-latest
@patriciogonzalezvivo
patriciogonzalezvivo / GLSL-Noise.md
Last active July 6, 2024 09:32
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);
@tsabat
tsabat / zsh.md
Last active December 25, 2023 19:16
Getting oh-my-zsh to work in Ubuntu