Rob Richardson

Results 59 comments of Rob Richardson

What's wrong is https://github.com/SBoudrias/gulp-istanbul/blob/master/index.js#L18 The `COVERAGE_VARIABLE` is set once at the top of the file, and used for every istanbul run. If you're going to run two executions simultaniously, you...

Take a look at 4-imports.stories (https://github.com/nicoespeon/gitgraph.js/blob/master/packages/stories/src/gitgraph-react/4-imports.stories.tsx) Each storybook example starts by importing a wad of JSON representing the entire git history. Your challenge then is to take git log output...

https://github.com/nicoespeon/gitgraph.js/issues/277 actually shows an elegant example using https://www.npmjs.com/package/git2json, which appears to use idential JSON format. It looks like it could be cake.

To set the name from `unknown_service` to something descriptive: ``` public void ConfigureServices(IServiceCollection services) { // ... snip ... services.AddOpenTelemetryTracing((builder) => { builder .SetResourceBuilder(ResourceBuilder .CreateDefault() .AddService(env.ApplicationName)) //

@julealgon I agree, I think making the name more descriptive by default would be wonderful.

`nodist + 10.20.0` Or you can try removing the .node-version file and see if the dependencies work with a supported version of Node. What I've generally found is I must...

Put nodist earlier in your PATH than regular node processes, restart any shells, and it'll use nodist instead of node. Better still, uninstall node. :D

Check out https://github.com/Fenrirthviti/obs-virtual-cam/releases, linked from https://obsproject.com/forum/resources/obs-virtualcam.949/ and https://obsproject.com/forum/resources/obs-virtualcam.539/. Do we have a new main fork?

I'd say the closest boundary is the correct one, but overriding it with a parameter sounds interesting. I grant it's likely a major version bump, but I'd say if it's...

I'm unable to reproduce the issue. I've built a [Dockerfile](https://github.com/robrich/database-devops-with-containers/blob/master/Database/Dockerfile#L12-L14) that builds a "dev safe" copy of prod's backup as an image devs can pull each morning. In the corresponding...