@peccul is peccu

(love peccu '(emacs lisp cat outdoor bicycle mac linux coffee))

accesskeyを表示するブックマークレット

javascript:(function(){alert('M-C-[key]');var styleElem=document.head.appendChild(document.createElement('style'));styleElem.innerHTML='a[accesskey]:after,button[accesskey]:after,input[accesskey]:after,label[accesskey]:after,legend[accesskey]:after,textarea[accesskey]:after{margin-left:0.1em; content: "["attr(accesskey)"]";}';})()
続きを読む

圧縮率の高いらしい7zipを使ってみる

Unix系ではp7zipというパッケージにポートされているとのこと。

# install
brew install p7zip
# archive
7z a archive.7z archive/
# or shorthand
7z a archive{.7z,}
# extract
7z e archive.7z
続きを読む

フェッチ済みリモートのすべてのブランチを別のリモートにプッシュする

アクセスできないリモートリポジトリをクローンしたディレクトリを受領し、アクセスできるリポジトリミラーリングするような状況。

続きを読む