- just type “systemctl --user enable pulseaudio && systemctl --user start pulseaudio” in a terminal
- Instal the .deb
- open the file
| /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; |
| 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 |
| # 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 matrix = [ | |
| [1, 2, -1], | |
| [6, 5, 4], | |
| [-9, 8, 9] | |
| ] | |
| function getDiagonalsDifference (matrix) { | |
| // complete function | |
| } |
| const cliente = { | |
| Nombre: 'Jorge Rodriguez', | |
| Edad: 35, | |
| DireccionOficina: 'Oaxaca 96 Roma Norte', | |
| DireccionCasa: 'Salamanca 15', | |
| HistorialDeLentesComprados: { | |
| Notorious: { | |
| Color: 'negro', | |
| TipoDeMica: 'bluelight', | |
| Graduacion: { |
I hereby claim:
To claim this, I am signing this object:
| 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'} | |
| ] |
| [ | |
| { | |
| "show_id": "s1", | |
| "type": "Movie", | |
| "title": "Dick Johnson Is Dead", | |
| "director": "Kirsten Johnson", | |
| "cast": "", | |
| "country": "United States", | |
| "date_added": "September 25, 2021", | |
| "release_year": 2020, |