This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang racket | |
(require ffi/unsafe | |
ffi/unsafe/define) | |
(require syntax/parse/define) | |
(require pipechain) | |
(require (for-syntax pipechain)) | |
(require (for-syntax racket/match racket/format)) | |
;; Download wasmtime C lib and set this file to the DLL/library file | |
(define wasmtime-dll "") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.time.Duration; | |
import java.time.Instant; | |
import java.util.ArrayList; | |
import java.util.Iterator; | |
import java.util.Random; | |
import java.util.concurrent.Semaphore; | |
import java.util.function.Consumer; | |
public class Main { | |
public static class Box<T> { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
created: 20210424052412556 | |
modified: 20210424052444872 | |
module-type: saver | |
tags: | |
title: TestSaverModule | |
type: application/javascript | |
// Disable this to limit logging. | |
let debugEnabled = true; | |
let problemEncountered = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SOURCES=$(wildcard **/*.md) $(wildcard *.md) | |
HTML=$(patsubst %.md, build/%.html, $(SOURCES)) | |
all: $(HTML) | |
build/%.html: %.md | |
mkdir --parents $(dir $@) | |
pandoc -s $< -o $@ | |
.PHONY: |