My approach to implementing AI workflowI experimented with creating an app completely hands off using the codex and opencode harnesses with GPT5 luna, DeepSeek Flash V4, Big Pickle and Nemotron 3 Ultra models. As a software engineer, it feAug 26, 2026·4 min read
Gaussian ReductionWhat is Gaussian Elimination and why is it a better choice for solving a system of linear equations (matrices). Explained with examplesJan 14, 2023·6 min read·97
Fetch the last day of the month in PythonPython does not have a simple method to fetch the last day of the month. Instead, you need to use the monthrange() method from the calendar module as shown here. Not an inconvenience really.. 🤷♂️ >>> import calendar >>> calendar.monthrange(2022, 2)...Jul 11, 2022·1 min read·30
Python comprehensionsPrettify your code using comprehensions. Beautiful is better than ugly.Jul 8, 2022·6 min read·72
Python groupby() pitfallsSome conditions to keep in my mind while using Python's groupby method from the itertools libJul 8, 2022·3 min read·165