[Pharo-users] Re: How to halt on Test errors?

2024-01-08 Thread Guillermo Polito
Yes. Also you can try extending the current commands to get your “Debug Tests” from the class side. And we accept contributions :) > El 8 ene. 2024, a las 14:31, Gabriel Cotelli escribió: > > You can implement another version of TestResult that halts when an error is > added instead of

[Pharo-users] Re: How to halt on Test errors?

2024-01-08 Thread Guillermo Polito
Hi Davide, I don’t think something specific to your needs exists, but you can easily build your own. There is already for example `haltIfTest` that will halt if you’re in the dynamic extent of a test. If you’re dealing with concurrency issues, I don’t understand how the `haltIfError` is

[Pharo-users] Re: How to open files in the underlying OS

2023-12-06 Thread Guillermo Polito
Hi Rui, Just a quick look at the Win32 error codes https://learn.microsoft.com/en-us/windows/win32/debug/system-error-codes--0-499- It tells me that 16r0002 means “File not found”. Are you sure that

[Pharo-users] VM Release 10.0.8

2023-10-23 Thread Guillermo Polito
Hi all, TL;DR; update your launcher VMs and your download scripts! There is a new VM version: release 10.0.8 which fixes, among others, a performance regression that showed in some cases that overly relied on the interpreter. See below the changes log, and for those interested, the fix for

[Pharo-users] Next Pharo sprints

2023-09-13 Thread Guillermo Polito
Hi all, For those who would like to participate, we are opening the Pharo sprints we do at Lille every last friday of the month. Feel free to contact us if you would like to participate, drop an email or a message somewhere :) More info in the link below!

[Pharo-users] Re: Pharo @ ESUG'23

2023-09-13 Thread Guillermo Polito
Of course, better if I send the right link :) https://thepharo.dev/2023/09/13/pharo-esug23/ > El 13 sep. 2023, a las 09:39, Guillermo Polito > escribió: > > Hi all, > > for those that were not at ESUG, we did a small write-up about the Pharo > activity at the c

[Pharo-users] Pharo @ ESUG'23

2023-09-13 Thread Guillermo Polito
Hi all, for those that were not at ESUG, we did a small write-up about the Pharo activity at the conference. https://wordpress.com/post/thepharo.dev/1957 Cheers, Guille

[Pharo-users] Re: The results of the Pharo Browser usage survey are available

2023-09-06 Thread Guillermo Polito
Thanks Koen! It’s fun to read in detail :) So, what’s the action plan? > El 5 sep. 2023, a las 22:10, Koen De Hondt > escribió: > > Dear Pharo users and developers, > > Last week at ESUG’23 I presented the results of the survey on the usage of > the Pharo Browser. Half an hour was not

[Pharo-users] Re: The worst programmer

2023-09-05 Thread Guillermo Polito
Haha, yes, it was a fun read, congrats Tim! :D > El 5 sep. 2023, a las 10:03, Noury Bouraqadi escribió: > > Glad you pointed it Christian. > I saw the title on X, and since I know Tim, I thought it was a troll  > > Noury > On Sep 4 2023, at 4:58 pm, Christian Haider wrote: > Today there was

[Pharo-users] Re: Pharo in Docker.

2023-08-09 Thread Guillermo Polito
Hi @Philippe, this is too few info to help, but maybe you can try the following: - are you sure the image inside the container and outside are the same version? => what if you use the same version outside the docker file? - the issue happens because of a deprecation exception, what if you

[Pharo-users] Re: [Pharo-dev] Pharo contribution Jenkins end of service

2023-05-12 Thread Guillermo Polito
Thanks Christophe! > El 11 may. 2023, a las 11:32, Christophe Demarey > escribió: > > Hi all, > > Some years ago, we provided a Jenkins instance to check the health / quality > of projects that are not in Pharo core but important for the community: > https://ci.inria.fr/pharo-contribution/

[Pharo-users] Re: A blog on graph algorithms library of Pharo

2023-04-05 Thread Guillermo Polito
Hi Goutham! Thanks for the post! I like the concrete examples. I did not find them in the repo, I think pushing the examples as comments or executable code in the relevant classes is a great first PR ;) G > El 4 abr. 2023, a las 18:29, DK Goutham escribió: > > Dear Pharo Users, > > Here's a

[Pharo-users] Re: Pharo accepted to Google Summer of Code 2023

2023-02-24 Thread Guillermo Polito
Thanks guys for the super job with the admin, the website, and the gathering of ideas! > El 23 feb. 2023, a las 16:53, Sebastian Jordan Montano > escribió: > > Hello! > We are happy to announce that we got accepted for this year Google Summer of > Code! > This is really good for us because

[Pharo-users] Re: CodeParadise runs on P10

