Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
857 views

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 specifically for node, and I'd assume that javascript implementations ...
8
votes
3answers
549 views

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 first). H    A hex string (high nybble first). This is ...
6
votes
2answers
634 views

How can I parse space separated STDIN hex strings unpacked in Perl?

I have a Java program that spits out, in space-separated hexadecimal format, 16 bytes of raw packet received over the network. Since I dont want to change that code, I am piping the result to a Perl ...
6
votes
6answers
425 views

How can I speed up Perl's processing of fixed-width data?

We've got a mature body of code that loads data from files into a database. There are several file formats; they are all fixed-width fields. Part of the code uses the Perl unpack() function to read ...
5
votes
6answers
144 views

Can you explain the bits I'm getting from unpack?

I'm relatively inexperienced with Perl, but my question concerns the unpack function when getting the bits for a numeric value. For example: my $bits = unpack("b*", 1); print $bits; This results in ...
5
votes
5answers
322 views

Python: How to transfer varrying length arrays over a network connection

I need to transfer an array of varying length in which each element is a tuple of two integers. As an example: path = [(1,1),(1,2)] path = [(1,1),(1,2),(2,2)] I am trying to use pack and unpack, ...
4
votes
1answer
460 views

Can I use unpack to split a string into characters in Perl?

A common 'Perlism' is generating a list as something to loop over in this form: for($str=~/./g) { print "the next character from \"$str\"=$_\n"; } In this case the global match regex returns a list ...
4
votes
2answers
509 views

Lua unpack bug?

