Skip to content

Fix broken links improve content #178

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

Merged
Merged
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
4 changes: 3 additions & 1 deletion .makim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ groups:
hooks:
pre-run:
- task: pages.pre-build
run: mkdocs build --verbose --clean
run: |
rm -rf build/*
mkdocs build --verbose --clean --strict

preview:
help: preview the web page dynamically
Expand Down
37 changes: 37 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,40 @@ repos:
hooks:
- id: prettier
exclude: "pages/blog|theme"

- repo: local
hooks:
- id: mkdocs-build
name: mkdocs-build
entry: makim pages.build
files: pages
language: system
pass_filenames: false

- id: linkcheckmd
name: linkcheckmd
entry: python scripts/check-broken-links-md.py
language: system
pass_filenames: false

- id: check-internal-links
name: check-internal-links
entry: python scripts/check-broken-links-internal.py
language: system
pass_filenames: false

- id: ruff-format
name: ruff-format
entry: ruff format
language: system
pass_filenames: true
types:
- python

- id: ruff-linter
name: ruff-linter
entry: ruff check
language: system
pass_filenames: true
types:
- python
2 changes: 1 addition & 1 deletion pages/affiliations/index.md → bkp/affiliations/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Affiliations
template: single.html
template: main.html
---

# Affiliations at Open Science Labs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Hemos visto una gran cantidad de ventajas y funcionalidades que ofrece Superset.
Debido a esto, existe una gran variedad de industrias y empresas que lo utilizan
en sus tareas, entre ellas se encuentran: [Airbnb](https://es.airbnb.org/),
[American Express](https://www.americanexpress.com/),
[Netflix](https://www.netflix.com/ve/), [Udemy](https://www.udemy.com/),
[Netflix](https://www.netflix.com/), [Udemy](https://www.udemy.com/),
[Twitter](https://twitter.com/). Puedes consultar una lista más amplia
[aquí](https://github.com/apache/superset/blob/master/RESOURCES/INTHEWILD.md)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ thumbnail: "/header.png"
template: "blog-post.html"
---

<!-- # Automatización de tareas vía bash -->
<!-- **Por Anavelyz Pérez** -->

¿Qué es Bash?

Es un shell, o intérprete de lenguaje de comandos, para el sistema operativo
Expand All @@ -26,8 +23,6 @@ sobre Stephen Bourne, el autor del antepasado directo del actual shell de Unix
sh, que apareció en la séptima edición de la versión de _Bell Labs Research_ de
Unix.

<!-- TEASER_END -->

El shell también es conocido como **terminal**; una interfaz entre el usuario y
el propio sistema operativo. Podemos acceder a él a través del menú o una
combinación teclas. Linux proporciona por defecto seis terminales de este tipo,
Expand All @@ -44,8 +39,6 @@ Ahora bien, cuando desde una distribución Linux abrimos o activamos un terminal
se indica que estamos en nuestro home mediante el signo ~.Veremos en pantalla
algo similar a:

![Terminal](terminal1.png)

El home es el sitio donde se pueden aplicar inicialmente las tareas.

Un par de comandos que nos brindan ayuda o referencias en Bash son `man` e
Expand All @@ -63,8 +56,6 @@ y la palabra de la cual tenemos duda. Por ejemplo si tecleamos `info bash` o
`man bash`, tenemos la posibilidad de leer un texto sobre lo que es bash y sus
características principales.

![Comandos man e info](ayuda.gif)

## Crear, eliminar y editar carpetas o directorios

Entre las tareas que podemos realizar con bash están crear, eliminar y editar
Expand All @@ -73,8 +64,6 @@ carpetas o directorios. Algunos de los comandos asociados a estas son:
`pwd` nos indica el directorio en el que estamos actualmente. Si probamos este
comando en el home obtendremos algo similar a

![pwd en home](pwd.png)

`ls` nos permite ver la lista de los directorios, carpetas y archivos contenidos
en el sitio o carpeta en la que estemos. `ls -a` nos muestra todos los archivos
incluyendo los ocultos.
Expand Down
Loading
Loading