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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
gowthm/README.md

Hi πŸ‘‹, I'm Gowtham

Passionate GenAI Engineer from India


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

  • πŸ”­ I’m currently working as Software Engineer
  • 🌱 Currently learning AI Agents, ML, Gen AI, LLM
  • πŸ’¬ Ask me about Node.js, Backend Development
  • πŸ“« Reach me at gowtham_dev@outlook.com
  • 🧠 Interested in Problem Solving, System Design & AI

🌐 Connect With Me


πŸ›  Languages and Tools


πŸ”₯ GitHub Streak


🐍 Contribution Snake


πŸš€ Current Focus

  • ⚑ Backend Architecture
  • 🧠 Problem Solving (LeetCode / HackerRank)
  • πŸ€– AI Agents & LLM Applications
  • ☁️ Cloud Native Development

⭐ Fun Fact

I enjoy solving algorithmic problems and building scalable backend systems.


⭐ From Gowtham

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