Skip to content
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
54 changes: 54 additions & 0 deletions blog/members/hellhound3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---
blogpost: true
author: Jean-Pierre Chauvel
location: Lima
category: members
language: Español
image: 1
excerpt: 1
---
Comment on lines +1 to +9
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Add publication date to front matter

Add an ISO-8601 date under blogpost: true, per the convention hinted in the other file.

 ---
 blogpost: true
+date: 2025-08-09
 author: Jean-Pierre Chauvel
 location: Lima
 category: members
 language: Español
 image: 1
 excerpt: 1
 ---
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
---
blogpost: true
author: Jean-Pierre Chauvel
location: Lima
category: members
language: Español
image: 1
excerpt: 1
---
---
blogpost: true
date: 2025-08-09
author: Jean-Pierre Chauvel
location: Lima
category: members
language: Español
image: 1
excerpt: 1
---
🤖 Prompt for AI Agents
In blog/members/hellhound3.md at lines 1 to 9, the front matter is missing a
publication date. Add a new line with an ISO-8601 formatted date (e.g.,
YYYY-MM-DD) immediately below the blogpost: true line to follow the established
convention for blog posts.


# Jean-Pierre Chauvel

```{gravatar} jean.pierre@chauvel.org
---
width: 200
class: "member-gravatar"
---
```

```{raw} html
<ul class="social-media profile">
<li>
<a class="external reference" href="https://github.com/jpchauvel">
<iconify-icon icon="simple-icons:github" style="font-size:2em"></iconify-icon>
</a>
</li>
</ul>
Comment on lines +20 to +27
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Add aria-label to the icon-only GitHub link

Provide an accessible name for assistive technologies.

-        <a class="external reference" href="https://github.com/jpchauvel">
+        <a class="external reference" href="https://github.com/jpchauvel" aria-label="GitHub de Jean-Pierre Chauvel">
             <iconify-icon icon="simple-icons:github" style="font-size:2em"></iconify-icon>
         </a>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
```{raw} html
<ul class="social-media profile">
<li>
<a class="external reference" href="https://github.com/jpchauvel">
<iconify-icon icon="simple-icons:github" style="font-size:2em"></iconify-icon>
</a>
</li>
</ul>
🤖 Prompt for AI Agents
In blog/members/hellhound3.md around lines 20 to 27, the GitHub link uses only
an icon without an accessible name. Add an aria-label attribute to the <a> tag
describing the link, such as aria-label="GitHub profile", to provide an
accessible name for assistive technologies.

