Skip to content
View theamanbhargava's full-sized avatar

Block or report theamanbhargava

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

Hi there ๐Ÿ‘‹

  • ๐Ÿ’ฌ Ask me about JS/React/Node/Django/DRF and quizzing, India/Thailand travel advice :)
  • ๐Ÿ“ซ How to reach me: aman@bhargava.tech
  • ๐Ÿ˜„ Pronouns: he/him

Aman's GitHub stats

Pinned Loading

  1. axis-magnus-spends-tracker axis-magnus-spends-tracker Public

    Spend Tracker is a web application designed to track spends and monitor progress towards the monthly spend-based milestone of the Axis Bank Magnus credit card.

    JavaScript

  2. Newton Raphson SQRT Method Newton Raphson SQRT Method
    1
    // courtesy of: https://tonnygaric.com/blog/newtons-method-in-go
    2
    package main
    3
    
                  
    4
    import (
    5
    	"fmt"
  3. egrep find pattern recursively while... egrep find pattern recursively while excluding dir
    1
    egrep -lR --exclude-dir=node_modules 'PIL' ./
  4. Random Date Generator Random Date Generator
    1
    <!--Random Date Generator
    2
      Generates date in YYYY-MM-DD format
    3
      Courtesy : Different answers on SO
    4
      -->
    5
    
                  
  5. ffmpeg batch convert mp4 to mov ffmpeg batch convert mp4 to mov
    1
    for i in *.mp4; do ffmpeg -i "$i" -acodec copy -vcodec copy -f mov "${i%.*}.mov"; done
  6. Clears All Node Modules recursively ... Clears All Node Modules recursively -- thanks to: https://rtmccormick.com/2018/01/10/clear-node-modules-folders-recursively-mac-linux/
    1
    find . -name "node_modules" -type d -prune -exec rm -rf '{}' +