Jason McGhee

Results 118 comments of Jason McGhee

I believe it is expected that you call `.cls ()` every frame. Checkout the `fancy` example. It is an immediate mode app, meaning, it is expecting to redraw everything every...

Make sure to set the active console to be the fancy console before clearing the screen. This means likely `ctx.set_active_console(1)` if your fancy console is the second. Or if you're...

If you provide a gist or repo with your code, I can take a look and see if anything jumps out!

That link is not publicly visible

The link you provided never resolved for me- happy to take a look, but it will need to be posted somewhere publicly available, like a gist.

Just tried it. I added this in your `player_input.rs` as no maps spawn on the player anymore: ```rust VirtualKeyCode::M => { commands.push( ( WantsOpenMap, ) ); Point::new(0, 0) }, ```...

Here is the screenshot example (Press `S` to take a screenshot): * `fontswitch`: [Try it with WASM](https://jasonjmcghee.github.io/bracket-lib/fontswitch/) Here are the WebGL (from main repo) examples hosted statically: * `hello_minimal` puts...

Logged an issue over in SQLite.swift repo, but that doesn't mean we can't fork / add support / open a PR there to fulfill the issue! https://github.com/stephencelis/SQLite.swift/issues/1232

Exploring embedding generation from swift… seems like a good candidate would be using candle (rust) with a sentence transformer, and building a binary that takes in text and outputs embeddings....

I'm really bad at C bindings stuff but i tried to put together a candle text -> embeddings binary that we can talk to via FFI https://github.com/jasonjmcghee/rust_embedding_lib