```

:Aliases: hellhound

:Ciudad: Lima

:Homepage: https://chauvel.org
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Fix bare URL (MD034)

Wrap homepage in a proper link format to satisfy markdownlint.

-:Homepage: https://chauvel.org
+:Homepage: <https://chauvel.org>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
:Homepage: https://chauvel.org
:Homepage: <https://chauvel.org>
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

34-34: Bare URL used

(MD034, no-bare-urls)

🤖 Prompt for AI Agents
In blog/members/hellhound3.md at line 34, the homepage URL is presented as a
bare URL, which violates markdownlint rule MD034. To fix this, wrap the URL in
markdown link syntax by enclosing the link text in brackets and the URL in
parentheses, for example: [Homepage](https://chauvel.org).


## Sobre mí

Sobre mí

### ¿Quién eres y a qué te dedicas?

¿Quién eres y a qué te dedicas?

### ¿Cómo programas en Python?

¿Cómo programas en Python?

### ¿Tienes algún aporte a la comunidad de Python?

¿Tienes algún aporte a la comunidad de Python?

### ¿Estás disponible para hacer mentoring, consultorías, charlas?

¿Estás disponible para hacer mentoring, consultorías, charlas?
Comment on lines +36 to +54
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Remove duplicated placeholder lines

Several lines repeat the section headings as plain text. Remove duplicates to avoid noise and confusion.

 ## Sobre mí
-Sobre mí
 
 ### ¿Quién eres y a qué te dedicas?
-¿Quién eres y a qué te dedicas?
 
 ### ¿Cómo programas en Python?
-¿Cómo programas en Python?
 
 ### ¿Tienes algún aporte a la comunidad de Python?
-¿Tienes algún aporte a la comunidad de Python?
 
 ### ¿Estás disponible para hacer mentoring, consultorías, charlas?
-¿Estás disponible para hacer mentoring, consultorías, charlas?
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
## Sobre mí
Sobre mí
### ¿Quién eres y a qué te dedicas?
¿Quién eres y a qué te dedicas?
### ¿Cómo programas en Python?
¿Cómo programas en Python?
### ¿Tienes algún aporte a la comunidad de Python?
¿Tienes algún aporte a la comunidad de Python?
### ¿Estás disponible para hacer mentoring, consultorías, charlas?
¿Estás disponible para hacer mentoring, consultorías, charlas?
## Sobre mí
### ¿Quién eres y a qué te dedicas?
### ¿Cómo programas en Python?
### ¿Tienes algún aporte a la comunidad de Python?
### ¿Estás disponible para hacer mentoring, consultorías, charlas?
🧰 Tools
🪛 LanguageTool

[uncategorized] ~52-~52: Probablemente hay un error. Considere aplicar la sugerencia.
Context: ...thon? ### ¿Estás disponible para hacer mentoring, consultorías, charlas? ¿Estás disponi...

(AI_ES_GGEC_REPLACEMENT_ORTHOGRAPHY_SPELLING)


[uncategorized] ~54-~54: Probablemente hay un error. Considere aplicar la sugerencia.
Context: ... charlas? ¿Estás disponible para hacer mentoring, consultorías, charlas?

(AI_ES_GGEC_REPLACEMENT_ORTHOGRAPHY_SPELLING)

🤖 Prompt for AI Agents
In blog/members/hellhound3.md between lines 36 and 54, there are duplicated
placeholder lines that repeat the section headings as plain text. Remove the
repeated lines so that each section heading appears only once, keeping the
markdown headers and deleting the redundant text lines below them to clean up
the content.

74 changes: 74 additions & 0 deletions blog/members/jbolo-990c01ac.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
---
blogpost: true
author: Jonathan Bolo Desposorio
location: Lima, Peru
category: members
language: Español
image: 1
excerpt: 1
---
Comment on lines +1 to +9
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Add publication date and remove the inline editorial note

  • Front matter is missing a publication date (the file even reminds us to add it). Add an ISO-8601 date right under blogpost: true.
  • The inline note at Line 11 will render on the page; remove it or convert it to an HTML comment.
 ---
 blogpost: true
+date: 2025-08-09
 author: Jonathan Bolo Desposorio
 location: Lima, Peru
 category: members
 language: Español
 image: 1
 excerpt: 1
 ---
 
-% NOTA: No olvidar poner la fecha de publicación debajo de `blogpost: true`
+<!-- NOTA: Fecha de publicación agregada en front matter -->

If “image” and “excerpt” are placeholders, replace them with real values or drop them if unused by the site. Do you want me to scan other members to infer typical values?

Also applies to: 11-11

🤖 Prompt for AI Agents
In blog/members/jbolo-990c01ac.md at lines 1 to 9 and line 11, add a publication
date in ISO-8601 format directly below the blogpost: true line in the front
matter. Remove or convert the inline editorial note at line 11 into an HTML
comment so it does not render on the page. Additionally, replace the placeholder
values for "image" and "excerpt" with actual content or remove them if they are
not used by the site.


% NOTA: No olvidar poner la fecha de publicación debajo de `blogpost: true`

# Jonathan Bolo Desposorio

```{gravatar} jbolo.des@gmail.com
---
width: 200
class: "member-gravatar"
---
```

```{raw} html
<ul class="social-media profile">
<li>
<a class="external reference" href="https://www.linkedin.com/in/jbolo/">
<iconify-icon icon="simple-icons:linkedin" style="font-size:2em"></iconify-icon>
</a>
</li>
<li>
<a class="external reference" href="https://github.com/jbolo">
<iconify-icon icon="simple-icons:github" style="font-size:2em"></iconify-icon>
</a>
</li>
<li>
<a class="external reference" href="https://www.instagram.com/jbolodes/">
<iconify-icon icon="simple-icons:instagram" style="font-size:2em"></iconify-icon>
</a>
</li>
</ul>
```
Comment on lines +22 to +40
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Improve accessibility of icon-only social links

Add accessible names to the anchor tags so screen readers can announce where the links lead.

-        <a class="external reference" href="https://www.linkedin.com/in/jbolo/">
+        <a class="external reference" href="https://www.linkedin.com/in/jbolo/" aria-label="LinkedIn de Jonathan Bolo">
             <iconify-icon icon="simple-icons:linkedin" style="font-size:2em"></iconify-icon>
         </a>
...
-        <a class="external reference" href="https://github.com/jbolo">
+        <a class="external reference" href="https://github.com/jbolo" aria-label="GitHub de Jonathan Bolo">
             <iconify-icon icon="simple-icons:github" style="font-size:2em"></iconify-icon>
         </a>
...
-        <a class="external reference" href="https://www.instagram.com/jbolodes/">
+        <a class="external reference" href="https://www.instagram.com/jbolodes/" aria-label="Instagram de Jonathan Bolo">
             <iconify-icon icon="simple-icons:instagram" style="font-size:2em"></iconify-icon>
         </a>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
```{raw} html
<ul class="social-media profile">
<li>
<a class="external reference" href="https://www.linkedin.com/in/jbolo/">
<iconify-icon icon="simple-icons:linkedin" style="font-size:2em"></iconify-icon>
</a>
</li>
<li>
<a class="external reference" href="https://github.com/jbolo">
<iconify-icon icon="simple-icons:github" style="font-size:2em"></iconify-icon>
</a>
</li>
<li>
<a class="external reference" href="https://www.instagram.com/jbolodes/">
<iconify-icon icon="simple-icons:instagram" style="font-size:2em"></iconify-icon>
</a>
</li>
</ul>
```
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

34-34: Bare URL used

(MD034, no-bare-urls)

🤖 Prompt for AI Agents
In blog/members/jbolo-990c01ac.md around lines 22 to 40, the anchor tags for
social media links contain only icons without accessible names, which hinders
screen reader usability. Add descriptive aria-label attributes to each anchor
tag that clearly state the destination, such as "LinkedIn profile," "GitHub
profile," and "Instagram profile," to improve accessibility for screen reader
users.


:Aliases: jbolo

:Ciudad: Lima, Peru

:Homepage: https://jbolo.dev
Comment on lines +44 to +46
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Fix diacritic and bare URL (MD034)

  • Use “Perú” with accent.
  • Wrap the homepage in a proper link to satisfy markdownlint MD034.
-:Ciudad: Lima, Peru
+:Ciudad: Lima, Perú
...
-:Homepage: https://jbolo.dev
+:Homepage: <https://jbolo.dev>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
:Ciudad: Lima, Peru
:Homepage: https://jbolo.dev
:Ciudad: Lima, Perú
:Homepage: <https://jbolo.dev>
🧰 Tools
🪛 LanguageTool

[uncategorized] ~44-~44: Probablemente falta un signo diacrítico.
Context: ...l> ``` :Aliases: jbolo :Ciudad: Lima, Peru :Homepage: https://jbolo.dev ### ¿Qui...

