around Zinc-Character-Encoding-Core :) Stef On 09 Mar 2014, at 09:07, Pharo4Stef <[email protected]> wrote:
> I’m sure that we have that. I remember sven’s code using encoder
> but I do not know where.
>
> # Method for encoding ints with base64 encoding
> def encode(n):
> data = struct.pack("i", n)
> s = base64.b64encode(data)
> return s
>
