Skip to content

Instantly share code, notes, and snippets.

View HanyRabah's full-sized avatar
🏠
Working from home

Hany HanyRabah

🏠
Working from home
View GitHub Profile
@HanyRabah
HanyRabah / README.md
Last active June 20, 2018 12:31 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@HanyRabah
HanyRabah / pip – uninstall package with dependencies
Created June 28, 2018 06:31
pip – uninstall package with dependencies
```
- for dep in $(pip show somepackage | grep Requires | sed 's/Requires: //g; s/,//g') ; do pip uninstall -y $dep ; done
- pip uninstall -y somepackage
```