Eric Vida
Eric Vida
Is there a way to do `grid-template-areas`'s values in multiple lines like this? ```imba css & grid-template-areas: "left top right" "left bottom right" ```
I'm thinking that it might be good to have a way to view compiled Javascript on the documentation examples. It might be helpful to some people, to learn what the...
A couple of people have expressed the need for all the text in the documentation be searchable, either via the search bar or the browser's text search tool. I would...
Add an explanation for the following css declaration syntax to the docs. ``` "Hello World!" css bg:{item.color} ``` is the same as ``` "Hello World!" ```
If any of these touch examples gets clicked, it will crash my browser tab. I'm on firefox Developer Edition. 
Here are the steps on how to get it. [https://js.org/](https://js.org/)
Need code blocks for non imba code such as commandline code. it seems that everything has imba highlighting at the moment. ``` git clone https://github.com/imba/template my-app ```
code to reproduce error # Code to Reproduce Error in js vite project ``` import { createDB } from "blinkdb"; const db = createDB(); const wordsTable = createTable(db, "words")(); ```...
The reason i'm trying blinikDB is to have fast queryable data in memory. I was sad to see no substring search filters. I'd love to see something like the following...
It would be really useful if BlinkDB, could have browser-refresh persistence built-in. I believe Dexie.js does this with Indexed DB. I managed to add persistence my BlinkDB app using IndexedDB,...