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

Highlights

  • Pro

Block or report Yash089610

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

Hi πŸ‘‹, I'm Yash Agarwal

Senior Electrical Engineering Undergraduate at IIT Delhi

🌐 Socials:

LinkedIn

πŸ’» Tech Stack:

C C++ Java LaTeX Markdown Python Windows Terminal PowerShell Shell Script GithubPages Heroku PythonAnywhere Netlify AWS Firebase Anaconda Angular Angular.js Apache Spark Chart.js Bootstrap Django Flask Express.js Jinja JWT NPM NodeJS Nodemon OpenCV React TailwindCSS Nginx Jenkins Gunicorn MongoDB Redis MySQL Firebase MariaDB Postgres Adobe Adobe Acrobat Reader Figma Adobe Photoshop Adobe Lightroom NumPy Matplotlib Pandas Plotly PyTorch scikit-learn Scipy TensorFlow GitLab CI GitLab GitHub Actions TravisCI GitHub Git Bitbucket Grafana Ansible Arduino CMake Gradle ESLint Docker Confluence Jira TOR Power Bi Postman Raspberry Pi Twilio Uber Zigbee

πŸ“Š GitHub Stats:

πŸ† GitHub Trophies

✍️ Random Dev Quote

Pinned Loading

  1. remote: fatal: pack exceeds maximum ... remote: fatal: pack exceeds maximum allowed size
    1
    # Adjust the following variables as necessary
    2
    REMOTE=origin
    3
    BRANCH=$(git rev-parse --abbrev-ref HEAD)
    4
    BATCH_SIZE=500
    5
    
                  
  2. Git credential cache, why type passw... Git credential cache, why type password again and again
    1
    #### Git tip: Tired of entering password again and again ?
    2
    
                  
    3
    Run this command to remember your password:
    4
    
                  
    5
    ```bash
  3. Collection of bash hackery to determ... Collection of bash hackery to determine which Mullvad WireGuard server is the lowest latency from your location
    1
    - Grab all your wireguard configs from Mullvad and dump them in a folder. For this test, this folder is `~/wireguard/`.
    2
    - Add the following function to generate a list of all servers you have configs for
    3
    ``` shell
    4
    lswg ()  { 
    5
        ls ~/wireguard/ | cut -d '-' -f 2 | sed 's/\.conf//'
  4. git cheats git cheats
    1
    # shortform git commands
    2
    alias g='git'
    3
    
                  
    4
    # get a list of all commit messages for a repo
    5
    git log --pretty=format:'%s'