Skip to content

Instantly share code, notes, and snippets.

View altavir's full-sized avatar

Alexander Nozik altavir

View GitHub Profile
@altavir
altavir / build.ps1
Last active April 27, 2022 07:48
PowerShell + Lua to build report from markdown.
$repoPath = (Get-Item $PSScriptRoot).parent
# Create an output directory
New-Item -Path $repoPath -Name "out" -ItemType "directory"
# Compile markdown to html
Get-ChildItem -Path $repoPath -Recurse -Include *.md | ForEach-Object{
Write-Output $_
$html= $_.directoryname+"/out/" + $_.basename+".html"
@altavir
altavir / matrix-multiplication-server.ipynb
Last active December 29, 2021 07:54
A simple matrix mulitplication server inside kotlin notebook
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@altavir
altavir / Kotlin-demo.ipynb
Created June 29, 2021 13:39
Casus sccience seminar materials
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@altavir
altavir / visionforge-pg.ipynb
Created June 9, 2021 11:21
Visionforge and plotly.kt demonstration for quarks 2021
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@altavir
altavir / hypotesis.ipynb
Created November 2, 2020 18:38
Лекция по проверке статистических гипотез
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@altavir
altavir / estimates.ipynb
Created October 16, 2020 11:45
Ноутбук для лекции и семинара по теории оценок
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@altavir
altavir / stat-methods-distributions.ipynb
Created September 23, 2020 16:58
Стат. методы. Лекция вторая: распределения
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@altavir
altavir / plotly-image.ipynb
Created September 14, 2020 14:13
Drawing images in plotly.kt using unsupported feature.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This is the markdown file with embeded plot

<script src="https://cdnjs.cloudflare.com/ajax/libs/plotly.js/1.54.6/plotly.min.js" integrity="sha512-nImrVUd2OlM2T1PrCuXXMDsIyXD5zlpjpRRYicksbmLwn8uZhYFfSGLGeRIhnKJBsCdXY+ecvOiCFJnokwfEvg==" crossorigin="anonymous"></script>
<script> Plotly.react( 'plot', [{"mode":"markers","x":[1,2,3,4],"y":[10,15,13,17],"type":"scatter"},{"mode":"lines","x":[2,3,4,5],"y":[10,15,13,17],"type":"scatter"},{"mode":"lines+markers","x":[1,2,3,4],"y":[12,5,2,12],"type":"scatter"}],