[Pharo-users] Re: [ANN] class-diff: a new tool for comparing classes

2024-07-23 Thread Hernán Morales Durand
so do something clever to log that you loaded a baseline - but not > show all the code loaded? > > I'm curuious on this - and possibly its PR we should submit? > > Tim > > On Mon, 22 Jul 2024, at 7:57 AM, Hernán Morales Durand wrote: > > Dear Pharo community, > > I am happ

[Pharo-users] Re: [ANN] class-diff: a new tool for comparing classes

2024-07-23 Thread Hernán Morales Durand
and second cases are the ones I want to tell apart so that I > don't spend any time looking > for differences that aren't there. > > What's the best way to learn how to use Spec2? > > On Mon, 22 Jul 2024 at 18:58, Hernán Morales Durand > wrote: > > > > Dear Pharo community,

[Pharo-users] [ANN] class-diff: a new tool for comparing classes

2024-07-22 Thread Hernán Morales Durand
Dear Pharo community, I am happy to present a new tool designed specifically for comparing classes in Pharo. It provides a two-sided list of methods, so you can quickly understand the relationships between two classes. The project location is on GitHub: https://github.com/hernanmd/class-diff

[Pharo-users] [ANN] omz-plugin-browser

2024-07-15 Thread Hernán Morales Durand
Dear Pharo Community, I'm excited to announce the release of omz-plugin-browser, a tool designed to simplify Oh-My-Zsh plugin management in Pharo. This user-friendly graphical interface allows you to effortlessly list, enable, and disable Oh-My-Zsh plugins, streamlining your development workflow.

[Pharo-users] [ANN] Package Formulas v1

2024-05-17 Thread Hernán Morales Durand
Hi everyone. I've updated package formulas to work with Pharo 12 and Pharo 13. You can find the project here: https://github.com/hernanmd/package-formulas Let me know if there's any features you would like to see implemented. Cheers, Hernán

[Pharo-users] Re: Squeak By Example 5.3 book

2023-01-22 Thread Hernán Morales Durand
Probably you'd like to ask the Squeak mailing list instead of Pharo mailing list? Cheers, Hernán El vie, 20 ene 2023 a las 23:46, escribió: > There is a new edition of Squeak by Example which is now 5.3. Amazon is > selling only the old edition from 2011. Can I upload the SBE 5.3 edition >

[Pharo-users] [ANN] PI version 0.7

2022-12-30 Thread Hernán Morales Durand
Hello "PI", which stands for "Pharo Install", is a command line interface (CLI) to query and install Pharo packages: https://github.com/hernanmd/pi. With PI you can install Pharo packages in a unix-like shell command line interface. For example: $ pi install ISO3166 To get your repository

[Pharo-users] file-dialog

2022-08-31 Thread Hernán Morales Durand
Hi everyone, I've been working to "rescue" the new file-dialog originally published by Peter Uhnak with additions of other contributors. This should load in Pharo 10 and 11: https://github.com/hernanmd/file-dialog One thing I've been doing is trying to use it a little bit to evaluate its

[Pharo-users] [ANN] Stemmer uFFI binding

2022-08-30 Thread Hernán Morales Durand
Hello, Stemming is a well-known technique for information retrieval which maps different forms of the same word to a common "stem". This, for example, enables the grouping of words with the same root. This new package provides a Pharo uFFI wrapper for the fast thread-safe C library

[Pharo-users] [ANN] Ethnologue

2022-08-22 Thread Hernán Morales Durand
Hi everyone, This new project is an object model to access information about 7,500 languages from the Ethnologue data in Pharo. The Ethnologue database is the most authoritative source of information on languages around the world and includes the most comprehensive database about languages. In

[Pharo-users] [ANN] Badges

2022-08-17 Thread Hernán Morales Durand
Dear all, I'd like to share a new Spec app for building badges made with Pharo 10. It is based on the Shields.io badge service provider. Select the badges you want, complete the required variables, and get your badge(s). You can also save and load commonly used variables, so it may help a bit to

[Pharo-users] [ANN] Shoco uFFI library

2022-08-15 Thread Hernán Morales Durand
Hi everyone, I just wanted to share a small Pharo wrapper for a string compression C library called "Shoco", implemented as a uFFI library. You can check it out basic usage and information at: https://github.com/hernanmd/libshoco Best, Hernán

[Pharo-users] [ANN] Package Formulas

2022-08-12 Thread Hernán Morales Durand
Hi everyone, I have spent some time creating a new package manager UI for Pharo 10 to simplify package finding and installation. It is a Spec application which introduces a new concept: Package Formulas. These are just annotated methods with an installation expression, so they do not depend on

[Pharo-users] Re: [ANN] P3 version 1.4

2022-06-16 Thread Hernán Morales Durand
Hi Sven, I haven't had a chance to use it yet but the project looks very complete, thank you very much for sharing. Cheers, Hernán El mar, 31 may 2022 a las 12:09, Sven Van Caekenberghe () escribió: > Hi, > > There is a new release of P3, the modern, lean and mean PostgreSQL client > for

