Adding Google Maps to the Keith Lee food app (React.js) In the previous article, I wrote about creating a Keith Lee food app using React.js and Firebase. Creating a Keith Lee Food App w/ React.j...
Creating a Keith Lee food app with ChatGPT and ReactJS
Creating a Keith Lee Food App w/ React.js & ChatGPT This personal project was inspired by watching Keith Lee and wanting to try the family-owned restaurants he reviewed on his platforms. I...
Flutter Flow Carousel Menu
I am going to discuss how to make a simple carousel menu in the Flutter Flow platform. I will provide the full source code as well. We are going to use the following package to help us achieve t...
Create a full-stack app using ChatGPT
Overview I leveraged the power of ChatGPT to build a complete full-stack application using Node.js and Angular. This app is able to read issues from the Jira API, using the issue description as a ...
Jira to ChatGPT using Node.js
Overview I used ChatGPT to create a node.js app that reads issues from the Jira API, uses the issue description as a prompt to the ChatGPT API, and posts it to that issue’s comments. Source Code ...
Flutter Flow: Get Value from multiple-choice Choice Chips
Overview There is currently no built-in way in Flutter Flow to get the list of values from multiple-choice choice chips. I will show you an approach I took to solve this. What are choice chips? ...
Leetcode-Same Tree(Kotlin)
Overview What You’ll Learn This is an easy Leetcode problem. I am going to discuss my approach to solving the problem using the Kotlin programming language. The problem statement asks us to che...
Leetcode-Symmetric Tree(Kotlin)
Overview What You’ll Learn Symmetric Tree is an “Easy” tagged Leetcode problem. The problem states “Given the root of a binary tree, check whether it is a mirror of itself (i.e., symmetric arou...
Leetcode-Valid Anagram (Kotlin)
Overview What You’ll Learn I will show you my approach to solving the Leetcode easy problem, Valid Anagram, using Kotlin. The problem statement is: Given two strings s and t, return true if t i...
Leetcode-Valid Parentheses (Kotlin)
Overview What You’ll Learn The Leetcode problem Valid Parenthesis is a very popular interview problem asked at companies such as Amazon and Facebook. They give you a string that can include cur...