Skip to content

Instantly share code, notes, and snippets.

View yeion7's full-sized avatar
🍉

Yeison Daza yeion7

🍉
View GitHub Profile
[
{
"name": "30",
"year": 2021,
"numberOfSongs": 12,
"songs": [
{
"name": "Strangers By Nature",
"duration": "3:02"
},

Keybase proof

I hereby claim:

  • I am yeion7 on github.
  • I am yeion7 (https://keybase.io/yeion7) on keybase.
  • I have a public key ASD7DAfE5Gv2-15GTL-k5Ku_uxewbrSf6YJHjrJG2lvEjgo

To claim this, I am signing this object:

["alarb/Argentina/1967/Legislación vigente/Código Procesal Civil y Comercial de la Nación/Código Procesal Civil y Comercial de la Nación.pdf","alarb/Argentina/1983/Legislación/Ley 22921 aprobatoria de Convencion Interamericana - Eficacia extraterritorial de las Sentencias.pdf","alarb/Argentina/1988/Legislación vigente/Convención de Nueva York/Convención de Nueva York - Ratificación Argentina.pdf","alarb/Argentina/1988/Legislación vigente/Convención de Nueva York/Decreto 1522-88.pdf","alarb/Argentina/1988/Legislación vigente/Convención de Nueva York/Ley 23619 aprobatoria de la Convención de Nueva York.pdf","alarb/Argentina/1994/Legislación/Ley 24322 aprobatoria de la Convención Interamericana sobre Arbitraje Comercial Internacional.pdf","alarb/Argentina/1998/Acuerdo Comercial Internacional del Mercosur/Acuerdo sobre Arbitraje Comercial Internacional del Mercosur.pdf","alarb/Argentina/1998/Acuerdo Comercial Internacional del Mercosur/Ley 25223 aprobatoria del Acuerdo Comercial Internacional del Mercosur.pdf","a
[
"alarb/824670_Lista_de_Reporters.docx",
"alarb/Argentina/1967/Legislación vigente/Código Procesal Civil y Comercial de la Nación/Código Procesal Civil y Comercial de la Nación.pdf",
"alarb/Argentina/1983/Legislación/Ley 22921 aprobatoria de Convencion Interamericana - Eficacia extraterritorial de las Sentencias.pdf",
"alarb/Argentina/1988/Legislación vigente/Convención de Nueva York/Convención de Nueva York - Ratificación Argentina.pdf",
"alarb/Argentina/1988/Legislación vigente/Convención de Nueva York/Decreto 1522-88.pdf",
"alarb/Argentina/1988/Legislación vigente/Convención de Nueva York/Ley 23619 aprobatoria de la Convención de Nueva York.pdf",
"alarb/Argentina/1994/Legislación/Ley 24322 aprobatoria de la Convención Interamericana sobre Arbitraje Comercial Internacional.pdf",
"alarb/Argentina/1998/Acuerdo Comercial Internacional del Mercosur/Acuerdo sobre Arbitraje Comercial Internacional del Mercosur.pdf",
"alarb/Argentina/1998/Acuerdo Comercial Internacional del Mercosur/Ley 25223 ap
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
const getRandomWord = () => {
const word = ['casa', "cama", 'hola']
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
@yeion7
yeion7 / esnextbin.md
Created June 25, 2016 00:52
esnextbin sketch
import { curry } from 'ramda';
// Estas funciones las puedes conseguir dentro de Ramda o Lodash
var match = curry(function(what, str) {
return str.match(what);
});
var replace = curry(function(what, replacement, str) {
return str.replace(what, replacement);
@yeion7
yeion7 / esnextbin.md
Created June 20, 2016 13:12
esnextbin sketch