Skip to content
View timothee-alby's full-sized avatar

Highlights

  • Pro

Block or report timothee-alby

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. pgtop-cli pgtop-cli Public

    Analyse PostgreSQL from your terminal

    JavaScript 1

  2. inkoming inkoming Public

    JavaScript 1

  3. overleaf/overleaf overleaf/overleaf Public

    A web-based collaborative LaTeX editor

    JavaScript 16.7k 1.7k

  4. Warn before quitting the current app... Warn before quitting the current application in OSX
    1
    #
    2
    # AppleScript to quit the current front app after a warning. Useful to remap CMD+Q and stop quitting app by mistake
    3
    #
    4
    # 1. Open AppleScript
    5
    # 2. Past this file
  5. Easily any type to boolean in Ruby Easily any type to boolean in Ruby
    1
    module StringToBoolean
    2
      def to_bool
    3
        return true if self == true || self.strip =~ (/\A(true|t|yes|y|1)\Z/i)
    4
        false
    5
      end