Re: [Pharo-users] UFFI asynchronous callbacks

2020-07-20 Thread teso...@gmail.com
Hi, as Ben correctly pointed out there is the alternative of using a Queue based approach for FFI. It is available as a plugin for the headless VM and it can be used with Pharo 8. It is here: https://github.com/pharo-project/threadedFFI-Plugin The plugin is already compiled and shipped with the VM.

[Pharo-users] [ANN] Pharo Launcher 2.2 released!

2020-07-20 Thread Christophe Demarey
Hi all, Pharo Launcher 2.2 has just been released! It is available from http://pharo.org/download. It is mostly a bug fix release but it comes with some enhancements. Full log is available at https://github.com/pharo-project/pharo-launcher/releases/tag/2.2 and https://github.com/pharo-project/

[Pharo-users] Bit Manipulation Challenge

2020-07-20 Thread Sean P. DeNigris
I want to take an IP address routing prefix in CIDR [1] notation (i.e. the 24 in "192.168.100.14/24") and convert it into subnet form (i.e. 255.255.255.0). I came up with 4 ways to do that (see below), but none stand out as best (although #3 and #4 seem a bit more straightforward as they avoid the

Re: [Pharo-users] Bit Manipulation Challenge

2020-07-20 Thread Ben Coman
On Mon, 20 Jul 2020 at 23:19, Sean P. DeNigris wrote: > > I want to take an IP address routing prefix in CIDR [1] notation (i.e. the 24 > in "192.168.100.14/24") and convert it into subnet form (i.e. > 255.255.255.0). I came up with 4 ways to do that (see below), but none stand > out as best (alth

[Pharo-users] [ANN] RenoirSt v7.0.2 [v7.0.2] released!

2020-07-20 Thread Buenos Aires Smalltalk
RenoirSt, a DSL enabling programmatic cascading style sheet generation for Pharo Smalltalk reached it's v7.0.2 version. Changelog Updated dependencies Removed unnecesary method Update notification action Regards, The Buenos Aires Smalltalk team

[Pharo-users] [ANN] Willow-Bootstrap v12.1.1 [v12.1.1] released!

2020-07-20 Thread Buenos Aires Smalltalk
Willow-Bootstrap, integration between Willow & Bootstrap 3/4 reached it's v12.1.1 version. Changelog Pharo 9 compatibility Minor improvements Regards, The Buenos Aires Smalltalk team

Re: [Pharo-users] Bit Manipulation Challenge

2020-07-20 Thread David T. Lewis
On Tue, Jul 21, 2020 at 02:17:59AM +0800, Ben Coman wrote: > On Mon, 20 Jul 2020 at 23:19, Sean P. DeNigris wrote: > > > > I want to take an IP address routing prefix in CIDR [1] notation (i.e. the > > 24 > > in "192.168.100.14/24") and convert it into subnet form (i.e. > > 255.255.255.0). I came