Skip to content

Instantly share code, notes, and snippets.

View Janglee123's full-sized avatar

Meru Patel Janglee123

View GitHub Profile
@rxaviers
rxaviers / gist:7360908
Last active December 6, 2025 06:26
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@patriciogonzalezvivo
patriciogonzalezvivo / GLSL-Noise.md
Last active December 5, 2025 05:31
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);
@picsoung
picsoung / glitch_api.md
Last active September 30, 2018 16:29
Trying to document Glitch API

Discovering the inner Glitch API

Glitch API

Authorization

Add an Authorization header. The value should be a personal token.

Base URL

The Glitch API is located at api.glitch.com

@ramsunvtech
ramsunvtech / var-syntax-errors.js
Created August 8, 2018 19:04
Various Syntax Error for var variables on Typo mistakes
/*
* Below are the possible syntax errors with all stupid typo mistakes for var variables.
* Tested in Chrome, Firefox, Safari and IE Edge.
* Venkat.R
*/
// var a=
// Chrome - SyntaxError: Unexpected end of input
// Firefox - SyntaxError: expected expression, got end of script
// Safari - SyntaxError: Unexpected EOF
@ramsunvtech
ramsunvtech / let-syntax-errors.js
Created August 8, 2018 19:05
Various Syntax Error for let variables on Typo mistakes
/*
* Below are the possible syntax errors with all stupid typo mistakes for let variables.
* Tested in Chrome, Firefox, Safari and IE Edge.
* Venkat.R
*/
// let a=
// Chrome - SyntaxError: Unexpected end of input
// Firefox - SyntaxError: expected expression, got end of script
// Safari - SyntaxError: Expected an identifier but found 'a' instead
@ramsunvtech
ramsunvtech / const-syntax-errors.js
Created August 8, 2018 19:05
Various Syntax Error for const variables on Typo mistakes
/*
* Below are the possible syntax errors with all stupid typo mistakes for const variables.
* Tested in Chrome, Firefox, Safari and IE Edge.
* Venkat.R
*/
// const a=
// Chrome - SyntaxError: Unexpected end of input
// Firefox - SyntaxError: expected expression, got end of script
// Safari - SyntaxError: Unexpected EOF
@fnky
fnky / ANSI.md
Last active December 5, 2025 18:48
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@zchee
zchee / ANSI.md
Created February 13, 2020 03:31 — forked from fnky/ANSI.md
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1b
  • Decimal: 27