Christian Westgaard

Results 66 comments of Christian Westgaard
trafficstars

Lets say you select all links in a document and want to filter out duplicates. ```sm a|ra href``` Any user-defined subroutine is called once per item in the array, not...

It can be done if the subroutine combines select and read :) ```javascript sl: (subject, v, b) => selectSubroutine(subject, ['a', '{0,}'], b).map(match => readSubroutine(match, ['attribute', 'href'], b)) ```

Wow powerful stuff: ```javascript function sortAndRemoveDups(arr) { const sorted = arr.sort(); const uniq = []; let prev = null; for (let i = 0; i < sorted.length; i += 1)...

I'm having the same issue, trying to use it together with semantic-ui-react.

@sigdestad To boost words rather than fields is what I need to make synonyms work well. I would like the actual typed in search string to be booster highest and...

@sigdestad This will also make it possible to boost down stop words. I consider this issue the most important feature that would improve our search functionality the most. Please prioritize...

It would be nice if this was implemented at the same time as suggestions. Then I would disable fuzziness, first do a quick suggestions query and then decorate the real...

@sigdestad I'll let you respond to any questions regarding these issues, which I only created on behalf of you.

Perhaps a boolean parameter to submitTask so that every programmer don't have to implement their own protection? In my crawlers I have made my own special protection because I must...