Re: [Pharo-users] Pharo image processing library

2020-01-27 Thread Pablo Navarro
hi, I’m looking. very interesting, thanks. Pablo. El 27 de ene. de 2020 00:35 -0300, Any question about pharo is welcome , escribió: > > https://80738163270632.blogspot.com/2018/10/pharo-script-of-day-proto-proto-image.html

Re: [Pharo-users] Migration from Spec to Spec2

2020-01-27 Thread Guillermo Polito
> El 24 ene 2020, a las 21:52, Christophe Demarey > escribió: > > Hi Kasper, > >> Le 24 janv. 2020 à 20:14, Kasper Østerbye > > a écrit : >> Do not silently delete features. Be brave and include a method oddRowColor >> with a comment saying it is not going t

Re: [Pharo-users] Migration from Spec to Spec2

2020-01-27 Thread Christophe Demarey
> Le 27 janv. 2020 à 13:36, Guillermo Polito a > écrit : > > Be careful, this is no solution but a patch that will work in some cases > only, it is an architectural violation. Yes, true. I needed the functionality fast and was proposed to use this solution as workaround for now. For now, th

Re: [Pharo-users] Pharo 6.0 and 6.1 64 bit freeze on MacMini -also in 7.03

2020-01-27 Thread TedVanGaalen
Thanks for Pharo 8.0! Sorry to revive this thread again and again since version 6, but the full screen freeze problem on Mac still persists. Did a clean install today of Pharo 8.0 as follows: Remove all Pharo, apps, images, launcher from before < Pharo 8.0 (saved my stuff in .st files before doi

[Pharo-users] What is the idiomatic way to store data in pharo?

2020-01-27 Thread Steve Quezadas
I am writing a simple "quote-of-the-day" object for pharo that stores both quotes and pictures. What is the "idiomatic" way of storing data in pharo? Do I connect to some sort mysql database or is there a better "smalltalk" way to do it? Forgive the naive question. - Steve

[Pharo-users] smalltalk conferences

2020-01-27 Thread Steve Quezadas
Does anyone know of any upcoming smalltalk conferences in the United States?

Re: [Pharo-users] smalltalk conferences

2020-01-27 Thread tbrunz
We need to start one. Along with a North American version of ESUG. -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] What is the idiomatic way to store data in pharo?

2020-01-27 Thread tbrunz
How about Voyage? https://github.com/pharo-nosql/voyage -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] smalltalk conferences

2020-01-27 Thread Todd Blanchard via Pharo-users
--- Begin Message --- +1 SoCal checking in here. Would love that as Europe is usually beyond my reach for just a tech conf. > On Jan 27, 2020, at 5:33 PM, tbrunz wrote: > > We need to start one. Along with a North American version of ESUG. > > > > > -- > Sent from: http://forum.world.st/

Re: [Pharo-users] smalltalk conferences

2020-01-27 Thread tbrunz
I'm in Los Angeles. Plenty of places to hold conferences here! (San Diego & San Francisco, too.) -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] What is the idiomatic way to store data in pharo?

2020-01-27 Thread Steve Quezadas
is voyage the most common way to do it? On Mon, Jan 27, 2020 at 5:32 PM tbrunz wrote: > How about Voyage? > > https://github.com/pharo-nosql/voyage > > > > > -- > Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html > >

Re: [Pharo-users] smalltalk conferences

2020-01-27 Thread Todd Blanchard via Pharo-users
--- Begin Message --- San Diego here. > On Jan 27, 2020, at 5:37 PM, tbrunz wrote: > > I'm in Los Angeles. Plenty of places to hold conferences here! (San Diego & > San Francisco, too.) > > > > > -- > Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html > --- End Message

Re: [Pharo-users] Is Pharo is a good frontend system for a game console?

2020-01-27 Thread Steve Quezadas
What do you like about Lua? curious; On Thu, Jan 16, 2020 at 5:20 PM Vince Refiti < vince.ref...@trapezegroup.com.au> wrote: > Hi > > I would use Lua Love (https://love2d.org/) for such things. > > Vince > > -Original Message- > From: Pharo-users [mailto:pharo-users-boun...@lists.pharo.or

Re: [Pharo-users] smalltalk conferences

2020-01-27 Thread Eric Gade
NYC here. Any ST meetups would be great On Mon, Jan 27, 2020 at 10:06 PM Todd Blanchard via Pharo-users < pharo-users@lists.pharo.org> wrote: > San Diego here. > > > On Jan 27, 2020, at 5:37 PM, tbrunz wrote: > > > > I'm in Los Angeles. Plenty of places to hold conferences here! (San > Diego &

Re: [Pharo-users] What is the idiomatic way to store data in pharo?

2020-01-27 Thread Vince Refiti
Hi Steve Some ways I would do it, given what you have described: 1. Store in the image itself. An ordered collection can be used to store the your MOTD objects and iterate over them with the #do:, #select:, etc methods. For images I would store them on the file system and use a URI from

Re: [Pharo-users] Is Pharo is a good frontend system for a game console?

2020-01-27 Thread Vince Refiti
Hi Steve Significant things I like about Lua: It is small and simple. It is even simpler that Smalltalk. I can explain Lua to my children by telling them to write everything as functions. With Smalltalk, navigating the IDE is difficult and getting to grips with the class structure is far more