Andrés Alin
Andrés Alin
Not sure which command it's trying to send, but possibly ping. https://github.com/JonathanBennett/prerender-redis-cache/commit/324cad652ca48a0b60d257a61daea6320597d144 seemed to fix my issues at first, but then I got this: ``` prerender_1 | 2015-03-30T21:06:29.901Z started phantom...
This is the code from the rewrite that I started writing in August 2024. ### Todo * [x] Implement a better VDOM * [x] Make the root layout work *...
It would be interesting to support some sort of client side state via custom elements. I'm not sure how these would be defined. Maybe something like this? ```haml :typescript class...
I recently did an experiment with this in [rdom](https://github.com/aalin/rdom). Works pretty well, assigning child nodes via slots seems pretty fast.. Mayu should be able to render custom elements server side...
Each descriptor should have a hash based on their props and their children... If the same hashes appear regularly, then that subtree could have its rendered HTML cached and maybe...
```haml :css .paragraph { margin: 1em 0; } %p.paragraph %slot ``` ``` :ruby Paragraph = import("./Paragraph") :css .override { margin: 0; } %Paragraph.override It is possible that this override doesn't...
From the [Svelte docs](https://svelte.dev/docs#template-syntax-each): > An each block can also have an {:else} clause, which is rendered if the list is empty. ```svelte {#each todos as todo} {todo.text} {:else} No...
The CSS transformer will take: ```css foo { background-image: url("foobar.png"); } ``` and turn it into: ```css .demo_foo\?uc88-KVY { background-image: url("LMXcDq"); } ``` and also return this dependencies-array: ```ruby [...
* [x] Support for `composes` (within the same file), https://github.com/css-modules/css-modules#composition (partially fixed in 20caf858bd8262bbf09d79286d906cc82234d7ee) * [x] #25 * [ ] Extract external resources from `@import` statements for preconnect/prefetch hinting. *...
[`StateAndPropsTransformer`](https://github.com/mayu-live/framework/blob/main/lib/mayu/resources/transformers/haml.rb#L873) transformes `$foo` to `self.props[:foo]`. Would be convenient to have the same thing for state. Not 100% sure how it should work with `update { |state| }`.. could probably figure...