Re: [Pharo-users] How do I get ZeroMQ working?

2018-08-23 Thread Jesus Mari Aguirre
I see...anaconda installs everything in home directory. ZeroMQ version won't be a problem, probably it is backward compatible. I will include $home/anaconda3/lib in the searching path. El vie., 24 ago. 2018 a las 7:10, H. Hirzel () escribió: > On 8/24/18, H. Hirzel wrote: > > Thank you, Jesús M

Re: [Pharo-users] About describing the JupzterTalk installation process: Which Linux distribution are you using?

2018-08-31 Thread Jesus Mari Aguirre
ll tell... > > At the moment I have it on Linux and that is fine. > > I am now more interested in actually USING it. > > See my question about giving back SVG graphics results > > > On 8/29/18, Jesus Mari Aguirre wrote: > > I think Windows will not be possible by

Re: [Pharo-users] [Jupytertalk] Where do I put the Pharo files? Permission issue.

2018-10-05 Thread Jesus Mari Aguirre
I've never tested it in Pharo 7, anyway if I am not wrong, Jupytertalk doesn't save any file. Be sure it is not a problem about Pharo 7 permissions. El vie., 5 oct. 2018 11:49, H. Hirzel escribió: > Hello Jesus Mari > > I am doing a new installation of JupyterTalk in a Pharo7 environment > > >

[Pharo-users] Primitive is not executed

2020-06-09 Thread Jesus Mari Aguirre
I am developing a "numpy arrays" like framework on pharo, I decided to use an Array type depending on the class of its elements (I thought it would be more efficient) i.e if the array contains floats it will be stored in a floatArray but if contains integers, a IntegerArray will be used. I make an

Re: [Pharo-users] Primitive is not executed

2020-06-10 Thread Jesus Mari Aguirre
2 with: b startingAt: 1. > > a := DoubleWordArray withAll: #( 1 2 3 4 ). > b := Array withAll: #( 5 6 ). > > a replaceFrom: 1 to: 2 with: b startingAt: 1. > > If you tell us a bit more we could probably be of more help. > Also, we were looking for you in discord to ask you qu

[Pharo-users] voyage in singleton mode

2021-06-01 Thread Jesus Mari Aguirre
Hello all, I'm developing a tepot+voyage(mongodb) web app and I have one doubt, is voyage thread safe? or do I have to take care about using a Mutex because multiple teapot instances can call it. Thank you all!

[Pharo-users] Re: voyage in singleton mode

2021-06-01 Thread Jesus Mari Aguirre
Here the connection pool removes that problem. > > Hope that answers your question. I use it just as it is in a concurrent > environment. > > Norbert > > > > Am 01.06.2021 um 11:34 schrieb Jesus Mari Aguirre < > jmariagui...@gmail.com>: > > > > Hello all,

[Pharo-users] Re: Communication between different images

2021-06-29 Thread Jesus Mari Aguirre
Maybe ZeroMQ fits you, but unlucky is not documented and there are only a few examples. I use ir in my jupyter kernel. You can install my port to pharo64 uFFI doing: Metacello new baseline: 'JupyterTalk'; repository: 'github://jmari/JupyterTalk:master/repository'; load:'zmq

[Pharo-users] Re: Communication between different images

2021-07-01 Thread Jesus Mari Aguirre
> Esteban A. Maringolo > > On Tue, Jun 29, 2021 at 2:45 PM Jesus Mari Aguirre > wrote: > > > > Maybe ZeroMQ fits you, but unlucky is not documented and there are only > a few examples. I use ir in my jupyter kernel. You can install my port to > pharo64 uFFI

[Pharo-users] Re: Communication between different images

2021-07-03 Thread Jesus Mari Aguirre
, messageData);cr]] ]] forkNamed: 'subscriber1'. "Publish doing that" publisher send: ('Hello Subscribers') asByteArray. El jue, 1 jul 2021 a las 21:03, Esteban Maringolo () escribió: > On Thu, Jul 1, 2021 at 3:00 PM Jesus Mari Aguirre > wrote: >

[Pharo-users] Is there anyone able to push to Github

