Skip to content
View bencromwell's full-sized avatar
Block or Report

Block or report bencromwell

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
bencromwell/README.md

Hi there 👋

Pinned

  1. Manjaro packages Manjaro packages
    1
    # Manjaro Packages
    2
    
                  
    3
    ## Upgrading packages including from AUR
    4
    
                  
    5
    ### Upgrade entire system
  2. upgrade Go to the latest available r... upgrade Go to the latest available release
    1
    #!/bin/bash
    2
    
                  
    3
    CURRENT=$(go version | awk '{print $3}')
    4
    LATEST=$(curl --silent https://golang.org/VERSION?m=text)
    5
    
                  
  3. sshush sshush Public

    SSH config management from YAML files, with groups

    Python 4 1

  4. git-spruce git-spruce Public

    CLI for sprucing up your local git, cleans out branches that have been merged upstream.

    PHP

  5. iso3166 iso3166 Public

    Package for interacting with ISO3166 country codes

    PHP

  6. Github bookmarklet to remove dependa... Github bookmarklet to remove dependabot PRs/issues from search
    1
    javascript:(function () {
    2
      let searchField = document.getElementById('js-issues-search');
    3
      searchField.value += ' -label:dependencies';
    4
      const ke = new KeyboardEvent("keypress", {keyCode: 13});
    5
      searchField.dispatchEvent(ke);