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

Highlights

  • Pro
Block or Report

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.

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. 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 12.6k 1.3k

  4. dotfiles dotfiles Public

    Forked from romain-h/dotfiles

    dotfiles unix

    Vim Script

  5. 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
  6. 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