Skip to content
View VishalTaj's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report VishalTaj

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 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
VishalTaj/README.md

GitHub Snake Animation

VISHAL TAJ PM

System Architect // Head of Engineering // Core Engine Developer


10+ Years of Crafting High-Performance Core Engines & Scalable Systems

I lead the engineering vision for complex, data-heavy portfolios like Ecolyptus, focusing on sustainability through technology. I specialize in building "the heart" of applicationsβ€”core engines, real-time communication protocols, and AI-driven energy insights.


πŸŽ“ The Many Hats of a Polyglot Leader

  • The Domain Expert: Proven track record in FinTech (Security & Compliance), Media (Scalable Content Delivery), and Energy (Real-time Analytics).
  • The AI Explorer: Currently bridging the gap between LLMs and local data using MCP (Model Context Protocol) to build context-aware AI interfaces.
  • The Core Engine Dev: Expert in building high-throughput backends using Ruby on Rails, Go, Node.js, and Python.
  • The Frontend Architect: Crafting type-safe, performant user experiences with Next.js and TypeScript

Tools & Languages

Framework & Libraries

Rails Next.js GIN

Programming Languages

Ruby Python Javascript Typescript Go PHP

Frontend

Bootstrap Tailwind CSS GraphQL React.js

Advanced Infrastructure & AI

MCP AWS Security GCP Ansible Docker Cloudflare Nginx

Databases

PostgreSQL MySQL MongoDB Redis Elastic Search Postgres




Open Source

🎁 Projects ⭐ Stars πŸ“š Forks πŸ›Ž Issues πŸ“¬ Downloads
Mutiple Table Inheritance In Ruby On Rails Stars Forks Issues Downloads

πŸ“• Β Blog Posts

πŸ“ˆ Statistics

profile for Vishal Taj PM on Stack Exchange, a network of free, community-driven Q&A sites

Views

Pinned Loading

  1. mti mti Public

    Implementing Multiple Table Inheritance(MTI) in Rails

    Ruby 3 1

  2. env_config env_config Public

    handling environment specific configuration

    Ruby

  3. Convert Rails timezone based on brow... Convert Rails timezone based on browser.
    1
    
                  
    2
    function setCookie(key, value) {
    3
      var expires = new Date();
    4
      expires.setTime(expires.getTime() + (1 * 24 * 60 * 60 * 1000));
    5
      document.cookie = key + '=' + value + ';expires=' + expires.toUTCString();
  4. Adding settings options to Rails app... Adding settings options to Rails application.
    1
    require 'ostruct'
    2
    module RailsConfig
    3
      class Options < OpenStruct
    4
        PathNotFound = Class.new(StandardError)
    5