BMBrian Maimbainbrianmaimba.hashnode.dev·Jul 19, 2025 · 3 min readSet up Gitlab instance with Docker ComposeThere are many ways to set up a GitLab instance, but using Docker Compose is one of the easiest and most efficient methods, especially for local development or small-scale deployments. This guide will walk you through the steps to set up a GitLab ins...00
BMBrian Maimbainbrianmaimba.hashnode.dev·Feb 1, 2025 · 3 min readIs AI Ready to Replace Software Developers?We are currently in the AI bubble. AI is the new buzzword being thrown into every conversation lately.We now have Deepseek, which seems to be better than ChatGPT. Multiple AI startups and evangelists have emerged, all claiming that AI is the future a...00
BMBrian Maimbainbrianmaimba.hashnode.dev·Dec 5, 2024 · 4 min readDockerize your appDockerise your django app Introduction Docker is a platform that allows you to develop, ship, and run applications in containers. Containers allow a developer to package up an application with all parts it needs, such as libraries and other dependen...00
BMBrian Maimbainbrianmaimba.hashnode.dev·Nov 28, 2024 · 3 min readThree SumQuestion Leetcode link -> https://leetcode.com/problems/3sum/description/ Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0. Notice that the sol...00
BMBrian Maimbainbrianmaimba.hashnode.dev·Nov 21, 2024 · 2 min readTwo Sum IIQuestion Leetcode link -> https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/description/ Given a 1-indexed array of integers numbers that is already sorted in non-decreasing order, find two numbers such that they add up to a specific tar...00