> For the complete documentation index, see [llms.txt](https://braydie.gitbook.io/how-to-be-a-programmer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://braydie.gitbook.io/how-to-be-a-programmer/es/1-beginner.md).

# 1. Principiante

* Habilidades Personales
  * [Aprender a Depurar](/how-to-be-a-programmer/es/1-beginner/personal-skills/01-learn-to-debug.md)
  * [¿Cómo depurar dividiendo el espacio del problema?](/how-to-be-a-programmer/es/1-beginner/personal-skills/02-how-to-debug-by-splitting-the-problem-space.md)
  * [¿Cómo eliminar un error?](/how-to-be-a-programmer/es/1-beginner/personal-skills/03-how-to-remove-an-error.md)
  * [¿Cómo Depurar Utilizando un Registro (Log)?](/how-to-be-a-programmer/es/1-beginner/personal-skills/04-how-to-debug-using-a-log.md)
  * [¿Cómo Entender Problemas de Rendimiento?](/how-to-be-a-programmer/es/1-beginner/personal-skills/05-how-to-understand-performance-problems.md)
  * [¿Cómo Solucionar Problemas de Rendimiento?](/how-to-be-a-programmer/es/1-beginner/personal-skills/06-how-to-fix-performance-problems.md)
  * [¿Cómo Optimizar Bucles?](/how-to-be-a-programmer/es/1-beginner/personal-skills/07-how-to-optimize-loops.md)
  * [¿Cómo Manejar el Costo de la Entrada/Salida (E/S)?](/how-to-be-a-programmer/es/1-beginner/personal-skills/08-how-to-deal-with-io-expense.md)
  * [¿Cómo Gestionar la Memoria?](/how-to-be-a-programmer/es/1-beginner/personal-skills/09-how-to-manage-memory.md)
  * [¿Cómo Manejar Errores Intermitentes?](/how-to-be-a-programmer/es/1-beginner/personal-skills/10-how-to-deal-with-intermittent-bugs.md)
  * [¿Cómo Aprender Habilidades de Diseño?](/how-to-be-a-programmer/es/1-beginner/personal-skills/11-how-to-learn-design-skills.md)
  * [¿Cómo Realizar Experimentos?](/how-to-be-a-programmer/es/1-beginner/personal-skills/12-how-to-conduct-experiments.md)
* Habilidades de Equipo
  * [¿Por qué es importante la estimación?](/how-to-be-a-programmer/es/1-beginner/team-skills/01-why-estimation-is-important.md)
  * [¿Cómo estimar el tiempo de programación?](/how-to-be-a-programmer/es/1-beginner/team-skills/02-how-to-estimate-programming-time.md)
  * [¿Cómo encontrar información?](/how-to-be-a-programmer/es/1-beginner/team-skills/03-how-to-find-out-information.md)
  * [¿Cómo utilizar a las personas como fuentes de información?](/how-to-be-a-programmer/es/1-beginner/team-skills/04-how-to-utilize-people-as-information-sources.md)
  * [¿Cómo documentar de manera inteligente?](/how-to-be-a-programmer/es/1-beginner/team-skills/05-how-to-document-wisely.md)
  * [¿Cómo trabajar con un código deficiente?](/how-to-be-a-programmer/es/1-beginner/team-skills/06-how-to-work-with-poor-code.md)
  * [¿Cómo Utilizar el Control de Código Fuente?](/how-to-be-a-programmer/es/1-beginner/team-skills/07-how-to-use-source-code-control.md)
  * [¿Cómo realizar pruebas unitarias?](/how-to-be-a-programmer/es/1-beginner/team-skills/08-how-to-unit-test.md)
  * [Tomarse descansos cuando te sientes bloqueado](/how-to-be-a-programmer/es/1-beginner/team-skills/09-take-breaks-when-stumped.md)
  * [¿Cómo reconocer cuándo es hora de ir a casa?](/how-to-be-a-programmer/es/1-beginner/team-skills/10-how-to-recognize-when-to-go-home.md)
  * [¿Cómo lidiar con personas difíciles?](/how-to-be-a-programmer/es/1-beginner/team-skills/11-how-to-deal-with-difficult-people.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://braydie.gitbook.io/how-to-be-a-programmer/es/1-beginner.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