I Have stumbled on a weird behavior in Lua unpack function table1 = {true, nil, true, false, nil, true, nil} table2 = {true, false, nil, false, nil, true, nil} a1,b1,c1,d1,e1,f1,g1 = unpack( table1 ...
4
votes
4answers
2k views

How can I replicate Perl's unpack functionality in C#?

I am trying to recreate a Perl script in C# but have a problem creating a checksum value that a target system needs. In Perl this checksum is calculated using the unpack function: while ...
3
votes
2answers
80 views

PHP and Python unpack return different results from same source

I cannot seem to get even vaguely the same data from the Python (Which I would prefer to use) and PHP (Which works fine, coded by the host of the website) scripts. PHP connects to the same location ...
3
votes
1answer
136 views

Unpack dll from excel xll dna file

I don't know if you know excel-dna project, it's a project that help to integrate .net assembly and language in excel addins. My problem is that I want to unpack a dll from an xll file (excel-dna is ...
3
votes
4answers
524 views

ruby base64 encode / decode / unpack('m') troubles

Having a strange ruby encoding encounter: ruby-1.9.2-p180 :618 > s = "a8dnsjg8aiw8jq".ljust(16,'=') => "a8dnsjg8aiw8jq==" ruby-1.9.2-p180 :619 > s.size => 16 ruby-1.9.2-p180 :620 ...
3
votes
2answers
127 views

What is the fastest check digit routine for a string in Perl?

Given a string of digits, I have to sum all digits as fast as possible using Perl. My first implementation unpacks digits with unpack(), then sums the list of digits with List::Utils' sum(). It's ...
3
votes
1answer
235 views

pack/unpack - litle endian - 64bit - question

#!/usr/bin/env perl use warnings; use 5.012; my $var = 1 << 31; say unpack( "B*", pack( "N", $var ) ); # 10000000000000000000000000000000 How can I get with pack/unpack from my $var = 1 ...
3
votes
1answer
492 views

Python: Unpacking an inner nested tuple/list while still getting its index number

I am familiar with using enumerate(): >>> seq_flat = ('A', 'B', 'C') >>> for num, entry in enumerate(seq_flat): print num, entry 0 A 1 B 2 C I want to be able to do the ...
3
votes
2answers
647 views

PHP String Split

I need to split a string into chunks of 2,2,3,3 characters and was able to do so in Perl by using unpack: unpack("A2A2A3A3", 'thisisloremipsum'); However the same function does not work in PHP, it ...
3
votes
3answers
2k views

Python: unpack to unknown number of variables?

How could I unpack a tuple of unknown to, say, a list? I have a number of columns of data and they get split up into a tuple by some function. I want to unpack this tuple to variables but I do not ...
2
votes
1answer
35 views

Easier way to unpack data of a .blend file with php?

Currently I want to read some data (metadata, scene names, mesh count, vertices count ...) from a .blend file with the unpack() function of PHP refering to the Blender SDNA documentation: ...
2
votes
2answers
88 views

Using bundler, how do you unpack a gem installed via a git repository?

How can I unpack a gem specified in bundler by a :git => url? My Gemfile has gem 'my_gem', :git => 'git@github.com:xxxxx/xxxxx.git' $ bundle correctly reports the gem as available, and my code ...
2
votes
3answers
232 views

python struct unpack into a dict

struct.unpack will unpack data into a tuple. Is there an equivalent that will store data into a dict instead? In my particular problem, I am dealing with a fixed-width binary format. I want to be ...
2
votes
1answer
79 views

Unexpected result from AVX _m256_unpack*_ps unpack intrinsic

I'm attempting to use the AVX intrinsic unpack instructions _m256_unpacklo_ps and _m256_unpackhi_ps to interleave 16 float values. The results I'm getting are strange, either because I'm not ...
2
votes
2answers
73 views

Is there a more elegant way for unpacking keys and values of a dictionary into two lists, without losing conistence?

What I came up with is: keys, values = zip(*[(key, value) for (key, value) in my_dict.iteritems()]) But I am not satisfied. What do the pythonistas say?
2
votes
2answers
170 views

Decode date format?

Given some short integers and the dates they represent, is there any systematic method to determine how they're stored in this format and decode other dates? The data stored is from another piece of ...
2
votes
2answers
377 views

How to unpack (64-bit) unsigned long in 64-bit Perl?

I'm trying to unpack unsigned long value, that is passed from C program to Perl script via SysV::IPC. It is known that value is correct (I made a test which sends same value into two queues, one read ...
2
votes
2answers
206 views

How do I get a checksum from unpack in hexadecimal format?

I've been trying to figure out the unpack function in Perl and can't quite figure out the whole thing. What I have: A string and a 16-bit hex checksum (e.g. "this is my string", "0671") I need to ...
2
votes
1answer
193 views

128bit long doubles in ruby?

In my ruby code, I'm talking to a server that responds with 128bit long doubles ("128 bit long doubles", "binary128" or "quadruple precision floating points") as strings in binary format. Is there a ...
2
votes
3answers
270 views

Verifying salted hashes with Perls unpack()

I'm trying to verify salted passwords with Perl and am stuck with unpack. I've got a salted hashed password, e.g. for SHA256: SSHA256 = SHA256('password' + 'salt') + 'salt' Base64 encoded that gets ' ...
2
votes
3answers
90 views

How can I get the number of pack`ed items in Perl without actually unpacking?

I have a string of packed values which was created sequentially using something like: while (...) { ... $packed .= pack( 'L', $val ); } In another program, after I load $packed, I wish to find ...
2
votes
1answer
438 views

Perl pack/unpack/shift

I've been having this problem in Perl for a few days now, and after scouring countless man pages, perldocs and googling too many search terms, hopefully someone here can help me out. I am given two ...
2
votes
4answers
1k views

How to create a .BAT file to download and unpack a zip file?

How to create a .BAT file to download and unpack a zip file from HTTP server? We have links like http://example.com/folder.zip and absolute folder link like C:\Users\UserName\Some mixed Русский ...
2
votes
1answer
393 views

How to download and unpack .ZIP folder using Adobe Air?

How to download and unpack .ZIP folder using Adobe Air? So I have http link onto that zip file example.com/zip.zip I need a function to download it onto users hard drive and unpack it into some ...
2
votes
4answers
1k views

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('|'),0,{})) It just so happens to be that i have to tweak some large legacy code ...
2
votes
5answers
1k views

Can I use Perl's unpack to break up a string into vars?

I have an image file name that consists of four parts: $Directory (the directory where the image exists) $Name (for a art site, this is the paintings name reference #) $File (the images file name ...
1
vote
1answer
23 views

Specman-e usage of try { };

I would like to know what the keyword try is used for in Specman and especially its usage in the code snippet given below: try { unpack(packing.low,lob,pkt); } else{ message(LOW, ...
1
vote
1answer
114 views

how to use “pack/unpack” in perl

my data is encoded as 64-bit network byte order, when I parse it using ruby language as following: def unpack_string(str) binary = str.unpack('m*').first binary.unpack('G*') end ...
1
vote
2answers
54 views

How do I unpack a double-precision value in Perl?

From this question: bytearray - Perl pack/unpack and length of binary string - Stack Overflow I've learned that @unparray = unpack("d "x5, $aa); in the snippet below results with string items in the ...
1
vote
1answer
82 views

Perl pack/unpack and length of binary string

Consider this short example: $a = pack("d",255); print length($a)."\n"; # prints 8 $aa = pack("ddddd", 255,123,0,45,123); print length($aa)."\n"; # prints 40 @unparray = unpack("d "x5, $aa); print ...
1
vote
3answers
63 views

How to extract parameters from a list and pass them to a function call

What is a good, brief way to extract items from a list and pass them as parameters to a function call, such as in the example below? Example: def add(a,b,c,d,e): print(a,b,c,d,e) x=(1,2,3,4,5) ...
1
vote
2answers
82 views

Open debian package with Java

Are there any libraries in Java for unpacking a .deb (debian) archive? Unfortunately I Couldn't find anything useful out there yet. Thanks.
1
vote
1answer
87 views

Customize permissions of unpacked WAR in Tomcat

I can't seem to find this on here but it seems like it would be somewhat typical. I am running Tomcat 6 on RHEL5 I want Tomcat to unpack my WAR with 774 permissions rather than the 754 permissions it ...
1
vote
1answer
106 views

how to find format of pack() -ed binary data and unpack it

I have stored binary data in Mysql field like this: 0x31 and 0x31303030303332 . this was converted to binary data from string, I don't know that string and I don't know how string had converted to ...
1
vote
1answer
191 views

Unpack a bit from a binary string with Ruby

I'm using String::unpack to unpack a bunch of ints and double from a binary stream. How can I unpack a single bit from that bitstream? I cannot find a specific directive for decoding single bits with ...
1
vote
1answer
79 views

Universal archive upacker library

A lot of antiviruses can unpack most arcives, found on users harddrive. They dissect zip, rar, chm, exe, msi, other installers and a lot lot more. Also they can unpack an executable. Eg drweb (a true ...
1
vote
2answers
228 views

Perl and parsing messy text

I have the following text Instructor First Number Students Who Number Students Who Subject Course Section Instructor Last Name ...
1
vote
1answer
110 views

What exactly “W” do in unpack function in Perl?

I couldn't understand what exactly "W" do. my $x = "this is my string"; print unpack("W",substr($x,0,1)); Prints: 116 my $x = "this is my string"; print unpack("W",$x); Still Prints: 116
1
vote
2answers
441 views

PHP: pack / unpack 64bit int on 64bit architecture

Can anyone tell me why I get the following output on x64 architecture: $ php -r 'echo pow(2, 33) . "\n";print_r(unpack("Ivalue", pack("I", pow(2, 33))));' 8589934592 Array ( [value] => 0 ) ...
1
vote
1answer
423 views

Obfuscated Javascript Code from Facebook Application?

This is the code that was copied and pasted into my address bar: javascript:(function() {a='app117970624901700_jop';b='app117970624901700_jode';ifc='app117970624901700_ifc';ifo='app1179 ...
1
vote
1answer
530 views

How do I unpack a binary string in PHP?

How can I do this Perl code in PHP? print unpack ("H*", pack ("B*", "00000000100000012000000" ));
1
vote
2answers
435 views

How can I handle packed data from Perl/PHP in C++?

I got a problem implementing a PHP programm in C++. It is about the PHP/Perl function unpack. I don't know how to do the follwing in C++ (no problem in reading a file... but how do i unpack("C*") the ...
1
vote
2answers
351 views

How to fix “can't adapt error” when saving binary data using python psycopg2

I ran across this bug three times today in one of our projects. Putting the problem and solution online for future reference. impost psycopg2 con = connect(...) def save(long_blob): cur = ...

1 2