Skip to content
View gowthm's full-sized avatar
:octocat:
Fly High
:octocat:
Fly High

Block or report gowthm

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
gowthm/README.md

Hi there πŸ‘‹, I'm Gowtham

Software Engineer building Backend & AI Applications

πŸ§‘β€πŸ’» About Me

  • πŸ’Ό Software Engineer focused on Backend Architect & AI Applications
  • πŸ€– Building GenAI, LLM, and AI Agent applications
  • 🌱 Currently learning Machine Learning & Advanced System Design
  • πŸ’¬ Ask me about Node.js, Backend Architecture, APIs
  • 🧠 Love solving algorithmic problems
  • πŸ“« Reach me at gowtham_dev@outlook.com

🌐 Connect With Me

Pinned Loading

  1. Upload file by fs writeFile with Nod... Upload file by fs writeFile with Node Js
    1
    const fs = require('fs');
    2
    const express = require('express');
    3
    const bodyParser = require('body-parser');
    4
    const path = require('path');
    5
    const app = express();
  2. Arrow function and different between... Arrow function and different between regular function
    1
    // Regular Function with "this"
    2
    
                  
    3
    function Car() {
    4
      this.speed = 0;
    5
      this.speedUp = function(speed) {
  3. Here description all promise methods... Here description all promise methods with examples.
    1
    
                  
    2
    // Promise.all
    3
    //will reject with this first rejection message
    4
    
                  
    5
    const p1 = new Promise((resolve, reject) => {
  4. Creational Design Pattern with example Creational Design Pattern with example
    1
    // Singleton pattern
    2
    // SINGLEton. We use this design pattern when we only want a single instance of a class. 
    3
    // That means we cannot create multiple instances - just one. If there is no instance, a new one is created.
    4
    // If there is an existing instance, it will use that one.
    5