# August 12, 2024

## Things That I Discovered

### 1. Running a job in container on GitHub Actions

* Recently, I had to run a job on GitHub Actions in a container, ended up writing a TIL for that [here](https://gitbook.devjugal.com/til/github/actions/running-jobs-in-a-container).

### 2. Set Unlimited Bash History

* Unlimited Bash history? Well, why not? Sometimes, I find myself scratching my head trying to find a command that I had run a long time ago!
* We need to set `HISTSIZE` & `HISTFILESIZE` variables of Bash to `-1`.
* To make it permanent for an user, we can set `HISTSIZE` & `HISTFILESIZE` variables in `~/.bashrc` file.
* **Reference**: [bash - Linux Manpages Online](https://man.cx/bash)


---

# Agent Instructions: 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:

```
GET https://my-learning-journey.devjugal.com/content/2024/august/day-12.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
