Skip to content

Instantly share code, notes, and snippets.

View tereshhhchenko's full-sized avatar
🐌
Getting back on track. But might be slow to respond

shch tereshhhchenko

🐌
Getting back on track. But might be slow to respond
View GitHub Profile
@jayne-mast
jayne-mast / deadname.txt
Last active June 2, 2024 22:05
Rename your deadname
$ git filter-branch --env-filter '
OLD_NAME="Old name"
NEW_NAME="New name"
NEW_EMAIL="new@email.com"
if ["$GIT_COMMITTER_NAME" = "$OLD_NAME"]
then
export GIT_COMMITTER_NAME="$NEW_NAME"
export GIT_COMMITTER_EMAIL="$NEW_EMAIL"
@winuxue
winuxue / puppeteer-ubuntu-1804.md
Created May 22, 2019 01:15
Solution for common dependences issues using puppeteer in ubuntu 18.04 (Bionic)

puppeteer dependeces in ubuntu 18.04 (Bionic)

error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directory

sudo apt-get install libnss3

error while loading shared libraries: libXss.so.1: cannot open shared object file: No such file or directory

sudo apt-get install libxss1