Skip to content
View kch's full-sized avatar

Block or report kch

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. zombocom/rack-timeout zombocom/rack-timeout Public

    Abort requests that are taking too long

    Ruby 909 160

  2. strop strop Public

    CLI Option parser. Build options from parsing help text, with pattern matching for result processing.

    Ruby

  3. iTerm2 file opener for semantic history iTerm2 file opener for semantic history
    1
    #!/opt/homebrew/opt/ruby/bin/ruby
    2
    
                  
    3
    # iTerm2 file opener for semantic history
    4
    #
    5
    # Setup: iTerm2 » Settings » Profiles » Advanced » Semantic History » Always run command…
  4. reword commits inline in interactive... reword commits inline in interactive rebase file
    1
    #!/usr/bin/env ruby
    2
    
                  
    3
    # git-reword: Interactive tool for bulk editing commit messages' first line
    4
    #
    5
    # Opens the rebase todo sequence for editing, amends any commit messages with
  5. userscripts userscripts Public

    Browser userscripts and userstyles

    JavaScript

  6. ruby scanl ruby scanl
    1
    # Operating with plain arrays:
    2
    
                  
    3
    class Array
    4
      def scanl(init, &f)
    5
        return [init] if empty?