2023-01-03 Thread Guillermo Polito
Thanks Erik!!! > El 28 dic. 2022, a las 12:17, erik.s...@gmail.com escribió: > > Hi all. A small holiday present for anyone interested: > https://github.com/ErikOnBike/CodeParadise > now runs on P10 (and P11 with > some care)! If you are using it

[Pharo-users] Re: [ANN] PI version 0.7

2023-01-03 Thread Guillermo Polito
Very interesting!!! Thanks for sharing Hernan! > El 30 dic. 2022, a las 17:01, Hernán Morales Durand > escribió: > > Hello > > "PI", which stands for "Pharo Install", is a command line interface (CLI) to > query and install Pharo packages: https://github.com/hernanmd/pi >

[Pharo-users] Re: [Pharo-dev] Pharo VM Release - v9.0.21

2022-12-12 Thread Guillermo Polito
Thanks Pablo!!! > El 12 dic. 2022, a las 14:30, teso...@gmail.com escribió: > > Hello, > I have released a new version of the Pharo VM for Pharo 9, Pharo 10 and > Pharo 11. This VM is accessible right now from Zero-Conf, updating it in the > Pharo Launcher or using the usual downloads (as

[Pharo-users] Re: Pharo nanoseconds or clock ticks

2022-09-13 Thread Guillermo Polito
Hi Kasper, There is `Smalltalk highResClock` that should be what you’re looking for. It's still not available in ARM64 builds, we need to define it using some handwritten assembly. There is an open issue for that https://github.com/pharo-project/pharo/issues/11609 G > El 5 sept 2022, a las

[Pharo-users] Re: [ANN] Package Formulas

2022-08-16 Thread Guillermo Polito
Hi Hernán, Thanks, it looks very interesting! How do you add a new formula? I couldn’t find any info on where formulas are fetched from in the readme (there is a bullet on “where they are *not* fetched” but…). G > El 12 ago 2022, a las 8:47, Hernán Morales Durand > escribió: > > Hi

[Pharo-users] Re: [Pharo-dev] [ANN] Pharo Launcher 3.0 released!

2022-04-19 Thread Guillermo Polito
Thanks Christophe, this is super work :) > El 14 abr 2022, a las 14:26, Christophe Demarey > escribió: > > Hi all, > > Pharo Launcher 3.0 has just been released! It is available from > http://pharo.org/download . > It is based on latest Spec2 and Pharo 10 image. >

[Pharo-users] Re: [ANN] Pharo LZ4 Tools

2022-02-18 Thread Guillermo Polito
Thanks Sven, great stuff :) Envoyé depuis mon téléphone Huawei Message original De : Sven Van Caekenberghe Date : ven. 18 févr. 2022 à 21:13À : Any question about pharo is welcome Objet : [Pharo-users] [ANN] Pharo LZ4 ToolsHi,Pharo LZ4 Tools

[Pharo-users] Re: Error when running OSUnixSubprocess - posix_spawn() error

2022-02-09 Thread Guillermo Polito
Hi David, What is the function that is actually failing? I would assume it’s something called in #internalRun. I assume you have tried executing the process from the command line (quick check I always do when finding these kind of problems :P). $ echo -n $(pgrep -a -f Pharo | grep ''.image''

[Pharo-users] Re: PharoDays'22: Inscriptions are open!

2022-02-04 Thread Guillermo Polito
for virtual attendance at any of these sessions? > > On Tue, Feb 1, 2022 at 5:26 AM Guillermo Polito <mailto:guillermopol...@gmail.com>> wrote: > > Pharo Days > > March 3rd a

[Pharo-users] PharoDays'22: Inscriptions are open!

2022-02-01 Thread Guillermo Polito
Pharo Days March 3rd and 4th, Lille, France https://days.pharo.org/ Inscriptions are open! Do not miss the opportunity to meet the Pharo

[Pharo-users] [Pharo Days'22] Call for participation

2022-01-10 Thread Guillermo Polito
Pharo Days March 3rd and 4th, Lille, France https://days.pharo.org/ Do not miss the opportunity to meet Pharo and its community!

[Pharo-users] Re: Ghost subclass

2022-01-10 Thread Guillermo Polito
Hi Robert, Can you tell us how did you remove the subclasses? Was it through the UI? Which option? Or was it programatically? Can you reproduce it? G > El 8 ene 2022, a las 18:25, Robert Briggs via Pharo-users > escribió: > > Hi > > I currently have a problem that I am unable to resolve.

[Pharo-users] Re: Pharo-WebView

2021-12-20 Thread Guillermo Polito
Is this possible? > > Best wishes, > Tomaz > > -- Original Message -- > From: "Guillermo Polito" <mailto:guillermopol...@gmail.com>> > To: "Any question about pharo is welcome" <mailto:pharo-users@lists.pharo.org>

[Pharo-users] Re: Pharo-WebView

2021-12-17 Thread Guillermo Polito
This is amazing I wonder how this would marry with PharoJS :) > El 17 dic 2021, a las 11:51, Richard O'Keefe escribió: > > Ta muchly. Appreciated. > > > On Fri, 17 Dec 2021 at 06:03, Tomaž Turk > wrote: > Dear all, > > Pharo-WebView package is now

