-
Convierte la palabra
PALO
en la palabraGATA
en 2 pasos o menos. Solo debes cambiar una letra de la palabra en cada paso. Cada paso debe crear una palabra válida del diccionario de españolP A L O
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
{ scopeName = 'source.js'; | |
comment = 'JavaScript Syntax: version 2.0'; | |
fileTypes = ( 'js', 'htc', 'jsx' ); | |
foldingStartMarker = '^.*\bfunction\s*(\w+\s*)?\([^\)]*\)(\s*\{[^\}]*)?\s*$'; | |
foldingStopMarker = '^\s*\}'; | |
patterns = ( | |
{ name = 'meta.class.js'; | |
comment = 'match stuff like: Sound.prototype = { É } when extending an object'; | |
match = '([a-zA-Z_?.$][\w?.$]*)\.(prototype)\s*(=)\s*'; | |
captures = { |
Booklet CS4FN Issue 1 - Reto 4 - Página 4
Silogismo (del griego syllogismos, 'conclusión, inferencia'): es un rompecabezas lógico en el que se extrae una conclusión a partir de unos hechos concretos y sólo de esos hechos.
Dados los siguientes hechos, identifique la letra que mejor completa el enunciado.
This file contains hidden or 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
#! /usr/bin/sh | |
yarn add eslint --dev | |
yarn run eslint --init # Don’t install packages | |
yarn add eslint --dev prettier eslint-plugin-prettier eslint-config-prettier | |
cp .gitignore .prettierignore | |
curl https://gist.github.com/oxfist/f28eca9d96e96cd10a92fd4ff80f7886 > .eslintrc.js | |
echo $'{\n "singleQuote": true\n}' > .prettierrc.json | |
echo 'Now add `eslint src/ && prettier -c src/` to package.json scripts' |
This file contains hidden or 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
module.exports = { | |
env: { | |
browser: true, | |
es2021: true, | |
}, | |
extends: [ | |
'airbnb', | |
'eslint:recommended', | |
'plugin:react/recommended', | |
'plugin:prettier/recommended', |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
- Follow standard conventions.
- Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
- Boy scout rule. Leave the campground cleaner than you found it.
- Always find root cause. Always look for the root cause of a problem.