2021-07-28 Thread Jesus Mari Aguirre
Are you able to push to github this morning? I'm not able to push in any of my pharo images from my laptop but I can push from other applications... It returns a 403 error, I changes from https to rsa keys(and added my public key to the github project) to and same result.

[Pharo-users] Re: Zinc exception logging

2021-07-28 Thread Jesus Mari Aguirre
maybe ex signalerContext errorReportOn: aStream can show you more info El lun, 26 jul 2021 a las 13:56, Esteban Maringolo () escribió: > Hi Sven, > > That's what I wanted to know, I made a quick change to it and pushed > it to the staging server (where I'm having the error), but I forgot to > sim

[Pharo-users] Re: Is there anyone able to push to Github

2021-07-28 Thread Jesus Mari Aguirre
EPOSITORY.git > > I hope this helps you. > --- > tomo > > 2021年7月28日(水) 18:02 Jesus Mari Aguirre : > > > > Are you able to push to github this morning? I'm not able to push in any > of my pharo images from my laptop but I can push from other applications... > >

[Pharo-users] Re: Is there anyone able to push to Github

2021-07-28 Thread Jesus Mari Aguirre
I reset my laptop and after restoring the repo url to the https url I'm able to push...anyway https is deprecated, in any moment I should change to ssh but not today... I don't know why it hasn't worked for me. anyway lot of thanks Tomohiro Oda El mié, 28 jul 2021 a las 12:10, Jes

[Pharo-users] Re: Is there anyone able to push to Github

2021-07-28 Thread Jesus Mari Aguirre
k it, it works fine. > --- > tomo > > 2021年7月28日(水) 19:10 Jesus Mari Aguirre : > > > > I have created the key files in OSX > > > > ssh-keygen -t rsa > > > > ssh-add -K ~/.ssh/id_rsa > > > > Then I've added to my github user, account

[Pharo-users] Re: Is there anyone able to push to Github

2021-07-31 Thread Jesus Mari Aguirre
a las 12:27, Tomohiro Oda () escribió: > I could use iceberg via SSH in both Pharo 8 and Pharo 9 on OSX. > When I check the "use custom SSH keys", I got the authentication error. > If I uncheck it, it works fine. > --- > tomo > > 2021年7月28日(水) 19:10 Jesus Mari Aguirre :

[Pharo-users] Re: Private Methods

2021-08-19 Thread Jesus Mari Aguirre
Please keep Pharo simple, why do you need private methods...you can include then in a protocol named private...other language have it...yes...next addition will be namespaces...other...I don't know...at last we have Java El jue., 19 ago. 2021 9:00, Richard O'Keefe escribió: > Many years ago ther

[Pharo-users] Re: Installing code in a running image

2022-04-04 Thread Jesus Mari Aguirre
What about using https://github.com/pharo-ide/TelePharo (by MarcusDenker ) I've never used but looks like it could fit your needs. Anyway if your client can afford 1 minute out of the business you can stop the image and load a Git

[Pharo-users] Re: [ANN] Pharo 10 released!

2022-04-05 Thread Jesus Mari Aguirre
Bravo! Many thanks for your effort! It seems like yesterday when I started learning Smalltalk on Pharo 1.2...fun is growing version by version! but please slow down a bit dude ;-) just to have time to update my "things" On Tue, Apr 5, 2022 at 12:41 PM Esteban Lorenzano wrote: > Dear Pharo users

[Pharo-users] mongodb and voyage

2022-06-27 Thread Jesus Mari Aguirre
Hello everyone! question about Mongodb and voyage... Is there any way to build a query selecting only the fields of interest just like someone asks in this question? https://stackoverflow.com/questions/43801636/specify-fields-to-return-in-voyagemongo The answer is out of date but I think this shou

[Pharo-users] Re: headless mode

2023-04-16 Thread Jesus Mari Aguirre
pharo --nodisplay works for me (pharo 9 on ubuntu) On Tue, Apr 11, 2023 at 5:23 PM Christophe Touzé wrote: > Bonjour, > > Quelqu'un pourrait-il me dire svp comment lancer une image Pharo 10 en > mode headless (sous Ubuntu) ? > J'ai essayé "pharo --headless monImage.image" sans succès. > Précisio