BppleMan
BppleMan
That's great. this is a great project. I am starting a new project and hope to see pr soon.
I think it is very necessary to add support for kotlin-native. I'm trying to develop a tool which uses flutter as gui but kotlin-native as backend service. Therefore, in the...
> Thanks for the details on that. Super helpful. Just so I better understand all this... Why would you rather do multiplatform grpc-kotlin instead of ktor + Kotlin serialization or...
also encountered
noisy I found libgit2/libgit2#1125 when I created issue
``` module.exports = { module: { rules: [ { test: /\.css$/, include: MONACO_DIR, use: [ MiniCssExtractPlugin.loader, "css-loader" ] }, { test: /\.ttf$/, include: MONACO_DIR, use: ['file-loader'] } ] }, plugins:...
> if you want to make sure that everything is working in library mode, I would test directly against the miette Diagnostic protocol: https://github.com/zkat/miette/blob/main/src/protocol.rs#L17-L67 > > That is, instead of...
``` #[derive(Debug, Error, Diagnostic)] #[error("oops!")] struct DemoError { #[source_code] pub src: NamedSource, #[label("This bit here")] pub bad_bit: SourceSpan, } fn third() -> FancyResult { Err(DemoError { src: NamedSource::new( "cli::main", "|fn...
> If you want to render to a string for comparison, you could consider doing what miette's own test suite does for the graphical reporter: https://github.com/zkat/miette/blob/main/tests/graphical.rs#L29-L32 > > Is that...
I mean, if I'm developing an application and also want to get some fancy snippet hints, do I have to hardcode the source. If not, please help direct me where...