chocolateboy

Results 73 comments of chocolateboy

> I use it in [parse-function](https://github.com/tunnckoCore/parse-function) There's no harm in the name, but that's not the kind of parser I was referring to. I wouldn't expect Acorn or Esprima to...

@quebits as a temporary workaround [patching](https://github.com/ds300/patch-package/tree/v7.0.0#yarn-v2) dist/cjs/index.cjs and/or dist/esm/index.js to use [`Bundler`](https://github.com/microsoft/TypeScript/pull/51669) rather than `NodeJs` fixes this for me (`NodeNext` works as well, but it [breaks](https://github.com/lukeed/dequal/pull/20) most published modules and...

> I do feel that passing (often dynamic) data over standard input might potentially be more useful than passing in the (often static) template. In my use case, I'm splitting...

Rather than being corrupted records, is it possible that these modules pre-date the addition of the `time` field? [clutch](https://github.com/clement/clutch) is from 2010, as is [boxer](https://github.com/aconbere/boxer): ``` $ npm-name boxer ```...

This sounds similar to [xin](https://github.com/mike-douglas/xin)?

I've tested it manually. You can test it automatically by adding: ```ruby # frozen_string_literal: true ``` to the start of every ruby file (which is [recommended](https://stackoverflow.com/a/55900180) anyway). That way all...

As a workaround, I've created a `vip` command which reattaches vim's stdin to /dev/tty e.g.: ``` shell #!/bin/sh # usage: whatever | map vip exec vim < /dev/tty "$@" ```

I have a similar issue with the [Arch package](https://aur.archlinux.org/packages/python-curl-cffi) (no Flatpak), which is currently on v0.7.1: ```python from curl_cffi import requests BROWSERS = [ 'chrome99', 'chrome99_android', 'chrome100', 'chrome101', 'chrome104', 'chrome107',...

Related: https://github.com/oven-sh/bun/issues/4402#issuecomment-1847382343 > this could of course be left to the user to install the `npm-run-all` package, but that package seems to be mostly unmaintained https://github.com/bcomnes/npm-run-all2

Thanks for looking into this. > Is there a way to detect when this is needed? Is it possible to read an environment variable from a WebExtension? If so, perhaps...