Times in milliseconds
day | parse | part1 | part2 |
---|---|---|---|
1 | 2.96 | 1.56 | 7.05 |
2 | 1.83 | 0.1940 | 1.42 |
3 | 2.97 | 0.014 | 0.005 |
4 | 4.46 | 65.15 | 3.91 |
5 | 1.59 | 0.374 | 0.622 |
6 | 5.6 | 0.920 | 371.96 |
module SList exposing | |
( SList, empty, fromList, toList | |
, lcons, rcons | |
, lhead, rhead | |
, ltail, rtail | |
, reverse | |
) | |
type SList a |
Times in milliseconds
day | parse | part1 | part2 |
---|---|---|---|
1 | 2.96 | 1.56 | 7.05 |
2 | 1.83 | 0.1940 | 1.42 |
3 | 2.97 | 0.014 | 0.005 |
4 | 4.46 | 65.15 | 3.91 |
5 | 1.59 | 0.374 | 0.622 |
6 | 5.6 | 0.920 | 371.96 |
* { | |
font-family: "JetBrains Mono" !important; | |
font-size: 14px; | |
font-weight: 500; | |
} | |
code::before { | |
top: -1px; | |
bottom: -1px; | |
left: -4px; |
I was mainly interested in finding out how to change pad colours.
There was this Github repo detailing some SysEx messages for Minilab 2, but that didn't work for Minilab 3.
In the end I downloaded the DAW integration scripts from the Resources page and decompiled the Bitwig Java classes (you need to unzip the .bwextension file). That gave me the coveted secret SysEx commands :)
module RAList exposing (RAList, cons, empty, fromList, head, isEmpty, lookup, tail, update) | |
{-| Okasaki, Random Access Lists | |
<https://dl.acm.org/doi/pdf/10.1145/224164.224187> | |
O(1) list operations (cons, head, tail) | |
O(log\_2 n) array operations (lookup, update) | |
-} |
/* | |
CRC32 in HVM | |
A port of https://github.com/openbsd/src/blob/d4c9bc7e07bcf455e26a4d261eb43cf80a9b7fe1/bin/md5/crc.c | |
*/ | |
testString = "foo bar baz" // --> CRC: 2461288740 | |
main = (CRC.run testString) |
# Fast macOS key repeat | |
https://apple.stackexchange.com/questions/10467/how-to-increase-keyboard-key-repeat-rate-on-os-x | |
defaults write -g InitialKeyRepeat -int 10 # normal minimum is 15 (225 ms) | |
defaults write -g KeyRepeat -int 1 # normal minimum is 2 (30 ms) |
" ALE | |
let g:ale_linters = { | |
\ 'elm': ['make'], | |
\ } | |
Plug 'dense-analysis/ale' | |
Plug 'blueyed/vim-qf_resize' | |
let g:ale_linters_explicit = 1 | |
let g:ale_open_list = 1 |
module Main exposing (main) | |
import Html exposing (Html) | |
import Json.Decode | |
import Json.Encode | |
main : Html msg | |
main = | |
Html.ul [] |
module Common exposing | |
( Point | |
, Segment | |
, add | |
, addK | |
, distance | |
, dot | |
, magnitude | |
, mid | |
, scale |