Skip to content
View igorgatis's full-sized avatar

Block or report igorgatis

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. dotfiles dotfiles Public

    dotfiles for bash, vim and other terminal tools.

    Shell 4 2

  2. ws2 ws2 Public

    Forked from akhenakh/ws2

    An S2 coverer map written in Go with Wasm

    Go 9 22

  3. spark-httpjson spark-httpjson Public

    C# 3

  4. spark-osmpbf spark-osmpbf Public

    Java 2

  5. Simple hexdump in Javascript Simple hexdump in Javascript
    1
    function hexdump(buffer, blockSize) {
    2
        blockSize = blockSize || 16;
    3
        var lines = [];
    4
        var hex = "0123456789ABCDEF";
    5
        for (var b = 0; b < buffer.length; b += blockSize) {