Skip to content
View speelbarrow's full-sized avatar
🦾
hustling and/or bustling
🦾
hustling and/or bustling

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 Loading

  1. dotfiles dotfiles Public

    Thank me later 😎

    Lua

  2. spLauncher.nvim spLauncher.nvim Public

    A Neovim plugin for launching tasks, I guess.

    Lua 7

  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. Open file in Neovide Open file in Neovide
    1
    # Only tested on macOS, but should work anywhere where you can specify a shell script as the program to open a file with
    2
    # On macOS, create an Automator app, then create a "Run Shell Script" step and run this script.
    3
    
                  
    4
    PID=`grep -oE "([0-9]+)\.0$" "$HOME/.neovide" | rev | cut -c3- | rev`
    5
    if ps -p $PID > /dev/null; then