Andrew Kaiser

Results 147 comments of Andrew Kaiser

full code for reference: ```ts import pico from './pico.js' import { decode } from 'https://deno.land/x/[email protected]/mod.ts' const facefinder_bytes = await Deno.readFile('./examples/facefinder') const facefinder_classify_region = pico.unpack_cascade(facefinder_bytes) /** * a function to transform...

ah. Thanks for the explanation. Is there a chance fiddling with any of the other defaults would help? In the final product I will in fact be using this with...

I would also love to see this feature! For the time being however, a decent representation can be made with Inkscape with the default tracesettings. Inkscape > Path > Trace...

if this dataset does not classify clothing color, could someone suggest a dataset that does?

not really :cry: . The output is a 293 byte video file. ``` -rw-r--r-- 1 andrew users 76M Jan 9 01:25 Zatch Bell Episode 001 English Dubbed.flv -rw-r--r-- 1 andrew...

### Update I opened an issue in the babel repo to see if typescript transformers could be used in babel, and it appears to not be possible. https://github.com/babel/babel/issues/9813

If this is helpful, here is an example of the optional chaining syntax written as both a [typescript transformer](https://github.com/rimeto/ts-optchain) and a [babel macro](https://github.com/epeli/babel-plugin-ts-optchain). As far as I can see, there...

Fair enough. Maintaining them side-by-side would be a large undertaking. I also have no babel experience, but I may look into this in the future. Up to you if you...

let me know if you prefer a repo to reproduce the problem, Im happy to make one!

finished a more complete example of the latter (interface is the single source of truth, clients and handlers are based off of them). It includes both a handler and a...