Stilify vs Master UI/Styles: next-generation Tailwind-like CSS libraries
https://blog.openreplay.com/stilify-vs-master-ui-styles-next-generation-tailwind-like-css-libraries
https://blog.openreplay.com/stilify-vs-master-ui-styles-next-generation-tailwind-like-css-libraries
Aspects of Accessibility (a11y) — Semantics, Contrast and… Anxiety?
https://sarajw.hashnode.dev/aspects-of-accessibility-a11y-semantics-contrast-and-anxiety
https://sarajw.hashnode.dev/aspects-of-accessibility-a11y-semantics-contrast-and-anxiety
👍1
for (let i = 0; i<= 10000; i++){
console.log('♥️')
}
https://programmerjokesshorts.openinapp.co/programmerjokes-shorts
console.log('♥️')
}
https://programmerjokesshorts.openinapp.co/programmerjokes-shorts
❤4👍3
Dialogs and shadow DOM: can we make it accessible?
https://nolanlawson.com/2022/06/14/dialogs-and-shadow-dom-can-we-make-it-accessible/
https://nolanlawson.com/2022/06/14/dialogs-and-shadow-dom-can-we-make-it-accessible/
Read the Tea Leaves
Dialogs and shadow DOM: can we make it accessible?
Last year, I wrote about managing focus in the shadow DOM, and in particular about modal dialogs. Since the <dialog> element has now shipped in all browsers, and the inert attribute is starti…
Answer: c
Explanation: Compilers implementing C90 do not allow this, but compilers implementing C99 allow it.
Output:
$ cc pgm4.c
pgm4.c: In function ‘main’:
pgm4.c:4: error: ‘for’ loop initial declarations are only allowed in C99 mode
pgm4.c:4: note: use option -std=c99 or -std=gnu99 to compile your code
Explanation: Compilers implementing C90 do not allow this, but compilers implementing C99 allow it.
Output:
$ cc pgm4.c
pgm4.c: In function ‘main’:
pgm4.c:4: error: ‘for’ loop initial declarations are only allowed in C99 mode
pgm4.c:4: note: use option -std=c99 or -std=gnu99 to compile your code
👍1😁1
I know people hate redux for adding too much boilerplate and generally being applicable to medium/large projects.
And of course mobx or even recoil are a bit nicer (my subjective opinion).
But what's the hype with zustand? Looks good, but any of you actually tried it on large projects?
https://github.com/pmndrs/zustand
And of course mobx or even recoil are a bit nicer (my subjective opinion).
But what's the hype with zustand? Looks good, but any of you actually tried it on large projects?
https://github.com/pmndrs/zustand
GitHub
GitHub - pmndrs/zustand: 🐻 Bear necessities for state management in React
🐻 Bear necessities for state management in React. Contribute to pmndrs/zustand development by creating an account on GitHub.
👍1
Output:
Compiler Error
The value of nontype parameters must be constant as they are used at compile time to create instance of classes/functions. In the above program, templated fun() receives a nontype parameter and tries to modify it which is not possible. Therefore, compiler error.
Compiler Error
The value of nontype parameters must be constant as they are used at compile time to create instance of classes/functions. In the above program, templated fun() receives a nontype parameter and tries to modify it which is not possible. Therefore, compiler error.