Skip to content

Instantly share code, notes, and snippets.

@jjhoncv
jjhoncv / file.md
Created May 31, 2019 19:56
active wirelles 440G5 HPprobook

install driver

> sudo apt-get update
> git clone https://github.com/tomaspinho/rtl8821ce.git
> sudo make all
> sudo make install
> sudo modprobe 8821ce

disable uefi

@jjhoncv
jjhoncv / aws.md
Last active November 29, 2018 19:14
Instalation AWS y configuration con ECR

Installing the AWS Command Line Interface

Install Pip on Ubuntu >= 16.04

$ sudo apt-get install python-pip

Installing the AWS CLI with Pip

@jjhoncv
jjhoncv / aws.tips.md
Last active November 21, 2018 21:37
Aws tips uses

Tips aws

login ecr

aws --region $(DEPLOY_REGION) ecr get-login --no-include-email | sh
@jjhoncv
jjhoncv / dockerMacNetwork.md
Last active November 19, 2018 23:13
Network mac docker

Conection mac to Network

Mac

  • ip: 192.268.1.4

Docker

  • mysql:
    • host: docker.for.mac.localhost
    • port: 3306
  • redis:
@jjhoncv
jjhoncv / typescript-hacks.md
Last active August 7, 2018 15:25
typescript hacks

Tipos de casteo

propiedad readonly

hay 3 tipos de casteo

El primero con "<>"

interface letter {
 readonly text: string;
}
@jjhoncv
jjhoncv / manifest-reactive.md
Created June 25, 2018 21:22
manifiesta reactivo

responsivo responsa rapidamente resilten algun fallo no se muera elastico alta concurrencia orientado a mensajes

@jjhoncv
jjhoncv / es2015.md
Created June 21, 2018 22:41
description ECMAScript 2015 (ES6) javascript

Description ECMAScript 2015 (ES6) javascript

Arrow functions ()=>

  • Son funciones anonimas.
  • No asocian sus propios this, arguments, super
  • No se relacionan con metodos.
  • No pueden ser usadas en constructores.
var fruits = [
 'apple',
@jjhoncv
jjhoncv / config_proyect_vue.md
Last active April 27, 2018 01:42
configuration vue mod dummys

step by step configuration vue

Instalar vue de manera global

npm install vue-cli -g

Ejecutar el vue-cli con la plantilla webpack-simple

vue init webpack-simple books-vue
@jjhoncv
jjhoncv / functional_programming.md
Last active April 24, 2018 14:49
concepts programming functional javascript

Programacion funcional

Que és?

Programacion funcional es el proceso de creacion de software mediante la composicion de:

  • pure functions (funciones puras)
  • share state (estado compartido)
  • mutable data (datos mutables)
  • side effects (efectos secundarios)

vueJs

  • framework progresivo, poco a poco se va incrementando la complejidad
  • MV, solo modelos y vistas, vistas q estan atadas a modelos, vistas reactivas
  • componentes renderizables
  • facil de aprender, react codigo procesural
  • vuejs+herammietas+librerias = SPA

vue -> cambia el modelo -> cambia la vista vue es mas rapido