jyaba.hashnode.devGetattr and Setatrr in PythonCertainly! Let's dive into an in-depth tutorial on both getattr and setattr functions in Python. These functions enhance the flexibility of your code by enabling dynamic access and assignment to an object's attributes. Understanding their power and n...Mar 21, 2024·3 min read
jyaba.hashnode.devConnection Failure: connect ECONNREFUSED 127.0.0.1:5432 [ nocodb app to postgresql server]I was trying to make connection my nocodb container to my postgresql container was getting an above error. I solve simply changing localhost to host.docker.internal: The host.docker.internal DNS name serves as a bridge for network communication from...Mar 17, 2024·2 min read
jyaba.hashnode.devHow I build CR2toJPG converter Mac AppI used py2app module to convert my existing python app which uses Pillow for image conversion and Tkinter to make the UI for Mac AppI build the setup.py file where main.py is the Python file which has everthing. from setuptools import setup APP = ['...Mar 17, 2024·3 min read
jyaba.hashnode.devHow do I future proof my career as a Data Engineer?To future-proof your career as a Data Engineer, consider the following strategies inspired by the discussions and insights shared in the: View AI as a Force Multiplier: Rather than seeing AI as a threat, think of it as a tool that enhances your capa...Mar 16, 2024·3 min read
jyaba.hashnode.devOptimizing Cloud Run Performance: Strategies to Minimize Cold Starts and Ensure API ResponsivenessCold starts in serverless environments like Cloud Run can indeed cause delays in handling requests, especially if the service hasn't received any traffic for a while or if there's a sudden surge in traffic. Here are a few strategies you can employ to...Mar 5, 2024·2 min read