Skip to content

Instantly share code, notes, and snippets.

View fuentesld's full-sized avatar
🏠
Working from home

Luis Fuentes fuentesld

🏠
Working from home
  • Yautics Systems
  • Yautepec, México
View GitHub Profile
@fuentesld
fuentesld / README.md
Last active March 4, 2020 00:13
LVM How to

Entregando dispotivos de almacenamiento al LVM (PV)

Estos comando deben ser ejecutados con el usuario root

Normanlment los usuarios no pueden jugar con los discos :-)

Marcar el primer disco, por completo, como PV

pvcreate /dev/sda

Marcar varias particiones como PV

pvcreate /dev/sda3 /dev/sdb1 /dev/sdc1

Marcar un dispositivo RAID por software como PV

pvcreate /dev/md0

@fuentesld
fuentesld / -README.md
Last active July 26, 2019 00:03
Node Boilerplate

Node Boilerplate

npm init

Componentes de Servidro rest

npm i express bcryptjs jsonwebtoken config express-validator mongoose
npm i -D nodemon concurrently
@fuentesld
fuentesld / -README.md
Created July 25, 2019 21:53
React Context Boilerplate

React Context Boilerplate

Create React app

npx create-react-app <app-name>

File system

@fuentesld
fuentesld / README.md
Last active March 2, 2023 00:38
Node configuration with express react concurrency

node configuration for concurrent express React in the server

Install concurrently package

On server directory type:

npm i concurrently

In package.json check "scripts" section as above

@fuentesld
fuentesld / -README.md
Last active May 28, 2022 09:29
React Redux boilerplate

React Redux Boilerplate

Create React app

npx create-react-app <app-name>
npm i redux react-redux redux-thunk redux-devtools-extension

File system