bugproof

Results 103 comments of bugproof

I think you would do it like this: ```cs public static class QuartzConfiguratorExtensions { // Or you can just use this SchedulerBuilder.PersistentStoreOptions if you really want to use it //...

Just tried it. For some reason my Blazor WASM project in .NET 8 doesn't compile with `false` and without it I get `Resolved files count: 0` part of the csproj...

This tool works perfectly though: [ThirdLicense](https://github.com/pleonex/ThirdLicense/tree/main) I did some small analysis and: It wraps `dotnet list package --include-transitive` command to extract the dependencies - **I don't know which .NET versions...

> Have you enabled "Pre-Loading" in the "Advanced" Tab of the drive configuration ? I haven't. > BTW which webdav server do you use ? I'm not sure as I...

This is now available as part of [Angular Material extensions](https://ng-matero.github.io/extensions/components/datetimepicker/overview) **!! No hacks needed !!** You can style it similar to google calendar like this: ```css /* example style, obviously...

Bump. This is very misleading and we don't know what to do to configure settings.

I added this to my project. Works. ```ts import { Directive, HostBinding } from '@angular/core'; @Directive({ selector: '[tiptapNodeViewWrapper]' }) export class TiptapNodeViewContentDirective { @HostBinding('attr.data-node-view-wrapper') public handle: string = ''; @HostBinding('style.white-space')...

I think it's needed for extending other nodes. Like if you wanted to make your own image node based on original node. https://tiptap.dev/docs/editor/extensions/custom-extensions/node-views/react#render-a-react-component

😂 😂 😂 UI library without ability to change window size.

I'm currently struggling with it myself (I'm using C#). I think you can't avoid having to map(convert) to decimal manually everytime you want to use decimal. Some people pointed to...