Unidirectional and bidirectional data flow
One-way and two-way data binding
Search for a command to run...
One-way and two-way data binding
No comments yet. Be the first to comment.
In this series, I post short notes about the stuff, that I've recently learned.
Originally, the trademark was issued to Sun Microsystems in 1997. Then it was transferred to Oracle when they acquired Sun in 2010. However, the trademark doesn't have any commercial value for Oracle, and they do not even participate in the developme...
Solution 'abcdabcdabcdabcdabcd'.match(/.{1,4}/g) // ['abcd', 'abcd', 'abcd', 'abcd', 'abcd'] Here's original StackOverflow answer. Context In today's Advent of Code challenge, I had to simulate drawing pixels on 40x6 CRT screen. First I computed li...
When solving Advent of Code puzzles, sometimes you will come across an input data, that consist of two parts: configuration and instructions: [S] [C] [Z] [F] [J] [P] [T] [N] [G] [H] [G] [Q] [G] [D] ...
It's December already, so it's time for another edition of Advent of Code. Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. I usu...
If you want to change the color of a remote image, that you display like this: <img alt="freeCodeCamp logo" src="https://unpkg.com/simple-icons@7.20.0/icons/freecodecamp.svg" /> You can use CSS filter property. It offers a variety of different co...
I haven't used Sanity before, so it took me a while to figure out, how to get photos dimensions using GROQ queries. Here's how I've done it: GROQ query export const query = groq` *[_type == "photo"] { image{ "dimensions": asset->metadata...
Parent -> ChildParent <-> Child