Python Pip VCS Install from Private github Repository using the Subdirectory Argument

Woah ... that title is a mouthful. Lemme break it down: My python package(s) are in a private github repository (e.g. http://www.github.com/safijari/my_repo) The correct setup.py file is not in the root folder of the repo. (e.g. it's actually located at my_package/setup.py) I want to install it directly from github using pip. I use an ssh … Continue reading Python Pip VCS Install from Private github Repository using the Subdirectory Argument

OpenCV + IPython.display == 😃

I love IPython notebook. The REPL nature with persistence of richly formatted output, plotting, remote notebooks, markdown comments/thoughts/explanations interspersed with code, and so much more. It all wonderfully comes together and elevates my ability to think through new problems and new domains to a whole new level. Then I learned about the IPython.display module ... … Continue reading OpenCV + IPython.display == 😃

Fixing “Arduino cannot run because it could not create a folder to store your sketchbook”

Today at work I was trying to install the Arduino IDE on my computer and kept running into this issue. This is very annoying as it keeps the IDE from even starting, so you can't go into the settings and change the default sketchbook folder. The problem was the fact that, this being a work computer, a … Continue reading Fixing “Arduino cannot run because it could not create a folder to store your sketchbook”