Top "Unpack" questions

A function in several scripting languages for unpacking binary data into native types for the language in question.

git unpack error on push to gerrit

On push of a new branch to a gerrit server we encounter the following error: de@roma:~/git-hate/www$ git …

git push gerrit unpack
How to unpack all objects of a git repository?

How can I unpack all objects of a pack file? I've just cloned a remote repository, so my local repository …

git unpack
unpack function in python

I am trying to understand the unpack function in Python and how it uses the format string. I am using …

python unpack
Unpack binary data with python

I would like to unpack an array of binary data to uint16 data with Python. Internet is full of examples …

python arrays struct unpack uint16
pack / unpack functions for node.js

Are there any modules that provide pack / unpack functionality for nodejs similar to python's struct module? I haven't found any …

javascript struct node.js pack unpack
Protobuf 3.0 Any Type pack/unpack

I would like to know how to transform a Protobuf Any Type to the original Protobuf message type and vice …

protocol-buffers pack unpack any
How to unpack the contents of a JavaScript file?

You know how those packed js files look like, right? eval(function(p,a,c,k,e,d){ ... } ('obfuscated-string'.split(…

javascript eval unpack compression
Maven: How to unpack precise files from artifacts in the same output directory?

I have several artifacts from the same groupId (org.webjars), and I need to unpack them, and then copy all …

maven dependencies unpack
pack/unpack functions for C++

NOTE: I know that this has been asked many times before, but none of the questions have had a link …

c++ serialization pack unpack
When would you use unpack('h*' ...) or pack('h*' ...)?

In Perl, pack and unpack have two templates for converting bytes to/from hex: h    A hex string (low nybble …

perl hex pack unpack