Skip to content

Instantly share code, notes, and snippets.

View pawel-mazurkiewicz's full-sized avatar

Paweł Mazurkiewicz pawel-mazurkiewicz

  • Xebia Poland Sp. z o.o.
  • Poland
View GitHub Profile

Keybase proof

I hereby claim:

  • I am pawel-mazurkiewicz on github.
  • I am pawelmazur (https://keybase.io/pawelmazur) on keybase.
  • I have a public key ASCbDG45zSDviIWyAjkUdpjQ1xFVervrNsBPmU-FUnoGQQo

To claim this, I am signing this object:

@pawel-mazurkiewicz
pawel-mazurkiewicz / 0_reuse_code.js
Created March 22, 2016 16:06
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@pawel-mazurkiewicz
pawel-mazurkiewicz / killports.sh
Created May 26, 2015 13:21
Cool way to kill all processes occupying $PORT in OS X
for i in `sudo lsof -n -i4TCP:$PORT | awk {'print $2'} | grep -v PID | uniq | xargs`; do sudo kill -9 $i ; done