Matthew D. Scholefield

Results 169 comments of Matthew D. Scholefield

I'm running into the same issue on Termux. So do you mean it's a problem with for example hardcoded library paths within the node binary? For reference, here's the difference...

I just did the following: ```console $ nvm use v17.1.0 Now using node v17.1.0 (npm v8.1.2) $ which node /data/data/com.termux/files/home/.nvm/versions/node/v17.1.0/bin/node $ cp $(which node) nvm-node ``` Note that in general...

Just to clarify, the copying of node to nvm-node didn't change any behavior. I get the same results operating directly on the binary in its original location: ```console $ strace...

[Here's a case](https://unix.stackexchange.com/questions/13391/getting-not-found-message-when-running-a-32-bit-binary-on-a-64-bit-system) where running 32 bit executables on a 64 bit system cause a similar error. I'm curious, from nvm's side, what architecture is the binaries that are downloaded...

Yes, swipe down to search would IMO be a very valuable feature. Right now I use a pie control with search as the only option in an attempt to simulate...

Absolutely, for me. Although it would be convenient to add a button to launch a Google search with the typed search phrase. On Tue, Jan 24, 2017, 1:49 PM Nick...

@graingert Right, but this would spawn a new thread for each call, right? (So if you are copying a lot of small files it would be inefficient) @pwwang From what...

Disclaimer: I'm a newb to npm/node I read that [.npmignore misleadingly replaces .gitignore](https://medium.com/@jdxcode/for-the-love-of-god-dont-use-npmignore-f93c08909d8d). If so, perhaps the other items should be added (shown below) and a disclaimer should be placed...

@includeamin I tried the simple example you provided but I get `[ERROR] ASGI callable returned without starting response.` with a 500 internal server error when the js client tries to...

Oh, whoops, yeah you're right, there were a few problems I figured out: - I was using the latest socket.io javascript library which recently bumped to major version 3 (incompatible)...