I am Software Developer, currently interested in static type languages (TypeScript, Elm, ReScript) mostly in the frontend land, but working actively in Python also. I am available for mentoring.
I am Software Developer, currently interested in static type languages (TypeScript, Elm, ReScript) mostly in the frontend land, but working actively in Python also. I am available for mentoring.
I am Software Developer, currently interested in static type languages (TypeScript, Elm, ReScript) mostly in the frontend land, but working actively in Python also. I am available for mentoring.
Learn something new every day. - I am a senior software engineer working in industry, teaching and writing on software design, SOLID principles, DDD and TDD.
Location
Buenos Aires
Education
Computer Science Degree at Universidad de Buenos Aires
I am Software Developer, currently interested in static type languages (TypeScript, Elm, ReScript) mostly in the frontend land, but working actively in Python also. I am available for mentoring.
Nice thank tout
Everytime, I see post about State
I suggest to give an eye to Meiosis pattern
Can you elaborate? I totally don't know what you mean 😉
I think it is this one meiosis.js.org/
I haven't read much about it though.
Read it, you won't regret it 🙂
Excuse-me,
Here is a link to this concept
Meiosis
You can apply it to any front-end framework you want
Thanks. Took a look, looks very interesting.
😊 yes it is
Once you try it, you will adopt it
I have posted several articles on it on devto,
here is one or them reactmeio
Regards
Thank you for such an excellent series.
Just one small point. React can help us with delaying the evaluation:
const lionExists = useMemo(() =>
animals.some(animal => animal.type === 'lion'), [animals]);
So, it will be recalculated only when animals is changed.
Yes, that is very good comment. Thank you Enes.
In regard to the topic of calculated/derived state properties, I always ask myself the two questions:
In case the answer is yes to both questions then one property can be derived from the other (the base one).
This has served me well so far ;)
amazing article!
state modelling is TOO important
Thanks very informative!
Yes, in my experience we always should start from less expressive tool and only if it doesn't work for us search for more sophisticated solutions.