[Pharo-users] Re: BlockClosure folding

2022-03-15 Thread Hernán Morales Durand
moment. > > You could also implement logic for #or: using #+ and: #anySatisfy: for > example, but need to safeguard against mixing both conditions. > > On Mon, 14 Mar 2022 at 22:29, Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > >> I think I saw a coding patte

[Pharo-users] Re: BlockClosure folding

2022-03-15 Thread Hernán Morales Durand
Exactly. This was what I was looking for. Thank you Sean. Hernán El mar, 15 mar 2022 a las 19:15, escribió: > ComplexCondition as described in Andres Valloud, "A Mentoring Course on > Smalltalk" > > is available

[Pharo-users] BlockClosure folding

2022-03-14 Thread Hernán Morales Durand
I think I saw a coding pattern a while ago that allows you to do the following: cond1 , cond2 , cond3 , cond4 And providing a kind of folding selector condition #and: you would get: [ cond1 and: [ cond2 and: [ cond3 and: [ cond4 ] ] ] ]. for example: conditions := [ : each | each firstName =

[Pharo-users] [ANN] license selector

2021-12-05 Thread Hernán Morales Durand
Hi everyone, Today I released license-selector, a little Pharo Spec based application to browse available licenses from the SPDX list (Software Package Data Exchange, an open standard now published as ISO). It is also possible to get updates for new licenses and export the license text to a file.

[Pharo-users] [ANN] reprex-it

2021-11-29 Thread Hernán Morales Durand
Hi all, I released reprex-it, an evaluator of Pharo code to formatted expressions, useful for sharing evaluated scripts on Github or Discord for example, or Microdown/Pillar books. Check the usage demo at the repository at https://github.com/hernanmd/reprex-it Please let me know what you think,

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

2021-11-29 Thread Hernán Morales Durand
the inspector pane? Or you by default > always use histograms on every numerical column? > > Exactly, only numeric columns get histograms. Hernán > G > > El 27 nov 2021, a las 17:23, Hernán Morales Durand < > hernan.mora...@gmail.com> escribió: > > Hi everyone,

[Pharo-users] [ANN] DataFrame Inspector

2021-11-27 Thread Hernán Morales Durand
Hi everyone, I am glad to announce the first release of Data Inspector, a Pharo inspector extension to operate and view DataFrame multiple information in a same inspector view https://github.com/pharo-ai/data-inspector You may find installation instructions, features list, and example usage

[Pharo-users] Comparing source code declarations with #=

2021-04-22 Thread Hernán Morales Durand
Hi, I want to compare Pharo (8) source code definitions. One source is already "filed in" the image and the other source is in a .st file in chunk format (the result of a file out). I've attached in this mail an example for reproducibility. In my search for a simple equality operator, I found

[Pharo-users] [ANN] Merlin to GitHub

2021-04-21 Thread Hernán Morales Durand
Hi I just ported Merlin to Github with the GitMigrator. Please let me know if you want me to transfer the repository since this is mostly work of the Moose Team. https://github.com/hernanmd/merlin Cheers, Hernán

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

2021-03-11 Thread Hernán Morales Durand
Congratulations :-) Hernán El jue, 11 mar 2021 a las 7:34, Serge Stinckwich (< serge.stinckw...@gmail.com>) escribió: > Dear all, > > great news I want to share with you: Pharo has been selected to be part of > GSOC 2021 > > >

[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-26 Thread Hernán Morales Durand
You mean something like this? https://github.com/hernanmd/MetacelloFileDownload El mar, 26 ene 2021 a las 23:57, Tim Mackinnon () escribió: > Hi - I’m trying to create a baseline for my project so that it includes a > dependent repository that has some assts but no code. Is there a way to do >

[Pharo-users] Re: GSOC 2021

2020-11-17 Thread Hernán Morales Durand
Hi Serge, I tried to register but it says "coming soon": https://summerofcode.withgoogle.com/terms/mentor I can help to write some proposals. Cheers, Hernán El lun., 26 oct. 2020 a las 23:05, Serge Stinckwich (< serge.stinckw...@gmail.com>) escribió: > GSOC 2021 is out:

[Pharo-users] Re: [Pharo-dev] [Ann] Pharo new version available & mooc needs subtitle translaters

2020-11-09 Thread Hernán Morales Durand
El mié., 4 nov. 2020 a las 5:30, Stéphane Ducasse (< stephane.duca...@inria.fr>) escribió: > Hello > > We are about to launch the new version of the Pharo mooc. Spread the word > around you. It will open the 9th of november > https://www.fun-mooc.fr/courses/course-v1:inria+41024+session01/about >

[Pharo-users] Re: how can I improve this

2020-09-14 Thread Hernán Morales Durand
Hi Roelof, Maybe something like this: String>>hammingDistanceTo: aString " Answer the amount of substitutions between the receiver and aString. Both must be of equal length " ^ (1 to: self size) count: [ : i | (self at: i) ~= (aString at: i) ] El lun., 14 sept. 2020 a las

Re: [Pharo-users] Cmd+s in P8 not captured using Commander (works in P9) and SpTextPresenter

2020-08-01 Thread Hernán Morales Durand
For the record, a workaround is to send #whenTextIsAcceptedDo: to the SpTextPresenter. Cheers, Hernán El jue., 30 jul. 2020 a las 0:10, Hernán Morales Durand (< hernan.mora...@gmail.com>) escribió: > I found a difference in shortcut handling between Pharo 8 and Pharo 9 > w

[Pharo-users] Cmd+s in P8 not captured using Commander (works in P9) and SpTextPresenter

2020-07-29 Thread Hernán Morales Durand
I found a difference in shortcut handling between Pharo 8 and Pharo 9 which you can reproduce with the attached minimum working example. In the example, the halt in the Command's #execute method in P9 is sent but not in P8. SpComm2SaveTextMWE show. The problem seems to be Pharo 8 doesn't execute

Re: [Pharo-users] A question concerning Nautilus

2020-07-13 Thread Hernán Morales Durand
Hi Rene, Nautilus was replaced in Pharo 8 by Calypso (ClyFullBrowser) Cheers, Hernán El lun., 13 jul. 2020 a las 11:42, Rene Paul Mages (ramix) (< ph...@rmages.com>) escribió: > Hello, > > In the chapter 2 ( A quick tour of Pharo ) of this book : > >

Re: [Pharo-users] Diacritics in github

2020-07-13 Thread Hernán Morales Durand
Hi Alistair, You can install it like this from Github: Metacello new baseline: 'Diacriticals'; repository: 'github://hernanmd/Diacriticals'; load Cheers, Hernán El lun., 13 jul. 2020 a las 10:19, Alistair Grant () escribió: > Hi All, > > Is anyone aware of a port of Diacritics

Re: [Pharo-users] [ANN] Launchpad v3.0.0 [v3.0.0] released!

2020-06-30 Thread Hernán Morales Durand
Hi guys, First thank you for sharing this. Seems to be very useful. I found the Example Handler is missing in the How To: https://github.com/ba-st/Launchpad/blob/release-candidate/docs/HowTo.md Should I look somewhere else? Cheers, Hernán El lun., 29 jun. 2020 a las 14:16, Buenos Aires

Re: [Pharo-users] [Pharo-dev] [ANN] PharoPro

2020-06-17 Thread Hernán Morales Durand
Hi Norbert, This is really good news for the community. I wish you all the best for this initiative! Cheers, Hernán El mié., 17 jun. 2020 a las 5:35, Norbert Hartl () escribió: > Dear community, > > we are very proud to announce the availability of PharoPro, a company that > offers

Re: [Pharo-users] shape file reading

2020-06-06 Thread Hernán Morales Durand
Done! Cheers Hernán El sáb., 6 jun. 2020 a las 3:17, Stéphane Ducasse (< stephane.duca...@inria.fr>) escribió: > Please add this to the readme :) > > > On 5 Jun 2020, at 23:19, Hernán Morales Durand > wrote: > > > > El vie., 5 jun. 2020 a las 9:27, Bave

Re: [Pharo-users] shape file reading

2020-06-05 Thread Hernán Morales Durand
El vie., 5 jun. 2020 a las 9:27, Baveco, Hans () escribió: > Well, it appears that simple direct downloading does not download the real > shapefile. Taking care to actually get a shapefile, the result loads > without problems. > > ne_110m_populated_places.shp is a PointShape with 243 shapes

[Pharo-users] Fwd: GIS support for Pharo

2020-06-05 Thread Hernán Morales Durand
-- Forwarded message - De: Hernán Morales Durand Date: vie., 5 jun. 2020 a las 16:54 Subject: Re: [Pharo-users] GIS support for Pharo To: Baveco, Hans El vie., 5 jun. 2020 a las 4:27, Baveco, Hans () escribió: > Thanks Hernan! > > > > I will try to find out w

Re: [Pharo-users] GIS support for Pharo

2020-06-05 Thread Hernán Morales Durand
El vie., 5 jun. 2020 a las 5:03, Stéphane Ducasse (< stephane.duca...@inria.fr>) escribió: > Serge I was thinking that it would be good to create pharo-gis > organisation. > What do you and the others think? > > I think it is a good idea! Cheers, Hernán > S > > On 5 Jun 2020, at 03:46, Serge

Re: [Pharo-users] GIS support for Pharo

2020-06-04 Thread Hernán Morales Durand
Hi Stef El jue., 4 jun. 2020 a las 11:21, Stéphane Ducasse (< stephane.duca...@inria.fr>) escribió: > It would be good to have the related package under an umbrella. > For example I can spend some time packaging hans package on github but > only if it helps. > I already migrated to Pharo and

Re: [Pharo-users] GIS support for Pharo

2020-06-04 Thread Hernán Morales Durand
Hi Hans, El jue., 4 jun. 2020 a las 6:07, Baveco, Hans () escribió: > Would be an interesting project.. > > An old link to possibly still useful code: > > > > http://wiki.squeak.org/squeak/3317 > > > > > > Btw the shapefile support, from the ESRI spec, was done by me and is still > available on

Re: [Pharo-users] GIS support for Pharo

2020-06-04 Thread Hernán Morales Durand
El jue., 4 jun. 2020 a las 9:16, Serge Stinckwich (< serge.stinckw...@gmail.com>) escribió: > OpenGIS is an object-oriented meta-model for GIS. There is no > implementation in Pharo but can give a good blueprint if we want to do > something like that. > > I’m GMT+8. So a meeting Thursday at 9am

Re: [Pharo-users] ESRI ASCII raster format

2020-06-03 Thread Hernán Morales Durand
I think we could also use the GeoJSON package? I did a little example with the package from the zweidenker repository Metacello new baseline: 'GeoJSON'; repository: 'github://zweidenker/GeoJSON'; load. and use it like this: | url file | url :=

Re: [Pharo-users] Preserving Pharo Window state between sessions

2020-05-05 Thread Hernán Morales Durand
What happened with the HostWindowProxy? El mar., 5 may. 2020 a las 15:32, Esteban Maringolo () escribió: > Is there a way to preserve the window state after saving the image on > quit and restarting it again? > > If I save my image window maximized I would like it to be maximized > when

Re: [Pharo-users] [Pharo-dev] looking for input for a lecture on TDD and XtremeTDD

2020-04-14 Thread Hernán Morales Durand
Hi Stef, One of the funniest talks about TDD is the one from Hernán Wilkinson : https://youtu.be/x4CXWBW5fMo (minute 29 starts the TDD coding show) It's in Argentine Spanish dialect, but it's worth to see. Cheers, Hernán El mar., 14 abr. 2020 a las 9:36, Stéphane Ducasse (<

Re: [Pharo-users] Status of Marea?

2020-04-10 Thread Hernán Morales Durand
AIK that is already in Cog since some time). > > Let me know if that helps, > > > > On Fri, Apr 10, 2020 at 5:25 PM Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > >> Hi everyone, >> >> Just checking what it would take to update Marea for a produc

[Pharo-users] Status of Marea?

2020-04-10 Thread Hernán Morales Durand
Hi everyone, Just checking what it would take to update Marea for a production environment in Pharo 8 or Pharo 9 or beyond. The last repo link I found is this: http://ss3.gemstone.com/ss/Marea.html And I couldn't find other codebase in the Mariano's Github repo. Any updates out there? Cheers,

Re: [Pharo-users] Corona virus

2020-03-16 Thread Hernán Morales Durand
way, thanks for doing this and sharing it. > > Tim > > On 16 Mar 2020, at 15:04, Hernán Morales Durand > wrote: > > Hi Tim, and others > > Some weeks ago I started a GitHub repo for COVID-19 analysis with Pharo : > https://github.com/hernanmd/COVID-2019 > > A go

Re: [Pharo-users] Corona virus

2020-03-16 Thread Hernán Morales Durand
Hi Tim, and others Some weeks ago I started a GitHub repo for COVID-19 analysis with Pharo : https://github.com/hernanmd/COVID-2019 A good mindset before digging into the massive amount of info is to define what you can/want to do: 1 - In detection & diagnosis (if you understand CRISPR,

Re: [Pharo-users] Corona virus

2020-03-14 Thread Hernán Morales Durand
Hi guys, There is a group working in open source mode against COVID-19 https://itsfoss.com/opencovid19/ You may join if you want to help. Cheers, Hernán El sáb., 14 mar. 2020 a las 14:15, Davide Grandi () escribió: > That's true, > > and it will be a worldwide pandemia. > Try to work @ home,

Re: [Pharo-users] [Lse-pharo4pharo] How to get a list of package versions?

2020-03-12 Thread Hernán Morales Durand
(< stephane.duca...@inria.fr>) escribió: > Hi hernan > > I understand exactly your question :) > Because we need to have metadata inside the package. > I hope that the renewed effort around pakbot will address this point. > > On 12 Mar 2020, at 04:22, Hernán Morales Durand &

[Pharo-users] How to get a list of package versions?

2020-03-11 Thread Hernán Morales Durand
Hi there, I would like to compare two Pharo deployed images. Specifically, get a list/tree of the installed packages with their version number each one, so I can compare if there were updates between both deployments. I started by doing IceRepository registry collect: #workingCopy Then

[Pharo-users] [ANN] COVID-19 analysis in Pharo

2020-02-29 Thread Hernán Morales Durand
Hello, I have set up a new Pharo project for the analysis of COVID-19 outbreak: https://github.com/hernanmd/COVID-2019 Thanks to the ObjectProfile for Roassal and PolyMath contributors for the DataFrame package. Cheers, Hernán

Re: [Pharo-users] [Lse-pharo4pharo] Alignment visualization performance

2020-02-22 Thread Hernán Morales Durand
Done here : https://github.com/pharo-project/pharo/issues/5737 Cheers, Hernán El sáb., 22 feb. 2020 a las 5:22, Stéphane Ducasse (< stephane.duca...@inria.fr>) escribió: > could you open a bug entry and we will tag it for large images. > > On 21 Feb 2020, at 06:40, Hernán

[Pharo-users] Alignment visualization performance

2020-02-20 Thread Hernán Morales Durand
Hello guys. I want to visualize DNA sequence alignments in Pharo 8. For this task most bioinformatics applications set a background color for each letter. But in Pharo the Inspector is too slow to open even for just one small sequence of 1Kb. Consider now there are about 37k sequences of COVID-19

Re: [Pharo-users] Test method auto-generation in Calypso

2020-02-01 Thread Hernán Morales Durand
Well, it took some time but I created an issue and dirty implementation proposal: https://github.com/pharo-ide/Calypso/issues/498 Cheers, Hernán El mié., 9 oct. 2019 a las 1:57, Hernán Morales Durand (< hernan.mora...@gmail.com>) escribió: > Hi Denis, > > El vie., 4 oct.

Re: [Pharo-users] Pharo image processing library

2020-01-26 Thread Hernán Morales Durand
Hi Pablo, I did some experiment with the Form class some time ago, maybe you can borrow something from here: https://80738163270632.blogspot.com/2018/10/pharo-script-of-day-proto-proto-image.html Hernán El sáb., 25 ene. 2020 a las 13:42, Pablo Navarro () escribió: > Hi everyone! Thanks for

Re: [Pharo-users] Annonce Pharo-LibVLC

2020-01-12 Thread Hernán Morales Durand
Hi Benoit, Thank you for publishing this one! This is how I installed: Iceberg remoteTypeSelector: #scpUrl. Metacello new baseline: 'VLC'; repository: 'github://badetitou/Pharo-LibVLC'; load. However I got this warning on Mac: This package depends on the following classes: VLCLibrary

Re: [Pharo-users] How can we celebrate the 50th anniversary of Smalltalk?

2020-01-05 Thread Hernán Morales Durand
Hi there, Maybe people is thinking about a great celebration idea :) Cheers, Hernán El dom., 5 ene. 2020 a las 1:07, horrido () escribió: > horrido wrote > > > https://medium.com/@richardeng/how-can-we-celebrate-the-50th-anniversary-of-smalltalk-e6b35dbc09a9 > > Amazingly, no one has any

Re: [Pharo-users] thesis on using ML for Pharo code completion

2019-12-06 Thread Hernán Morales Durand
Hi Myroslava, I read your post (actually a few of them) and I have some questions: - I was surprised to read about n-gram model because at least in NLP was outperformed by modern DL approaches. But then I read you considered RNN (and maybe attention model?) so it sounds really interesting. - Do

Re: [Pharo-users] Script to download specific Pharo version

2019-11-03 Thread Hernán Morales Durand
Hi Bruno El lun., 21 oct. 2019 a las 18:39, BrunoBB () escribió: > Hi, > > We have a Linux script to build our image and was working well until > recently. > It seems that the failure is related (not confirmed yet) to > https://github.com/pharo-project/pharo/issues/4764 > > Becuase it fail to

Re: [Pharo-users] ZnCharacterReadWriteStream error?

2019-10-26 Thread Hernán Morales Durand
Hello Eric, I couldn't reproduce it on Linux, all tests pass ok. Are you using Pharo 7? Could you post how you're installing it? The only thing which seems "strange" are three Zn test methods overrides, but after merging them no problems. Cheers Hernán El sáb., 26 oct. 2019 a las 15:24, Eric

Re: [Pharo-users] Glorp + P3 + SQLite

2019-10-20 Thread Hernán Morales Durand
Hi Todd, El sáb., 19 oct. 2019 a las 13:11, Todd Blanchard via Pharo-users (< pharo-users@lists.pharo.org>) escribió: > I should probably mention that I do not really have a great handle on how > package configurations work these days. > > Coming back to Smalltalk after a long time away. > >

Re: [Pharo-users] Smallest docker image for pharo >=7 ?

2019-10-17 Thread Hernán Morales Durand
docker image thin, but also to keep layers at a > minimum and not adding / removing stuff during the build, because those are > stored in the middle layers (multi stage helps to remove that). > > Cool!! Thank you Julián, Cheers, Hernán > Cheers. > > On Tue, 15 Oct 2019 at 2

Re: [Pharo-users] Smallest docker image for pharo >=7 ?

2019-10-15 Thread Hernán Morales Durand
El lun., 14 oct. 2019 a las 5:23, Pierce Ng () escribió: > On Mon, Oct 14, 2019 at 04:07:49AM -0300, Hernán Morales Durand wrote: > > Because I am lazy and want to avoid searching through all DockerHub > > repository pages... Do you know a Dockerfile to generate the smallest >

