Re: [Pharo-users] How to LAN feature

2018-05-09 Thread N. Bouraqadi
Hi, Just want to point that I did some work late 2017 on UDP sockets including multicast and broadcast. The package named 'NetworkExtras' is part of the ReusableBricks repo of my team. http://smalltalkhub.com/#!/~CAR/ReusableBricks It has some dependencies on other packages. I tested it in

Re: [Pharo-users] On UDP broadcast

2018-05-23 Thread N. Bouraqadi
Note that the package includes tests that show that the broadcast working :-) Thanx Cédrick for the CC. Noury > On 21 May 2018, at 21:17, Cédrick Béler wrote: > > Noury did. He sent that on the other thread : > > « Just want to point that I did some work late 2017 on UDP

[Pharo-users] ESUG 2018 Innovation Technology Awards: Call for Submissions

2018-06-21 Thread N. Bouraqadi
Dear fellow Smalltalkers, The 15th edition of the ESUG Innovation Technology Awards is now officially open. As for every year, you can submit software based on any Smalltalk flavor, to attempt to win one of the three prizes. All you have to do is to provide a 3-5min video demo. More info and a

[Pharo-users] Submit your Project to the ESUG Awards

2018-08-21 Thread N. Bouraqadi
Hi everyone! This is a reminder to submit your projects to the ESUG Innovation Technology Awards. It will be held on september the 10th as part of the ESUG conference in Sardinia (https://esug.github.io/2018-Conference/conf2018.html). Any Pharo Smalltalk-related project is eligible. All you

[Pharo-users] Only 7 days lefts before the ESUG Innovation Technology Awards

2018-09-03 Thread N. Bouraqadi
Hi Everyone, The 15th Edition of the ESUG Innovation Technology Awards will take place in only one week. You have only few days left to submit your projects. Remember: Any project is eligible as long as it involves Smalltalk. All dialects are of course welcome. See you in Sardinia, Noury

Re: [Pharo-users] Pharo consortium selected for GSOC 2019

2019-02-27 Thread N. Bouraqadi
Thank you guys for the energy you put into this :-) Noury > On 26 Feb 2019, at 12:56, Serge Stinckwich wrote: > > Dear all, > > Pharo Consortium has been selected this year as a Google Summer of Code 2019 > mentor organization. This is the first time since 2017. > > I would like to thank

[Pharo-users] How to load a single package in a Metacello baseline

2019-02-19 Thread N. Bouraqadi
Hi, I'm updating the the baseline of PharoJS to use the zinc websockets from the github repo https://github.com/svenvc/zinc. I want to load package Zinc-WebSocket-Core. So, in BaselineOfPharoJS>>#baseline: I've defined spec baseline: 'ZincHTTPComponents' with: [ spec

Re: [Pharo-users] Pharo 7.0.2 osx from launcher has corrupted welcome screen?

2019-03-14 Thread N. Bouraqadi
Yes Tim. I've have it too. Noury > On 14 Mar 2019, at 21:02, Tim Mackinnon wrote: > > Has anyone else noticed that the the newer 7.0.2 image (from launcher) has a > corrupted welcome screen? This is on osx (high Sierra) from today. > > The image seems to work fine, its just that initial

[Pharo-users] ESUG Innovation Technology Awards Call for submissions

2019-07-09 Thread N. Bouraqadi
Dear Smalltalkers, Developers are invited to submit their Smalltalk-related project to the 16th edition of the ESUG Innovation Technology Awards. The top 3 teams with the most innovative software will receive, respectively, 500 Euros, 300 Euros and 200 Euros. Submit now! Instructions are

[Pharo-users] OneClick image

2019-04-24 Thread N. Bouraqadi
Hi, Few years ago, there was a zip file called 'oneclick' that included everything to run Pharo on all 3 major OSes. All one had to do is unzip it, and launch a script that opens the image. What happen to that? Any idea why it isn't generated anymore? Noury

[Pharo-users] 2 days left to submit your software to the ESUG Innovation Technology Awards

2019-08-16 Thread N. Bouraqadi
Submit your project and show all the cool things enabled by Smalltalk :-) > Begin forwarded message: > > From: "N. Bouraqadi" mailto:bouraq...@gmail.com>> > Subject: ESUG Innovation Technology Awards Call for submissions > Date: 9 July 2019 at 16:08:49

[Pharo-users] Deadline Approaching : ESUG Innovation Technology Awards 2019

2019-08-07 Thread N. Bouraqadi
Hi everyone, Reminder: the deadline is Sunday August 18. > Begin forwarded message: > > From: "N. Bouraqadi" > Subject: ESUG Innovation Technology Awards Call for submissions > Date: 9 July 2019 at 16:08:49 CEST > To: Board ESUG , Any question about pharo is welcom

Re: [Pharo-users] Anything on Pharo that would be like Opentalk on VW?

2019-06-27 Thread N. Bouraqadi
Sang did something similar a while ago too. https://github.com/lxsang/SystemProcess It allows an image to launch workers. One thing interesting is that they share virtual memory, so they can exchange data during the execution Noury > On 27 Jun 2019,

Re: [Pharo-users] Latest PharoJS Success Story

2020-01-29 Thread N. Bouraqadi
No. It does not. At least I didn't notice. > On 28 Jan 2020, at 22:06, Steve Quezadas wrote: > > Does Apache cordova drain a lot of battery from the phone? > > On Tue, Jan 28, 2020 at 10:19 AM N. Bouraqadi <mailto:bouraq...@gmail.com>> wrote: > The latest PharoJS-po

[Pharo-users] Latest PharoJS Success Story

2020-01-28 Thread N. Bouraqadi
The latest PharoJS-powered smartphone app is now live. Development has been made using Pharo. Then, javascript code is generated using PharoJS. Last, the app is built to target both iOS and Android thanks to Apache Cordova. Learn more and Download at https://nootrix.com/projects/brain-treats-app/

Re: [Pharo-users] Clean up method like #exiting from VAST

2020-03-13 Thread N. Bouraqadi
Hi Vince, In Pharo there is startup list that is used also when quitting (in reverse upon shutdown). To register a class : Smalltalk addToStartUpList: aClass The class startup behavior should go in class method startUp: resumingBoolean The class quit behavior should go in a class method

[Pharo-users] Slots vs collections

2020-03-20 Thread N. Bouraqadi
Hi, Suppose I have an instance variable referencing a collection of booleans. I want to have all elements of the collection be stored as bits. Is there a way I can express it using slots? This idea can be generalized to other types of slots. Noury

[Pharo-users] PharoJS now runs on Pharo 8 :-)

2020-06-08 Thread N. Bouraqadi
Thanks to Ivo Roefs and Dave Mason ! Noury