(AI_ES_GGEC_MISSING_ORTHOGRAPHY_DIACRITIC)

🤖 Prompt for AI Agents
In blog/members/jbolo-990c01ac.md around lines 44 to 46, fix the diacritic by
changing "Lima, Peru" to "Lima, Perú" and wrap the homepage URL
"https://jbolo.dev" in markdown link syntax to satisfy markdownlint rule MD034,
ensuring the URL is properly formatted as a clickable link.


### ¿Quién eres y a qué te dedicas?

Soy Jonathan Bolo, apasionado por la tecnología y la automatización desde los primeros días con una PC equipada con procesador Intel MMX en los años 2000. Inicié mi camino con cursos de ensamblaje y electrónica básica, despertando así mi curiosidad por las computadoras.

Mi trayectoria profesional incluye estudios en Redes y Telecomunicaciones, sin embargo, los cursos de desarrollo (por aquel entonces PHP y JS) y sistemas operativos(Linux) fueron los que terminaron por captar mi interés. Me especializé en centrales telefónicas y callcenter basados en Asterisk OpenSource, desarrollando así módulos en C y paneles de administración web.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Orthography and spacing around parentheses

Correct accent, verb form, and spacing around parentheses.

-Mi trayectoria profesional incluye estudios en Redes y Telecomunicaciones, sin embargo, los cursos de desarrollo (por aquel entonces PHP y JS) y sistemas operativos(Linux) fueron los que terminaron por captar mi interés. Me especializé en centrales telefónicas y callcenter basados en Asterisk OpenSource, desarrollando así módulos en C y paneles de administración web.
+Mi trayectoria profesional incluye estudios en Redes y Telecomunicaciones; sin embargo, los cursos de desarrollo (por aquel entonces PHP y JS) y sistemas operativos (Linux) fueron los que terminaron por captar mi interés. Me especialicé en centrales telefónicas y call centers basados en Asterisk (open source), desarrollando módulos en C y paneles de administración web.
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
Mi trayectoria profesional incluye estudios en Redes y Telecomunicaciones, sin embargo, los cursos de desarrollo (por aquel entonces PHP y JS) y sistemas operativos(Linux) fueron los que terminaron por captar mi interés. Me especializé en centrales telefónicas y callcenter basados en Asterisk OpenSource, desarrollando así módulos en C y paneles de administración web.
Mi trayectoria profesional incluye estudios en Redes y Telecomunicaciones; sin embargo, los cursos de desarrollo (por aquel entonces PHP y JS) y sistemas operativos (Linux) fueron los que terminaron por captar mi interés. Me especialicé en centrales telefónicas y call centers basados en Asterisk (open source), desarrollando módulos en C y paneles de administración web.
🧰 Tools
🪛 LanguageTool

