Entradas en programming
Free AI Tools for Developers in 2026
- 2026-01-18
We are in 2026 and artificial intelligence is no longer a novelty, it is the standard. However, the bottleneck remains the same for many independent developers and students: the cost of subscriptions. Maintaining access to frontier models can easily amount to hundreds of dollars a month.
Install Docker on Manjaro
- 2025-04-23
Now that I use Manjaro, it’s worth reviewing the steps to install Docker on Manjaro.
Zed: A fast and modern open source editor
- 2025-03-27
zed is an open-source code and text editor, designed to be fast and easy to use. It is built in Rust and uses a modern and intuitive user interface. It is currently officially supported on Linux and macOS, but work is underway for Windows implementation (although experimental versions exist). I will tell you how to install it and some of its features.
No module named pkg_resources found in UV environment
- 2025-01-26
If, like many others, you have already started migrating to the package manager
uv, you might have encountered the
ModuleNotFoundError: No module named 'pkg_resources' issue. Don’t worry, this
won’t be an obstacle to continuing the migration.
Configuration of Python Projects and Tools with UV
- 2025-01-06
We will create a Python project using uv, which utilizes the
pyproject.toml format for its configuration, making it easier to port
across different environments. This format is also already widely used by other
package managers of Python, and is commonly used for configuring utilities.
UV: A Fast Alternative to PIP and VENV
- 2024-06-30
UV is a package manager and virtual environment alternative for Python,
developed in Rust, which promises to be very fast in the processes it aims to
replace those of PIP and VENV. In this sense, all you need to do is add uv
before the usual instructions, and it should work (except for some particular
cases of compatibility or lack of implementation).