STSurendra Tamanginjyaba.hashnode.dev·Mar 21, 2024 · 3 min readGetattr 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...00
STSurendra Tamanginjyaba.hashnode.dev·Mar 17, 2024 · 2 min readConnection 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...00
STSurendra Tamanginjyaba.hashnode.dev·Mar 17, 2024 · 3 min readHow 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 = ['...00
STSurendra Tamanginjyaba.hashnode.dev·Mar 16, 2024 · 3 min readHow 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...00
STSurendra Tamanginjyaba.hashnode.dev·Mar 5, 2024 · 2 min readOptimizing 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...00