Robert Lowe

Results 19 issues of Robert Lowe

Live View support would be a pretty nice addition for 2.0 A `scrivener_html` fork does this pretty simply: https://github.com/montebrown/scrivener_html/commit/5d403292c6c4bf07f2bf5b9bba3723d6eac05c8a#diff-4dfa7434880f68cff9ac0e604f73904aR399 Thoughts?

It was a pretty wild ride to get my local copy properly linked with my local dev app. I had to yarn link: - `graphql-compose` - `graphql-compose-mongoose` - `graphql-compose-pagination` -...

I noticed a lot of repetition (maybe this is just a cqrs thing), and I can understand that some is justified, but for example `closedAt` is defined 14 times across...

This was merged into devel: https://github.com/meteor/meteor/pull/4101 Once it's released, how should we support the syntax? ``` +thing (stuff x b x) anotherArg p hello ``` It might be nice to...

enhancement

`$ ffprobe -i ./some.webm -show_entries format=duration -v quiet -of csv="p=0"` `3.003000` `$ ffprobe -i ./some.wav -show_entries format=duration -v quiet -of csv="p=0"` `2.986667` Slightly out of sync. Any thoughts on how...

Socket.io v3 causing "Bad handshake method" , prefer v2.3.0 Should really use a `package-lock.json` v3 seems to break this for my service that used it previously with v2.3.0, the client...

From the template7 site: > It is ultra lightweight (around 1KB minified and gzipped) and blazing fast (up to 2-3 times faster than Handlebars in mobile Safari). Do you have...

`otel/opentelemetry-collector-dev:latest` no longer ships with extensions ``` collector_1 | Error: cannot load configuration: unknown extensions type "health_check" for health_check collector_1 | 2021/11/14 11:40:03 collector server run finished with error: cannot...

bug
examples

This doesn't seem to work: ``` describe('Something', () => { before(() => { cy.task('fixtures:user').then(data => { return cy.wrap(data).as('userData') }); }); it('should get user data', () => { cy.get('@userData').then(userData => {...