Skip to main content

Writing

Notes on AI, agents, web technologies, and building with LLMs

Technical articles on AI integration, agents, agent harnesses, MCP, web technologies, and emerging tools. Working notes from a Google Developer Expert with 25+ years of building and teaching.

  1. res.json() vs res.send() vs res.end() in Express

    In this article we are discussing the differences between the json(), send() and end() methods available as part of Express response object.

  2. Introduction to GraphQL

    In this article, we'll take a look at GraphQL and go through a basic example while exploring why it's a great supplement for REST APIs.

  3. Concurrent HTTP connections in Node.js

  4. Why shouldn't JSONP​ be used?

    JSONP is could be considered to be a useful way to avoid CORS errors however it has more cons than pros - this article discusses the most important factors.

  5. Display real-time data in Angular

    In this article, we'll be taking a look at two ways to display real-time data in an Angular application - one using a timeout and the other using sockets.

  6. Unsubscribe from Angular/RxJS subscription

    In this article, we are discussing when it is required to unsubscribe from an observable in Angular to avoid memory leaks.

  7. Blockchain implementation using JavaScript

    In this article, we are implementing a blockchain solution using JavaScript and while implementing, getting familiar with this emerging technology.

  8. HTML Attributes vs DOM Properties

    When working with various JavaScript frameworks, or only just by working in the field of web development, newcomers and novice developers often confuse attributes and properties concerning HTML pages. In this article, we'll clarify the difference between these two.

  9. Hiding / removing elements in DOM using JavaScript

    In this article, we'll take a look at how to hide and remove elements in DOM by using JavaScript, and we'll learn a few techniques and explain the differences between them.

  10. Progressive Web Applications - Free Handbook