Pablo Speciale
Pablo Speciale
It would be nice to have an option to select text inside the integrated pdf viewer. Currently there are only two modes for the pdf viewer are 'Magnify' and 'Scroll'....
Following this comment: https://tex.stackexchange.com/a/463842 One could do: ``` tlmgr install texliveonfly texliveonfly --compiler=latexmk filename.tex ``` I think this could be a nice wrapper on top of latexmk, so when you...
By dividing the Dockerfile into two stages, we significantly reduce the size of the final image. This is because the build dependencies, which are not required in the final image,...
A possible improvement would be to apply the same smooth scrolling to the zz, zt, zb. How could this be implemented?
`uv` (https://github.com/astral-sh/uv) is an extremely fast Python package installer and resolver.
Enhance readability and maintainability by standardizing code style across header files. This change simplifies code reviews and improves overall code quality. Note: the `.clang-format` was copied from Colmap: https://github.com/colmap/colmap/blob/main/.clang-format Fixes...
Currently the ColumnLimit is: `ColumnLimit: '120'`. [`.clang-format` configuration](https://github.com/PoseLib/PoseLib/blob/master/.clang-format#L4) I recommend reducing the column limit for better readability: ``` IndentWidth: '2' TabWidth: '2' ColumnLimit: '80' ``` or `ColumnLimit: '88'` (like in...
Added `network: host` option to build configurations in docker-compose.yaml to allow containers to use the host network during build. This resolves Docker build networking issues, the error was: ``` npm...
Compared regular API key authentication, for example, with OpenAI: ``` import os from openai import OpenAI client = OpenAI( api_key=os.getenv("OPENAI_API_KEY") ) ``` With Microsoft Entra ID authentication, there is not...