Vinicius Tavares

Results 24 comments of Vinicius Tavares

I thought of doing something like this: ```ts // ... const UserView = view.create({ // ... properties: { // ... attributes: { type: 'array', btype: 'uint32', // ??? maxLength: BitArray.getLength(4),...

Hey @zandaqo, thanks for such a detailed explanation! I finally got the concept: We use primitive/abstract views as the document definition and then we just cast them with the desired...

**Update:** In order for it to fully work, the `User` interface needs a tiny tweak: ```ts interface User { id: string attributes: BitArray | number[] } ``` Otherwise TypeScript will...

Hey @HaraldCsaszar! Is this the official issue to follow for updates about the Project Tiny compatibility?

I've disabled the built-in daemon that rebuilds everything when any file inside the project is updated and created a gulp watch task which detects any file from `public` and throws...

**Update:** For some reason, the third column decided to show up, from nothing. ![_sample_masks-2](https://user-images.githubusercontent.com/1482034/35488562-370b847e-0472-11e8-9307-d672d956d26c.jpg)

Hey @shaoanlu! Thanks for the explanation 😄 Found the _Smurfs_ issue: I changed `plt.imshow` to `cv2.imwrite` in order to save previews as JPEGs and it uses the infamous BGR channels....

As @rictic asked, I'm about two hours already trying to figure out how to deal with the differences between `/forgot` and `/forgot/` That's because `/forgot` has its internal router getting...

Will check it out! Thanks 😃