Re: [Pharo-users] mentor wanted

2020-04-23 Thread Roelof Wobben via Pharo-users
--- Begin Message --- Op 23-4-2020 om 23:53 schreef Richard Sargent: On Thu, Apr 23, 2020 at 2:42 PM Roelof Wobben wrote: Op 23-4-2020 om 23:00 schreef Richard

[Pharo-users] Testing Baselines Modifications

2020-04-23 Thread Vitor Medina Cruz
Hello, How do you usually test Baseline modifications? I have a separate image with my git project added and when I need I load it with Metacello to see if everything works correctly, but this it seems unkward to me because I need to commit every change I make in one image Baseline in order to lo

Re: [Pharo-users] mentor wanted

2020-04-23 Thread Richard Sargent
On Thu, Apr 23, 2020 at 2:42 PM Roelof Wobben wrote: > Op 23-4-2020 om 23:00 schreef Richard Sargent: > > On Thu, Apr 23, 2020 at 12:14 PM Roelof Wobben wrote: > >> Op 23-4-2020 om 21:09 schreef Richard Sargent: >> >> On Thu, Apr 23, 2020 at 12:00 PM Roelof Wobben wrote: >> >>> Op 23-4-2020 om

Re: [Pharo-users] mentor wanted

2020-04-23 Thread Roelof Wobben via Pharo-users
--- Begin Message --- Op 23-4-2020 om 23:00 schreef Richard Sargent: On Thu, Apr 23, 2020 at 12:14 PM Roelof Wobben wrote: Op 23-4-2020 om 21:09 schreef Richar

Re: [Pharo-users] mentor wanted

2020-04-23 Thread Richard Sargent
On Thu, Apr 23, 2020 at 12:14 PM Roelof Wobben wrote: > Op 23-4-2020 om 21:09 schreef Richard Sargent: > > On Thu, Apr 23, 2020 at 12:00 PM Roelof Wobben wrote: > >> Op 23-4-2020 om 20:52 schreef Richard Sargent: >> >> On Thu, Apr 23, 2020 at 3:32 AM Roelof Wobben via Pharo-users < >> pharo-user

Re: [Pharo-users] mentor wanted

2020-04-23 Thread Roelof Wobben via Pharo-users
--- Begin Message --- Op 23-4-2020 om 21:09 schreef Richard Sargent: On Thu, Apr 23, 2020 at 12:00 PM Roelof Wobben wrote: Op 23-4-2020 om 20:52 schreef Richar

Re: [Pharo-users] mentor wanted

2020-04-23 Thread Richard Sargent
On Thu, Apr 23, 2020 at 12:00 PM Roelof Wobben wrote: > Op 23-4-2020 om 20:52 schreef Richard Sargent: > > On Thu, Apr 23, 2020 at 3:32 AM Roelof Wobben via Pharo-users < > pharo-users@lists.pharo.org> wrote: > >> Hello, >> >> I like Pharo a lot but I hit a wall very often. >> With complex proble

Re: [Pharo-users] mentor wanted

2020-04-23 Thread Roelof Wobben via Pharo-users
--- Begin Message --- Op 23-4-2020 om 20:52 schreef Richard Sargent: On Thu, Apr 23, 2020 at 3:32 AM Roelof Wobben via Pharo-users wrote: Hello,

Re: [Pharo-users] mentor wanted

2020-04-23 Thread Richard Sargent
On Thu, Apr 23, 2020 at 3:32 AM Roelof Wobben via Pharo-users < pharo-users@lists.pharo.org> wrote: > Hello, > > I like Pharo a lot but I hit a wall very often. > With complex problems I do not see how to solve things in small steps. > I would be happy to help with the Smalltalk and problem analy

Re: [Pharo-users] Embedding pharo in C++

2020-04-23 Thread Roland Plüss via Pharo-users
--- Begin Message --- Thinking about it I would have a better idea: ITC. The best solution though would be embedding like GNU Smalltalk has it. But that's a question for Pablo. How feasible is it to have an embedded working version in the near future? That said both versions (embedded, ITC) would

Re: [Pharo-users] AST: Adding RBComment to a node

2020-04-23 Thread Marcus Denker
Hello, I checked it in both Pharo8 and Pharo9: The good news is that it works fine in Pharo 9! But I did not check how much work it would be to back port the fix... > On 23 Apr 2020, at 11:13, Mehrdad Abdi wrote: > > Hello, > > How can I make a comment on a node dynamically? > > - Here is

Re: [Pharo-users] Non-blocking IO

2020-04-23 Thread Richard O'Keefe
Asynchronous I/O and non-blocking I/O are very different things. The POSIX aio* functions are asynchronous, not non-blocking. The "conventional" Unix way to do asynchronous I/O is to start a new thread for the transfer. The new thread uses ordinary synchronous I/O and then responds to completion a

[Pharo-users] mentor wanted

2020-04-23 Thread Roelof Wobben via Pharo-users
--- Begin Message --- Hello, I like Pharo a lot but I hit a wall very often. With complex problems I do not see how to solve things in small steps. Is there somewhere who is willing to mentor me in how I can overcome that problem. Roelof --- End Message ---

[Pharo-users] AST: Adding RBComment to a node

2020-04-23 Thread Mehrdad Abdi
Hello, How can I make a comment on a node dynamically? - Here is a code i've tried: b:= RBParser parseMethod: 'foo self x: 2. x:=0. y:=8.'. node := b body statements at: 1. node comments: { RBComment with: 'comment' at: node stop + 1 }. b formattedCode. - The result: foo self x: 2..