[Pharo-users] Re: uFFI provide buffer to C

2021-11-29 Thread Guillermo Polito
Hi Gerry, I think the point of Tomaz is that an FFI method can only have a single #ffiCall: statement. In your example, what you can do is to split your method in two methods: First a method with the mapping (following the idea of Tomaz but using libc) FFITutorial>>getHostNameInto: hostName

[Pharo-users] Re: [ANN] DataFrame Inspector

2021-11-29 Thread Guillermo Polito
Ahhh super nice!! thanks for sharing :) Is it by default in polymath? How do you decide what to plot in the inspector pane? Or you by default always use histograms on every numerical column? G > El 27 nov 2021, a las 17:23, Hernán Morales Durand > escribió: > > Hi everyone, > > I am glad

[Pharo-users] Re: Autocomplete typing

2021-11-24 Thread Guillermo Polito
https://github.com/pharo-project/pharo/issues/10437 > El 17 nov 2021, a las 11:39, Guillermo Polito > escribió: > > Thanks Tomaz! > > I could reproduce it > The problem seems to be very specific: when typing a keyword message with > many keywords. > > Imag

[Pharo-users] Re: Autocomplete typing

2021-11-17 Thread Guillermo Polito
Windows 10: > > > > I tried it on three different computers with Win10 with the same image. If I > get a new image, it behaves the same. > > Thanks and best wishes, > Tomaz > > > > -- Original Message -- > From: "Guillermo Polito&q

[Pharo-users] Re: Autocomplete typing

2021-11-16 Thread Guillermo Polito
Hi Tomaz, I’m interested in this kind of feedback. I cannot however reproduce the issue, maybe you’re doing something else? Below a GIF showing what happens to me in haro-9.0.0+build.1565 Cheers, Guille > El 15 nov 2021, a las 21:27, tomazz.t...@gmail.com escribió: > > Hi, > > Yet another

[Pharo-users] Re: GTPlayground or STPlayground

2021-11-08 Thread Guillermo Polito
Hi d, > El 5 nov 2021, a las 9:29, mspg...@gmail.com escribió: > > hello everybody! > > What are the difference between the GTPlayground(that I think is deprecated) > and the STPlayground? > StPlayground is a re-implementation of GTPlayground based on a different UI framework (Spec2). > for

[Pharo-users] Re: Access to old image / source

2021-11-08 Thread Guillermo Polito
Hi Jupiter, The simplest I could propose, for any user, is to try to import it in the Pharo launcher. The Pharo launcher leverages the version number and solves all this for you: It extracts the image version from the image file and based on that information it will download and launch the

[Pharo-users] Re: Create keyboard shortcut

2021-10-20 Thread Guillermo Polito
Hi peace.d, I’ve had a quick look: you can inspire yourself from the class ToolShortcutsCategory. The class has a couple of special things: - it inherits from KMCategory (a keymapping framework class) - it defines `isGlobal` returning true on the class side (to say it defines global

[Pharo-users] Re: Silly question about storing and displaying currency amounts?

2021-08-31 Thread Guillermo Polito
Hi all, In the past months I worked a bit with it and found many problems too, like: - doing scaled decimal arithmetics losing precision https://github.com/pharo-project/pharo/issues/8668 - strange default scale values https://github.com/pharo-project/pharo/issues/8669 I also got hit

[Pharo-users] Re: The ideal font for Pharo

2021-08-30 Thread Guillermo Polito
Hi tau, Thanks for it, I’ll check it :) > El 26 ago 2021, a las 1:17, tau escribió: > > I've been bothered by the assignement operator (:=) and the way the colon and > the equal sign aren't verticaly aligned when coding in Pharo. So I began a > quest to find a pharo-friendly font were the

[Pharo-users] Re: uFFI: Calling conventions?

2021-08-30 Thread Guillermo Polito
Hi egarrulo, > El 27 ago 2021, a las 18:50, egarrulo escribió: > > >> Yesterday we have implemented the image side part in P10 to correctly >honour the calling convention. > > Does this imply that uFFI doesn't work correctly on current images? > Because uFFI should have been available

[Pharo-users] Re: How to handle (recover) from a ZnInvalidUTF8: Illegal continuation byte for utf-8 encoding error?

2021-07-20 Thread Guillermo Polito
> El 20 jul 2021, a las 11:45, Sven Van Caekenberghe escribió: > > > >> On 20 Jul 2021, at 11:03, Sven Van Caekenberghe wrote: >> >> Hi Tim, >> >> An introduction to this part of the system is in >>

[Pharo-users] Re: Pharo 9 released - a brief experience report

2021-07-19 Thread Guillermo Polito
Hi Yanni, Now vms are organised by architecture. The link to get the lastest vm for Darwin x86_64 is now https://files.pharo.org/get-files/90/pharo-vm-Darwin-x86_64-latest.zip Otherwise, we recommend using zeroconf or the pharo launcher, as they detect your machine’s architecture and download

[Pharo-users] Re: Pharo 9.0 vm same-as Pharo 8.0 ?

2021-07-19 Thread Guillermo Polito
Hi Igouy, Kind of, yes. In Pharo9 we now support many different architectures, meaning that vms are not only compiled for 32/64 bits, but for aarch64 or x86-64. This means that link is now obsolete in favour of pharo-vm-Linux-[ARCH]-stable.zip. For example - pharo-vm-Linux-x86_64-stable.zip -

[Pharo-users] Re: Pharo 9 released - a brief experience report

2021-07-16 Thread Guillermo Polito
Hi Yanni Chiu, Thanks for the reports, > El 15 jul 2021, a las 20:49, Yanni Chiu escribió: > > First, great work and thanks to all contributors. > > Using macOS Big Sur version 11.4 on MacBook Air 2019... > > 1. In a new sub-directory "pharo9" (I was using a pharo8 directory, so > pharo9 is

[Pharo-users] Re: How to debug why external library isn't loading with UFFI or appears not to be ?

2021-06-07 Thread Guillermo Polito
It seems this was answered on discord. I put in here the answer from Pablo and Esteban just for the record: using LD_DEBUG https://man7.org/linux/man-pages/man8/ld.so.8.html $ LD_DEBUG=… program LD_DEBUG accepts many possible values to

[Pharo-users] Re: New VM, how do I get it

2021-05-24 Thread Guillermo Polito
T tools on top of Spec2. That may explain the UI differences too. > > S. > >> >> Version 8.0 >> >> >> >> Version 9.0 >> >> >> >> So V 9 is different from V 8.0 >> >> Is there a fix for this? >>

[Pharo-users] Re: New VM, how do I get it

2021-05-24 Thread Guillermo Polito
Zeroconf should download the M1 vm, buy the pharo launcher does not support that yet. El lun., 24 may. 2021 13:16, Stéphane Ducasse escribió: > is your machine a M1? > If this is the case check the email that were sent on how to get the VM. > > S. > > On 23 May 2021, at 11:54,

[Pharo-users] Re: Crash after http request, see the dump file

2021-04-15 Thread Guillermo Polito
Hi Davide, Taking a look at the dump, I’d say it looks like a memory corruption. It crashes when running the GC, but very probably because the heap was already corrupt. 5 Pharo 0x00010582ea3b mapStackPages + 345 6 Pharo

[Pharo-users] Re: [ANN] Develop in Pharo 9, run on Javascript

2021-03-15 Thread Guillermo Polito
This is cool :) Noury, would you mind sharing what were the main “issues” in the migration? If you have interesting tips we could see how to make them rewrite rules or add them into a guide in the wiki. Thanks, G > El 15 mar 2021, a las 14:40, Noury Bouraqadi escribió: > > Moose

[Pharo-users] Re: [Pharo-dev] Re: Pharo - GSOC 2021

2021-03-15 Thread Guillermo Polito
Nice!!! Thanks everybody!!! > El 11 mar 2021, a las 17:38, Hernán Morales Durand > escribió: > > Congratulations :-) > > Hernán > > El jue, 11 mar 2021 a las 7:34, Serge Stinckwich ( >) escribió: > Dear all, > > great news I want to share with you: Pharo

[Pharo-users] Re: Problem with Dictionary and Associations

2021-02-17 Thread Guillermo Polito
Hi David, do you use the Pharo Launcher? G. > El 16 feb 2021, a las 20:51, David Pennington > escribió: > > Thank you, where do I get Pharo 9? > >> On 16 Feb 2021, at 19:44, Stéphane Ducasse wrote: >> >> Hello David, >> >> We just sent an update and a blog post to get the new VM and

[Pharo-users] Re: Is there a way to load a dependent repository of assets that doesn't have a baseline - in my Metacello baseline?

2021-01-28 Thread Guillermo Polito
I don’t know if this is what you’re looking for, but there is GitBridge out there too http://forum.world.st/ANN-GitBridge-td5101250.html > El 27 ene 2021, a las 23:51, Tim Mackinnon escribió: > > Hi Hernan - that is close to what I want, and looks useful for something else > I need to do -

[Pharo-users] Re: Iceberg error on adding a package

2021-01-25 Thread Guillermo Polito
Hi Sanjay, I’d say the UI is in an incorrect state and did not update after some change. Would you mind trying closing all your iceberg windows and retest with a freshly open one? > El 25 ene 2021, a las 8:17, Sanjay Minni escribió: > > Iceberg Pharo 9 Win 10 64 bit - error when trying to

[Pharo-users] Re: Monticello

2020-12-16 Thread Guillermo Polito
Hi Ramón, I don’t know exactly what you are looking for, but maybe you could take a look at Peter’s monticello->git migration tool. https://github.com/peteruhnak/git-migration Cheers, G > El 15 dic 2020, a las 18:39, Ramon Leon escribió: > >

[Pharo-users] Re: Pharo Mars still not working on Ubuntu

2020-12-09 Thread Guillermo Polito
Hi Ivan, just to complement Esteban. When there is a process crash, it usually writes a crash dump file in the working directory. Could you share yours? The crash dump file will have information about the stack and state at the moment of the crash. It will also be useful to know what linux

[Pharo-users] Re: [Important] The deprecated FileStream removed from Pharo 9

2020-12-01 Thread Guillermo Polito
Thanks Pavel! Just to note, these packages have been deprecated since at least 2018, as Pavel’s blogpost shows :). So it was time to clean up a bit. Please do not hesitate to open an entry in the issue tracker if you find problems, we will solve them ASAP. G. > El 1 dic 2020, a las 9:20,

[Pharo-users] Re: Telegram Bots with Pharo

2020-09-21 Thread Guillermo Polito
Hi Pablo! Really nice! I tested it the other day. It would be nice if the bot had a link to its github repository and the framework’s repo so people could follow from there ;) Cheers, Guille > El 18 sept 2020, a las 22:55, Pablo Navarro escribió: > > Hi everyone, I share a tool for creating

Re: [Pharo-users] Iceberg: Installing a baseline from a self hosted Git/Gitea repository branch

2020-07-15 Thread Guillermo Polito
Hi Offray, Metacello and Iceberg are different things, although there is some integration between them. Iceberg understand git urls (ssh:// … g...@github.com …. https://…) Metacello understand its own urls, because it was originally designed to work in independence

Re: [Pharo-users] Tracker for Smalltalkhub project migration

2020-07-15 Thread Guillermo Polito
Thanks Pierce! > El 15 jul 2020, a las 4:26, Pierce Ng escribió: > > Hi all, > > I've created below project to keep track of Smalltalkhub project > migration. Please feel free to fork, update and send PR. > > https://github.com/PierceNg/sth-migration > > Pierce >

Re: [Pharo-users] Primitive is not executed

2020-06-10 Thread Guillermo Polito
Hi Jesus, We have looked at it with Pablo. We were wondering too if you could give us a reproducible case for what is not working with you, because we have tested it and it seems to be working (details below). The array replace primitive is a generic primitive that handles the replace of

Re: [Pharo-users] Pharo 9 64 + windows 10

2020-06-02 Thread Guillermo Polito
Hi Vitor, I think some of the slots rewrite code dynamically, that’s why the difference I think. I’d say its harmless, so you can ignore the difference or revert it as you did. I’d let someone more into Spec answer if this is really safe to do or no :) Also, reverting can also be achieved by

Re: [Pharo-users] Automatic code cleaner for Pharo

2020-06-02 Thread Guillermo Polito
Thanks!! > El 1 jun 2020, a las 14:00, Cyril Ferlicot D. > escribió: > > Hi everyone! > > Today I released the v1.1.0 of Chanel, a project to automatically clean > Pharo code to make it more readable and efficient. > > https://github.com/jecisc/Chanel > > This project is composed of a list

Re: [Pharo-users] [ANN] Gravatar wrapper moved to GitHub

2020-05-21 Thread Guillermo Polito
Thanks!! > El 21 may 2020, a las 14:37, Torsten Bergmann escribió: > > Just migrated "Pharo-Gravatar" - a simple Pharo wrapper for the Gravatar API > over to GitHub: > > https://github.com/astares/Pharo-Gravatar > > see attached image for an example. > > Enjoy! > > Bye > T. >

Re: [Pharo-users] Refactor without formatting

2020-05-21 Thread Guillermo Polito
I think what Stef means: - yes, please open an issue (maybe check there is no one already there?) - If somebody wants to give it a try at fixing this, it would be SUPER welcome :P :) (and that nobody needs to be an expert to do that, it’s the other way around, you become an expert by

Re: [Pharo-users] Refactor without formatting

2020-05-20 Thread Guillermo Polito
Hi, > El 20 may 2020, a las 1:54, Ben Coman escribió: > > That seems to violate the Principal Of Least Surprise. Yes, I happen to also not like that behaviour :( > Whether or not it ends up getting changed, I think its worthwhile entering > that directly in the issue tracker. > It would

[Pharo-users] [ANN] Smalltalkhub Readonly Migration tuesday 8hs - server maintenance / migration

2020-05-18 Thread Guillermo Polito
Hi all, We wanted to announce that, as announced previously, Smalltalkhub is going read only from tomorrow, 8h central Europe time. This means the service could be down for a couple of hours until the sync of data is done. Keep tuned, Guille and Christophe in behalf of the RMoD team

Re: [Pharo-users] Covid-19 Tracker with PharoJS

2020-05-15 Thread Guillermo Polito
It’s cool! > El 14 may 2020, a las 17:37, Noury Bouraqadi escribió: > > Hi, > > Dave Mason did implement a COVID-19 tracker with PharoJS. > https://covid.cs.ryerson.ca/compare/ > > Noury

Re: [Pharo-users] Code completion in blocks (Pharo8)

2020-05-13 Thread Guillermo Polito
Hi Davide, I’m not sure if that works on Pharo8. Could you try quickly Pharo9 to see if that’s fixed there? I’ve made a pass on the code completion there.. Don’t know how difficult it would be to back port it, I could give you the pointers if you want. > El 6 may 2020, a las 12:24, Davide

Re: [Pharo-users] issues in setting up a new project on Github/Iceberg

2020-04-17 Thread Guillermo Polito
> I am using Windows 10, it seems to have SSH tools inbuilt and was able to use > ssh (with passphrase) without hiccup, by putting my key files path in pharo > setting-> ...-> use custom SSH keys, and uploading the .pub key in Github :) Thanks > --- > Sanjay Minni > +91-9900-

Re: [Pharo-users] issues in setting up a new project on Github/Iceberg

2020-04-17 Thread Guillermo Polito
Hi Sanjay, This is a bug in Iceberg github integration that tries to access the repository to get metadata using Github REST API using anonymous access apparently. And since your project is private, this fails. As a workaroung, I suggest you to clone using the last option that requires an url

Re: [Pharo-users] [Demo]: Remote Control Mac Apps (like OBS) via Pharo on iOS

2020-04-16 Thread Guillermo Polito
That’s cool :) thanks for sharing! > El 16 abr 2020, a las 13:11, Sean P. DeNigris > escribió: > > I used Pharo to turn an iPhone into a tethered remote control for apps on my > Macbook Pro. Code available on GitHub. Here's a video in case anyone finds > it interesting:

Re: [Pharo-users] Discussions on method categories (Was: Moving/rolling average implementations ?)

2020-04-13 Thread Guillermo Polito
> El 13 abr 2020, a las 11:17, Cédrick Béler escribió: > > >> Used consistently and well, method categories are not only a >> navigation aid, helping you to find methods you do not know the names >> of, but a helpful documentation aid. For example, #runningMeans: is >> in the 'summarising'

Re: [Pharo-users] Moving/rolling average implementations ?

2020-04-13 Thread Guillermo Polito
> El 13 abr 2020, a las 11:00, Richard O'Keefe escribió: > > Concerning method categories: > VIsualAge Smalltalk manages without them. Of all the Smalltalk > systems available to me, it's the only one where I don't enjoy using > the browser. It carves up the world of methods another way,

Re: [Pharo-users] Automation of MS Office from Pharo

2020-04-08 Thread Guillermo Polito
Cool, thanks to the three :) @Peter, I’d like if you tell us at the end if you had success at automating you mail workflow ^^ > El 8 abr 2020, a las 10:15, Tomaž Turk escribió: > > Thanks Pablo for your quick response! I tested 32 and 64 bit images with > >1.000.000 strings and it works just

Re: [Pharo-users] Can't able to understand the code

2020-04-08 Thread Guillermo Polito
Hi Shawon, where did you get the docs? Have you tried the latest version (january/february this year) http://books.pharo.org/booklet-uffi/ ? > El 8 abr 2020, a las 4:44, shawon58 escribió: > > actually i am just exploring UFFI from the pdf "Calling

Re: [Pharo-users] [ANN] Pharo-Spreedsheet on GitHub

2020-04-03 Thread Guillermo Polito
Thanks! > El 3 abr 2020, a las 21:39, Torsten Bergmann escribió: > > Hi, > > I just moved "Spreadsheet" from SmalltalkHub > (http://www.smalltalkhub.com/#!/~TorstenBergmann/Spreadsheet) > to a community owned location at GitHub > ("https://github.com/pharo-contributions/Pharo-Spreadsheet;).

Re: [Pharo-users] [rmod] [ANN] SmalltalkHub Deprecation Notice

2020-04-03 Thread Guillermo Polito
Hi Renaud, > El 3 abr 2020, a las 16:27, Renaud de Villemeur > escribió: > > Hi Guille. > > It's a good news to see the community is moving forward. > > What would be the impact on Pharo catalog ? The instruction still advise to > upload information to smalltalkhub: >

[Pharo-users] [ANN] SmalltalkHub Deprecation Notice

2020-04-03 Thread Guillermo Polito
SmalltalkHub Deprecation Notice SmalltalkHub is now getting old and it is time to deprecate it. We plan to replace it by a static file server during 2020. The public data will still be readable and consumable from monticello clients, but modifications will not be allowed in the near future.

Re: [Pharo-users] Unicode migration from SmalltalkHub to Github

2020-04-01 Thread Guillermo Polito
Thanks Alistair!! > El 1 abr 2020, a las 11:57, Alistair Grant escribió: > > Hi Sven and All, > > We have a need to migrate the Unicode library > (http://smalltalkhub.com/#!/~Pharo/Unicode) to github (for our release > tagging process). > > I've imported the code, with full history, in to: >

Re: [Pharo-users] Pharo on a chromebook?

2020-04-01 Thread Guillermo Polito
Yes, I’ve heard some other people doing similar stuff. I put in cc Olivier, maybe he can share a bit more if he has time :) Guille > El 1 abr 2020, a las 1:40, tbrunz escribió: > > Hi Paul, > > It *is* possible! I've got it running on one of my Chromebooks, a Pixelbook > model. (I gave my

Re: [Pharo-users] UFFI code problem

2020-04-01 Thread Guillermo Polito
> El 1 abr 2020, a las 9:31, Esteban Lorenzano escribió: > > There has been a change in how the constant values needs to be declared > (because in a 64bit environment, you cannot “guess” the type by its value: 42 > can be (int32)42 or (int64)42. > Hence, you need to be explicit on the

[Pharo-users] [ANN] Complishon: efficient heuristics for code completion

2020-03-31 Thread Guillermo Polito
Hi all, Since yesterday, Pharo 9 contains a new alternative code completion engine. The idea behind this engine is to be pluggable, to be efficient and to be more accurate through the introduction of heuristics. The completion engine implements a couple of nice heuristics, like - chances are

[Pharo-users] Today 27/03/2020: Pharo Sprint!

2020-03-27 Thread Guillermo Polito
Hi all, Today we are having a dematerialized Pharo sprint. # What is this sprint thingy? We join. We fix bugs. We discuss about fixing bugs. We add documentation. We review issues and pull requests. We make Pharo better for us and for everybody else :). # How is this sprint thing going on?

Re: [Pharo-users] Versioning and packaging?

2020-03-23 Thread Guillermo Polito
Hi Bob, > El 21 mar 2020, a las 18:26, Rob Raisch escribió: > > I’ve noticed that the majority of projects in which I have an interest, from > any repository, like Moose or PetitParser, fail to load into Pharo 8.0 > throwing errors related to missing requirements. This is probably because

[Pharo-users] [ANN] uFFI Booklet v1.0

2020-02-12 Thread Guillermo Polito
Hi all, We have been working a lot in the last months in the documentation of uFFI, and we are happy to announce a first stable version of it that you’ll find in a link below :) The booklet talks about uFFI, how to use it, how marshalling works, how to use structures, unions, etc. And it is

Re: [Pharo-users] The results are in!

2020-02-10 Thread Guillermo Polito
Hi Ben, > El 9 feb 2020, a las 21:01, Ben Coman escribió: > > > This list is for people to *ask* questions about Pharo. Not to diffuse any > > kind of propaganda (pharo related or not). > > This list is not just for asking questions. There are plenty of [ANN] posts > advertising new

Re: [Pharo-users] The results are in!

2020-02-08 Thread Guillermo Polito
they aren't welcoming to people who just want to learn general > things. > > I've told my readers that the Pharo users forum is welcoming. Please don't > make a liar out of me. > > > > Guillermo Polito wrote >> Hi Richard, >> >> I’d like to invite

Re: [Pharo-users] The results are in!

2020-02-08 Thread Guillermo Polito
Hi Richard, I’d like to invite you to refrain yourself from posting such off-topic messages in the future. This list is for people to *ask* questions about Pharo. Not to diffuse any kind of propaganda (pharo related or not). You’re not asking a question about Pharo, nor answering a question

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

2020-01-29 Thread Guillermo Polito
Yeap, sorry Kasper, I was more concentrated on answering to Christophe than to you ^^. > El 29 ene 2020, a las 9:08, Kasper Østerbye > escribió: > > Thanks for all the feedback on zebra stribes. > > What I meant as the learning experience was not so much the stribes > themselves, but the

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

[Pharo-users] Short Survey about automatic deprecation rewrites

2020-01-21 Thread Guillermo Polito
Hi all, We would like to share with you a short survey about the automatic deprecation rewrites that have been around since Pharo 6. It will be super useful for us to enhance the support for migrations. We estimate it will take ~< 3 minutes to fill. This survey is aimed at people both *using*

Re: [Pharo-users] Pillar in-image rendering (was: String concatenation vs. Stream)

2019-10-21 Thread Guillermo Polito
On Sat, Oct 19, 2019 at 1:40 PM Kasper Østerbye wrote: > My main *remaining issue is to do tables* somehow. Any hints on how to > render tables inside a text? > Hi Kasper, some intuition from my part for this. What if instead of putting tables into text you put text into tables ;). In other

