Wednesday, November 15, 2017

NPM global packages

To list global NPM packages:

npm list -g --depth=0

 To update the globally installed NPM packages:

sudo npm -g update

Wednesday, January 25, 2017

Python Debugging Notes

A few notes for me...

  • To print the properties of an object: 
print “Properties are:”, obj.__dict__