Axel Rauschmayer

Results 167 comments of Axel Rauschmayer

Hi @bglw! Yes, I’m still very much interested in this! But it may take a while until I have time to add this functionality to my static site generator, which...

Thanks! That makes sense. I did a web search for full text search indices that can be updated incrementally and found these papers: * https://www.researchgate.net/publication/265420573_Incremental_Text_Indexing_for_Fast_Disk-Based_Search * https://ciir.cs.umass.edu/pubfiles/vldb94.pdf * https://dl.acm.org/doi/pdf/10.1145/191839.191896 But...

Thanks! I tried both of the following import statements: ```js import 'core-js/actual/regexp/constructor.js'; import 'core-js/actual/index.js'; ``` But both failed as follows: ``` SyntaxError: Invalid regular expression: /^(?[0-9]{4})-(?[0-9]{2})|(?[0-9]{2})\/(?[0-9]{4})$/: Duplicate capture group name...

I’ve just had the same problem: ```ts import { z } from 'zod'; const OUTPUT_FORMAT_KEYS = ['html', 'epub', 'pdf'] as const; const OutputFormatKeySchema = z.enum(OUTPUT_FORMAT_KEYS); // ❌ compiler error ```...

@sneakers-the-rat If I think about scaling this up to a large forest of replies, my favorite user interface would be: * Initially, only show the top level of the forest....

There are also some similarities with quote posts: * You are being quoted somewhere. * Both a global choice (that applies to all packs) and per-pack choices (to override a...

* I agree that it doesn’t have a high priority. * For me it’s not purely about character counts (humans read in chunks) but also about how easy something is...