Re: [Pharo-users] Smalltalk Argument

2017-10-25 Thread henry
It’s well said, I don’t give a f*** about other languages. NSA-proof, anonymized 2048-bit key rendezvoused connection framework in 33 classes. Includes user definable cipher and encoder. SmalltalkHub talkin ParrotTalk. http://www.squeaksource.com/Cryptography/ParrotTalk-HenryHouse.3.mcz - HH

Re: [Pharo-users] Smalltalk Argument

2017-10-25 Thread Andrew Glynn
There’s other questions that are relevant to me: Do I give a f*** about cool looking web apps?  No, I don’t use web apps if in any way I can avoid it. Do I give a f*** about mobile apps?  No, the screen’s too small to read anything longer than a twit, or anyone with anything worthwhile

[Pharo-users] Annual online conference?

2017-10-25 Thread PAUL DEBRUICKER
Laravel.com is a PHP web framework. Their community organizes an online conference: https://laracon.net/2017 Seems like it could be worthy of mimicking in the Smalltalk community.

Re: [Pharo-users] Binary Decision Diagram Package in Smalltalk

2017-10-25 Thread Tim Mackinnon
Phil presented an Xmpp integration at Pharo days - I understood that was a common comms mechanism too. Tim Sent from my iPhone > On 25 Oct 2017, at 20:39, Stephane Ducasse wrote: > > Hi andrew > > I think that Avi did a package about BDD (but I thought it was

Re: [Pharo-users] Binary Decision Diagram Package in Smalltalk

2017-10-25 Thread Stephane Ducasse
Hi andrew I think that Avi did a package about BDD (but I thought it was special binary trees) so this is probably the same. Did you check on Squeaksource? http://www.squeaksource.com/BTree.html If this is what you are looking for I can help porting it to Pharo. Stef On Wed, Oct 25, 2017 at

[Pharo-users] Binary Decision Diagram Package in Smalltalk

2017-10-25 Thread Prof. Andrew P. Black
Does anyone know of a BDD — that’s Binary Decision Diagram — package written in Smalltalk? Andrew

Re: [Pharo-users] Exchanging information between 2 pharo applications (2 images running on two different computers)

2017-10-25 Thread Marten Feldtmann
Am 25.10.2017 um 15:52 schrieb Cédrick Béler: > Ok. > > I wonder also if Basys is not enough to experiment. > https://ci.inria.fr/pharo-contribution/view/Books/job/PharoBookWorkInProgress/182/artifact/book-result/BasysNetwork/ > > I’ll also try Sebastian suggestion. > ZeroMQ is a wonderful

Re: [Pharo-users] Glorp: #includesKey:

2017-10-25 Thread Herby Vojčík
Niall Ross wrote: Dear Herby, adding #includesKey: is certainly doable. If you look at callers above and subcallers below #anySatisfyDefault: you will see the issues involved. Your includesKey: needs the same degree of platform-awareness that Glorp's #anySatisfy: and #allSatisfy: implementations

Re: [Pharo-users] Exchanging information between 2 pharo applications (2 images running on two different computers)

2017-10-25 Thread Cédrick Béler
Ok. I wonder also if Basys is not enough to experiment. https://ci.inria.fr/pharo-contribution/view/Books/job/PharoBookWorkInProgress/182/artifact/book-result/BasysNetwork/

Re: [Pharo-users] Exchanging information between 2 pharo applications (2 images running on two different computers)

2017-10-25 Thread Denis Kudriashov
Yes, it is not part of Seamless. 2017-10-25 15:40 GMT+02:00 Cédrick Béler : > I had a look and this is not (natively) possible. > > The idea of the off-line mode would be to delay messages that are sent to > the peer until a connection is established. > > I think I have to

Re: [Pharo-users] Exchanging information between 2 pharo applications (2 images running on two different computers)

2017-10-25 Thread Sebastian Heidbrink via Pharo-users
--- Begin Message --- Hi Cederik, you should have a look at http://smalltalkhub.com/#!/~panuw/zeromq ZeroMQ is a networking library. Nice thing about it is that all the networking related workload is dealt with in a second process. That can save you some resources within Smalltalk. There is

Re: [Pharo-users] Exchanging information between 2 pharo applications (2 images running on two different computers)

2017-10-25 Thread Cédrick Béler
I had a look and this is not (natively) possible. The idea of the off-line mode would be to delay messages that are sent to the peer until a connection is established. I think I have to try to do it by myself (like having a list of information exchange that wait until a connexion is

Re: [Pharo-users] Exchanging information between 2 pharo applications (2 images running on two different computers)

2017-10-25 Thread Cédrick Béler
Thanks Denis. I will ! I knew I have seen a telephoto component that could help but forgot about it ! Do you know if it’s possible to handle offline mode ? > Le 25 oct. 2017 à 15:05, Denis Kudriashov a écrit : > > Look at Seamless

Re: [Pharo-users] Exchanging information between 2 pharo applications (2 images running on two different computers)

2017-10-25 Thread Denis Kudriashov
Look at Seamless https://github.com/dionisiydk/Seamless. 2017-10-25 14:21 GMT+02:00 Cédrick Béler : > Hi all, > > I want to connect two applications (1 by image, each one on a different > computer) so as as to exchange information (data) between them. > > So my question is

[Pharo-users] Cryptography and hashing in Pharo

2017-10-25 Thread Cédrick Béler
Hi again, Concerning cryptography in Pharo, there are to my knowledge : => a package developed in squeak [1] that was I think ported/forked for Pharo. I cannot find the Pharo version => a binding to the sodium library (NaCl) [2] With one would you recommend ? Maybe another option ?

[Pharo-users] Exchanging information between 2 pharo applications (2 images running on two different computers)

2017-10-25 Thread Cédrick Béler
Hi all, I want to connect two applications (1 by image, each one on a different computer) so as as to exchange information (data) between them. So my question is about the best (smalltalk) practices to connect two app/image and exchange data. I imagine either with a direct connection through

Re: [Pharo-users] Glorp: #includesKey:

2017-10-25 Thread Herby Vojčík
jtuc...@objektfabrik.de wrote: Herby, I must admit I've never used Dictionary Mappings with Glorp, so I don't have an answer. But I am a bit confused by your code examples. See below Am 24.10.17 um 20:27 schrieb Herby Vojčík: Hello! I am using a DictionaryMapping in my code, and I wanted to

Re: [Pharo-users] Glorp: #includesKey:

2017-10-25 Thread Herby Vojčík
Tom Robinson wrote: Hi Herby, In my opinion, the way you found to make it work is the way it should be. The reason is that the first way doesn't translate into SQL and the second one does. It might be possible to add includesKey: functionality but resolving that to SQL would be more complex. I

Re: [Pharo-users] Territorial loading problems & alternative ways of loading data for making a choropleth map

2017-10-25 Thread Tudor Girba
You can directly use the Roassal presentation gtInspectorExtension: composite composite roassal2 title: ‘...' initializeView: [ YourViewOrBuilder ]; painting: [ :yourViewOrBuilder | … ] Doru > On Oct 25,

Re: [Pharo-users] CodeCity like visualization in Linux

2017-10-25 Thread Stephane Ducasse
you can show them cvs file 'my.cvs' asFileReference and inspect you get a table :) but it is still a file reference Same with zip file Check the videos of the mooc on GTInspector Stef On Wed, Oct 25, 2017 at 11:35 AM, Rafael Luque wrote: > Great! Thank you Doru. >

Re: [Pharo-users] CodeCity like visualization in Linux

2017-10-25 Thread Rafael Luque
Great! Thank you Doru. ‌ 2017-10-25 10:36 GMT+02:00 Tudor Girba : > Hi, > > Indeed, the image was for Mac, but unfortunately I do not know if it works > on Linux. > > But, for your talk, there are other cool things that you can show in the > latest Moose. If you are

[Pharo-users] [ANN] LAM Research upgraded to Platinum Membership

2017-10-25 Thread Marcus Denker
The Pharo Consortium is very happy to announce that LAM Research has upgraded to Platinum Member status. About - LAM Research: http://www.lamresearch.com - Pharo Consortium: http://consortium.pharo.org The goal of the Pharo Consortium is to allow companies and institutions to support the

Re: [Pharo-users] CodeCity like visualization in Linux

2017-10-25 Thread Tudor Girba
Hi, Indeed, the image was for Mac, but unfortunately I do not know if it works on Linux. But, for your talk, there are other cool things that you can show in the latest Moose. If you are interested, please contact me directly. Cheers, Doru > On Oct 25, 2017, at 9:39 AM, Rafael Luque

Re: [Pharo-users] CodeCity like visualization in Linux

2017-10-25 Thread Rafael Luque
Thank you for your help Tudor. I'm trying with the CodeCity image I've downloaded from your post ( http://www.humane-assessment.com/blog/communicating-changes-in-pharo-3-0) and I get the error "MessageNotUnderstood: receiver of "platformId" is nil" in the NBMacGLContextDriver

Re: [Pharo-users] CodeCity like visualization in Linux

2017-10-25 Thread Tudor Girba
CodeCity only works in Pharo 3 (or maybe also 4). Doru > On Oct 25, 2017, at 1:38 AM, Rafael Luque > wrote: > > Hi all, > > I'm working on an introductory talk about Pharo for a software craftsmanship > local meetup. > > The presentation will be mainly driven