Spending most of my time writing code, designing architecture, and creating pipelines to generate data. And the rest of it learning new things to write about.
Teaching, Mentoring, and Chatting about The AI Takeover.
Hello there! As I look back on my 20s, I realize I've gone through a lot, and it's a great opportunity to reflect and gather the lessons that have shaped me. Let's walk through them together, and remember, these are my lessons. Your experiences, goal...

This is one aspect of Python that may not be straightforward, particularly for beginners. When passing a parameter to a function, is it passed by value (a copy of the variable) or by reference (a pointer/reference to the variable)? It depends on the ...

Throughout your career as a Software Engineer, working with the Shell (Command Line) is a daily routine and an essential skill. You will encounter numerous tasks that can be time-consuming, and eventually, you may discover that a specific tool could ...

TLDR; Avoid these 3 mistakes for clearer Python code: overusing dictionaries, using strings for variations, and not using type hinting. Consider data classes and enums for structured data and variations, and use type hinting for readability. When you...
