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. Reddit Comments Add Absolute Datetime Reddit Comments Add Absolute Datetime
    1
    // ==UserScript==
    2
    // @name         Reddit Comment Timestamp Enhancer
    3
    // @namespace    http://tampermonkey.net/
    4
    // @version      0.1
    5
    // @description  Enhances Reddit comment timestamps to show both relative and exact time
  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. 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
  5. 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 '{}' +
  6. 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