GithubHelp home page GithubHelp logo

kotlin-jupyter-libraries's Introduction

Jupyter library descriptors

JetBrains official project Kotlin beta stability GitHub

This repository hosts library descriptors for Kotlin Jupyter kernel project. Read about usage and contributing here.

kotlin-jupyter-libraries's People

Contributors

alshan avatar altavir avatar andreikingsley avatar ark-1 avatar belovrv avatar biranyucel avatar breandan avatar commandertvis avatar devcrocod avatar evgeniygubarev avatar fbrunacci avatar gabrielfeo avatar gciatto avatar haifengl avatar holgerbrandl avatar ileasile avatar jbaron avatar jolanrensen avatar juliabeliaeva avatar koperagen avatar lundez avatar mykolagolubyev avatar nikitinas avatar renovate[bot] avatar zaleslaw avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

kotlin-jupyter-libraries's Issues

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

regex
2p-kt.json
  • it.unibo.tuprolog:full 0.32.1
biokotlin.json
  • org.biokotlin:biokotlin 0.12
combinatoricskt.json
  • com.github.shiguruikai:combinatoricskt 1.6.0
coroutines.json
  • org.jetbrains.kotlinx:kotlinx-coroutines-core 1.8.0
dataframe.json
  • org.jetbrains.kotlinx:dataframe 0.12.1
datetime.json
  • org.jetbrains.kotlinx:kotlinx-datetime 0.5.0
deeplearning4j-cuda.json
  • org.nd4j:nd4j-api 1.0.0-beta6
  • org.slf4j:slf4j-api 1.7.36
  • org.freemarker:freemarker 2.3.32
deeplearning4j.json
  • org.nd4j:nd4j-api 1.0.0-beta6
  • org.slf4j:slf4j-api 1.7.36
  • org.freemarker:freemarker 2.3.32
exposed.json
  • org.jetbrains.exposed:exposed-core 0.48.0
fuel.json
  • com.github.kittinunf.fuel:fuel 2.3.1
gradle-enterprise-api-kotlin.json
  • com.gabrielfeo:gradle-enterprise-api-kotlin 2023.3.1
gral.json
  • de.erichseifert.gral:gral-core 0.11
jdsp.json
  • com.github.psambit9791:jdsp v3.0.0
jupyter-js.json
  • dev.yidafu.jupyter:jupyter-js 0.7.0
kalasim.json
  • com.github.holgerbrandl:kalasim 0.12.105
kandy-echarts.json
  • org.jetbrains.kotlinx:kandy-echarts 0.5.0
kandy.json
  • org.jetbrains.kotlinx:kandy-lets-plot 0.5.0
khttp.json
  • com.github.jkcclemens:khttp 39f76b4186
klaxon.json
  • com.beust:klaxon 5.6
kmath.json
  • space.kscience:kmath-jupyter 0.3.1
kotlin-dl.json
  • org.jetbrains.kotlinx:kotlin-deeplearning-api 0.5.2
kotlin-statistics.json
krangl.json
  • com.github.holgerbrandl:krangl 0.17
kravis.json
  • com.github.holgerbrandl:kravis 0.9.96
kt-math.json
  • io.github.gciatto:kt-math 0.10.0
ktor-client.json
  • org.jetbrains.kotlinx:kotlin-jupyter-ktor-client-json-generation 0.1.0-dev-8
lets-plot-gt.json
  • org.jetbrains.lets-plot:lets-plot-kotlin-geotools 4.6.0
  • org.geotools:gt-geojson [30,)
lets-plot.json
  • org.jetbrains.lets-plot:lets-plot-kotlin-kernel 4.6.0
  • org.jetbrains.lets-plot:lets-plot-common 4.2.0
  • org.jetbrains.lets-plot:lets-plot-common 4.2.0
londogard-nlp-toolkit.json
  • com.londogard:londogard-nlp-toolkit v1.0.0
multik.json
  • org.jetbrains.kotlinx:multik-core-jvm 0.2.3
mysql.json
  • mysql:mysql-connector-java 8.0.33
openai.json
  • org.jetbrains.kotlin.ds:kotlin-openai 0.1.2
plotly-server.json
  • space.kscience:plotlykt-server 0.7.0
plotly.json
  • space.kscience:plotlykt-jupyter 0.7.0
rdkit.json
  • org.jetbrains.kotlinx:rdkit-jupyter 1.0.0
roboquant.json
  • org.roboquant:roboquant-jupyter 2.2.0
serialization.json
  • org.jetbrains.kotlinx:kotlin-jupyter-json-generation 0.1.0-dev-8
smile.json
  • com.github.haifengl:smile-kotlin 3.0.2
spark-streaming.json
  • org.jetbrains.kotlinx.spark:jupyter_3.3.1_2.13 1.2.4
spark.json
  • org.jetbrains.kotlinx.spark:jupyter_3.3.1_2.13 1.2.4
webtau.json
  • org.testingisdocumenting.webtau:webtau 2.3

  • Check this box to trigger a request for Renovate to run again on this repository

Experimental Kotlin Jupyter Kernal `%javascript` magic support

Hi guys!

kotlin-jupyter-js is a library to support %javascript/%typescript/%jsx magic.

In some cases, we want create interactive charts or 3d charts, which only javascript can do. I create a library to support executing javascript code in kotlin jupyter kernal, so we could using javascript to render our kotlin data.

See more usage read README file.

examples

JS Sample

First declare a variable in cell

// value define in kotlin world
val kNumber = 233

then, add a cell with %js magic

%js
// using `kNumber` in js workd
import { kNumber } from '@jupyter'

getCellRoot().innerHTML = `<h1>${kNumber}</h1>`

image

React Example

preview cell declare a variable in cell

val foo = "foo from kotlin word";

Export your Components

%jsx

import { foo } from "@jupyter";

export default function App() {
    return <h1>{foo}</h1>
}

image

Full examples

https://yidafu.github.io/kotlin-jupyter-js/examples/js-magic.html

https://yidafu.github.io/kotlin-jupyter-js/examples/girls-last-tour.html

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.