Tom Grushka
Tom Grushka
P.S. This error message in browser console prompted me to ask about this (I think when switching audio sources in meeting/preview): ``` Stopping Microphone audio encoder videocall-ui-5a1ead9940d11707.js:839 Microphone audio encoder...
I am trying to create a tool to restrict editing to .md files, but not having much luck because: - The `opencode` npm package isn't available to be installed; -...
Yes, how does one use the `dialog` HTML element in Dioxus? Trying to figure this out because unfortunately, the standard authors required the JavaScript `showModal` method to be called to...
@sleistner I just found this suggestion by user @jenimanummic at https://github.com/microsoft/vscode/issues/3553#issuecomment-2591819488. No idea if it's actually available in the API or just a suggestion to the VS Code authors, could...
Why not just have a `lazy ` keyword before the assignment? e.g.: ``` lazy DB_NAME := `echo "$DATABASE_URL" | awk -F/ '{print $NF}' | awk -F'?' '{print $1}'` ``` or,...
This lazy-loading decision also negatively impacts accessibility and accessibility testing. Who makes these decisions, and why are they made without consultation with accessibility SMEs?
Hi @pronebird, I just discovered this crate myself, so I'm not an expert, but one way to do it (but it might get tedious for a lot of models) is...
Looks like they have these structs: ```rs pub struct MatchingWords { word_interner: DedupInterner, phrase_interner: DedupInterner, phrases: Vec, words: Vec, } struct ScoreWithRatioResult { matching_words: MatchingWords, candidates: RoaringBitmap, document_scores: Vec, degraded:...
Can you please point out what was hard to follow so I can rewrite it and make it easier to follow?
Oh wait, I found the solution: ```rust ChronoFmtType::Rfc3339Secs(secs_fmt) => { write!( w, "{}", t.to_rfc3339_opts(*secs_fmt, true) ) } ``` But this wasn't obvious. Had to "discover" it. May be helpful to...