Geordi

Results 8 issues of Geordi

I did a fresh clone and `cargo make` and it gets stuck on this error: ``` Compiling bevy_webgl2 v0.5.0 error[E0432]: unresolved import `winit::platform::web` --> /Users/geordi/.cargo/registry/src/github.com-1ecc6299db9ec823/bevy_webgl2-0.5.2/src/renderer/webgl2_render_resource_context.rs:88:30 | 88 | use winit::platform::web::WindowExtWebSys;...

This is a feature request. I have some code that looks like this: ```typescript import * as v from '@badrap/valita'; // setup const externalSymbol = Symbol('external') as any; const isExternal...

Today: ```typescript const T = v.union(v.literal('a'), v.literal('b'), v.literal('c')); ``` Tomorrow: ```typescript const T = v.literal('a', 'b', 'c'); ```

I commend you on making a beautiful little language. I have long suspected that what you call "concatenative" style is where PLs should be heading, and you've gone and done...

HTMX (https://htmx.org/) requires the use of colons in attribute names for their recommended event handling (https://htmx.org/attributes/hx-on/). There is a deprecated form which does not require a colon. Maud does not...

1. I run the chat server 2. I opened two incognito chrome windows and sent a message from each client and they are propagated correctly. 3. I opened a third...

I'm having difficulty creating a parser for a language like Pug, I haven't tried using an external lexer, but I have a sneaking suspicion it is necessary. Can you provide...

Underneath each test there is a parse tree display which we have to expand one structure at a time, but I generally want to expand lots of stuff and it...