Seth Nickell
Seth Nickell
Here's a PR with a fairly simple fix that WorksForMe(TM): https://github.com/webpack/grunt-webpack/pull/250 This makes webpack 5 caching work with `grunt-webpack`.
The structure is that we have our JS frontend code as a sub-dir of the main repo, and our Rails backend code as a sub-dir of the main repo. They...
I think this is my strongest argument in favor of adding cwd: MS launch.json's (e.g. c++, nodejs, python) all support cwd, using the same keyword. I realize you have an...
Following the chain of errors back, we find `node_modules/nuxt-auth-utils/dist/runtime/server/utils/session.js`, and in _useSession: ``` function _useSession(event, config = {}) { if (!sessionConfig) { // I've added a console.log here, to help...
What's weird is I still get the 2x startup errors even if I comment out the only place in my app that directly calls: `await requireUserSession(event)`.
OK, I've confirmed the two errors are see on startup are calls to `/api/_auth/session`, I believe (?) these are triggered automatically whenever using nuxt-auth-utils: > modules: ['nuxt-auth-utils'], I believe this...
This may still have issues with pandas 🐼: after the finalize, when the process exits, it segfaults after the at_exit handlers. I need to figure out how to debug this...
It might be necessary to unregister gc objects before calling `Py_FinalizeEx`. These are destroyed automatically at process exit, but the (PyObject *) pointers were previously invalidated by Py_FinalizeEx, so the...
Output from PYCALL_DEBUG_FIND_LIBPYTHON=1: ``` DEBUG(find_libpython) find_libpython("/Users/seth/src/code-dot-org/.venv/bin/python") DEBUG(find_libpython) investigate_python_config("/Users/seth/src/code-dot-org/.venv/bin/python") DEBUG(find_libpython) Candidate: /opt/homebrew/Cellar/[email protected]/3.12.4/Frameworks/Python.framework/Versions/3.12/Python DEBUG(find_libpython) Trying to dlopen: /opt/homebrew/Cellar/[email protected]/3.12.4/Frameworks/Python.framework/Versions/3.12/Python DEBUG(find_libpython) dlopen("/opt/homebrew/Cellar/[email protected]/3.12.4/Frameworks/Python.framework/Versions/3.12/Python") = # ``` virtualenv is linking to /opt/homebrew python: ``` ls -l...
Further investigation: 1. `sys.executable` is returning the path to ruby: e.g. '/Users/seth/.rbenv/versions/3.0.5/bin/ruby', probably because we are using libpython not a python exe. 2. However, site.py from cpython ([github source here](https://github.com/python/cpython/blob/main/Lib/site.py))...