Sigurd Fosseng
Sigurd Fosseng
There is a defcustom ob-http:remove-cr that removes the ^M from results (setq ob-http:remove-cr t) should do the trick
To get this to work on M1: ```ts const container = await new MySqlContainer('mysql:5.7.32').start(); ``` I had to pull the image manually, on the `linux/x86_64` platform: ```sh docker pull --platform...
I do not have the time to create a clean PR with tests, but I guess something like this could work ```js function daysInMonth (dateInMonth) { const month = dateInMonth.getMonth()...
maybe @eirikbacker has a better solution?
This might be related: [MDN clicking and focus](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#Clicking_and_focus) changing the button tag to anchor tag works as expected https://codepen.io/Laat/pen/gObeoJW
Apply this patch to the dockerfiles ```patch # Add lockfile and package.json's of isolated subworkspace FROM node:alpine AS installer +RUN apk add --no-cache libc6-compat RUN apk update WORKDIR /app ```
> As it stands, the order of precedence is (from highest to lowest): > > 1. The `$type` property on the token object, if present. Otherwise... > 2. If the...
I bisected the commits, and it was introduced in b69cd3cf87107f4cac71af6dc50d85780506f8ac
It's very understandable that it happens when it's not covered by tests, this just happens from time to time. Nobody blames you :) I can create a PR with a...
@darkowic I have added a test that fails in #388. I have verified that this test passed before b69cd3c. I'm sorry that I cannot be of more help.