Skip to content

Instantly share code, notes, and snippets.

View Agrover112's full-sized avatar
🎆
Thriving

Agrover112

🎆
Thriving
View GitHub Profile
@Agrover112
Agrover112 / change_author_git_commit.md
Created September 13, 2022 20:02 — forked from albertodebortoli/change_author_git_commit.md
Change the author of a commit in Git

Using Interactive Rebase

git rebase -i -p <some HEAD before all of your bad commits>

Then mark all of your bad commits as "edit" in the rebase file, and when git asks you to amend each commit, do

git commit --amend --author "New Author Name <email@address.com>"

edit or just close the editor that opens, and then do

@Agrover112
Agrover112 / install-conda.sh
Created August 14, 2021 12:39 — forked from arose13/install-conda.sh
Install Miniconda in Ubuntu
# Setup Ubuntu
sudo apt update --yes
sudo apt upgrade --yes
# Get Miniconda and make it the main Python interpreter
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh
bash ~/miniconda.sh -b -p ~/miniconda
rm ~/miniconda.sh
export PATH=~/miniconda/bin:$PATH
@Agrover112
Agrover112 / Viz3.ipynb
Created July 9, 2019 12:13
Part_3 (Main ) of visualizations_Medium
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Agrover112
Agrover112 / viz2.ipynb
Created July 9, 2019 12:11
Part_2 of visualizations_Medium
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Agrover112
Agrover112 / viz (1).ipynb
Last active July 9, 2019 12:14
Part_1 of visualizations
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.