Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reading list #38

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions pruebas/01-reading-list/aIv4ro/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/* eslint-env node */

module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:react-hooks/recommended',
'./node_modules/ts-standard/eslintrc.json'
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: './tsconfig.json'
},
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true }
],
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/explicit-function-return-type': 'off'
}
}
24 changes: 24 additions & 0 deletions pruebas/01-reading-list/aIv4ro/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
2 changes: 2 additions & 0 deletions pruebas/01-reading-list/aIv4ro/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## READING LIST

235 changes: 235 additions & 0 deletions pruebas/01-reading-list/aIv4ro/books.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,235 @@
{
"library": [
{
"book": {
"title": "El Señor de los Anillos",
"pages": 1200,
"genre": "Fantasía",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1566425108i/33.jpg",
"synopsis": "Una aventura épica en un mundo de fantasía llamado la Tierra Media.",
"year": 1954,
"ISBN": "978-0618640157",
"author": {
"name": "J.R.R. Tolkien",
"otherBooks": [
"El Hobbit",
"El Silmarillion"
]
}
}
},
{
"book": {
"title": "Juego de Tronos",
"pages": 694,
"genre": "Fantasía",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1273763400i/8189620.jpg",
"synopsis": "En un reino donde las estaciones duran años, una batalla épica por el trono se desarrolla.",
"year": 1996,
"ISBN": "978-0553103540",
"author": {
"name": "George R. R. Martin",
"otherBooks": [
"Choque de Reyes",
"Tormenta de Espadas",
"Festín de Cuervos"
]
}
}
},
{
"book": {
"title": "Harry Potter y la piedra filosofal",
"pages": 223,
"genre": "Fantasía",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1550337333i/15868.jpg",
"synopsis": "Un niño descubre que es un mago y comienza una aventura en una escuela de magia.",
"year": 1997,
"ISBN": "978-0747532699",
"author": {
"name": "J.K. Rowling",
"otherBooks": [
"Harry Potter y la cámara secreta",
"Harry Potter y el prisionero de Azkaban",
"Harry Potter y el cáliz de fuego"
]
}
}
},
{
"book": {
"title": "1984",
"pages": 328,
"genre": "Ciencia ficción",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1657781256i/61439040.jpg",
"synopsis": "Una inquietante visión de un futuro distópico y totalitario.",
"year": 1949,
"ISBN": "978-0451524935",
"author": {
"name": "George Orwell",
"otherBooks": [
"Rebelión en la granja"
]
}
}
},
{
"book": {
"title": "Apocalipsis Zombie",
"pages": 444,
"genre": "Zombies",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1422626176i/24762432.jpg",
"synopsis": "Un gallego se queda en casa en pleno apocalipsis zombie y acaba casi salvando el mundo",
"year": 2001,
"ISBN": "978-4444532611",
"author": {
"name": "Manel Loreiro",
"otherBooks": []
}
}
},
{
"book": {
"title": "Dune",
"pages": 412,
"genre": "Ciencia ficción",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1555447414i/44767458.jpg",
"synopsis": "En el inhóspito planeta desértico de Arrakis, una gran intriga política y familiar se desarrolla.",
"year": 1965,
"ISBN": "978-0441172719",
"author": {
"name": "Frank Herbert",
"otherBooks": [
"El mesías de Dune",
"Hijos de Dune"
]
}
}
},
{
"book": {
"title": "La Guía del Autoestopista Galáctico",
"pages": 216,
"genre": "Ciencia ficción",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1653311117i/6691227.jpg",
"synopsis": "Un viaje absurdo y cómico por el espacio, con toallas.",
"year": 1979,
"ISBN": "978-0345391803",
"author": {
"name": "Douglas Adams",
"otherBooks": [
"El restaurante del fin del mundo",
"La vida, el universo y todo lo demás"
]
}
}
},
{
"book": {
"title": "Neuromante",
"pages": 271,
"genre": "Ciencia ficción",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1554437249i/6088007.jpg",
"synopsis": "Una visión profética de la ciber-realidad y la inteligencia artificial.",
"year": 1984,
"ISBN": "978-0441569595",
"author": {
"name": "William Gibson",
"otherBooks": [
"Conde Cero",
"Mona Lisa Acelerada"
]
}
}
},
{
"book": {
"title": "Fahrenheit 451",
"pages": 249,
"genre": "Ciencia ficción",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1383718290i/13079982.jpg",
"synopsis": "Una sociedad futura donde los libros están prohibidos y 'bomberos' queman cualquier libro que encuentren.",
"year": 1953,
"ISBN": "978-1451673319",
"author": {
"name": "Ray Bradbury",
"otherBooks": [
"Crónicas marcianas",
"El hombre ilustrado"
]
}
}
},
{
"book": {
"title": "El resplandor",
"pages": 688,
"genre": "Terror",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1641398308i/60038757.jpg",
"synopsis": "Una familia se muda a un hotel aislado para el invierno donde una presencia siniestra influye en el padre hacia la violencia.",
"year": 1977,
"ISBN": "978-0307743657",
"author": {
"name": "Stephen King",
"otherBooks": [
"Carrie",
"It"
]
}
}
},
{
"book": {
"title": "Drácula",
"pages": 418,
"genre": "Terror",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1387151694i/17245.jpg",
"synopsis": "La historia del infame conde Drácula y su intento de mudarse de Transilvania a Inglaterra.",
"year": 1897,
"ISBN": "978-0486411095",
"author": {
"name": "Bram Stoker",
"otherBooks": [
"La joya de las siete estrellas",
"La madriguera del gusano blanco"
]
}
}
},
{
"book": {
"title": "Frankenstein",
"pages": 280,
"genre": "Terror",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1669159060i/63631742.jpg",
"synopsis": "Un científico obsesionado crea una criatura viva a partir de partes de cuerpos robadas, con consecuencias desastrosas.",
"year": 1818,
"ISBN": "978-0486282114",
"author": {
"name": "Mary Shelley",
"otherBooks": [
"El último hombre",
"Valperga"
]
}
}
},
{
"book": {
"title": "La llamada de Cthulhu",
"pages": 43,
"genre": "Terror",
"cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1485924654i/34094154.jpg",
"synopsis": "La historia de un monstruo ancestral que amenaza con revivir y dominar el mundo.",
"year": 1928,
"ISBN": "978-1542461690",
"author": {
"name": "H.P. Lovecraft",
"otherBooks": [
"El horror de Dunwich",
"En las montañas de la locura"
]
}
}
}
]}
13 changes: 13 additions & 0 deletions pruebas/01-reading-list/aIv4ro/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Reading list</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading