CyrilFerlicot

Results 396 comments of CyrilFerlicot

Oh, apparently it does but since there is a delay and no feedback we don't know it does. Maybe we could notify the user that the action was launched.

This is a ProcessWrapper bug. A workaround is to reboot the computer.

The problem is that currently, it's possible to update Metacello in very old Pharo because they can manage metadata full file tree. If Metacello move to a Metadataless format we...

Hi @krono I think it's one of the reasons why it's with the "question" tag. Can you explain the current situation of Metacello for squeak please? Personally, I don't know...

In any case, please add a spinner or something like that :)

I have the same problem on Windows 11. When I launch the launcher, I have a pharo VM in the background process, but the launcher never shows and there is...

I found a std_err file next to the launcher image with this content: ```st  Process>>doTerminationFromAnotherProcess Process>>terminate PhLImageDescriptionUpdater>>terminateProcess PhLImageDescriptionUpdater>>image:description: PhLImageDescriptionUpdater class>>image:description: PhLImageDetailPresenter>>updateImageDescription: [ :text | self updateImageDescription: text ] in...

```Smalltalk replace: '``@a < ``@b ifTrue: [``@a] ifFalse: [``@b]' with: '``@a min: ``@b'; replace: '``@a ``@b ifTrue: [``@a] ifFalse: [``@b]' with: '``@a max: ``@b'; replace: '``@a >= ``@b ifTrue: [``@a]...

Maybe add also a new cleaner *after* doing the #min:max: one.

I succeeded to change the tracking strategy using this piece of code: ```Smalltalk MyApp class>>initialize ^ (WAAdmin register: self asApplicationAt: self appName) preferenceAt: #sessionClass put: MDLDemoSession; preferenceAt: #trackingStrategy put: WACookieForBrowserIPForCrawlerTrackingStrategy...