Ilya Muradyan
Ilya Muradyan
When I use a scripting compiler in my project, it possibly does not set thread local parameters (maybe because it's not configured via Gradle). In that case I'm getting this...
### What is this PR for? This PR provides Kotlin interpreter users with the new version of scripting compiler (1.4) which results in following: - Users may use new features...
We in Kotlin Jupyter kernel use Maven resolver for libraries resolution. Maven POM for `kotlinx.datetime` lacks any information of `kotlinx-datetime-jvm` dependency: https://repo1.maven.org/maven2/org/jetbrains/kotlinx/kotlinx-datetime/0.3.1/kotlinx-datetime-0.3.1.pom. So, when we import library like this: ```...
Standard Jupyter output is a JSON object that has the following structure: ```json { mimetype1: value1, mimetype2: value2, ... } ``` Jupyter client chooses one of these mimetypes for rendering....
Most of the library code is common, exceptions are IO parts and Jupyter integration. We may support KMP (at least K/JS) for this library
It's good practice to add linters which inspect the code (even it's the simple markdown) and use them in commit hooks or as part of CI builds. It would be...
It's the reposting of [this issue](https://github.com/conda/conda/issues/10586) I've created a [question on SO](https://stackoverflow.com/questions/65321085/latest-displayed-version-on-anaconda-cloud) several months ago, but haven't received any answers. ## Current Behavior Different "latest versions" are reported for this...
`Activations` enum duplicates `Activation` interface and makes adding new activation function harder for library contributors and impossible for library users. Get rid of enum and add convenient "provider" service which...
Now we have a default (HTML/JS) rendering of DataFrame tables in Kotlin notebook plugin. It is slow. Guys in DataSpell solved it in the following way: they parse the output...