A function in several scripting languages for packing data into a binary structure. The opposite of the `unpack` function.
0
votes
1answer
10 views
WARNING: PACK(): IN xx ON LINE xxx
I am getting a warning from the pack function without any information. The string I am passing seems to be fine. Can anyone tell me what might be causing the issue?
$s = trim(hash_hmac('sha1', ...
0
votes
1answer
49 views
C# equivalent of Python's struct.pack?
Is there any function equivalent to Python's struct.pack and struck.unpack in C# that allows me to pack and unpack values like this?
def hexlongbits2double(str):
return struct.unpack('d', ...
1
vote
1answer
20 views
Python struct.pack()/calcsize()
I want to pack a byte followed by a long. My buffer can only contain 9 elements. Why can't I pack them into the buffer?
>>> from struct import *
>>> calcsize('qB')
9
>>> ...
0
votes
1answer
21 views
Packing C structs from PHP
I've played around with pack() for longer than I'd like to admit, and accidentally stumbled across data structure alignment. Is there a "good" way to create C structures from within PHP and account ...
1
vote
1answer
34 views
Packing / unpacking complex data in Python
I'm trying to send/receive data with an embedded device using a custom protocol. struct.pack() and unpack() seem like they'd do the job, but the fmt argument doesn't seem to be flexible enough to ...
0
votes
2answers
33 views
Python Tkinter Layout Management with Grids
For a few days, I'm trying to set up a simple application with Tkinter and I have some problems to choose between pack, grid for my frames and widgets.
Here is a mockup of my app.
I decided to delete ...
0
votes
3answers
43 views
Pack arbitrary number of bits
What would be a good way of packing an arbitrary number of bits? I have sentences which are known to only contain certain characters and want to encrypt. Hence an option is to use fewer bits to ...
2
votes
1answer
71 views
Python struct.pack() for individual elements in a list?
I would like to pack all the data in a list into a single buffer to send over a UDP socket. The list is relatively long, so indexing each element in the list is tedious. This is what I have so far:
...
1
vote
2answers
83 views
PHP pack() format for signed 32 int - big endian
I am creating and then writing data to a file (a new 'ESRI Shape file') using PHP, fopen, fseek, pack etc. The file spec is here http://www.esri.com/library/whitepapers/pdfs/shapefile.pdf.
The file ...
2
votes
1answer
72 views
Ruby convert 64 bit IEEE 754 hexadecimal to double
I need to output a hex data stream from an IMU into lat long and height values.
The data comes in as double precision hex strings and I need to output them into decimal values.
I tried several pack ...
0
votes
0answers
63 views
Java equivalent to python's struct pack/unpack
I have following code written in python:
import struct
ti, ty, tm = struct.unpack(5s4s7s, somebytes)
But I would like to have something similar in java. Is it easily achivable?
3
votes
1answer
59 views
Extracting strings from struct.pack
I need to convert an integer into a series of byte strings, and it looks like struct.pack is the best way to do that. One line gets me all the information I need:
In [51]: struct.pack("@L",1000)
...
0
votes
2answers
147 views
Insert Varbinary data on Mysql table via php
I have a small problem and i'm sure someone have the solution for it
I have a binary data converted from a set of unsigned integers
$_BIN=pack('I*', 3563547,6587568,5468456,6458568,4568568);
and ...
2
votes
1answer
105 views
PHP to python pack('H')
I'm translating an authentication library, written in PHP to Python. It's all legacy code, the original devs long gone. They used PHP's 'pack' command to transform a string into hex using the 'H' ...
3
votes
0answers
66 views
Including Shoes in Shoes package
I've been having a problem with including Shoes in a Shoes app for Windows. The Packager tool wokrs perfectly when i don't ask to include Shoes in the app : I get a .exe that, if launched on a ...
2
votes
3answers
97 views
Perl pack() function and “B” format character to Php
What does the "B" do in this pack statement from Perl code?
$hce_hash=pack('B*', $hce_hash);
Is there an equivalent function in PHP?
0
votes
2answers
79 views
Netbeans Java GUI Builder - how to prevent pack()?
I'm building an app with Netbeans GUI Builder, and I want the main JFrame to be maximised, so have set:
setExtendedState(JFrame.MAXIMIZED_BOTH);
However, Netbeans calls pack() which results in the ...
0
votes
2answers
110 views
UDP python to c - packed binary data - struct.pack('<ff',
client (python):
theta = math.sin(23/3) / 300
y = math.cos(23/11) / 20
data=struct.pack('<ff',theta,y) # pack with two float
s.sendto(data, (ip, 50000))
server (python):
daten, addr = ...
0
votes
0answers
36 views
scale image composition to fixed width
I have the following images composition (1,2,3,4):
Iwant to scale proportionally whole canvas and images inside to exact new width (for example 333px).
the problem is - while doing regular ...
0
votes
0answers
79 views
Unknown MPQ file format ? (“pack” in header) [closed]
I have three files index.mpq, conf.mpq and map.mpq that I do not know how to read.
The file are containing some other files and multimedia parts.
Regardless of the .MPQ extension, the files are not ...
1
vote
1answer
58 views
Strange behavior with pack('L')
If I try to write a packed byte as an unsigned int32 to a file, using pack('L'), the number 10 writes as five bytes. With any another number I get the normal behavior.
I wrote simple script:
x = 0
...
0
votes
1answer
68 views
NuGet.exe pack packs into a subfolder I don't need
When I execute
C:\Tools\Nuget\NuGet.exe pack C:\SomePath\Server\Server.nuspec -OutputDirectory D:\NuGet\Repository -basePath C:\SomePath\Server -Version 8.1.0.1 -NoPackageAnalysis
The created ...
-1
votes
1answer
173 views
c++ pack / unpack [closed]
I am trying to understand how pack/unpack from PHP works.
as I see from php.net/pack
n unsigned short (always 16 bit, big endian byte order)
i have in php
$binarydata = unpack('n', 12);
...
4
votes
2answers
262 views
Lua - packing IEEE754 single-precision floating-point numbers
I want to make a function in pure Lua that generates a fraction (23 bits), an exponent (8 bits), and a sign (1 bit) from a number, so that the number is approximately equal to math.ldexp(fraction, ...
0
votes
1answer
165 views
How to export delphi component installed [closed]
Pic component http://goo.gl/Bnskc
I use Delphi on old computer (Staff's computer who leave company) and had component as link image.
And Now I get a new computer(upgrade). and I want to use same ...
0
votes
1answer
50 views
Using python's pack with arrays
I'm trying to use the pack function in the struct module to encode data into formats required by a network protocol. I've run into a problem in that I don't see any way to encode arrays of anything ...
1
vote
1answer
212 views
How does pack() and unpack() work in Ruby
In Ruby why we need array Packing? How does directive help to do such packing?
I ran some code in my console to see what and how directives looks like in Array
packing.But the output is closely same ...
0
votes
1answer
237 views
Creating a JAR File from the Command Line Doesn't Work
I've edited this question, and now it is exactly what I did:
I want to create a .jar file from some .class files in the command line.
I worked on Eclipse, and created:
myProject project, and in ...
1
vote
1answer
43 views
Why I cannot refresh contents of ListWindow
So this is my situation:
I have a timer and it updates values in the background until a value has reached a certain point.
But in order for me to see each update of value I currently have to add in a ...
0
votes
1answer
154 views
Creating a SWC image/file library at runtime using external files
I'm working on a Flash GUI project which has many images need to be dynamically loaded at runtime.
Problem:
Currently everytime a class initializes, it loads its assets (images) from HDD, but that ...
1
vote
2answers
723 views
Ruby's pack and unpack explained
Even after reading the standard documentation, I still can't understand how Ruby's Array#pack and String#unpack exactly work. Here is the example that's causing me the most trouble:
...
1
vote
1answer
167 views
Creating and passing byte data to socket in PHP based on code for C++
If that title didn't confuse you, I'll see what I can do here. I have the source of a C++ DLL that passes TCP traffic to a server. I believe all the relevant C++ code is below:
#define ...
1
vote
1answer
120 views
Any readymade CSS pack for ASP.NET application
Hi I was wondering if there is any ready made CSS pack for using in ASP.NET application. Something that would add styles to different ASP.NET controls in the webpage instead of me writing the CSS ...
2
votes
1answer
119 views
java swing can't expand JFrame's height?
I created a JFrame and set a JPanel as its content panel, I added about 30 buttons into that container but the JFrame shows me one line of buttons and it won't allow me expand the height.
public ...
0
votes
1answer
163 views
Need Java equivalent to pack(“H32”, param) from php
I need a java equilavent from this php code:
$string = "testing";
$hexchal = pack('H32', $string);
I did search the internet, but found no answer.
Thanks in advance!
2
votes
1answer
134 views
Using Entry box with Tkinter in Grid manager?
I'm trying to make a basic GUI using Tkinter and have an entry box next to my label using a Grid manager, but the window is not showing when I run my program if I use .grid() with my Entry object.
...
1
vote
1answer
276 views
python struct pack with space padding
I need to create/send binary data in python using a given protocol.
The protocol calls for fixed width fields , with space padding thrown in.
Using python's struct.pack, the only thing I can think of ...
3
votes
1answer
125 views
Serialized C++ struct with 3-byte blocks?
I have a C++ application which is sending a serialized struct to my C# app, and I would like to automatically copy the bytes directly to a new struct I created in C#. However, the struct sent over the ...
-1
votes
1answer
403 views
Pack data into binary string in Python [closed]
Using the PHP pack() function, I have converted a string into a binary hex representation:
pack('H*', $SECURE_SECRET)
How can I get the same result in Python?
I tried struct.pack, but the result is ...
0
votes
1answer
199 views
Text metrics wrong when using truetype font file with Font.createFont
I downloaded the Helvetica font from fontpalace.com (just search for Helvetica) and included it into a Java application by using Font.createFont(). But the font metrics do not work with this, i.e. the ...
1
vote
0answers
115 views
Convert from Python to C# [closed]
I have a small program in Python:
import struct
a=65530
b=17031
c=struct.unpack("f",struct.pack('HH',a,b))
Can someone help me to convert those into C#?
1
vote
1answer
79 views
how to compare packed arrays
I have a set of arrays that are packed like this:
sub pack_key {
return pack 'N' . ('w/a*' x @_), scalar(@_), @_;
}
because I use them as multi-value-keys in a hash (i.e.: the keys to the hash ...
3
votes
1answer
115 views
Use hindi or kannada language for microsoft speech sdk [closed]
Is there any language packs available in Hindi or Kannada for Microsoft Speech SDK. Hindi and Kannada are languages spoken in India.
2
votes
0answers
224 views
Encrypting and decrypting android expansion file
I have successfully uploaded and published my android app + apk expansion file (with format .obb but is actually a .zip) on Google Play. I would like to set up some protection to it. Are there any ...
0
votes
0answers
84 views
Must pack URI be in WPF assemblies only
Can someone tell if if this statement is true:
Summary My problem was that I was trying to use a 'pack URI' in a process before any WPF control/window/etc had been instantiated, so the 'pack' URI ...
-2
votes
3answers
133 views
perl quick switch from quaternary to decimal
I'm representing nucleotides A,C,G,T as 0,1,2,3, and afterwards I need to translate the sequence representing as quaternary to decimal. Is there a way to achieve this in perl? I'm not sure if ...
3
votes
2answers
120 views
How to make pack to fill data with zeroes from the beginning?
I'm using pack / unpack in perl to convert hex values to decimal like this:
print unpack "S", reverse pack "H4", "1230";
> 4656
Everything is good while data is 4 hex symbols.
If data length is ...
0
votes
0answers
97 views
sharepoint language pack
I am in the process of creating a custom language pack for an existing Sharepoint 2010 product. I have read http://msdn.microsoft.com/en-us/library/gg576899.aspx. While useful, it lacks lots of ...
-3
votes
1answer
213 views
What's does “machine byte order” in PHP pack mean? [closed]
I understand little & big endian, but What's "machine byte order" mean?
0
votes
0answers
47 views
weblogic domain creation pack file size
I work on a couple of "base" weblogic domains which are configured almost identically. (with "base" I mean like a template containing only the admin server, no managed server, no resources like ...


