Very unique content on this channel, kudos to you buddy
@daggachapoy57532 жыл бұрын
Upload Hit Entertainment logo Late 2007 DVD UK logo Effects Like 1. Normal 2. Real G Major 4 3. Confusion 4. Real G major 4 in Confusion 5. G major 7 6. Laughing 7. 4ormulator v5 8. Helium Chorded 9. Luig Group 10. Sponge 2.0 11. Happy 12. Freshing Equalizer 13. The Beautiful Vocoded Diamond 14. Autovocoding 15. G Major 16. Crazy Diamond 17. Ensemble Effect 2.0 18. Electronic Sounds 19. Clearer 20. Group 21. Does respond 22. Conga Busher 23. 1000 Flutes 24. Full Chord 25. Ensemble Effect 3.0 26. Acid Power Fixed Effects You can download & Spent Sony Vegas pro 17.0 to make and effects and post it on KZbin until Friday at 7:56pm! And I don’t know how to make effects I’m not an effector
@vaibhavnaik55413 жыл бұрын
Can you please do more videos on Effector. Thank you
@vishalsachdev67673 жыл бұрын
This feels very elm-like, that's the impression I got looking at the examples. Very neat.
@jherr3 жыл бұрын
Hmmmm... I'd like to know more about that. Is there something specific that you can point to?
@vishalsachdev67673 жыл бұрын
@Jack Herrington The explicit event names that can be used like functions... it's very convenient and readable unlike say Redux. Elm has a nice type system so every interaction with state is modeled like an explicit event; a member of an enum(they call them sum types), for example a counter's would be 'Increment Int', 'Decrement Int' and 'Reset'. There's a similar 'update' function which handles these type messages and everytime you call anything that spits out one of those above messages, Elm's machinery will automatically call 'update'. To me that feels easier to read at a glance. I think the basic counter example on guide.elm-lang.org shows it better than I can explain. Look at how the view wires up the click event, `onClick Increment`...that's it.
@TedBaggins3 жыл бұрын
Thank you very much. The hole network has no good guide about this effector, how to start and get data, just only you. You save me a lot of time. Really helpful.
@jaypacsky3 жыл бұрын
Effect is the best state manager. And yeah, you should not put everything in one store
@vaibhavnaik24813 жыл бұрын
Amazing video.Thank you so much for clearing the basics on Effector. Been trying to learn this last couple of months. 🙏🏼
@falkomer7 ай бұрын
Very cool video! Could you please update it? In 3 years there are many new useful features in effector
@xtinctspecies3 жыл бұрын
Raising the bar Mr Blue collar
@ВолодимирБарибін-е8у6 ай бұрын
Thank you for the video, could you create a video with comparing some popular state managers with the effector. For example effector/redux/recoil/zustand etc?
@МихаилК-в2т3 жыл бұрын
check description ;)
@Shakeel7143 жыл бұрын
Thanks for the nice explanation.
@olehbrony65063 жыл бұрын
Wow, thanks)
@kirillpavlovskii83422 жыл бұрын
If I have a lot of events , how can I compose them, so I don’t need to write a lot of on() after store creating ?
@kiiro57383 жыл бұрын
Your entire channel is gold. Can you make some tutorial about test like Jest or Mocha ? With React/Redux maybe
@jherr3 жыл бұрын
Thanks. Unit testing is in my design for the Typescript/React course I'm up.
@bythealphabet3 жыл бұрын
Great
@maximkoylo113 жыл бұрын
This is very cool
@ВладимирШаплин-ж8ю3 жыл бұрын
Cool video! But you shouldn't put all the data in one store.
@jherr3 жыл бұрын
It's a simplistic example. I'm really just showing off the different models of state management, and showing how Typescript helps you along the way.
@sergeyvolkov90613 жыл бұрын
Thanks!
@danet93302 жыл бұрын
thank you!
@nishalagad25423 жыл бұрын
Can I use effector with class components. If yes can you please share some solutions?
@jherr3 жыл бұрын
I haven't tried it, but I think it you would use it just the same way you would use the store outside of the react context. You would send events to it to update it. And you'd put a watch on the componentDidMount to update your component when the store updates.
@nishalagad25423 жыл бұрын
@@jherr Thanks alot
@codezero60233 жыл бұрын
Yeh, This is more of the concept of an observable service. I don’t understand why you need separate stores, dispatchers, reducers, etc. like n Redux and Fluxible
@dididie1583 жыл бұрын
How to filter todos with Effector?
@DavidNussio3 жыл бұрын
one way is to derive new store as the result of combine of todo store and filter store