Kyle Farris

Results 67 comments of Kyle Farris

Hmm... No problem man. So, let's assume this single field form (plus submit button)... ``` javascript var FormView = require('ampersand-form-view'); var InputView = require('ampersand-input-view'); var Users = require('./collections/users'); var users_collection...

No problem at all--I totally welcome (and appreciate) a thoughtful discussion on any PR. It's what makes open source software so much better than anything else. That said, on your...

I know it's been a while but I've got a couple things I noticed... 1. You're doing `import NodeClam = require('clamscan');` when it should be `import NodeClam from 'clamscan'` 2....

Looks like it might be an issue with Homebrew's version of ClamAV potentially having a different set of command line options than Linux (specifically the `--confile-file` option. I'll take a...

I'm having no issues running this on my M2 Pro Mac running Sonoma and `clamav v1.3.0`. You may have something misconfigured.

I'm actually experiencing this issue as well. A block of HTML I'm trying to truncate contains a Vimeo video embed and has attributes with no value so it's causing the...

There aren't any conflicts, it should be really easy to just pull in this one PR and make a new patch/minor version of this module.

If you can resolve the conflicts, I'd be happy to merge this in.

Query grouping would be a great feature. We would probably syntactically follow the concept in Codeigniter: https://codeigniter.com/user_guide/database/query_builder.html#query-grouping So, like this: ```javascript qb.from('my_table') .group_start() .where('a', 'a') .or_group_start() .where({b: 'b', c: 'c'})...