Discover how to seamlessly elevate your content game using ChatGPT. Dive into our guide on automating and enhancing blog titles and summaries with OpenAI's powerful NLP models.
Blog or just public notes
A stateless application, i.e. a docker container, is one that neither reads nor stores information about its state from one time that it is run to the next. But for development mode is useful to keep the history of the commands that we write. In this post I will give you a hint for keeping those.
The PYTHONBREAKPOINT environment variable can be set to the name of a callable. This can be the callable that starts a debugging session in another 3rd party debugger library.
uWsgi is designed to operate on WSGI callables found in python modules. It's super nice, but most of the defaults values are wrong.
If we create a PostgreSQL dump by default it does with owner and privileges. And this is usually fine, except if we want it for feeding our local environments. In this case (I hope), we use different users and passwords. So it would be nice if we can do the dump without that kind of permissions (without ownership and privileges).
Les comparto un docker-compose para aprender dynamodb con python. La compose tiene dynamodb, dynamodb-admin y un python3.8 alpine.
Celery: c贸mo asegurarse de ejecutar de a una tarea a la vez. Ensuring a task is only executed one at a time
El objetivo es agregar el nombre del branch en los commits. Muchas veces el nombre del branch tiene el n煤mero de ticket de jira. El objetivo es saber porqu茅 se hizo un cambio x y nada mejor que tener la referencia al ticket.
Si buscas configurar una vpn r谩pidamente este es el lugar. Con docker, docker-compose en un par de pasos tenes un red virtual privada..
La mayoria de los dockerfiles que usan python usan la imagen que est谩 basada en debian y tiene la desventaja de ocupar bastante espacio y traer un mont贸n de herramientas que son 煤tiles durante el desarrollo (como por ejemplo bash) y no tan 煤tiles para el ambiente productivo. Por esto 煤ltimamente se usa m谩s y m谩s im谩genes basadas en Alpine. Una distribucion de linux (basada en busybox) que ocupa solo 5mb.
Consegu铆 un trabajo en el que me tramitaron la visa y se hicieron cargo de la relocalizaci贸n. Si te dedicas a la programaci贸n es el momento para aprovecharlo, hay muchas ofertas para viajar por el mundo.
Estaba muy acostumbrado a debugear con mis queridos pdb.set_trace y de repente se apareci贸 Docker en mi camino y perdi la posibilidad de attachearme al debugger. Por eso ahora descubr WDB y funciona de maravilla.