Skip to content

Instantly share code, notes, and snippets.

@mihai-dinculescu
mihai-dinculescu / Jupyter-Lab-with-JavaScript-and-TypeScript.md
Last active March 21, 2024 08:39
JavaScript and TypeScript support for Jupyter Notebook and Jupyter Lab

Table of Contents

  1. Install

    • 1.1. Anaconda
    • 1.2. Jupyter Lab
    • 1.3. Node.js
    • 1.4. IJavascript
    • 1.5. ITypescript
  2. Run

@mihai-dinculescu
mihai-dinculescu / 01-build.rs
Last active May 28, 2023 12:56
ESP32-MQTT-Rust
// build.rs
use embuild::build::LinkArgs;
fn main() -> anyhow::Result<()> {
// Necessary because of this issue: https://github.com/rust-lang/cargo/issues/9641
LinkArgs::output_propagated("ESP_IDF")?;
Ok(())
}