Skip to content

Instantly share code, notes, and snippets.

View JesseStorms's full-sized avatar
:dependabot:

Jesse Storms JesseStorms

:dependabot:
  • Leuven
  • 18:26 (UTC +02:00)
View GitHub Profile
@JesseStorms
JesseStorms / sups.livemd
Last active January 9, 2023 23:12
Shows you ways to make supervisors in supervisors

Supervisor tomfoolery

Mix.install([
  {:kino, "~> 0.8.0"},
  {:kino_vega_lite, "~> 0.1.7"}
])

Supervisor setup

@JesseStorms
JesseStorms / crash-course.livemd
Last active January 9, 2023 18:32
LiveBook van Distributed

The CrashCourse

Run in Livebook

Mix.install([
  {:kino, "~> 0.8.0"}
])
@JesseStorms
JesseStorms / nitty.js
Created December 9, 2020 22:45
nitty.js | small script to make nicer notifications using Jquery and UIKit
//Moving nitty.js to this account.
try{
$(document).ready(function() {
$('<div id="NittyContainer" class=""></div>').prependTo("body");
$("#NittyContainer").css({
"top": 0,
"left": 0,
"position": "fixed",
"width": "100%",
"height": "100%",
@JesseStorms
JesseStorms / nitty.js
Last active September 28, 2020 07:52 — forked from ThzeTerminator/nitty.js
Nitty.js | Forked without uikit
try{ //todo: pure js
console.log('Forked from https://gist.github.com/ThzeTerminator/e50ef200fb021e8ddac8ea302b2eb083 | default Close icon sourced from getuikit.com/docs/icon');
$(document).ready(function() {
$('<div id="NittyContainer" class=""></div>').prependTo("body");
$("#NittyContainer").css({
"top": 0,
"left": 0,
"position": "fixed",
"width": "100%",
"height": "100%",