Felix Maurer

Results 30 comments of Felix Maurer

I'm using Arch Linux on a T490. I had the kernel parameter `apci_osi` set to `Linux` because I experimented with bbswitch/bumblebee. I could not find the NFC reader, so I...

Well, I was not as successful as I hoped. It's enabled in the UEFI firmware, the kernel modules are loaded, rkfill does list it, nfctools does list it: ``` nfc0:...

I recently discovered https://github.com/webrtc-rs/dtls but I don't know whether it is already usable.

@lerouxrgd Are you planning to work on it? I was thinking on giving it a try when I understand everything. What I'm currently not understanding is, the `Scorer` trait represents...

@fulmicoton Understood, then I think my intuition was right. @lerouxrgd I think instead of implementing `search_with_state` in `fst` we can use `StreamBuilder::with_state` as implemented by @hntd187. We could extend the...

@lerouxrgd That looks very good. I was thinking about the scoring and scorer. What about calculating the score as `1 / (1 + distance)`? For a perfect match we would...

@lerouxrgd Alternatively you can implement `Weight` for both specializations of `AutomatonWeight` seperately. I.e. `impl Weight for AutomatonWeight` and `impl Weight for AutomatonWeight`. That way you will have a concrete automata...

I'm also unsure whether having an extra `TermWithStateStreamerBuilder` and `TermWithStateStreamer` is better than just merging the `current_state` field into `TermStreamer`. It seems like a lot of duplicated code to my....

I have a project that is a product search for local shops. I want to build a database with the offers of the shops in my city and have a...

@fulmicoton (Disclaimer, I don't know much about full text search in general) I'd like to sort the results based on how good the match was, i.e. whether it was an...