Re: [Pharo-users] FUEL serialization to a file

2019-03-09 Thread Konrad Hinsen
Am 09.03.19 um 08:16 schrieb Konrad Hinsen: In the second line, it sends nextBytesPutAll: to the unbuffered stream. Which should be fine if it inherits from Stream. But ZnBufferedWriteStream does not inherit from Stream. The fix I found is simple, but I don't understand the whole system well

[Pharo-users] Pharo OSX bundle in Mojave - how to sign ? (Was Re: OS X bundle, some progress)

2019-03-09 Thread Cédrick Béler
Hi, I tried a bit more to make DrGeo bundle works. I have Mojave (10.14) and the problem of corrupted files seems to come from Gatekeeper with prevent unsigned applications (from unknot developper) to open. Gatekeeper can be temporary stopped and then the bundle work, even when Gatekeeper is r

Re: [Pharo-users] FUEL serialization to a file

2019-03-09 Thread Sven Van Caekenberghe
Konrad, You are raising many different points, I'll try to answer them. But first, it would help a lot that you give a self-contained reproducible snippet that raises your problem, like mine. I tried reproducing your failure but could not. Also note that all FUEL tests are green on a recent Ph

[Pharo-users] pharo launcher chrash

2019-03-09 Thread Roelof Wobben
Hello, When starting up the launcher on Windows 10 I see a crash. A dmp file is included. Roelof - Mon Feb 25 12:52:40 2019 Exception code: C005 Exception addr: 65942944 Access violation (read access) at 0133C05C EAX:00EF7

Re: [Pharo-users] Pharo 7.0 image size

2019-03-09 Thread Hilaire
Hi, Beside the browser windows, did you close all Transcript windows? Hilaire Le 08/03/2019 à 11:59, Trussardi Dario Romano a écrit : > Ciao, > > this morning i started with an image of about 240 MB. > > I have 3 System Browser open ( for a long time ). -- Dr. Geo http://drgeo.eu

[Pharo-users] planet.smalltalk.org

2019-03-09 Thread Pierce Ng
I deleted the earlier thread from my mailbox, so starting a new one. By chance I found http://prog.vub.ac.be/~cderoove/planet/ which is the Planet Smalltalk aggregator hosted by Coen De Roover. It is still running and has the latest entries. Just a bit more work is needed to get planet.smalltalk

Re: [Pharo-users] pharo launcher chrash

2019-03-09 Thread Ben Coman
The most I can tell is this seems significant... Stack backtrace: [65942944] signalSemaphore + 0xd64 in ProcessWrapperPlugin.DLL [659422CA] signalSemaphore + 0x6ea in ProcessWrapperPlugin.DLL Smalltalk stack dump: 0x11f8f84 M ProcessWrapper>finalize 0x8cb4fb0: a(n) ProcessWrapper 0x11f8fa0 M We

Re: [Pharo-users] planet.smalltalk.org

2019-03-09 Thread Sven Van Caekenberghe
Great find, thanks Pierce. > On 9 Mar 2019, at 13:41, Pierce Ng wrote: > > I deleted the earlier thread from my mailbox, so starting a new one. > > By chance I found http://prog.vub.ac.be/~cderoove/planet/ which is the > Planet Smalltalk aggregator hosted by Coen De Roover. It is still > runnin

Re: [Pharo-users] pharo launcher chrash

2019-03-09 Thread Roelof Wobben
Of course. Here are the links : https://www.dropbox.com/s/5mwwaxwsy4we841/Pharo.image?dl=0 if you need also the sources I can provide it also. Roelof Op 9-3-2019 om 13:55 schreef Ben Coman:

[Pharo-users] Pharo and FPGA

2019-03-09 Thread Norbert Hartl
I’m trying to collect information about programming in pharo for FPGA. The only things I found are around PharoROS like this [1]. If anyone has more information or is willing to talk about I’m open ears. The background is that we did little things with the PharoThings toolkit and want to resear

[Pharo-users] Documentation system within Pharo

2019-03-09 Thread Hilaire
Hi, Do we have any tool to browse external documentation from Pharo? I will be interested to give the option to DrGeo user to read programming documentation from Pharo (DrGeo doc use the texinfo format[1]). An Info reader will be even greater but I don't think we have one. Hilaire [1] https://

Re: [Pharo-users] pharo launcher chrash

2019-03-09 Thread Ben Coman
Together with the changes file you sent over Discord, I started the image and it didn't crash for me, but came up with an error "PrimitiveFailed: primitive #removeProcess: in ProcessWrapper class failed" ProcessWrapper-class >> removeProcess: arg1 self primitiveFailed where arg1==>25416768 So

Re: [Pharo-users] pharo launcher chrash

2019-03-09 Thread Roelof Wobben
thanks re-installing the launcher did the trick. Roelof Op 9-3-2019 om 16:31 schreef Ben Coman: Together with the changes file you sent over Discord,

Re: [Pharo-users] planet.smalltalk.org

2019-03-09 Thread Benoit St-Jean via Pharo-users
--- Begin Message --- Finally got a reply from the owner of smalltalk.org.  He's looking into it.  He suffered from major injuries in a staircase accident, that's why he hasn't been working on smalltalk.org for a while.  I should get other news from him very soon!  Let's wait a little while I sa

[Pharo-users] complex json parsing.

2019-03-09 Thread Roelof Wobben
Hello, I try to make a  app which displays images from a external api . I was hoping I could do it with only 1 json parsing but to get the right size of images I need more then 1 Right now I have two classes with fromJson methods Painting class

Re: [Pharo-users] Pharo and FPGA

2019-03-09 Thread Ben Coman
not quite what you asked, but... apart from their size, one advantage of FPGAs and Arduino & ESP32 microprocessors over purpose CPUs is providing deterministic real-time latency (i.e. sensor inputs controlling motors). For that domain a strong contender in a Pi-like format is the Programmable Realt

Re: [Pharo-users] complex json parsing.

2019-03-09 Thread Ben Coman
On Sun, 10 Mar 2019 at 04:55, Roelof Wobben wrote: > Hello, > > I try to make a app which displays images from a external api . > > I was hoping I could do it with only 1 json parsing but to get the right > size of images I need more then 1 > > Right now I have two classes with fromJson methods