Skip to content
View gutierri's full-sized avatar

Block or report gutierri

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. jq.py jq.py Public

    jq.py is a simple json processor and filtering (jq-like) for Pythonists

    Python 3 2

  2. iso2god.app iso2god.app Public

    A GUI tool to convert Xbox (360) ISOs into an Games-On-Demand (GOD) file format

    Rust

  3. aspiers/stow aspiers/stow Public

    GNU Stow - mirror of savannah git repository occasionally with more bleeding-edge branches

    Perl 951 50

  4. screen-workdir.sh screen-workdir.sh Public

    Utility to create session with the current folder name on GNU Screen

    Shell 5

  5. restclock restclock Public

    A table clock while Android charges the battery

    Java

  6. Range like python on TypeScript Range like python on TypeScript
    1
    function range(_p: number, _t?: number, _s?: number): Array<number> {
    2
      /**
    3
       * @param <_p> Return a list integers of zero until <_p> value.
    4
       * @param <_t> Return a list integers of <_t> until <_p> value.
    5
       * @param <_s> Return a list integers of <_t> until <_p> with steps <_s> value.