How I Handled a Database Search TicketCrisis: In a Django project, Create a general search feature where users can type in any string and get all posts, polls, announcements, openings, and user profiles that have the string. This would mean multiple queries across multiple tables with st...Oct 3, 2023·2 min read·39
How to Insert into the Tail of a Singly Linked List in Python: Traversing a linked listJul 30, 2021·4 min read·124
Generators in Python: Is there a need for them?I was working with a bunch of Python newbies and a majority of them said they had never heard of, used, or needed Python generators. So, it got me thinking about how many people may or may not be aware of generators, their uses, and their importance....Jun 15, 2021·3 min read·524
Procrastinating, Time flies either wayI have always been a Writer. Short stories, poems, technical articles, and many more. I have always loved writing. Sometime last year, I opened a blog here on Hashnode and decided I'd begin technical writing, I had been writing prose and poetry for o...Jun 7, 2021·2 min read·114
Docker x Django: A match that eases Collaboration.Introduction I have worked with many applications in the past that included Docker to enable programmers to collaborate, but recently, I built a wallet management system that needed the use of Docker, and I would love to share a step by step guide to...Jan 19, 2021·4 min read·232
Regular Expressions in Javascript (Part 1): A Beginner's Guide.The first time I came across a Regular Expression, my brain did a freeze, pause, backflip, and thaw. Okay, I am probably exaggerating, but I did find it a bit overwhelming. This article attempts to put Regular expressions in simple terms. What is a R...Sep 4, 2020·2 min read·72
Recursion: How a Beginner Understands It.As a developer who has ever worked with Javascript or taken a Javascript course, there is a 99.9% chance that you would have heard, learned, or written a "recursive function". For many beginners, this function may be difficult to understand at first ...May 17, 2020·3 min read·214