Adam

Results 337 comments of Adam

Hi 👋 I'd like to be able to help with this. I've configured a few Kotlin multiplatform projects, ([kxs-ts-gen](https://github.com/adamko-dev/kotlinx-serialization-typescript-generator/) and [ks3](https://github.com/Kantis/ks3)) for Maven Central publishing. There are a few gotchas...

Thanks @holgerbrandl! Instead of trying to remove JVM dependencies before proceeding, I think the first step could be to migrate the project to a multiplatform project that _only_ targets JVM....

I've done some digging and these are the libraries that are not multiplatform compatible. * org.apache.commons.math3.distribution (as you already noted) * com.github.holgerbrandl.jsonbuilder (replace with Kotlinx Serialization?) * org.jetbrains.kotlinx.dataframe (seems to...

Common labels would certainly help. For reference, and to try and protect against link-rot, here's relevant part copy and pasted > #### RichiH: Common labels for queries > * VictoriaQL...

Last week I finished a hacky little project that kind of solves this problem. I'll try and get it releasable. First I made sure that each instance behind the load...

Okay I figured it out! The filename should be prefixed with `example-` wrong: ```markdown > You can get the full code [here](../modules/my-project-knit/example/plain-class-with-primitive-fields-01.kt). ``` right: ```markdown > You can get the...

I found this comment, https://gist.github.com/asabaylus/3071099?permalink_comment_id=1593627#gistcomment-1593627 > The code that creates the anchors is here: https://github.com/jch/html-pipeline/blob/master/lib/html/pipeline/toc_filter.rb > > 1. It downcases the string > 2. remove anything that is not a...

> Please provide more info, preferably with examples of code and/or usage, demonstrating what you are trying to achieve. There's very few examples in the README that show how to...

No problem! I'm mostly refactoring so I can make something work for my own project, and sharing my work in case you'd also like it.

I have two ideas: 1. *Code generation* Define some interfaces to represent the file paths. ```kotlin sealed interface TestResource { val path: String interface Directory : TestResource { val contents:...