Skip to content

Instantly share code, notes, and snippets.

View chiboreache's full-sized avatar

chiboreache

  • Russian Federation, Moscow
View GitHub Profile
@chiboreache
chiboreache / event
Created March 7, 2019 07:34
window.onclick = e =>
window.onclick = e => {
console.dir(e.target); // use this in chrome
console.log(e.target); // use this in firefox - click on tag name to view
}
@chiboreache
chiboreache / user-cloner
Created February 10, 2019 04:04
Clone all user repos
GHUSER=CHANGEME; curl "https://api.github.com/users/$GHUSER/repos?per_page=1000" | grep -o 'git@[^"]*' | xargs -L1 git clone