Skip to content
View ehrmann's full-sized avatar
Block or Report

Block or report ehrmann

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. vcdiff-java vcdiff-java Public

    An Java encoder/decoder for the VCDIFF (RFC3284) format

    Java 27 7

  2. thrift-task thrift-task Public

    Ant task for Apache Thrift

    Java 1

  3. const-time const-time Public

    Constant time Java comparators

    Java 1

  4. semver-java semver-java Public

    Java

  5. OpenWRT Sprint Hotspot Notes OpenWRT Sprint Hotspot Notes
    1
    # OpenWRT compatible devices
    2
    
                  
    3
    ## Sprint-compatible LTE modems
    4
    ### [Sierra Wireless](https://www.sierrawireless.com/products-and-solutions/embedded-solutions/networking-modules/)
    5
    MC vs EM is the form factor. Most devices are USB devices that the USB interface on MiniPCIe. SIM support works by wiring pins
  6. Java pngtastic zopfli compression Java pngtastic zopfli compression
    1
    public byte[] gzipData(byte[] blob) {
    2
        Buffer compressedData = zopfli.compress(new Options(Options.BlockSplitting.FIRST, 15), blob);
    3
    
                  
    4
        ByteBuffer gzipBuffer = ByteBuffer.allocate(compressedData.getSize() - 6 + 18);
    5
        gzipBuffer.order(ByteOrder.LITTLE_ENDIAN);