Marcin Kuszczak
Marcin Kuszczak
Draft PR - there is still more to do. @holgerbrandl - Can you please release a patched version of kscript 4.0? That way users can still use version 4, while...
Maybe we can create a GitHub organization named: kotlin-scripting and transfer kscript to that organization? Then we could build a release process around a new organization (user names/passwords). I have...
Hi! Have a look at my table visualization library: tablevis. It has pretty many features and is very fast. Here is the link: https://github.com/aartiPl/tablevis
I am trying to run the following command in kotlin-shell: ` #!/usr/bin/env kscript import eu.jrie.jetbrains.kotlinshell.shell.* shell { println("wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | apt-key add -"()) } ` But it...
All the issues connected with the implementation of the Kotlin Scripting engine in KScript.
I need assertions for checking database structure. E.g. I want to check if specific table exists in database. Proposed assertions: `assertThat(table).exists();` or `assertThat(source).tableExists("name");` Additionally it would be nice to have...