Vaishnav Ghenge

Software Engineer atNoovosoft

Building fault-tolerant distributed systems, scalable billing engines, and real-time infrastructure for global SaaS platforms.

About

My journey in technology began in 2018 with a Diploma in Computer Engineering, followed by a Bachelor's degree in Computer Engineering completed in July 2024. I currently work as a Full-Stack Developer at Noovosoft Technologies, where I began as an intern in August 2023 and transitioned to a full-time role in September 2024.

At Noovosoft, I specialize in building and maintaining full-stack applications using Python, Django, Angular, and TypeScript. My work focuses on developing scalable solutions for client projects, implementing new features, and optimizing existing systems for performance and reliability.

I am passionate about creating efficient, user-centric applications and continuously expanding my technical expertise. My experience spans real-time communication systems using WebRTC and WebSockets, backend development with Django and Flask, and modern frontend frameworks including React and Next.js.

Beyond professional development, I maintain a balanced lifestyle through cricket and connecting with peers in the tech community.

Technical Expertise

Resilient Distributed Systems

Background tasks, async flows, and event-based architectures (WebRTC/WebSockets).

CeleryRedisEvent-DrivenWebRTC
Live Demo
RACE CONDITION FIX
QUEUE
Concurrent → Serialized

Payments & Subscriptions

Robust processing with retry scheduling and user-facing status reporting.

DjangoMollie APIIdempotencyRecurring Billing
Code Snippet
def charge_subscription(sub):
  try:
    payment = mollie.charge(...)
  except PaymentFailed:
    # Auto-recovery workflow
    if sub.retry_count < 3:
      sub.status = 'RETRYING'
      scheduler.schedule(
        func=retry_charge,
        delay=exponential_backoff(sub)
      )

DevOps & Deployments

Systemd services, Nginx configuration, and self-hosted tooling.

LinuxSystemdNginxDocker
Live Demo

Frontend & Mobile UX

Building Angular, React, & React Native interfaces with smooth, polished UX.

React NativeAngularframer-motion60fps
Live Demo
60 FPS

Database Performance

Optimizing query patterns and relationships for high scale.

PostgreSQLQuery PlansIndexingN+1 Problem
Live Demo
N+1 Query (Before)1200ms
Joined Query (After) 180ms

Technical Skills

Languages

Python
TypeScript
Go (Golang)
Java
C++
SQL (Postgres)
SystemVerilog
Bash

Backend & Systems

Django
FastAPI
Express.js
WebRTC
WebSocket
Celery
SOAP
REST
GraphQL
gRPC

Cloud & Infrastructure

AWS (EC2, S3)
Docker
Kubernetes
Nginx
Linux Systemd
CI/CD (GitHub Actions)
Redis
Supabase

Mobile Engineering

React Native
Expo SDK 54
MobX
Android/iOS Native Modules
Offline-first Architecture

Frontend Ecosystem

React
Next.js
Angular
RxJS
Tailwind CSS
Framer Motion
HTML5/CSS3

Architecture & Design

Distributed Systems
Microservices
Event-Driven Architecture
Database Sharding
System Design
Concurrency Control

Developer Tools

Git
Jira
uv (Python)
Postman
VS Code
IntelliJ IDEA
Vim

Experience

  1. Noovosoft Technologies LLP

    Software Developer

    Sep 2024Present

    Software Developer Intern

    Aug 2023Sep 2024

    Architected the recurring billing engine for Farmdesk SaaS, boosting revenue reliability by ~30% via robust retry logic and Mollie integration. Led the migration from DTN to OpenMeteo, improving data accuracy by 25%. Optimized CI/CD pipelines with `uv` to cut build times by 45% and resolved critical race conditions in government animal database integrations.

    Python
    Django
    Angular
    TypeScript
    Celery
    Redis
    PostgreSQL
    Docker
    WebRTC

Featured Projects

  1. Peer A
    🎥
    SFU Core
    Media Router
    Peer B
    🎥

    Technical Highlight

    Vartalaap

    Scalable SFU Video Conferencing Platform

    Architected a scalable Selective Forwarding Unit (SFU) video architecture to support high-quality multi-party calls with minimal bandwidth. Unlike P2P mesh, this central media router efficiently manages streams, decoding once and forwarding to participants. Integrated OpenAI Whisper (C++ optimized) for real-time AI captioning and handled complex signaling via WebSockets in Django.

    • Next.js
    • Django
    • WebRTC (SFU)
    • Fast-Whisper
    • Redis
    • PostgreSQL
    • Docker
  2. service: api-gatewayACTIVE
    Memory
    LogsStreaming...

    Technical Highlight

    Servio

    GUI-Based Systemd Service Manager

    Built a visually rich Web GUI for orchestrating Linux servers, replacing command-line fatigue with a modern dashboard. Directly interfaces with Systemd via D-Bus to start/stop services, view real-time journald logs, and manage environment variables. Includes a Git-integrated deployment pipeline that automatically builds and reloads services on push.

    • Go (Golang)
    • Linux Systemd
    • WebSockets
    • React UI
    • SQLite
    • D-Bus

Recent Blog Posts

  1. Modern Django & Django REST Framework Complete Roadmap

    Modern Django & Django REST Framework Complete Roadmap

    Aug 12, 202514 min read

    Getting Started Installation &amp; Setup Setup Django with Docker...

    #django
    #drf
    #djangorestframework
    #webdev