[uncategorized] ~52-~52: Probablemente hay un error. Considere aplicar la sugerencia.
Context: ...e estudios en Redes y Telecomunicaciones, sin embargo, los cursos de desarrollo (...

(AI_ES_GGEC_REPLACEMENT_PUNCTUATION)


[uncategorized] ~52-~52: Probablemente falta un espacio.
Context: ...por aquel entonces PHP y JS) y sistemas operativos(Linux) fueron los que terminaron por captar m...

(AI_ES_GGEC_MISSING_ORTHOGRAPHY_SPACE)

🤖 Prompt for AI Agents
In blog/members/jbolo-990c01ac.md at line 52, correct the orthography by fixing
the accent marks and verb forms, and ensure proper spacing around parentheses by
adding a space before and after them where appropriate to improve readability
and correctness.


He trabajado en [America Movil-Claro](https://www.claro.com.pe/), especializándome en plataformas Core de Nokia y Huawei como los Charging System, Hlr, EAI(ESB, Middleware, Microservicios, etc) utilizando Java y Oracle para el desarrollo de Promociones Prepago a nivel nacional. En paralelo terminé la carrera de Ing. de sistemas.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Terminology, spacing, and punctuation improvements

Acronyms and parenthetical should be spaced; add missing accents and punctuation.

-He trabajado en [America Movil-Claro](https://www.claro.com.pe/), especializándome en plataformas Core de Nokia y Huawei como los Charging System, Hlr, EAI(ESB, Middleware, Microservicios, etc) utilizando Java y Oracle para el desarrollo de Promociones Prepago a nivel nacional. En paralelo terminé la carrera de Ing. de sistemas.
+He trabajado en [América Móvil – Claro](https://www.claro.com.pe/), especializándome en plataformas core de Nokia y Huawei como los Charging Systems, HLR y EAI (ESB, middleware, microservicios, etc.), utilizando Java y Oracle para el desarrollo de promociones prepago a nivel nacional. En paralelo, terminé la carrera de Ingeniería de Sistemas.
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
He trabajado en [America Movil-Claro](https://www.claro.com.pe/), especializándome en plataformas Core de Nokia y Huawei como los Charging System, Hlr, EAI(ESB, Middleware, Microservicios, etc) utilizando Java y Oracle para el desarrollo de Promociones Prepago a nivel nacional. En paralelo terminé la carrera de Ing. de sistemas.
He trabajado en [América Móvil – Claro](https://www.claro.com.pe/), especializándome en plataformas core de Nokia y Huawei como los Charging Systems, HLR y EAI (ESB, middleware, microservicios, etc.), utilizando Java y Oracle para el desarrollo de promociones prepago a nivel nacional. En paralelo, terminé la carrera de Ingeniería de Sistemas.
🧰 Tools
🪛 LanguageTool

[uncategorized] ~54-~54: Probablemente hay un error. Considere aplicar la sugerencia.
Context: ...r, EAI(ESB, Middleware, Microservicios, etc) utilizando Java y Oracle para el desar...

(AI_ES_GGEC_REPLACEMENT_OTHER)


[uncategorized] ~54-~54: Probablemente falta un signo de puntuación.
Context: ...EAI(ESB, Middleware, Microservicios, etc) utilizando Java y Oracle para el desarr...

(AI_ES_GGEC_MISSING_PUNCTUATION)

🤖 Prompt for AI Agents
In blog/members/jbolo-990c01ac.md at line 54, improve terminology, spacing, and
punctuation by adding spaces after acronyms and parentheses, inserting missing
accent marks on Spanish words, and ensuring proper punctuation throughout the
sentence for clarity and correctness.


Desde el 2019, trabajo en [Telefónica del Peru](https://telefonica.com.pe/) como especialista en robotización de procesos, utilizando Python para desarrollar "robots" con técnicas avanzadas de scraping, DevOps y análisis de datos en la gerencia de Transformación Digital.

En mis momentos libres, además de programar, disfruto tocando el piano y leyendo filosofía.

### ¿Cómo programas en Python?

- **Sistema operativo**: Debian
- **Entorno de desarrollo**: virtualenv, poetry, Docker, Jenking, microK8S, ...
- **Herramientas y prácticas**: pep8, flake8, entre otros linters y formatters.
- **Editor**: Vim y VSCode. Probando (Neovim)[https://neovim.io/]
- **Terminal**: Probando tmux

Comment on lines +62 to +67
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Tool names, link syntax, and style fixes

  • Capitalize brand/tool names properly.
  • Fix reversed Markdown link for Neovim.
  • “PEP 8” spelling.
  • If “tmux” is under evaluation, optional to keep as-is.
-- **Sistema operativo**: Debian
-- **Entorno de desarrollo**: virtualenv, poetry, Docker, Jenking, microK8S, ...
-- **Herramientas y prácticas**: pep8, flake8, entre otros linters y formatters.
-- **Editor**: Vim y VSCode. Probando (Neovim)[https://neovim.io/]
-- **Terminal**: Probando tmux
+- **Sistema operativo**: Debian
+- **Entorno de desarrollo**: virtualenv, Poetry, Docker, Jenkins, MicroK8s, …
+- **Herramientas y prácticas**: PEP 8, flake8, entre otros linters y formatters.
+- **Editor**: Vim y VS Code. Probando [Neovim](https://neovim.io/)
+- **Terminal**: Probando tmux
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- **Sistema operativo**: Debian
- **Entorno de desarrollo**: virtualenv, poetry, Docker, Jenking, microK8S, ...
- **Herramientas y prácticas**: pep8, flake8, entre otros linters y formatters.
- **Editor**: Vim y VSCode. Probando (Neovim)[https://neovim.io/]
- **Terminal**: Probando tmux
- **Sistema operativo**: Debian
- **Entorno de desarrollo**: virtualenv, Poetry, Docker, Jenkins, MicroK8s, …
- **Herramientas y prácticas**: PEP 8, flake8, entre otros linters y formatters.
- **Editor**: Vim y VS Code. Probando [Neovim](https://neovim.io/)
- **Terminal**: Probando tmux
🧰 Tools
🪛 LanguageTool

[uncategorized] ~62-~62: Probablemente hay un error. Considere aplicar la sugerencia.
Context: ...Python? - Sistema operativo: Debian - Entorno de desarrollo: virtualenv, poe...

(AI_ES_GGEC_REPLACEMENT_OTHER)


[typographical] ~66-~66: Mayúsculas y minúsculas recomendadas.
Context: ...://neovim.io/] - Terminal: Probando tmux ### ¿Tienes algún aporte a la comunida...

(AI_ES_GGEC_REPLACEMENT_CASING_LOWERCASE)

🤖 Prompt for AI Agents
In blog/members/jbolo-990c01ac.md around lines 62 to 67, fix the capitalization
of tool names such as "PEP 8" instead of "pep8", correct the Markdown link
syntax for Neovim by placing the URL in parentheses after the link text in
brackets, and ensure brand names like "Jenkins" are spelled correctly instead of
"Jenking". Optionally keep "tmux" as-is if it is still under evaluation.

### ¿Tienes algún aporte a la comunidad de Python?

Aunque actualmente tengo algunos scripts en mi cuenta de GitHub, mi objetivo es contribuir más activamente a la comunidad de **Python Perú** con publicaciones y colaboraciones.

### ¿Estás disponible para hacer mentoring, consultorías, charlas?

Creo firmemente en compartir el conocimiento que he adquirido. Estoy disponible para mentoring y charlas relacionadas con Python y la automatización de procesos.