I have seen a bunch of posts on LinkedIn about the “weekend hustle”: using your leisure time to do more work. Not convinced that is a good idea. There is another trend: people who schedule their leisure time like it’s work, and they record themselves! That’s work on top of work that should be leisure!… Continue reading Time off work might also be work
Author: Daniel Pradilla
Soy arquitecto de software y ayudo a la gente a mejorar sus vidas usando la tecnologÃa.
En este sitio, intento escribir sobre cómo aprovechar las oportunidades que nos ofrece un mundo hiperconectado. Cómo vivir vidas más simples y a la vez ser más productivos.
Te invito a revisar la sección de artÃculos destacados. Si quieres contactarme, o trabajar conmigo, puedes usar los links sociales que encontrarás abajo.
My Python logging setup
Working on various Python projects has taught me the importance of consistent logging, especially when dealing with distributed computing frameworks like Spark. Logging is not just about keeping track of errors or information; it’s about having a detailed and systematic record of the operations to understand the flow of your program and quickly diagnose issues.… Continue reading My Python logging setup
Classifying fruits with a Convolutional Neural Network in Keras
I followed a tutorial on Convolutional Neural Networks that left many questions unanswered. Soon I realized that the actual process of architecting a Neural Network and setting the parameters seemed to be much more experimental than I thought. It took a while to find explanations that a rookie like me could understand. Most of the… Continue reading Classifying fruits with a Convolutional Neural Network in Keras
10 things I learned while deploying my first python function to AWS Lambda
I spent a few days on and off trying to deploy a Flask REST service to AWS Lambda, just to experience what the cool kids were talking about. These are some of the things I learned along the way: Zappa is the easiest packager/deployer for python (as of December 2018) Zappa provides good quality… Continue reading 10 things I learned while deploying my first python function to AWS Lambda
Uploading and downloading documents from Amazon S3 using bash
You need to upload a file to S3 and cannot install new packages in the server, nor the s3 client tools. You only have bash, openssl and sed. Go. I found and adapted a script by Viktor Szakats, that creates all the proper headers expected by the latest AWS API. I had lots of trouble with… Continue reading Uploading and downloading documents from Amazon S3 using bash