javascript:if (window.location.host === "pinboard.in") {Array.prototype.slice.call(document.querySelectorAll("#bookmarks a.bookmark_title")).forEach(function(link) { window.open(link.href, "_blank"); }); } else {alert("only work in pinboard");}
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": { | |
"dev": "sapper dev", | |
"format:check": "prettier --check './**/*.{js,ts,css,html,svelte}'", | |
"format": "prettier --write './**/*.{js,ts,css,html,svelte}'", | |
"build": "NODE_ENV=production sapper build", | |
"export": "NODE_ENV=production sapper export", | |
"start": "node __sapper__/build", | |
"cy:run": "cypress run", |
I hereby claim:
- I am dephiros on github.
- I am dephiros (https://keybase.io/dephiros) on keybase.
- I have a public key whose fingerprint is BA25 2890 D8AB BBFA 2663 AC09 8539 1705 6DA2 B254
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://stevenharman.net/git-clean-delete-already-merged-branches | |
# delete branch that is already merge to head | |
git branch --merged | grep -v "\*" | xargs -n 1 git branch -d | |
# delete git branch that is already merge to master | |
git branch --merged master | grep -v "\* master" | xargs -n 1 git branch -d | |
# delete git branch that is already merge to origin master | |
git branch --merged origin/master | grep -v "\*" | xargs -n 1 git branch -d |