PAPaul Ajijolainpeepeeajii.hashnode.dev路Nov 4, 2025 路 14 min readBuilding 'Synapse': A Deep Dive into a Dynamic RAG Agent with Mastra, Pinecone, and Google SearchIn the world of AI assistants, getting a correct answer is harder than just getting a fast one. Large Language Models (LLMs) are notorious for "hallucinating" or confidently providing answers based on outdated information. For developers, this is a c...00
PAPaul Ajijolainpaulajii.hashnode.dev路Oct 16, 2025 路 2 min readBuilding a RESTful API with Express.js and TypeScript: HNGxiii Stage Zero Journey 馃殌Hey everyone! 馃憢 I just completed my Stage Zero task for the HNGxiii internship, and I wanted to share my experience building a REST API with Express.js and TypeScript. 馃幆 The Challenge Create a simple RESTful API endpoint that returns my profile inf...00
PAPaul Ajijolainpaulajii.hashnode.dev路Oct 22, 2021 路 4 min readThe JavaScript Control FlowWhen writing a program which requires an output of all numbers from 0 - 10, one way to write it is this: console.log(0); console.log(1); console.log(2); console.log(3); console.log(5); console.log(6); console.log(7); console.log(8); console....00