Re: [Pharo-users] PharoADO

2019-10-16 Thread Guillermo Polito
Thanks Tomaz! This is great :) Nice docs too! > El 15 oct 2019, a las 21:36, eftomi escribió: > > Dear all, > > A working prototype of PharoADO is now available at > https://github.com/eftomi/pharo-ado. I'd be glad if you can find the time to > test it and report your observations to this

Re: [Pharo-users] FFI beginner question

2019-09-24 Thread Guillermo Polito
> El 24 sept 2019, a las 4:35, Richard O'Keefe escribió: > > What I want to do is to create a binding for the SoftPosit library. > A typical function has an interface like >quire16_t q16_fdp_add(quire16_t, posit16_t, posit16_t); > where >typedef struct { uint16_t v; }

[Pharo-users] Pumping FFI documentation [WAS] FFI beginner question

2019-09-24 Thread Guillermo Polito
Hi Ted, I split this in a separate thread to avoid noise :) > El 23 sept 2019, a las 23:14, Brainstorms escribió: > > Guillermo, > > I'm interested in helping, but at this point, I think I'd be most helpful > working at improving documentation (mainly editing) rather than working on > Pharo

Re: [Pharo-users] FFI beginner question

2019-09-23 Thread Guillermo Polito
ithub.com/pharo-project/pharo/issues/4695> Of course, if somebody wants to help, you’re welcome to :) Guille > El 23 sept 2019, a las 13:59, Guillermo Polito > escribió: > > Just more detail into it: > > - the source code of the booklet, written in Pillar, resi

Re: [Pharo-users] FFI beginner question

2019-09-23 Thread Guillermo Polito
Just more detail into it: - the source code of the booklet, written in Pillar, resides in here: https://github.com/SquareBracketAssociates/Booklet-uFFI - I’ve been in the last weeks doing a pass on it (see branch version2

Re: [Pharo-users] uFFI ExternalAddress challenges

2019-09-17 Thread Guillermo Polito
Hi Tomaz, Have you checked Win32WideString in Pharo7/8 and its users? You can do aWindowsWideString := ‘a wide string’ asWin32WideString. And then check the senders of Win32WideString, you will find you can declare ffi signatures like this removeEnvironmentVariable: nameString ^

Re: [Pharo-users] uFFI ExternalAddress challenges

2019-09-11 Thread Guillermo Polito
> El 11 sept 2019, a las 11:43, Tomaž Turk escribió: > > > Well, the pointer survives, the area of memory pointed by that pointer > > will be recycled with subsequent calls in general. > > I'll pay special attention to that, but it's probably a matter of properly > creating and releasing

Re: [Pharo-users] uFFI ExternalAddress challenges

2019-09-11 Thread Guillermo Polito
> El 11 sept 2019, a las 11:07, Tomaž Turk escribió: > > Hi, thanks for your quick reply. no problem ;) > I found the culprint while writing this email :-) Cool! > > Generally, what I'm trying to do is to make a very basic package to create > and communicate with COM components on

Re: [Pharo-users] uFFI ExternalAddress challenges

2019-09-11 Thread Guillermo Polito
Hi Thomas, Can you share more about the definition of your CallMethod function in C? From the uFFI point of view the binding looks ok… How are you opening Pharo? From the command line or the pharo launcher? Are you on cygwin/mingw? One other possibility (since you’re playing with C libraries)

Re: [Pharo-users] [ANN] Pharo Pomodoro now on GitHub

2019-08-13 Thread Guillermo Polito
Thanks Torsten! Is it pure morphic or you’ve updated it to spec? This could be a nice little example to show the mechanisms to do async ui update. > El 13 ago 2019, a las 12:10, Torsten Bergmann escribió: > > I migrated my Pomodoro timer project to GitHub now: > >

  1   2   3   4   >