Skip to content
View sbz's full-sized avatar

Organizations

@freebsd

Block or report sbz

Report abuse

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

Report abuse

Pinned Loading

  1. freebsd-commands freebsd-commands Public

    219 14

  2. android-sysinfo android-sysinfo Public

    C 16 2

  3. elfdbg elfdbg Public

    Utility to determine if ELF binary is built with debug sections

    C 8 1

  4. freebsd-src freebsd-src Public

    Forked from freebsd/freebsd-src

    FreeBSD src tree (read-only mirror)

    C 1

  5. iwndebug iwndebug Public

    C 1

  6. hexdump implementation in Python hexdump implementation in Python
    1
    def hexdump(src, length=16):
    2
        FILTER = ''.join([(len(repr(chr(x))) == 3) and chr(x) or '.' for x in range(256)])
    3
        lines = []
    4
        for c in xrange(0, len(src), length):
    5
            chars = src[c:c+length]