◐ Shell
clean mode source ↗

ehrmann - Overview

Pinned Loading

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

    Java 28 6

  2. Ant task for Apache Thrift

    Java 1

  3. Constant time Java comparators

    Java 1

  4. 1

    # OpenWRT compatible devices

    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
  5. 1

    public byte[] gzipData(byte[] blob) {

    2

        Buffer compressedData = zopfli.compress(new Options(Options.BlockSplitting.FIRST, 15), blob);

    4

        ByteBuffer gzipBuffer = ByteBuffer.allocate(compressedData.getSize() - 6 + 18);

    5

        gzipBuffer.order(ByteOrder.LITTLE_ENDIAN);