Me

Tag: JavaScript

  • How to Turn ChatGPT into a Voice-Enabled Chatbot in 60 Lines of Code

    Turn ChatGPT into a Voice-Enabled Chatbot in 60 Lines of Code I recently found an article about someone who built a Zapier integration between Alexa and ChatGPT. Although it was a cool project, I realized it wasn’t necessary to use a third-party platform or Home Speaker to interact with ChatGPT using voice. All the required functionality…

  • Overriding Service Methods in Strapi V4’s Upload Plugin

    Photo by Sigmund on Unsplash Strapi CMS is a popular, open-source headless CMS that provides a flexible and easy-to-use platform for building web applications. One of its core plugins is the upload provider, but the default implementation ships with some biased configurations that can lead to trouble. In this article, I’ll show you a simple method…

  • Why should you NOT use a GraphQL API Client

    GraphQL Clients are not necessary for making GraphQL API Calls, and often complete overkill for the job at hand. Imagine that your friend purchases a semi-truck because, “they run a lot of errands.” Any sane person would tell that friend that they’ve gone a little too far. Even the most modest, budget vehicle would likely do…

  • Meeting GraphQL at a Cocktail Mixer

    Photo by Jakob Dalbjörn on Unsplash GraphQL and REST are two specifications used when building APIs for websites to use. REST defines a series of unique identifiers (URLs) that applications use to request and send data. GraphQL defines a query language that allows client applications to specify precisely the data they need from a single endpoint.…