I hereby claim:
- I am devcharles on github.
- I am devcharles (https://keybase.io/devcharles) on keybase.
- I have a public key ASB8l8izBHuSnubXWZVAqJNa_B9_Ov-FpchkMaM1lH8ewAo
To claim this, I am signing this object:
| const artistas_y_ciudades = [ | |
| { | |
| "artist": "Miley Cyrus", | |
| "country": "United States" | |
| }, | |
| { | |
| "artist": "FIFTY FIFTY", | |
| "country": "United Kingdom" | |
| }, | |
| { |
| [ | |
| { | |
| "show_id": "s1", | |
| "type": "Movie", | |
| "title": "Dick Johnson Is Dead", | |
| "director": "Kirsten Johnson", | |
| "cast": "", | |
| "country": "United States", | |
| "date_added": "September 25, 2021", |
| const productosComprados = [ | |
| { name: 'arroz', precio: 1, unidad: '1kg' }, | |
| { name: 'frijoles', precio:6, unidad: '2kg' }, | |
| { name: 'coca', precio: 3, unidad: '500ml' }, | |
| { name: 'frijoles', precio: 6, unidad: '2kg' }, | |
| { name: 'coca', precio: 3, unidad: '500ml' }, | |
| { name: 'frijoles', precio: 6, unidad: '2kg' }, | |
| { name: 'chocolate', precio: 7, unidad: 'barra'} | |
| ] |
I hereby claim:
To claim this, I am signing this object:
| const cliente = { | |
| Nombre: 'Jorge Rodriguez', | |
| Edad: 35, | |
| DireccionOficina: 'Oaxaca 96 Roma Norte', | |
| DireccionCasa: 'Salamanca 15', | |
| HistorialDeLentesComprados: { | |
| Notorious: { | |
| Color: 'negro', | |
| TipoDeMica: 'bluelight', | |
| Graduacion: { |
| const matrix = [ | |
| [1, 2, -1], | |
| [6, 5, 4], | |
| [-9, 8, 9] | |
| ] | |
| function getDiagonalsDifference (matrix) { | |
| // complete function | |
| } |
| # Path to your oh-my-zsh installation. | |
| export ZSH="/home/charles/.oh-my-zsh" | |
| ################## SPACE SHIP THEME VARIABLES ################### | |
| SPACESHIP_CHAR_SYMBOL=">> " | |
| SPACESHIP_PACKAGE_SHOW=false | |
| SPACESHIP_BATTERY_SHOW=false | |
| SPACESHIP_DOCKER_SHOW=false | |
| SPACESHIP_NODE_SHOW=false | |
| ######################### PRESET |
| const isPlainObject = require('lodash/isPlainObject') | |
| const isString = require('lodash/isString') | |
| const isNumber = require('lodash/isNumber') | |
| const map = require('lodash/map') | |
| const reduce = require('lodash/reduce') | |
| function cleanObject (obj = {}) { | |
| if (isNumber(obj)) return obj | |
| if (isString(obj)) { | |
| return (obj.trim().length === 0) ? null : obj |
| /etc/nginx/nginx.conf | |
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server; | |
| root /var/www/api | |
| location / { | |
| proxy_pass http://localhost:8080; | |
| proxy_http_version 1.1; |