Skip to content
View dmoerner's full-sized avatar

Block or report dmoerner

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. bsearch_benchmark bsearch_benchmark Public

    Code and data for benchmarking of one-comparison and two-comparison bsearch algorithms

    OCaml 1

  2. vim-markdownfootnotes vim-markdownfootnotes Public

    Forked from vim-pandoc/vim-markdownfootnotes

    Insert Extended Markdown Footnotes in Vim

    Vim Script 1

  3. Smartly open a terminal in any VM on... Smartly open a terminal in any VM on Qubes
    1
    #!/bin/sh
    2
    
                  
    3
    # Inspired by Holger Levsen's 2017 DebConf talk.
    4
    
                  
    5
    result="$(qvm-ls --no-spinner --raw-data --fields NAME | dmenu)"
  4. Use dmenu to launch browsers by VM Use dmenu to launch browsers by VM
    1
    #!/bin/sh
    2
    
                  
    3
    # Inspired by Holger Levsen's 2017 DebConf talk.
    4
    
                  
    5
    result="$(qvm-ls --no-spinner --raw-data --fields NAME,NETVM | egrep 'sys-whonix|sys-firewall|mirage-firewall' | awk -F '|' '{print $1}' | grep -v -e mirage-firewall -e sys-whonix | dmenu -fn "Monospace-12")"
  5. go-rle go-rle Public

    Go run length encoding implementation

    Go