Skip to content

Instantly share code, notes, and snippets.

View iamsahilsonawane's full-sized avatar
:octocat:
No future builder to build future in real life

Sahil Sonawane iamsahilsonawane

:octocat:
No future builder to build future in real life
View GitHub Profile

Keybase proof

I hereby claim:

  • I am iamsahilsonawane on github.
  • I am iamsahil (https://keybase.io/iamsahil) on keybase.
  • I have a public key ASDu33Xg-8vC-AwA3ZTt9xQNyYe-j4ie8d3VLwxj_6nuIwo

To claim this, I am signing this object:

@iamsahilsonawane
iamsahilsonawane / git-reset-author.sh
Last active June 24, 2022 01:30 — forked from bgromov/git-reset-author.sh
Git: Reset author for all commits
#!/bin/sh
# Credits: http://stackoverflow.com/a/750191
git filter-branch -f --env-filter "
GIT_AUTHOR_NAME='Sahil Sonawane'
GIT_AUTHOR_EMAIL='[email protected]'
GIT_COMMITTER_NAME='Sahil Sonawane'
GIT_COMMITTER_EMAIL='[email protected]'
" HEAD
@iamsahilsonawane
iamsahilsonawane / script.js
Created July 15, 2021 07:27 — forked from cupcakearmy/script.js
Delete all auth users from firebase console
const interval = setInterval(() => {
if ($('.edit-account-button').length === 0) {
clearInterval(interval)
} else {
$('.edit-account-button').first().click()
$('button:contains("Delete account")').click()
$('.confirm-button').click()
}
}, 1000)