[Pharo-users] Smallest docker image for pharo >=7 ?

2019-10-14 Thread Hernán Morales Durand
Hi guys, Because I am lazy and want to avoid searching through all DockerHub repository pages... Do you know a Dockerfile to generate the smallest possible docker image for Pharo? I am also interested in which stage you use to install packages into the image, and why? Do you copy the contained

Re: [Pharo-users] Test method auto-generation in Calypso

2019-10-08 Thread Hernán Morales Durand
h for your idea. > > I will keep you noticed Hernán Best regards, > Denis > > ср, 25 сент. 2019 г., 5:07 Hernán Morales Durand >: > >> Hi, >> >> I have this idea of typing a method in a Browser and have another code >> area in the same bro

Re: [Pharo-users] Test method auto-generation in Calypso

2019-10-08 Thread Hernán Morales Durand
Hi Stephan El vie., 4 oct. 2019 a las 4:40, Stephan Eggermont () escribió: > Hernán Morales Durand > wrote: > > Hi, > > > > I have this idea of typing a method in a Browser and have another code > area > > in the same browser where the method

Re: [Pharo-users] [cormas-dev] OpenPonk ported to Pharo 7

2019-10-08 Thread Hernán Morales Durand
to load all OpenPonk-Spec categories except OpenPonk-Spec-Commands. Cheers, Hernán El mar., 8 oct. 2019 a las 11:03, Hernán Morales Durand (< hernan.mora...@gmail.com>) escribió: > Hi Serge, > > Noy yet sadly, what I did was to make the changes to make OpenPonk just > l

Re: [Pharo-users] Test method auto-generation in Calypso

2019-09-30 Thread Hernán Morales Durand
Ok, any hint to split the code area in Calypso at least? Salut! Hernán El mié., 25 sept. 2019 a las 1:06, Hernán Morales Durand (< hernan.mora...@gmail.com>) escribió: > Hi, > > I have this idea of typing a method in a Browser and have another code > area in the same browse

[Pharo-users] Test method auto-generation in Calypso

2019-09-24 Thread Hernán Morales Durand
Hi, I have this idea of typing a method in a Browser and have another code area in the same browser where the method test is "automagically generated". This is, divide the current method pane in two: One for the method being written itself, and another for its test, where at least the method

Re: [Pharo-users] My Pharo Wiki

2019-09-18 Thread Hernán Morales Durand
Hello Julien and Sean, Thank you for sharing this, it should be more promoted. Cheers, Hernán El lun., 9 sept. 2019 a las 15:39, Julien () escribió: > Hello Sean, > > Nice work. :-) > > Do you know about pharo-open-documentation/pharo-wiki [1] ? > > With Cyril and Oleks, we started it to

Re: [Pharo-users] Introduction GSoC 2019

2019-06-17 Thread Hernán Morales Durand
Hi Nina, This is very important for the community. If you want to check graph layouting applied to cancer research this is a good project to grab ideas from: http://bioinfo-out.curie.fr/projects/dedal/#downloads And you can browse Cytoscape apps for more : http://apps.cytoscape.org/ Cheers,

Re: [Pharo-users] IceGenericError: Failed to connect to github.com: Interrupted system call

