Skip to content
View inopinatus's full-sized avatar
🐼
fuzzy logic
🐼
fuzzy logic
Block or Report

Block or report inopinatus

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

    A Sublime Text URL handler for Mac OS

    Shell 64 7

  2. hokusai hokusai Public

    Stamp it out with ActiveRecord concerns.

    Ruby 8

  3. reveal reveal Public

    Reveal files in Finder

    Swift 1

  4. copyfile copyfile Public

    Copy file data and/or metadata using copyfile(3) on macOS

    C 1

  5. Convert UUIDs to/from base58 Convert UUIDs to/from base58
    1
    module Uu58
    2
      # Convert a string UUID to a base58 string representation.
    3
      #
    4
      # Output will be padded up to 22 digits if necessary.
    5
      #
  6. ar inequalities ar inequalities
    1
    | Inequality | Interval | Ruby range    | Active Record¹            | Arel²                       | Description |
    2
    | ---------- | -------- | ------------- | ------------------------- | --------------------------- | ----------- |
    3
    | x >= a     | [a, ∞)   | a..           | where(x: a..)             | x.gteq(a)                   | Right unbounded closed |
    4
    | x > a      | (a, ∞)   | n/a           | where.not(x: ..a)        | x.gt(a)                     | Right unbounded open |
    5
    | x <= a     | (-∞, a]  | ..a           | where(x: ..a)             | x.lteq(a)                   | Left unbounded closed  |