Skip to content
View speelbarrow's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report speelbarrow

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. dotfiles dotfiles Public

    Thank me later 😎

    Lua

  2. spLauncher.nvim spLauncher.nvim Public

    A Neovim plugin for launching tasks, I guess.

    Lua 2

  3. weensy.rs weensy.rs Public

    A collection of useful bits and bobs for programming the Teensy 4.1 microcontroller using Rust.

    Rust

  4. checkout-and-setup checkout-and-setup Public

    Simple GitHub Action that checks out the repository and sets up the environment.

  5. Docker convenience command extensions Docker convenience command extensions
    1
    # Source this file!
    2
    function docker {
    3
    	case "$1" in
    4
    		disposable)
    5
    			command docker run --rm -it --name disposable ${@[@]:2}
  6. Wrapper for 'docker' command on macO... Wrapper for 'docker' command on macOS that starts Docker Desktop if it's not already running so that you don't have to
    1
    function docker {
    2
    	if ! command docker info &> /dev/null; then
    3
    		open -a /Applications/Docker.app
    4
    		echo -n "Waiting for Docker to start ."
    5