Jacob Rask

Results 48 comments of Jacob Rask

Ours is a small app without Next.js or your other dependencies. After debugging this further and setting breakpoints in the translate code in Chrome, I could see that in the...

In case anyone else comes looking, you can use the gh cli to only get the branch name if you still want to use the `actions/checkout` action ``` steps: -...

Here it is with some color. Still just a draft, and missing some features, but it's time to make a live prototype to make it easier to test with content...

There is [r/333](https://critic-review.org/r/333) which is awaiting review. I put up a [demonstration](http://critic-dev.mog1.xyz/dev) running the frontend in r/333. To move forward with the frontend some more features need to be added...

While not exactly the same thing, I got Critic running in [Docker](https://www.docker.com) on my Mac. Docker is a light weight Linux runtime, and on Mac also includes a VM with...

Good idea, I will add this information to the dashboard in the new design we're working on.

How is it handled for the current /SHA1 URLs? We could return [HTTP 300 Multiple Choices](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.1) and include all matching commits and repositories, either in full or just their ids....

The way I figured I could type my own media query utility function is like this: ``` interface MaxWidthQuery { maxWidth: number | string; } interface MinWidthQuery { minWidth: number...

It would be unfortunate if any `--` property would be valid, because a major use case is to explicitly only allow the custom properties you have defined in a theme...

You would write an interface with the custom variables in use in your code base. It would have to be duplicated across CSS and TypeScript. Just like you define interfaces...