Skip to content

Instantly share code, notes, and snippets.

View bluenote10's full-sized avatar

Fabian Keller bluenote10

  • Bosch
  • Ludwigsburg, Germany
View GitHub Profile
@bluenote10
bluenote10 / main.dart
Last active August 12, 2021 18:51
Flutter: Center Positioned
import "package:flutter/material.dart";
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
@bluenote10
bluenote10 / benchmark_delay_line.py
Last active February 27, 2023 14:38
Benchmark delay line
import os
import time
from contextlib import contextmanager
from pathlib import Path
from typing import List, Literal
import numba
import numba.cuda
import numpy as np
import tabulate