Skip to content
View mernen's full-sized avatar

Organizations

@rubinius
Block or Report

Block or report mernen

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. completion-ruby completion-ruby Public

    Command-line completion for Ruby-related commands under Bash: rake, bundle, gem, rails, ruby, jruby

    Shell 145 19

  2. vim-terminaldocument vim-terminaldocument Public

    Show document name on macOS’s Terminal.app

    Vim Script 1

  3. FizzBuzz as a Regexp - source for ht... FizzBuzz as a Regexp - source for http://pastie.org/158799
    1
    #! /usr/bin/env ruby1.9
    2
    puts 1.upto(100).to_a.join("\n").
    3
      gsub(%r{
    4
        (?# matchers for multiples of 3 -- remainder=0,1,2 respectively)
    5
        (?<z>[0369]+(?:\g<u>\g<d>|\g<d>\g<u>)?|\g<u>\g<d>|\g<d>\g<u>){0}