- Git:
- Docker:
sudo add-apt-repository ppa:webupd8team/java
sudo apt install oracle-java8-installer
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
sudo apt-add-repository "deb https://pkg.jenkins.io/debian-stable binary/"
Imagina que tienes un JSON API y un mock
[
{category: "Sporting Goods", price: "$49.99", stocked: true, name: "Football"},
{category: "Sporting Goods", price: "$9.99", stocked: true, name: "Baseball"},
{category: "Sporting Goods", price: "$29.99", stocked: false, name: "Basketball"},
{category: "Electronics", price: "$99.99", stocked: true, name: "iPod Touch"},
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Expresiones Regulares | |
=================== | |
2.1 Match Literal Text | |
------------- | |
####Problema 1: | |
Crear una expresión regular para coincidir exactamente con esta frase gloriosamente artificial: | |
Los caracteres de puntuación en la tabla ASCII son: | |
!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~. | |
####Solución: |