Jose Felix

Results 26 comments of Jose Felix

Hi @kavin25! You could achieve this by filtering your posts. First, add something to filter on the frontmatter like a category. ``` --- title: Coding Post description: Coding is such...

@kettanaito Thanks for the feedback! > Thanks for preparing the sandbox, but could you please elaborate more on where exactly is the problem? It'd help to include some expected/actual data...

Here is the repro repo: https://github.com/JoseRFelix/manyof-repro I tried all the recommended steps: - *Generation of a unique ID.* Tried with UUID for id and still no luck. - *Creation of...

Ok, after debugging I noticed that `Object.getOwnPropertyDescriptors` inside `createModel` logs `get` correctly. ![image](https://user-images.githubusercontent.com/21092519/116891289-849e3080-abfc-11eb-89a8-39ef6c5ba922.png) However, when created inside the handler or outside, it's not defined: ![image](https://user-images.githubusercontent.com/21092519/116891431-b4e5cf00-abfc-11eb-821c-d71a4f12e954.png)

According to MDN docs about [Object.defineProperties](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperty), > Bear in mind that these attributes are not necessarily the descriptor's own properties. Inherited properties will be considered as well. In order to...

> This, however, doesn't solve the issue that even with this update above the user.notes will stop being a relational property, and will turn from a getter (that resolves value...

I stumbled on this issue and spent three days trying to find a decent solution. Since converting all variables to CSS vars and using SCSS is out of my scope,...

Check out my [article](https://dev.to/joserfelix/dynamic-theme-switching-in-ant-design-how-to-change-between-light-and-dark-themes-5b8p) on how to dynamically switch between themes! Also, if you'd like to jump in right away to a package that can help you, you can check...

> > Check out my [article](https://dev.to/joserfelix/dynamic-theme-switching-in-ant-design-how-to-change-between-light-and-dark-themes-5b8p) on how to dynamically switch between themes! Also, if you'd like to jump in right away to a package that can help you, you...

I was thinking that instead of starting from zero using storybook, we could use [lerna](https://github.com/lerna/lerna) and leave `/devbox` as a package, similar to what [material-ui](https://github.com/mui-org/material-ui) does. Furthermore, we can add...