Skip to content

Instantly share code, notes, and snippets.

View jhta's full-sized avatar
🐛

Jeison Higuita Sanchez jhta

🐛
View GitHub Profile
@jhta
jhta / post.md
Created November 6, 2018 17:37
vxcvxc

vcxvxcvx

@jhta
jhta / leosifunca.js
Created August 29, 2018 02:09
descr
leosifunca.js
@jhta
jhta / leo
Created August 29, 2018 02:09
gistxxx
# Home made markdown editor :D!
@jhta
jhta / gist
Created August 23, 2018 02:45
a new fancy gist
# Home made markdown editor :D!
# Home made markdown editor :D!
@jhta
jhta / hello_world.rb
Created August 23, 2018 02:42
Hello World Examples
please!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@jhta
jhta / citrusbyte.js
Last active August 21, 2018 17:25
I have a description
/* Write some code, that will flatten an array of arbitrarily
nested arrays of integers into a flat array of integers.
e.g. [[1,2,[3]],4] -> [1,2,3,4]. */
const flattenArray = array => array.reduce(
(acumulator, element) => acumulator.concat(
Array.isArray(element) ?
flattenArray(element)
@jhta
jhta / index.html
Created July 29, 2017 00:49 — forked from anonymous/index.html
JyYgWB
<div class="contenedor">
<div class="cubo">
<div class="side frente"></div>
<div class="side atras"></div>
<div class="side abajo"></div>
<div class="side arriba"></div>
<div class="side derecha"></div>
<div class="side izquierda"></div>
</div>
</div>
@jhta
jhta / action.js
Created July 29, 2015 02:38
action
var Dispatcher = require('../dispatchers/dispatcher.js');
var Constants = require('../constants/constants.js');
var API = require("../utils/SpaceAPIUtils");
var ListAPI = require('../utils/ListAPIUtils');
var TaskAPI = require('../utils/TaskAPIUtils');
var RouterContainer = require('../router/router-container');
var SpaceActions = {