Finally someone that can actually explain this in understandable example and slides. Thank you Eric!
11 ай бұрын
Eric is such a great teacher!
@thisisnotrj10 ай бұрын
"We have to remember that... we have to evaluate [all possible solutions]. A good designer is always going to look at their choices and choose the best one... not just plow forward [using a solution] the way they've always done it" rarely is your first solution to a problem the best one
@afshinpaydar248311 ай бұрын
Great presentation, I liked it very much 👏
@JBurell11 ай бұрын
Good stuff!
@ralfkretzschmar81313 ай бұрын
@19:00: The type system can actually help you: type AddIns = "a" | "b" | "c" | "d"; type SelectedAddIns = { [key in AddIns]?: number; }; const coffeeForMe: { selectedAddIns: SelectedAddIns } = { selectedAddIns: { a: 1, x: 5, //