analytics-ai.hashnode.devHow to Work With Large Pandas Dataframes and Limited Memory.The default configuration when you read a dataframe is suitable for smaller datasets. But for larger datasets, you'd soon need more memory. This post describes compressing your dataframes to fit in your memory without losing any information. Do this ...Jan 20, 2023·1 min read
analytics-ai.hashnode.devGitHub Actions + Black = Automatically Clean Python CodeA codebase that is easy to understand and navigate allows programmers to work more efficiently and effectively. This is why having a clean and well-formatted codebase is crucial for the success of programmers. Yet, ensuring that every team member fol...Jan 17, 2023·1 min read
analytics-ai.hashnode.devAre No-Code Platforms a Threat to Developers?The world is simplified. The work of developers is to be. Ever since we started using machines, there has been programming. The algorithm for the Analytical Engine is considered the first computer programming language. The English mathematician Ada L...Nov 19, 2022·6 min read
analytics-ai.hashnode.devPainless Task Scheduling Using PythonRunning tasks on a schedule is not a rare use case. Pretty much every programmer does it. The standard technique used for scheduling is using Cron jobs. I have no objection to using Cron and still think it's a stable way. But what if you want a sch...Aug 17, 2022·5 min read
analytics-ai.hashnode.devHow to Create File System Triggers in PythonImagine you work with a client system where they upload files to an FTP folder. We’ve got to process the file as soon as it appears in the folder and push it to a database. A real-time dashboard is accessing the database. Therefore, we must update t...Aug 12, 2022·5 min read