Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
864 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 ...
9
votes
5answers
358 views

What is the suggested way to cron-automate ZODB packs for a production Plone instance?

Looking at plone.org to find a way to periodically pack my instance's ZODB I could only find http://plone.org/documentation/faq/how-do-i-pack-the-zodb that doesn't talk about automated packs, but just ...
8
votes
3answers
552 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 ...
5
votes
2answers
352 views

Perl's Pack('V') function in Python?

I've been working on some exploit development recently to get ready for a training course, and I've run into a problem with a tutorial. I've been following along with all the tutorials I can find, ...
5
votes
6answers
146 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
3answers
150 views

How do I compare packed values in Perl?

I want to use the pack() function in Perl to encode some data. Then I want to compare my packed structure to another packed structure. I want this compare to be on the byte values of this packed ...
5
votes
2answers
805 views

Java equivalent of Python's struct.pack?

Is there any function equivalent to Python's struct.pack in Java that allows me to pack and unpack values like this? pump_on = struct.pack("IIHHI", 0, 0, 21, 96, 512)
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, ...
5
votes
2answers
2k views

Can someone explain to me the pack() function in PHP?

I would like to know more about the pack() function in PHP: http://fi.php.net/manual/en/function.pack.php I know it packs data into binary, but I'm not sure what all those v V n N c C mean and I was ...
4
votes
2answers
81 views

How to switch byte order of binary data

I have a binary file which I'm reading where some 2 byte values are stored in 'reverse' byte order (little endian?), eg. 1D 00 13 00 27 00 3B 00 45 00 31 00 4F The original program that created ...
4
votes
1answer
96 views

php5 pack is broken on x84_64 env

pack('H*', dechex(12345678900))/* on 32bit / != pack('H', dechex(12345678900))/* on 64bit */ why ? Does anyone have a solution?
4
votes
1answer
162 views

How do I pack 128- or 256-bit numbers

