Skip to content

Instantly share code, notes, and snippets.

View johannes-riecken's full-sized avatar

Johannes Riecken johannes-riecken

View GitHub Profile
@johannes-riecken
johannes-riecken / examples.carbon
Created March 16, 2025 09:33
Code examples from "Definition-Checked Generics" talk at CppNow 2023
interface RNGInterface {
let Result: type;
fn Random[addr self: Self*]() -> Result;
}
class BaseRNGClass { ... }
class FancyRNG {
extend base: BaseRNGClass;
extend impl as RNGInterface where .Result = f64 {
@johannes-riecken
johannes-riecken / check_gray.py
Last active March 9, 2025 17:25
Extracting slides from "Inheritance is the base class of evil"
# First run `ffmpeg -i movie.mp4 -vf crop=953:704:162:11 cropped.mp4`
# Then run `ffmpeg -i cropped.mp4 'frames/%05d.png'` and run `python3 check_gray.py frames/*.png`.
# The script deletes frames where the upper left corner 10x10 box is neither white nor dark gray.
from PIL import Image
import numpy as np
import sys
import os
for f in sys.argv[1:]:
components:
requestBodies:
Shape:
content:
application/json:
schema:
$ref: '#/components/schemas/Shape'
schemas:
Circle:
properties:
openapi: 3.0.0
info:
title: "foo"
version: "0.0.1"
license:
url: "https://www.example.com"
name: "MIT"
servers:
- url: "http://localhost:8080"
paths:
@johannes-riecken
johannes-riecken / inline-java build log
Created December 2, 2022 08:27
inline-java fails to build on macOS Monterey (aarch64)
@nix { "action": "setPhase", "phase": "unpackPhase" }
unpacking sources
unpacking source archive /nix/store/wbg1gz92d9vvp9kfv0j7jwnydqbz8sl7-bazel-3.7.2-dist.zip
source root is .
@nix { "action": "setPhase", "phase": "patchPhase" }
patching sources
applying patch /nix/store/xms1dccbdpg8baylzl71ddm9zn36baqa-trim-last-argument-to-gcc-if-empty.patch
patching file tools/cpp/osx_cc_wrapper.sh.tpl
applying patch /nix/store/jwzbqr298z1d1n95pj14y6anrhr2lsaq-no-arc.patch
patching file tools/osx/xcode_locator.m
@johannes-riecken
johannes-riecken / addMissingOverrides.go
Created August 31, 2022 07:18
Add missing overrides using CodeQL
package main
import (
"bufio"
_ "embed"
"encoding/json"
"io/ioutil"
"log"
"os"
"strings"
@johannes-riecken
johannes-riecken / Tequilensor.hs
Created August 28, 2022 12:06
Vector is to Tensor as Tensor is to ...
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeOperators #-}
import Data.Functor.Identity
import Data.Kind
import GHC.TypeLits
import Numeric.Fin -- from https://github.com/ekmett/numeric-fin/
@johannes-riecken
johannes-riecken / openbsd_function_frequency.txt
Created November 20, 2020 09:42
Frequency of C functions in OpenBSD's /usr/bin
424 free
324 strlen
323 fprintf
319 strcmp
265 exit
229 snprintf
228 printf
211 err
203 memset
189 malloc
@johannes-riecken
johannes-riecken / Integral.hs
Last active November 18, 2020 07:55
Integral using causal commutative arrows
import Control.Arrow
import Control.Arrow.Operations
import Control.Arrow.Transformer.All
import Data.Stream
frequency :: Int
frequency = 1024
exp :: StreamArrow (->) () Double
exp = fixA (integral >>> arr (+1))
@johannes-riecken
johannes-riecken / GoParser.g4
Last active November 11, 2020 08:35
Grammar that runs too slowly when converted to Perl6. See https://github.com/drforr/perl6-ANTLR4/issues/16
grammar GoParser;
sourceFile
: packageClause eos (importDecl eos)* ((functionDecl | methodDecl | declaration) eos)*
;
packageClause
: 'package' IDENTIFIER
;