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

Block or report niksumeiko

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. Disable HTML form input autocomplete... Disable HTML form input autocomplete and autofill
    1
    # Disable HTML Form Input Autocomplete and Autofill
    2
    
                  
    3
    1. Add `autocomplete="off"` onto `<form>` element;
    4
    2. Add hidden `<input>` with `autocomplete="false"` as a first children element of the form.
    5
    
                  
  2. Git checkout remote branch · ohmyzsh... Git checkout remote branch · ohmyzsh custom alias
    1
    # ~/.oh-my-zsh/custom/git-checkout-remote-branch-ohmyzsh-alias.zsh
    2
    unalias gcor
    3
    function gcor() {
    4
      if [ -n "$1" ]; then
    5
        if git show-ref -q --heads $1; then
  3. gcmt gcmt Public

    Conventional Commit Message plugin for zsh

    Shell 4 3

  4. Git rebase current branch onto lates... Git rebase current branch onto latest master without switching · ohmyzsh custom alias
    1
    # ~/.oh-my-zsh/custom/git-rebase-master-ohmyzsh-alias.zsh
    2
    alias grbmo='gup origin master'