Skip to content
View bryanmr's full-sized avatar
  • Durham
Block or Report

Block or report bryanmr

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. jekyll-theme-minimal-magazine jekyll-theme-minimal-magazine Public

    A simple Jekyll theme that puts images first

    JavaScript

  2. jekyll-simple-build-environment jekyll-simple-build-environment Public

    Some scripts and a makefile that will allow me to build and deploy Jekyll to Google Cloud Storage while not modifying a theme and posts in one repo

    JavaScript

  3. Steamy_Cats Steamy_Cats Public archive

    A Steam Game Category Sorter Written in Bash

    Shell 17 1

  4. personal-scripts personal-scripts Public

    Some scripts that I use for various tasks

    Shell

  5. Jitsi-Durham-IT Jitsi-Durham-IT Public

    Simple API access from an HTML page

    HTML

  6. A quick awk thing I wrote to strip o... A quick awk thing I wrote to strip out dead links for images from Jekyll posts
    1
    #!/bin/bash
    2
    rm -rf /var/tmp/cleaned_posts
    3
    mkdir -p /var/tmp/cleaned_posts
    4
    while read -r post ; do
    5
      awk '/image:/ { our_image=$2 } /<img class/ { print "![For the Cure of Text](" our_image ")";next } { print $0 }' "$post" > /var/tmp/cleaned_posts/"$post"