Hello, World
This is where I share the things I've picked up from my time in different organizations. You'll find bits of code, answers to tricky algorithm and data structures questions, and some handy tips and tricks that I've come across.
Featured
Rule-Based Classification
Posted on:December 20, 2021 at 04:15 PM at 4 min readDiscover how a mobile app business optimizes user data through rule-based classification, creating personas for effective customer segmentation and enabling quick estimations and targeted marketing to boost profits.
List Comprehensions in Python
Posted on:December 16, 2021 at 08:22 PM at 4 min readGet a clear understanding of list comprehensions in Python, their elegance, efficiency, and practical application, along with valuable insights into conditional logic, nested loops, and important considerations for optimal usage.
An Introduction to Virtual Environments
Posted on:December 15, 2021 at 01:08 PM at 5 min readLearn about how to setup and manage Python virtual environments using Conda, how they solve common problems in software development.
Recent Posts
Updating NPM Depencencies
Posted on:December 8, 2023 at 06:19 PM at 1 min readManually updating each package using npm install package-name@latest is the most straightforward way of updating. However, it may not be the most efficient option.
Advent of Code 2023 - Day 2
Posted on:December 5, 2023 at 03:22 PM at 1 min readPart 1 and Part 2 solutions to Advent of Code 2023, Day 2.
Advent of Code 2023 - Day 1
Posted on:December 4, 2023 at 03:22 PM at 1 min readPart 1 and Part 2 solutions to Advent of Code 2023, Day 1.
Grind 75 - Merge Two Sorted Lists
Posted on:December 3, 2023 at 10:01 PM at 1 min readSolution for the problem Merge Two Sorted Lists on Grind 75 list.