Josh McKinney
Josh McKinney
Works fine on my mac: ```sh $ vhs --version vhs version 0.9.0 $ vhs examples/vhs/demo2.tape ``` 
> I don't remember if we have talked about this but how about generating the GIFs in the CI (via [`vhs-action`](https://github.com/charmbracelet/vhs-action) and push to the `images` branch automatically? The problem...
yup will do
> In this moment I saw this behavior as harassment. The intention was not to harass. I can see how this might have come across that way however and for...
I just published [askama-derive-axum](https://crates.io/crates/askama-derive-axum), which implements an IntoResponse derive macro which replaces the askama_axum crate. ```rust use askama::Template; use askama_derive_axum::IntoResponse; #[derive(Template, IntoResponse)] #[template(path = "index.html")] struct IndexTemplate { title: String,...
> I guess if I said more clearly (in more than 2 words) why I wasn't happy with the interaction, things would have gone better. Sorry for that! Thanks, I...
Cool - I'm going to move continue discussion over in an issue in https://github.com/Kijewski/askama_web/ for better context. https://github.com/Kijewski/askama_web/issues/1
I don't understand why you wouldn't write: ```rust text!["hello", "world"] ``` Instead of passing the Vec / array there. Is there a use case where adding the complexity is necessary...
I'm not certain that I like the indirection here enough to make it a thing. Subjectively, the following reads in a way that doesn't really feel all that ergonomic: ```rust...
Let me rephrase that a little as I feel that I misspoke a bit there. Having to look at something other than the code you're reading to discern meaning is...