Skip to content

Instantly share code, notes, and snippets.

View Tapia641's full-sized avatar
📍
Focusing

Luis Enrique Tapia Tapia641

📍
Focusing
  • Nokia
  • Ciudad de México
View GitHub Profile
import pandas
from vspk import v5_0 as vsdk
import paramiko
import time
import re
from sshtunnel import SSHTunnelForwarder
from socket import *
# Lab
@Tapia641
Tapia641 / React-beginner
Last active May 7, 2020 03:37
React basic commands
For cerate new project:
NPX: npm package runner
npx create-react-app <App-name>
Run project:
cd route
npm start
npm install --save @material-ui/core
@Tapia641
Tapia641 / Angular-set-up.md
Last active February 5, 2020 08:17
Angular

Dependencias

npm install bcrypt-nodejs --save //Encriptar passwords
npm install   body-parser --save //Convertir a objeto usable por javascript
npm install connect-multiparty --save //Subir archivos --save
npm install express --save //Framework http para rutas --save
npm install jwt-simple --save //Gestionar tokens & autentifacion --save
npm install moment --save //Fechas --save
npm install mongoose --save //ORM MongoDB en NodeJS --save
nom install nodemon --save-dev //Refrescar el servidor ante los cambios

Como subir un proyecto local a github.

git init

git add .

git commit -m "first commit"

git remote add origin https://github.com/NOMBRE_USUARIO/NOMBRE_PROYECTO.git
/*
* robot.js
*
* You'll need three keys in order to unlock the
* Algorithm: the red key, the green key, and the
* blue key. Unfortunately, all three of them are
* behind human-proof barriers.
*
* The plan is simple: reprogram the maintenance
* robots to grab the key and bring it through
'''
cd etc/sysconfig/network-scripts
ifcfg-enp0s3
'''
accedemos al archivo de interfaces de red
type = dchp
bootproto
onboot = yes

1. Creating an Angular project with Angular CLI

ng new angular-bootstrap-example

2: Installing Bootstrap from NPM

Change of route.

@Tapia641
Tapia641 / Tipos de conversiones en Java.md
Created February 11, 2019 01:30
Guia definitiva de conversión de tipos en Java.

String a Integer

Integer entero = Integer.valueOf(cadena);
// o
int entero = Integer.parseInt(cadena);

Ejemplo:

Integer a = Integer.valueOf("900");
// o
@Tapia641
Tapia641 / README-español.md
Last active May 23, 2022 22:29
Plantilla para crear un README.md formal

Título del Proyecto

Breve descripción del proyecto

Algunos párrafos sobre tu proyecto y el problema que resuelve.

Pre-requisitos

Que cosas necesitas para instalar el software y como instalarlas