Vinicius Tavares
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...
Hey guys! Any news on this enhancement?
**Update:** For some reason, the third column decided to show up, from nothing. 
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 😃