Skip to content
View northnose's full-sized avatar

Block or report northnose

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

    Forked from gilbertchen/duplicacy

    A new generation cloud backup tool

    Go

  2. go-dropbox go-dropbox Public

    Forked from gilbertchen/go-dropbox

    Dropbox v2 client for Go.

    Go

  3. enable input fields bookmarklet enable input fields bookmarklet
    1
    // bookmarklet to enable typing/pasting into annoying input boxes (e.g. TreasuryDirect password input)
    2
    // partially stolen from https://github.com/jswanner/DontF-WithPaste
    3
    javascript:(function() {
    4
    	document.querySelectorAll('input[readonly]').forEach(e => e.readOnly = false);
    5
    	forceBrowserDefault=(e=>{e.stopImmediatePropagation();return true;});