Software Development
A table of contents for things JavaScript developers need to be aware of. The roadmap has links to free and paid resources if you want to dig deeper.
An interactive game for learning about CSS flexbox layout.
When to Use Classes and Structs in .NET
Typically structs are allocated on the stack rather than the heap. You don’t need garbage collection for memory allocated on the stack frame. Structs are copied (not passed by reference) when passed to a method. There is a tradeoff: Struct copies (passed by value) take up more memory than passing a pointer to a class.