Anthony Nowell
Anthony Nowell
> What categories could we add to crates.io for ML? Maybe the ones that are defined on the website? I'm not sure. I don't know if we even have the...
I'll find some time this week to catch up on pull requests, and perhaps, finally, fix the failing CI to make this easier to maintain again.
I'll be the first to admit that I don't think I got the categories exactly correct (or that I could find any 2 resources that agreed on a way to...
It seems this macro was generally broke for recent nightly builds, thanks to the efforts to stabilize proc-macro that split out some bits. I've made a few changes to get...
Yeah.. I suspect this comment: https://github.com/rust-lang/cargo/issues/5825#issuecomment-408638066 describes what I'd need to change. I haven't gone through the wasm setup, so if it's just a few commands to setup, could you...
So far I haven't found a way around this. It seems that proc_macros (which this crate is) just aren't supported in wasm. I haven't done enough digging to understand when/if...
Perhaps? But those are so complicated to read that they feel like the antithesis of what this crate aims to accomplish: interpolation that is very simple and natural to read...
> This would allow not just simple variable interpolations but actual expressions Expressions are supported, just not documented on the `README`. You just barely guessed the wrong syntax: it's currently...
I chewed on your feedback a bit, and my thinking on it did evolve a bit, including some hesitation. I'm not super swayed by saving a single character, but there...
I also wanted this. For now I've opted to just use some utility functions: ```typescript export const metaDescriptions = (str: string): object[] => { return [ { vmid: 'description', name:...