Results 52 comments of Wolfgang Faust

For whatever it's worth, I was getting this same 403 Forbidden error and it turned out to be because I was decoding my VAPID keys the wrong way on the...

Well, that's confusing, it depends on the kernel version?: https://github.com/brendangregg/FlameGraph/blob/15c0c5719fe4d14190c96d155cfe4ad5dd883b98/stackcollapse-perf.pl#L115-L118 Ah, I see, [the meaning of `-f` was changed](https://github.com/torvalds/linux/commit/06af0f2c919d7c8f05efebe0d96a6f22297aafd4#diff-cd3055d6d372700e9c4e86397ab14ba6c1f70420ad663602612ebd6a1e4cf27dL1545) in 4.1: > And -f is already taken up by --fields,...

Yes, these changes look great! I’ve always been vaguely dissatisfied with the way I wrote that first paragraph and laid out the page, but not enough to be able to...

How does this look? ```yaml example: 'Several lines of text, containing ''single quotes'' and "double quotes". Escapes (like \n) don''t do anything. Newlines can be added by leaving a blank...

Excellent! I'll make sure to include this change in the next update when I get around to it. Yeah, I'd also like to make a more extensive YAML guide. It...

Hm, I feel like I'm missing something. Is there a situation where this isn't covered by the `min`/`max` attributes on the input element?

Thanks for bringing this to my attention. Looks like it's working now, but this is an example of the general problem that the generator has no error handling; it should...

You know, for some reason I hadn't thought to check the line numbers. These ones are straightforwardly circular: ``` ./app.ts 29:1 error Dependency cycle detected import/no-cycle 32:1 error Dependency cycle...

So this is confusing. I fixed the cycle with `app.ts` *et al,* and for some reason removing that cycle made the linter start detecting this apparently unrelated cycle: ``` ./recordtypes/baserecord.ts...

Just the imports that are, in fact, circular: ```ts import {GenericRecord} from "../src/record" ``` ```ts import {IS_BASERECORD} from '../recordtypes/baserecord' ```