Is it possible to pack 128- or 256-bit numbers (AES keys/ivs generated with Crypt::Random::makerandom) using the perl built-in pack? If yes, what should my template X in pack('X', ...
4
votes
1answer
86 views

Problem with sending an array using 'pack' function in perl

I am using pack function to send contents of a list to a socket. Code is given below. $message_array = pack ("(A*)*", @ul_dcch_message); The list contents are @ul_dcch_message = (101101012411011, ...
4
votes
6answers
330 views

jQuery Linking vs. Download?

Which way is better? To link to the jQuery Pack at http://ajax.googleapis.com. Or to download the appropriate file and link locally? Does it matter? Is there a chance the link may disappear? Or is ...
4
votes
2answers
468 views

How do I convert Perl's pack 'Nc*' format to struct.pack for Python?

I'm trying to convert a Perl script to python, and it uses quite a few different packs. I've been able to figure out the lettering differences in the "templates" for each one, but I'm having an issue ...
3
votes
2answers
128 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
4answers
250 views

How to print a variable in reversed byte order in Perl?

I'am trying to convert the variable $num into its reverse byte order and print it out. This is what I have done so far: my $num=0x5514ddb7; my $s=pack('I!',$num); print "$s\n"; He prints it out as ...
3
votes
2answers
305 views

Need help with “pack” for perl and php

I've the task to convert a crypt function someone made in perl into php code. Everything works okay except this: Perl: $wert = Encode::encode( "utf8", $wert ); $len=length $wert; $pad = ($len % ...
3
votes
3answers
872 views

Converting grouped hex characters into a bitstring in Perl

I have some 256-character strings of hexadecimal characters which represent a sequence of bit flags, and I'm trying to convert them back into a bitstring so I can manipulate them with &, |, vec ...
2
votes
2answers
57 views

How can you pack/minify css and js files in mod_perl?

Is there a utility/module similar to pack in Java where you can compile all the css files into one css file and all the js files into a one js file?
2
votes
1answer
53 views

PHP pack/unpack error

I have to convert an old "encrypted" data to a proper encryption algorithm from an old system. I have this code: function unpackString($s,$l){ $tmp=unpack('c'.$l,$s); $return=NULL; ...
2
votes
1answer
110 views

How to reverse this php code “pack(”L“, 1000);”?

I have a code that look like this: echo bin2hex( pack( "L", 1000 ) ); Which prints: e8030000 Now, having only e8030000, how can I reverse it back to the int 1000 ? UPDATE: found the answer: ...
2
votes
2answers
74 views

Pack, but don't make it smaller

I have JFrame with GridBagLayout. User can resize this window. Also, he can perform some editing actions that change window size. I use pack(); repaint(); now after such actions. But, actually I ...
2
votes
1answer
353 views

Java equivalent for PHP's pack function

I have a sample application which generates a SHA1 hash in PHP as follows. base64_encode(pack('H*', sha1($pass))); I tried to achieve the same in Java, but so far, the output is different. The ...
2
votes
1answer
286 views

c# html agility pack

We are moving an e-commerce website to a new platform and because all of their pages are static html and they do not have all their product information in a database, we must scrape their current ...
2
votes
2answers
634 views

Android, Icon Templates Pack, where are the icons?

I downloaded the templates pack from following link. http://developer.android.com/guide/practices/ui_guidelines/icon_design.html#templatespack When I open the psd files I see templates (backgrounds) ...
2
votes
1answer
434 views

How do I achieve the following Tkinter GUI layout with either pack or grid?

Here's my current GUI layout for my checkers game: As you can see, it consists of a Menu along the top, a Canvas on the left where I draw the checkerboard, a toolbar (Frame) on the top right where ...
2
votes
2answers
186 views

Calculating the size of an Array pack struct format in Ruby

In the case of e.g. ddddd, d is the native format for the system, so I can't know exactly how big it will be. In python I can do: import struct print struct.calcsize('ddddd') Which will return 40. ...
2
votes
1answer
212 views

Powershell pack uri object

I'm trying to create a pack ui referencing a xaml resource inside of an assembly file in powershell. After reading this post I tried to do this: $resource = new-object ...
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
440 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
1answer
293 views

What disables #pragma pack(push)?

I have a code that uses #pragma pack(push,8) but it does not seem to take effect somehow but I can't figure out what's causing this problem. For example, look at the following code. #include ...
2
votes
2answers
1k views

How can I convert a 48 hex string to bytes using Perl?

I have a hex string (length 48 chars) that I want to convert to raw bytes with the pack function in order to put it in a Win32 vector of bytes. How I can do this with Perl?
2
votes
2answers
519 views

Does svnadmin pack work on non-upgraded 1.6 repos?

I've been attempting to run svnadmin pack on repos that were originally created with SVN 1.6. However, I see no output to suggest the command is doing anything. Is it the case that shard packing ...
2
votes
1answer
1k views

Wrong packing of JFrame using JPanel in borderlayout

I am writing a simple application in Java that does some particle simulation on a bunch of sheep (don't ask). For this I want a window with a JPanel for graphics (which will be resizable with a simple ...
2
votes
1answer
887 views

Bit packing in C

I'm trying to convert an RGB image to an ARGB image, basically just adding 255 in for the alpha channel. I was wondering if there is any pack method to do this without iteration? So to iterate over my ...
1
vote
1answer
50 views

Oracle Enterprise Pack for Eclipse

I'm trying to setup a development environement with Oracle Enterprise Pack for Eclipse. I successfully deployed my EAR to WebLogic 10.3.3. If I modify Java / JSP resources, everything is deployed ...
1
vote
2answers
69 views

Perl pack function is broken?

I have a header creation Perl script and it works great most of the time, but every once in a while the thing breaks. I'll get right down to the meat of it, given the CRC number 772423333 the PERL ...
1
vote
1answer
56 views

how to convert to c# code in php pack('s') method

I want to connect to a game server. Blocked in the header portion. help me t.t ex) php code $obj = new stdClass; $obj->variable1 = 202; $obj->variable2 = 123; $str = json_encode($obj); ...
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
2answers
80 views

Packing a long binary integer in Ruby

I'm trying to send a very long binary integer over UDP (on the order of 200 bits). When I try to use Array's pack method, it complains the string I'm trying to convert is too large. Am I going about ...
1
vote
1answer
39 views

auto-repeat flag in a pack format string

In php, unpack() has the "*" flag which means "repeat this format until the end of input". For example, this prints 97, 98, 99 $str = "abc"; $b = unpack("c*", $str); print_r($b); Is there something ...
1
vote
0answers
34 views

How to deal with android's design, data storage, publish efficiently?

My question is rather for in depth discussion or seeking knowledge from experienced programmers..please consider sharing your thoughts... I have an Android program that uses a large about 50M local ...
1
vote
1answer
54 views

tkinter: How do I fix my window so that the window doesn't resize when my content resizes?

I have a feeling it is to do with my pack() function. The window always "packs" the content in to the smallest size it can possibly be, but because the content is always changing, the window size is ...
1
vote
1answer
268 views

Extract source code from .pack files

I followed the directions on http://source.android.com/source/downloading.html to get the Android source code. Now I have downloaded 2 GB of stuff, most of the space is taken by .pack files. Now how ...
1
vote
2answers
140 views

How to pack a UUID into a struct in Python?

I have a UUID that I was thinking of packing into a struct using UUID.int, which turns it into a 128-bit integer. But none of the struct format characters are large enough to store it, how to go about ...
1
vote
2answers
370 views

How do I use the PHP Pack function to pack an integer into a byte array?

The following C# code is used in a service I have inherited, to convert a small integer into 3 bytes so that it can be sent over a socket. int i = 12345; byte[] data = new byte[] { (byte)i, (byte)(i ...
1
vote
2answers
139 views

Java bit unpacker not matching up with C

So I have been given a C program, which I am trying to make more portable by translating to Java, which has been going well. However, I have run into a bit of hangup, which I believe lies in this bit ...
1
vote
2answers
266 views

using java to unpack binary php packed float

I created some binary data using the php function pack. Then I needed to unpack this data from a java application. I've been able of unpacking integers, strings, longs and other data types but I'm in ...

1 2