Skip to content

Instantly share code, notes, and snippets.

View yordis's full-sized avatar
💜
Helping people one second at the time

Yordis Prieto yordis

💜
Helping people one second at the time
View GitHub Profile
@yordis
yordis / README.md
Last active July 2, 2017 00:29
Unity

Unity Scripts

@yordis
yordis / README.md
Last active December 25, 2017 02:50
List of Dockerfile used

Dockerfile Templates

Javascript Snippets

@yordis
yordis / README.md
Last active July 2, 2017 00:37
Elixir Utils

Elixir

@yordis
yordis / README.md
Last active May 22, 2018 20:00
Useful projects to keep tracking of

Awesome Projects

@yordis
yordis / README.md
Last active January 14, 2018 09:41
@yordis
yordis / file.c
Last active December 21, 2017 10:39
FBP
#include <stdio.h>
#define port_data_size 64
#define node_port_count 64
#define node_parameter_count 64
#define net_connection_count 64
#define net_node_count 64
typedef unsigned char bool;
typedef unsigned char byte;
typedef unsigned long cell;
@yordis
yordis / easing.css
Created June 29, 2018 13:00 — forked from bendc/easing.css
Easing CSS variables
:root {
--ease-in-quad: cubic-bezier(.55, .085, .68, .53);
--ease-in-cubic: cubic-bezier(.550, .055, .675, .19);
--ease-in-quart: cubic-bezier(.895, .03, .685, .22);
--ease-in-quint: cubic-bezier(.755, .05, .855, .06);
--ease-in-expo: cubic-bezier(.95, .05, .795, .035);
--ease-in-circ: cubic-bezier(.6, .04, .98, .335);
--ease-out-quad: cubic-bezier(.25, .46, .45, .94);
--ease-out-cubic: cubic-bezier(.215, .61, .355, 1);
@yordis
yordis / color-conversion-algorithms.js
Created July 1, 2018 09:50 — forked from mjackson/color-conversion-algorithms.js
RGB, HSV, and HSL color conversion algorithms in JavaScript
/**
* Converts an RGB color value to HSL. Conversion formula
* adapted from http://en.wikipedia.org/wiki/HSL_color_space.
* Assumes r, g, and b are contained in the set [0, 255] and
* returns h, s, and l in the set [0, 1].
*
* @param Number r The red color value
* @param Number g The green color value
* @param Number b The blue color value
* @return Array The HSL representation
@yordis
yordis / .gitignore
Created July 2, 2018 00:54
Javascript package templates
# Project
/src/**/*.js
/dist
/docs
# npm
/node_modules
/package-lock.json
# Logs