Eric Vida

Results 11 comments of Eric Vida

I use dynamic ranges in loops a lot, and here's an idea I had on this subject. Currently dynamic ranges in loops are done like this. ``` for index in...

I would take the change now, rather than later. I'm all about the benefits. I understand the interest in making it easy for newcomers, but how much more friction is...

@somebee, @IRod22 How about we use strictly colon (no-space) `:` for style states, and strictly use colon+space `: ` for property values? ```imba global css c:hover: red ``` Would that...

Are you saying this? grid-template-areas:/ "left top right"/ "left bottom right" How about ellipsis which means to be continued? grid-template-areas: ... "left top right" ... "left bottom right"

I think some common examples would be good, so it can be clear how to use them, and link to further examples to MDN.

- [ ] Explain Optional Chaining Operator: ``` const dogName = animals.dog?.name # JS const dogName = animals.dog..name # IMBA ? ```

- [ ] Document different ways to do Dynamic Styles ``` tag App def state = true def color = red5 def dynamicClasses = ["primary", "secondary"] css h1 c:teal5 &.optionOne...

More to document - [ ] [How to make custom event modifiers](https://discord.com/channels/682180555286380545/682180555286380726/818751171660742676) - [ ] [How to `extend tag element`](https://discord.com/channels/682180555286380545/682180555286380726/818788737626538014) - [ ] [`imba.commit!` vs `render!`](https://discord.com/channels/682180555286380545/692619316323024907/818818248295972864) - [ ] [Custom...

Here's an imba v1 example someone made a while back. https://github.com/cartonalexandre/imba-realworld-example-app

Here's a frontend for realworld.io coded with imba 2. If anyone would like to have a go at doing the backend, knock yourself out: https://github.com/ericvida/imba-2-realworld-example-app