Skip to content
View ninadvadujkar's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report ninadvadujkar

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
ninadvadujkar/README.md

Hi 👋, I'm Ninad Utkrant Vadujkar

Full-Stack Developer. I absolutely love working on JavaScript and it's frameworks. My skill-set includes NodeJS, Angular, React and a few others.

ninadvadujkar

ninadvadujkar

nv_vit

  • 🔭 I’m currently working at Aegon

  • 💬 Ask me about Angular, React, Node, AWS or just anything! I'll try to answer ;)

  • 📫 How to reach me ninad0vadujkar@gmail.com

  • ⚡ Fun fact Angular and React both are amazing. Stop fighting!

Connect with me:

nv_vit ninad-v-58445a61 ninad-vadujkar ninad_v

Languages and Tools:

angular aws babel bash chartjs css3 d3js docker electron express figma git graphql html5 jasmine javascript jenkins jest karma linux mocha mongodb mysql nestjs nginx nodejs postman puppeteer python react redis redux sass typescript webpack

ninadvadujkar

 ninadvadujkar

Pinned

  1. wordguessr wordguessr Public

    A game inspired by the famous Wordle game on NYTimes. I created this game so that me and my friends can challenge each other and have fun!

    TypeScript

  2. my_async my_async Public

    A very thin and basic implementations of the famous async library methods like series, parallel, parallelLimit, each etc.

    JavaScript

  3. angular2--autocomplete-search angular2--autocomplete-search Public

    A simple autocomplete search in Angular using RxJS Subject and Angular Material's Autocomplete element

    TypeScript

  4. Coding-Interview-Bootcamp Coding-Interview-Bootcamp Public

    Assignments completed while I took the 'Coding Interview Bootcamp' course on Udemy. Also contains the solved assignments and useful diagrams.

    JavaScript

  5. A basic Angular HTTP Interceptor to ... A basic Angular HTTP Interceptor to retry requests when there's an error
    1
    import { Injectable } from '@angular/core';
    2
    import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest, HttpResponse } from '@angular/common/http';
    3
    import { Observable, timer, throwError, of } from 'rxjs';
    4
    import { retryWhen, tap, mergeMap } from 'rxjs/operators';
    5