Jan Vincent Liwanag

Results 12 comments of Jan Vincent Liwanag

Might be similar to what I reported here - https://github.com/emacs-lsp/lsp-dart/issues/163#issuecomment-1169519435

Encountering a similar issue here. In my particular case, the error is: ``` error in process filter: could not parse JSON stream: "invalid token near 'fal'", "", 1, 1024, 1024...

Looks like Mac users fall into the 1024 max line length: https://github.com/emacs-mirror/emacs/blob/9c9e34e9b683b6b548d92dc7c1ed57f06f62eefb/lisp/comint.el#L492

Apologies for the duplicate. :) Perhaps the add here is that, 1024 limit is probably just on the mac. Linux and Windows users won't run into it.

Not particularly good with elisp, and unsure what this does. But setting this before launching any dart project solves the issue. ``` (setq process-connection-type nil) ```

Needs to get it set before daemon process start. Just to test the workaround, do put it on init.el

But the point of `refineMV`, and in fact, `refined` as a library is that it should guarantee at **compile** time that the values at play are guaranteed to follow the...

> Using this in MySQL: > > ``` > let mut tx = conn.begin().await?; > tx.execute("SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;") > .await?; > ``` > > Gives: > > ```...

> Before the release of `0.29` is there a way to use a struct and the derive macro and change the name of the table? Currently using a workaround for...

Adding a note that a partial bzlmod (excluding only rules_js) still worked for my minimal reproduction [here](https://github.com/jvliwanag/node-bazel-docker-repro/tree/not-bzlmod). In this sample, rules_oci was from bzlmod, while rules_js is defined in WORKSPACE....