Results 5 comments of Matt Powell

My best guess for how to do this would be to enumerate the localStorage object onunload and persist the properties that don't match: `getItem`, `setItem`, `removeItem`, `key`, `clear`, or `length`

Yeah, that's definitely one option (and probably the easiest). However, I'm a little hesitant to go that route because I'd really like to keep this as close to the real...

I'm running in to a similar issue. Here are the versions I'm on: ``` mattpowell$ pip --version pip 19.1.1 from /Library/Python/2.7/site-packages/pip-19.1.1-py2.7.egg/pip (python 2.7) ``` ``` mattpowell$ python --version Python 2.7.16...

Ok, after some quick googling it seems like `rich` is a python3 only module. So followed [this guide](https://opensource.com/article/19/5/python-3-default-mac#what-to-do), upgraded to python3, and am now able to follow all of the...

Just ran in to this same issue. The fix is to run `export CPPFLAGS='-I/opt/local/include' LDFLAGS='-L/opt/local/lib' LDLIBS='-lgd'` right before running `node-waf configure build`. I didn't try it, but, I believe this...