2019-06-10 Thread Hernán Morales Durand
lun., 10 jun. 2019 a las 8:00, Hernán Morales Durand (< hernan.mora...@gmail.com>) escribió: > Attached the Stack in FUEL format in case someone want to check it out > > Cheers, > > Hernán > > > > El dom., 9 jun. 2019 a las 20:25, Hernán Morales Durand (< > h

[Pharo-users] IceGenericError: Failed to connect to github.com: Interrupted system call

2019-06-09 Thread Hernán Morales Durand
Hi guys, In Pharo 7.0.3 I get an Iceberg error while cloning a repository. I tried to fix dependent repositories, I guess there is something weird in Diacriticals (https://github.com/hernanmd/Diacriticals) however I have no clue what's wrong there. I can reproduce it in a clean image by

Re: [Pharo-users] Pharo 7 minimal or headless

2019-05-12 Thread Hernán Morales Durand
Hi Esteban I cannot see any minimal 7.0 image in https://get.pharo.org/64/ yet. It should be accessible by doing? wget -O- https://get.pharo.org/64/70-minimal | bash Cheers, Hernán El jue., 9 may. 2019 a las 6:57, Esteban Lorenzano () escribió: > Yeah, but do not use that place :) > The

Re: [Pharo-users] How to make Metacello ignore package cache?

2019-04-26 Thread Hernán Morales Durand
ints to another issue: > a ConfigurationOf cannot really be used with a git repository ... a > ConfigurationOf should only be used with a http:// repo ... you should > be using a BaselineOf with a git repository ... > > Dale > > On 4/26/19 11:11 AM, Hernán Morales Durand wrote:

Re: [Pharo-users] How to make Metacello ignore package cache?

2019-04-26 Thread Hernán Morales Durand
d/GADM Cheers, Hernán > > Dale > > On 4/26/19 10:40 AM, Hernán Morales Durand wrote: > > Hi guys, > > > > Is there any way to tell Metacello to ignore the local package cache > > after a failed load? > > > > Say I tried to load: > >

[Pharo-users] How to make Metacello ignore package cache?

2019-04-26 Thread Hernán Morales Durand
Hi guys, Is there any way to tell Metacello to ignore the local package cache after a failed load? Say I tried to load: Metacello new configuration: 'MyConfig'; repository: 'github://hernanmd/MyPackage'; load. Then I figure the "repository" path is missing and I add it: Metacello

Re: [Pharo-users] Pharo refactoring rewrite tool?

2019-03-18 Thread Hernán Morales Durand
Hi Tim, Recently I've sent a PR to load MatchTool in P7, you may want to check it out: https://github.com/Uko/MatchTool Cheers, Hernán El dom., 17 mar. 2019 11:35 p. m., Tim Mackinnon escribió: > I recall there was a refactoring rewrite tool - but where is it in Pharo? > Is it something you

Re: [Pharo-users] Calypso openOnGroup?

2019-03-15 Thread Hernán Morales Durand
zation ] > > > вт, 12 мар. 2019 г. в 02:43, Hernán Morales Durand : >> >> Hi, >> >> Is there any way to open a browser on a method group in Claypso? >> >> This was possible in Nautilus: >> >> Smalltalk tools browser >> openOnCategory: #compiling >> ofClass: Class >> >> Cheers, >> >> Hernán >>

[Pharo-users] Calypso openOnGroup?

2019-03-11 Thread Hernán Morales Durand
Hi, Is there any way to open a browser on a method group in Claypso? This was possible in Nautilus: Smalltalk tools browser openOnCategory: #compiling ofClass: Class Cheers, Hernán

Re: [Pharo-users] Alternative to NautilusMethodSelected in Calypso

2019-03-08 Thread Hernán Morales Durand
Hi Gustavo, Is MacroRecorder available for Pharo 7? Cheers, Hernán El mar., 4 dic. 2018 a las 14:47, Gustavo Santos () escribió: > > Hello, > > I'm trying to upgrade MacroRecorder to Pharo7. > I used NautilusClassSelected and NautilusMethodSelected announcements to > apply a macro in a given

Re: [Pharo-users] Parsing text to discover general data of interest (phone, email, address, ...)

2019-03-07 Thread Hernán Morales Durand
Hi Cédrick, I wrote some years ago an interface to a named-entity recognizer: https://80738163270632.blogspot.com/2015/02/stner-interface-to-stanford-named.html I think that was Pharo 5, so you may want to check if there are load problems in current Pharo. The blogger post didn't parsed

Re: [Pharo-users] http://planet.smalltalk.org ?

2019-03-03 Thread Hernán Morales Durand
Hi Sven, Me too I used to track a lot of interesting blogs out there. At one time the main contact for the site was Coen de Roover : http://soft.vub.ac.be/~cderoove/ Maybe someone already wrote him to ask? Cheers, Herrnán El lun., 17 dic. 2018 a las 14:23, Sven Van Caekenberghe () escribió: >

Re: [Pharo-users] package extensions in Pharo 7.

2019-02-05 Thread Hernán Morales Durand
El mar., 5 feb. 2019 a las 8:07, Denis Kudriashov () escribió: > Hi Paul. > > вс, 3 февр. 2019 г., 19:57 PAUL DEBRUICKER pdebr...@gmail.com: > >> Hi - >> >> >> Is there a way to create the protocol, then convert it to an extension, >> without adding a method to it between the time I create the

Re: [Pharo-users] Github pharo-* organizations

2019-02-04 Thread Hernán Morales Durand
Hi Pierce, I am currently writing a command-line tool which queries pharo repositories using the GitHub API, and based on the repository tag. Maybe not exactly what you asked for but it's a start. You can find the tool at: https://github.com/hernanmd/pi Cheers, Hernán El lun., 4 feb. 2019 a

Re: [Pharo-users] Running test

2019-02-04 Thread Hernán Morales Durand
Windows 8.1 is ok Cheers, Hernán El lun., 4 feb. 2019 a las 18:46, Hilaire () escribió: > Hi, > > I need some testing on Mac OS and Windows, Linux should be fine, of a > new bundle for drgeo. > > It is there > https://www.dropbox.com/s/z2acnw1yi77q4ps/DrGeo.app-19.03a.zip?dl=0 > > I just need

Re: [Pharo-users] [vwnc] Falsehoods programmers believe about Smalltalk

2019-02-02 Thread Hernán Morales Durand
alltalkers hasn't learnt nothing or cannot share any knowledge. Cheers, Hernán [1] https://medium.com/worm-capital/the-ibm-hall-of-shame-a-semi-complete-list-of-bribes-blunders-and-fraud-19e674a5b986 > > My 0.01 > > -- > Cesar Rabak > > > > > > On Fri,

Re: [Pharo-users] Porting Github packages to Pharo 7

2019-02-01 Thread Hernán Morales Durand
Hi Tomo, Nice to know I wasn't so wrong :) Thank you for sharing your experience. Since we are few (than other techs) it is important to communicate and let others know. Cheers, Hernán El jue., 31 ene. 2019 a las 7:06, tomo () escribió: > Hernan, > > > Yes, ideally my package will work on both

Re: [Pharo-users] Porting Github packages to Pharo 7

2019-02-01 Thread Hernán Morales Durand
on the change you're doing you may want to have > one package per platform besides the core. > > When I was talking about a single branch I was talking about the so-called > master branch, not about creating a new branch (which was case 2) > > On Thu, Jan 31, 2019 at 10:29 AM

Re: [Pharo-users] Opening a System Browser

2019-01-31 Thread Hernán Morales Durand
alltalk tools browser open. > > This code expression is helpful to see and understand. > > My question goes further however -- to how we can open the browser to > display a specified method of a specified class (e.g. the 'factorial' > method of class 'Integer'). > > David >

Re: [Pharo-users] Opening a System Browser

2019-01-31 Thread Hernán Morales Durand
Hi David, This is the way: Smalltalk tools browser open. Cheers, Hernán El jue., 31 ene. 2019 a las 8:57, David Richards (< david.i.richards@gmail.com>) escribió: > From 2018-09-29-UpdatedPharoByExample.pdf page 20: > > [image: image.png] > > How to do this with Calypso? > >

Re: [Pharo-users] Porting Github packages to Pharo 7

2019-01-31 Thread Hernán Morales Durand
Hi Guillermo El jue., 31 ene. 2019 a las 6:08, Guillermo Polito (< guillermopol...@gmail.com>) escribió: > Hi Hernán, > > On Thu, Jan 31, 2019 at 8:20 AM Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > >> I would like your advice on this: Wha

[Pharo-users] Porting Github packages to Pharo 7

2019-01-30 Thread Hernán Morales Durand
I would like your advice on this: What's the effortless way to migrate Github repository from Pharo 6 to Pharo 7? I thought in the following solutions: 1) In a Pharo 6 image modify my BaselineOf, add & push a new package MyPackage-Pharo6, then load it into a Pharo 7 image, create

Re: [Pharo-users] Instance of ByteArray did not understand #isByteString in ZnUTF8Encoder

2019-01-26 Thread Hernán Morales Durand
ltalkTestFiles.zip > '. > > > > ZnClient new > > url: ' > https://github.com/biosmalltalk/biopharo/raw/develop/test_files/BioSmalltalkTestFiles.zip > '; > > downloadTo: '/tmp'. > > > > $ ls -lah /tmp/BioSmalltalkTestFiles.zip > > -r

[Pharo-users] Instance of ByteArray did not understand #isByteString in ZnUTF8Encoder

2019-01-26 Thread Hernán Morales Durand
Hi there, In Pharo 7.0 I've encountered an error related with the new streams changes ( https://github.com/pharo-open-documentation/pharo-wiki/blob/master/Migration/MigrationToPharo7.md) while downloading a zip file. Problem is ZnUTF8Encoder expects a String, but my code which worked in Pharo 6

Re: [Pharo-users] [VIDEO TUTORIAL] How to use external code editors to code in Pharo

2019-01-26 Thread Hernán Morales Durand
it was that it did not go visual coding all the way. > > It will have saved us the trouble of not being able to convince people to > learn coding. > Because people do not want to learn coding, > And frankly I do not blame them. > > Visual coding is the only future of coding and

Re: [Pharo-users] [VIDEO TUTORIAL] How to use external code editors to code in Pharo

2019-01-24 Thread Hernán Morales Durand
El jue., 24 ene. 2019 a las 13:18, Sven Van Caekenberghe () escribió: > > > > On 24 Jan 2019, at 17:04, K K Subbu wrote: > > > > On 24/01/19 7:23 PM, Sven Van Caekenberghe wrote: > >> Everybody is of course totally free to do whatever they want, but > >> really, why the hell would you want to do

[Pharo-users] Falsehoods programmers believe about Smalltalk

2019-01-20 Thread Hernán Morales Durand
Hi there, I just created a GitHub repo to collect myths around Smalltalk-based technologies: Pharo, Squeak, VW, VAST, Smalltalk/X, GNU/ST, etc. in the spirit of the Falsehoods lists [1-4]. This is just a draft now but please feel free to add falsehoods based on your own experiences. Examples are

Re: [Pharo-users] Library to use multi-core in Pharo?

2019-01-09 Thread Hernán Morales Durand
Hi Alex, I think you could launch jobs using GNU parallel, otherwise for shared memory parallelism OpenMP is a common choice. There is an old thread: http://forum.world.st/NativeBoost-and-OpenMP-td4837865.html but no library AFAIK Cheers, Hernán El mié., 9 ene. 2019 a las 16:56, Alexandre

  1   2   3   4   5   >