vcxvxcvx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
leosifunca.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Home made markdown editor :D! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Home made markdown editor :D! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Home made markdown editor :D! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
please!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = { |
NewerOlder