Skip to content
View sbz's full-sized avatar

Organizations

@freebsd

Block or report sbz

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 Loading

  1. freebsd-commands freebsd-commands Public

    214 13

  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 9 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]