Richard Viney

Results 65 comments of Richard Viney

FWIW we stopped using `mut` some time back and had a general rule of "templates should not contain direct mutations". We also avoid addons such as `ember-ref-modifier` for the same...

Sounds good. On closer inspection the full type definition is actually this: ```ts declare module "ember-mocha" { interface StartOptions { loadTests?: boolean startTests?: boolean } export function start(options?: StartOptions): void...

Not sure if this is related, but with `[email protected]` we're currently seeing: ``` '@ember-data/store/-private' is imported by ../../../../tmp/broccoli-13026pikMS34IzFf3/cache-274-rollup/build/-private/index.js, but could not be resolved – treating it as an external dependency...

This isn't a reliable use of `.buffer` on line 224. It will return the underlying `ArrayBuffer`, but you also need to respect the byte offset and byte length values which...

What dcmjs is doing here is checking that the `ArrayBuffer` it has been passed has "`DICM`" at offset 128. If this isn't the case then that buffer doesn't contain a...

This isn't a reliable use of `.buffer` on line 224. It will return the underlying `ArrayBuffer`, but you also need to respect the byte offset and byte length values which...

I happened to run into a character set issue last week which is now fixed in this PR: #299. This change might address your problem, but without providing a failing...

Sorry no I haven't worked with PDF data in DICOM files yet. There are likely some resources around on how it works though.

@dji-dev Is there an iOS SDK available for the OSMO Mobile 3? I have an account on developer.dji.com, but the current Mobile SDK (version 4.11) doesn't list the OSMO Mobile...

@liaoliaots Thanks for those details, how could the Redis connection be closed manually if we did want to test against the real thing instead of mocking?