-1
votes
1answer
60 views

Exact algorithm for bin packing [closed]

I am working on some heuristic algorithms for bin packing and want to have some references to compare these with each other. Is there any exact algorithm implementations for small number of bins in ...
0
votes
0answers
31 views

Creating and rotating ellipses in python, whilst checking for collisions

I've managed to create a bit of code that creates various discs and checks for collisions, but how would I go about doing it for ellipses instead? height = 100 width= 100 circles = 15 radius = 4 xL ...
2
votes
2answers
168 views

Numpy unpack binary string into a single variable

In Numpy, I need to unpack some binary data into a single variable. In the past I've been unpacking it using the 'fromstring' function in Numpy and extracting the first element. Is there a way I can ...
3
votes
1answer
87 views

How to pack my Python 3 program so I can release it

I'm using Pygame. How and which files should I consider including with the script so everyone can run it? I'm using python 3.2 therefore py2exe doesn't work.
0
votes
1answer
147 views

Packing in Python and Unpacking in C

I'm trying to pack integers as bytes in python and unpack them in C. So in my python code I have something like testlib = ctypes.CDLL('/something.so') testlib.process(repr(pack('B',10))) which ...
9
votes
5answers
355 views

What tools are there to cross-create an OSX installer for a python package?

Distutils offers existing solutions to build a Windows self-extracting EXE. Notably, I can create the package even if I'm on Ubuntu (which is essential given our automated build process). How do I ...
2
votes
3answers
420 views

How do I use Python to pack a big integer treating four characters as an unsigned long in network byte order as Ruby's .pack(“N”) does?

This is the bit of Ruby I want to implement in Python: Base64.urlsafe_encode64([Digest::MD5.hexdigest(url).to_i(16)].pack("N")).sub(/==\n?$/, '') You see, this helps turn a URL like this: ...
1
vote
1answer
73 views

python tkinter packing

Could someone please explain why when you have an plain widget as one line Code A works Entry(root, width=10).pack(side=LEFT,anchor=W) but when you name it or attach a command to it, Code A no ...
1
vote
1answer
470 views

In Tk with Python, how do I specify a Frame or Canvas to resize with my window?

I'm totally new to Tk and the Packing concept, so bear with me. Here is my code: from Tkinter import * class frm_main: def __init__(self, parent): self.frame = Frame(parent, bg="green") ...
4
votes
2answers
764 views

What's an elegant algorithm for fitting differently sized rectangles into a circle?

I have a bunch of rectangles of variable size which I need to fit together roughly into a circle, presumably with the largest ones at the center. NB. The circle is not of a fixed size - that's just ...
5
votes
3answers
278 views

binary16 in Python

The struct module is useful when you're trying to convert data to and from binary formats. However, recently I came across a file format specification that uses the binary16 floating point format. I ...
2
votes
1answer
657 views

Can someone explain Gtk2 packing?

I need to use Gtk2 for a project. I will be using python/ruby for it. The problem is that packing seems kind of mystical to me. I tried using a VBox so that I could have the following widgets in my ...