Skip to content
View TheSkyIsBlottedOut's full-sized avatar
💭
in Domine sola fidi, et mala omnis acqui vincit.
💭
in Domine sola fidi, et mala omnis acqui vincit.

Highlights

  • Pro

Block or report TheSkyIsBlottedOut

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

    Bun based, zsh-driven monorepo tooling

    JavaScript 1

  2. roman-with-explanation.rb roman-with-explanation.rb
    1
    class Integer                                                            # so that 3.to_roman() will return a result
    2
      Roman = 'IVXLCDM'                                                      # cardinally ordered roman numerals
    3
      def to_roman
    4
        raise "Number too large" if self > 4999                              # string does not contain characters for > 4999
    5
        n, nsize = self, Math.log10(self).to_i                               # n = this number, nsize = number of digits in this number
  3. hundredsgolf.rb hundredsgolf.rb
    1
    #f '123456789',100
    2
    
                  
    3
    def f(d,t)
    4
      a=[]
    5
      0.upto(3**(d.size-1)).map do |n|
  4. bible-passage-parser bible-passage-parser Public

    Finds bible passage references in text

    Ruby 1

  5. inverse_to_proc.rb inverse_to_proc.rb
    1
    class Symbol
    2
      def ~@
    3
        _bound = binding
    4
        return ->(arg) {_bound.send(self, arg)}
    5
      end
  6. conway.rb conway.rb
    1
    # Cheaty idea
    2
    class Conway
    3
      def initialize(height, width)
    4
        @height = height
    5
        @width = width