Pharo-users
By thread
pharo-users@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- 1 participants
- 50346 messages
Re: [Pharo-users] ESRI ASCII raster format
by 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 := 'https://github.com/mgaitan/departamentos_argentina/raw/master/departamentos…'.
ZnClient new
systemPolicy;
url: url;
numberOfRetries: 2;
maximumEntitySize: 1024 * 1024 * 1024;
signalProgress: true;
contentReader: [ : entity | GeoJSONReader fromString: entity contents ];
get.
And the coordinates can be obtained using:
self features anyOne geometry coordinates
But is this useful for CORMAS?
Cheers,
Hernán
El mié., 3 jun. 2020 a las 18:16, Stéphane Ducasse (<
stephane.ducasse(a)inria.fr>) escribió:
> I did it as a kata as fast as I could â¦
>
> https://github.com/Ducasse/ESRI-ASCII-Raster
>
> I found the spec a bit strange
>
> The header information is followed by cell value information specified in
> space-delimited row-major order, with each row separated by a carriage
> return.
> and
>
> - No carriage returns are necessary at the end of each row in the
> raster. The number of columns in the header determines when a new row
> begins.
>
> O_o
>
> so I followed the example on wikipedia
>
> It was fun.
> My implementation could be more robust but for 2 hours coding.
> It was a fun kata.
>
> S.
>
>
>
>
> On 3 Jun 2020, at 11:24, Cédrick Béler <cdrick65(a)gmail.com> wrote:
>
> Iâll try to join.
>
> The file seem indeed easy to process.
>
> <GraphiqueCollé-3.png>
>
> Except the implication by the or (xllcenter or xllcorner).
>
> Cheers,
> Cédrick
>
>
>
> Le 3 juin 2020 Ã 09:44, Serge Stinckwich <serge.stinckwich(a)gmail.com> a
> écrit :
>
>
>
> On Wed, Jun 3, 2020 at 3:40 PM Stéphane Ducasse <stephane.ducasse(a)inria.fr>
> wrote:
>
>> Ok Iâm a paper on the grill and I will give a try to see if I can do it
>> in TDD in 1 or 1:30 as a kata.
>> I will let you know but by the end of the week you have it.
>>
>>
> Our meeting is every Friday at 11:30am (France time), 9:30am UTC time.
>
> Regards,
> --
> Serge Stinckwic
> h
> https://twitter.com/SergeStinckwich
>
>
>
> --------------------------------------------
> Stéphane Ducasse
> http://stephane.ducasse.free.fr / http://www.pharo.org
> 03 59 35 87 52
> Assistant: Aurore Dalle
> FAX 03 59 57 78 50
> TEL 03 59 35 86 16
> S. Ducasse - Inria
> 40, avenue Halley,
> Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
> Villeneuve d'Ascq 59650
> France
>
>
June 3, 2020
Re: [Pharo-users] ESRI ASCII raster format
by Stéphane Ducasse
I did it as a kata as fast as I could â¦
https://github.com/Ducasse/ESRI-ASCII-Raster <https://github.com/Ducasse/ESRI-ASCII-Raster>
I found the spec a bit strange
The header information is followed by cell value information specified in space-delimited row-major order, with each row separated by a carriage return.
and
No carriage returns are necessary at the end of each row in the raster. The number of columns in the header determines when a new row begins.
O_o
so I followed the example on wikipedia
It was fun.
My implementation could be more robust but for 2 hours coding.
It was a fun kata.
S.
> On 3 Jun 2020, at 11:24, Cédrick Béler <cdrick65(a)gmail.com> wrote:
>
> Iâll try to join.
>
> The file seem indeed easy to process.
>
> <GraphiqueCollé-3.png>
>
> Except the implication by the or (xllcenter or xllcorner).
>
> Cheers,
> Cédrick
>
>
>
>> Le 3 juin 2020 à 09:44, Serge Stinckwich <serge.stinckwich(a)gmail.com <mailto:serge.stinckwich@gmail.com>> a écrit :
>>
>>
>>
>> On Wed, Jun 3, 2020 at 3:40 PM Stéphane Ducasse <stephane.ducasse(a)inria.fr <mailto:stephane.ducasse@inria.fr>> wrote:
>> Ok Iâm a paper on the grill and I will give a try to see if I can do it in TDD in 1 or 1:30 as a kata.
>> I will let you know but by the end of the week you have it.
>>
>>
>> Our meeting is every Friday at 11:30am (France time), 9:30am UTC time.
>>
>> Regards,
>> --
>> Serge Stinckwich
>> https://twitter.com/SergeStinckwich <https://twitter.com/SergeStinckwich>
>
--------------------------------------------
Stéphane Ducasse
http://stephane.ducasse.free.fr / http://www.pharo.org
03 59 35 87 52
Assistant: Aurore Dalle
FAX 03 59 57 78 50
TEL 03 59 35 86 16
S. Ducasse - Inria
40, avenue Halley,
Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
Villeneuve d'Ascq 59650
France
June 3, 2020
Moose install
by Michael Burns
Pharo 8 on Mac.
I used Pharo Project Catalog to install Moose.
But, it looks like there were maybe some errors.
When I search for Moose in the system browser I find these packages:
ConfigurationOfMoose
ConfigurationOfMooseAlgos
Moose-Algos-Graph
Mose-Algos-Graph-Tests
However, in the Transcript I found a number of <ClassName> is Undeclared.
> And at the end: Error: Cannot resolve symbolic version #release1
On the positive side, testRunner says that all Moose*-Tests test cases pass.
Am I good?
Or is there something else to do here?
On the MooseTechnology page it seems to indicate that the latest version they have runs on Pharo 7.
...finished 1.0
Fetched -> ConfigurationOfMoose-TudorGirba.364 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/
Loaded -> ConfigurationOfMoose-TudorGirba.364 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/
Loading 5.0 of ConfigurationOfMoose...
Fetched -> ConfigurationOfPastell-TorstenBergmann.13 --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/ --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/
Loaded -> ConfigurationOfPastell-TorstenBergmann.13 --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/ --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/
Fetched -> ConfigurationOfPetitParser-AndreiChis.82 --- http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- http://smalltalkhub.com/mc/Moose/PetitParser/main/
Loaded -> ConfigurationOfPetitParser-AndreiChis.82 --- http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Fetched -> ConfigurationOfMetanool-GeorgeGanea.21 --- http://smalltalkhub.com/mc/Moose/Metanool/main/ --- http://smalltalkhub.com/mc/Moose/Metanool/main/
Loaded -> ConfigurationOfMetanool-GeorgeGanea.21 --- http://smalltalkhub.com/mc/Moose/Metanool/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Fetched -> ConfigurationOfGlamour-TudorGirba.225 --- http://smalltalkhub.com/mc/Moose/Glamour/main/ --- http://smalltalkhub.com/mc/Moose/Glamour/main/
Loaded -> ConfigurationOfGlamour-TudorGirba.225 --- http://smalltalkhub.com/mc/Moose/Glamour/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Fetched -> ConfigurationOfGToolkit-GeorgeGanea.97 --- http://smalltalkhub.com/mc/Moose/GToolkit/main/ --- http://smalltalkhub.com/mc/Moose/GToolkit/main/
Loaded -> ConfigurationOfGToolkit-GeorgeGanea.97 --- http://smalltalkhub.com/mc/Moose/GToolkit/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Fetched -> ConfigurationOfXMLParser-monty.353 --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/ --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/
ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (DTDCachingExternalEntityResolver is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLAbstractFactory is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLFileHandle is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLParserLimits is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLStreamConverter is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLClassFinder is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLClassFinder is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (DTDCachingExternalEntityResolver is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLAbstractFactory is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLFileHandle is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLParserLimits is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLStatelessStreamConverter is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLStreamConverter is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLClassFinder is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLClassFinder is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (DTDCachingExternalEntityResolver is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLAbstractFactory is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLFileHandle is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLParserLimits is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLStatelessStreamConverter is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLStreamConverter is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLClassFinder is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLTokenizerState is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (DTDCachingExternalEntityResolver is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLAbstractFactory is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLFileHandle is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLParserLimits is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLStreamConverter is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLStatelessStreamConverter is Undeclared)
ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLTokenizerState is Undeclared)
Loaded -> ConfigurationOfXMLParser-monty.353 --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/ --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/
Fetched -> ConfigurationOfPetitSQLParser-GeorgeGanea.34 --- http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/ --- http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/
Loaded -> ConfigurationOfPetitSQLParser-GeorgeGanea.34 --- http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Fetched -> ConfigurationOfMooseAlgos-AndreiChis.60 --- http://smalltalkhub.com/mc/Moose/MooseAlgos/main/ --- http://smalltalkhub.com/mc/Moose/MooseAlgos/main/
Loaded -> ConfigurationOfMooseAlgos-AndreiChis.60 --- http://smalltalkhub.com/mc/Moose/MooseAlgos/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Fetched -> ConfigurationOfOSProcess-ThierryGoubier.41 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/
Loaded -> ConfigurationOfOSProcess-ThierryGoubier.41 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Fetched -> ConfigurationOfMerlin-GeorgeGanea.48 --- http://smalltalkhub.com/mc/Moose/Merlin/main/ --- http://smalltalkhub.com/mc/Moose/Merlin/main/
Loaded -> ConfigurationOfMerlin-GeorgeGanea.48 --- http://smalltalkhub.com/mc/Moose/Merlin/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Fetched -> ConfigurationOfRoelTyper-StephaneDucasse.3 --- http://smalltalkhub.com/mc/RMoD/RoelTyper/main/ --- http://smalltalkhub.com/mc/RMoD/RoelTyper/main/
Loaded -> ConfigurationOfRoelTyper-StephaneDucasse.3 --- http://smalltalkhub.com/mc/RMoD/RoelTyper/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Fetched -> ConfigurationOfFame-CyrilFerlicot.40 --- http://smalltalkhub.com/mc/Moose/Fame/main/ --- http://smalltalkhub.com/mc/Moose/Fame/main/
Loaded -> ConfigurationOfFame-CyrilFerlicot.40 --- http://smalltalkhub.com/mc/Moose/Fame/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Fetched -> ConfigurationOfSmallDude-GeorgeGanea.41 --- http://smalltalkhub.com/mc/Moose/SmallDude/main/ --- http://smalltalkhub.com/mc/Moose/SmallDude/main/
Loaded -> ConfigurationOfSmallDude-GeorgeGanea.41 --- http://smalltalkhub.com/mc/Moose/SmallDude/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Fetched -> ConfigurationOfRoassal2-AlexandreBergel.144 --- http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/ --- http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/
Loaded -> ConfigurationOfRoassal2-AlexandreBergel.144 --- http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Fetched -> Moose-Help-TudorGirba.5 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Famix-Specifications-TudorGirba.7 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-HismoImporter-gl.12 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-Test-HismoImporter-StephanEggermont.5 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Arki-Reporter-Core-AndreHora.21 --- http://smalltalkhub.com/mc/Moose/Arki/main/ --- http://smalltalkhub.com/mc/Moose/Arki/main/
Fetched -> Arki-Tests-Reporter-TudorGirba.9 --- http://smalltalkhub.com/mc/Moose/Arki/main/ --- http://smalltalkhub.com/mc/Moose/Arki/main/
Fetched -> Famix-Tests-C-AndreHora.6 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Famix-Tests-Extensions-TudorGirba.25 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Dynamix-Tests-Core-TudorGirba.17 --- http://smalltalkhub.com/mc/Moose/DynaMoose/main/ --- http://smalltalkhub.com/mc/Moose/DynaMoose/main/
Fetched -> Moose-TestResources-Reference-Core-TudorGirba.3 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-Reference-PackageOne-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-LAN-AndreHora.7 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-LCOM-AndreHora.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P4FullInteracted-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P6InteractedReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P5FullReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P1FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P2InteractedReferencerReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P3InteractedReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P7ReferencerReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P8FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P9FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P10InteractedReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P11FullReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P12FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P13FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-P14FullReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-KGB-PExtensions-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-PackageBlueprint-P1-NicolasAnquetil.2 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-PackageBlueprint-P2-JeanRemyFalleri.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-PackageBlueprint-P3-JeanRemyFalleri.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-TestResources-PackageBlueprint-P4-JeanRemyFalleri.3 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Fetched -> Moose-Tests-MonticelloImporter-AndreHora.6 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
Project: Metanool stable
[1.2]
Fetched -> ConfigurationOfMagritte3-AndreiChis.128 --- http://smalltalkhub.com/mc/Magritte/Magritte3/main/ --- http://smalltalkhub.com/mc/Magritte/Magritte3/main/
Loaded -> ConfigurationOfMagritte3-AndreiChis.128 --- http://smalltalkhub.com/mc/Magritte/Magritte3/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
Project: Magritte3 stable
[3.5.2]
Fetched -> ConfigurationOfGrease-CyrilFerlicot.349 --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/ --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/
Loaded -> ConfigurationOfGrease-CyrilFerlicot.349 --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/ --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/
Error: Cannot resolve symbolic version #release1
June 3, 2020
Re: [Pharo-users] ESRI ASCII raster format
by Richard O'Keefe
Reading and writing the format looks pretty straightforward;
the question is, what is the internal representation?
These things are basically decorated 2D number arrays.
It is said in various places that the cell entries are
stored as integers, but not what precision, nor what mapping
there might be between internal and external numbers.
On Wed, 3 Jun 2020 at 14:02, Serge Stinckwich <serge.stinckwich(a)gmail.com>
wrote:
> Dear all,
>
> I'm looking for an implementation of ESRI ASCII raster format:
>
> http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/ESRI_ASCII_ra…
>
> We are looking for such an implementation for CORMAS:
> https://github.com/cormas/cormas/issues/135
>
> Thank you.
> Regards,
> --
> Serge Stinckwic
> h
> https://twitter.com/SergeStinckwich
>
June 3, 2020
Re: [Pharo-users] ESRI ASCII raster format
by Cédrick Béler
Iâll try to join.
The file seem indeed easy to process.
Except the implication by the or (xllcenter or xllcorner).
Cheers,
Cédrick
> Le 3 juin 2020 à 09:44, Serge Stinckwich <serge.stinckwich(a)gmail.com> a écrit :
>
>
>
> On Wed, Jun 3, 2020 at 3:40 PM Stéphane Ducasse <stephane.ducasse(a)inria.fr <mailto:stephane.ducasse@inria.fr>> wrote:
> Ok Iâm a paper on the grill and I will give a try to see if I can do it in TDD in 1 or 1:30 as a kata.
> I will let you know but by the end of the week you have it.
>
>
> Our meeting is every Friday at 11:30am (France time), 9:30am UTC time.
>
> Regards,
> --
> Serge Stinckwich
> https://twitter.com/SergeStinckwich <https://twitter.com/SergeStinckwich>
June 3, 2020
Re: [Pharo-users] [Pharo-dev] About strange email related to smalltalkhub read-only on squeak-dev
by Norbert Hartl
Stef,
that is a second problem. The main problem to me is solving the crypto stuff once and for all. And then I would like to know why people like Ron say things like this.
But yes, shouldn't go without explanation/reaction!
Norbert
> Am 03.06.2020 um 00:13 schrieb Stéphane Ducasse <stephane.ducasse(a)inria.fr>:
>
> What I do not like is that people say " group but they keep kicking me out of their mailing list â when this is absolutely not true!
>
> We can discuss and can argue even violently but we do not lie.
>
> S.
>
>
>
>> On 31 May 2020, at 19:38, Bruce O'Neel <bruce.oneel(a)pckswarms.ch <mailto:bruce.oneel@pckswarms.ch>> wrote:
>>
>>
>> Hi,
>>
>> So addressing only the crypto software issue and with the caveat that I am also not a lawyer but I have had to deal with certain aspects of this in the past....
>>
>> Crypto software is one of those bizarre dual use items in terms of arms imports and exports. While we as geeks just think of this is software or mathematics and might be confused as to why governments care, governments do care deeply about this. And their way of expressing how much they care about this issue is by passing laws and prosecuting folks.
>>
>> One of the easiest ways to get in trouble is for one to make the software available to residents and/or citizens of certain countries as well as available to people on a long list kept by different governments. We can have a long debate about the morality of this concept but those who make the laws have decided that is the law. And often these laws are crafted such that the executive can change important details on short notice and that puts the risk of prosecution at the whims of different world leaders.
>>
>> The license that the software is released under is not important.
>>
>> What Ron is stating is that squeak source supplied some additional protections to prevent accidentally making the software available to folks who the US feels should not have access.
>>
>> If you have moved the software to another hosting provider without the permission or knowledge of the author, and therefore the owner of the software, you have put that person at additional risk. In addition you and the hosting provider are taking on additional risk.
>>
>> If it was moved to GitHub I strongly recommend reviewing their policies on trade controls and what risks you assume.
>>
>> https://help.github.com/en/github/site-policy/github-and-trade-controls <https://help.github.com/en/github/site-policy/github-and-trade-controls>
>>
>> Finally I would strongly recommend talking to a competent legal advisor who is deeply familiar with the details of these laws. They are complex and highly variable between different parts of the world.
>>
>> I know this seems like a lot of trouble and wasted time but you can spend a giant amount of time and money defending oneself from arms trafficking charges.
>>
>> cheers
>>
>> bruce
>>
>> 30 May 2020 14:43 Stéphane Ducasse <stephane.ducasse(a)inria.fr <mailto:stephane.ducasse@inria.fr>> wrote:
>> Hi all
>>
>> This is the week-end and we worked super well yesterday during the sprint. Lot of good enhancements - Thanks a lot to all the participants.
>> I not really happy to be forced to do it on a sunny saturday but Iâm doing it to clarify points.
>>
>> Esteban sent me this text that was posted on Squeak-Dev (I personally do not read squeak related forums because
>> I have not the time and my focus is Pharo, its consortium, my team, my research and my family).
>>
>> We have to react because
>> - We do not really at ***all** understand this email
>> - We did not kicked anybody from our mailing-list from ages - so ron is lying. In the past we even had discussion with ron - so we do not
>> really understand. May be we got problem to log on our mailing-lists.
>> We have no idea because we are working and not looking at such things.
>> - When we migrated smalltalkhub to readonly we payed attention to make sure that private projects stay private.
>> We did not migrated smalltalkhub for fun. We MUST do it or it will be done by our infrastructure!
>> - Now the cryptography packages are MIT and they are public anyway. So again we do not understand anything.
>>
>> We do not get why Ron contacted us because we announced the migration publicly way in advance and we will keep
>> the Smalltalkhub frozen repo for at least next 5 years.
>>
>> I feel really sorry to hear such kind of email because we do not want to fight with anybody.
>> Our goal is to make sure that people can work with Pharo and expand their business and knowledge.
>> We are working hard to make sure that people can invent their future with Pharo and people that know us personally
>> know that we are not lying.
>>
>> S
>>
>>
>>
>>> Hi all,
>>>
>>> I've tried to work with the Pharo group but they keep kicking me out of their mailing list. I've already mentioned this a number of times to the Pharo group but nobody seems to care.
>>>
>>> BOLD BOLD BOLD PLEASE TAKE THIS SERIOUSLY BOLD BOLD BOLD
>>>
>>> I am not a lawyer but we used very good lawyers to make the squeaksource repository a safe place to do cryptography work. If you are working on cryptography DO NOT POST your code anywhere except squeaksource. Especially if you are in the USA. The ONLY repository that is approved to host our cryptography code in the USA and therefore not subject to criminal violations is squeaksource. It is a CRIME in the USA to move code and make it available on the internet for everyone to download! It must be hosted on squeaksoruce.com <http://squeaksoruce.com/> or another location that is also properly registered.
>>>
>>> IF YOU COPIED CRYPTOGRAPHY CODE TO ANOTHER REPOSITORY THAT IS NOT REGISTERED I would recommend you delete it immediately.
>>>
>>> END BOLD!
>>>
>>> Please feel free to post this to the Pharo mailing list because they apparently do not want to hear from me!
>>>
>>> All the best,
>>>
>>> Ron Teitelbaum
>>
>>
>> --------------------------------------------
>> Stéphane Ducasse
>> http://stephane.ducasse.free.fr <http://stephane.ducasse.free.fr/> / http://www.pharo.org <http://www.pharo.org/>
>> 03 59 35 87 52
>> Assistant: Aurore Dalle
>> FAX 03 59 57 78 50
>> TEL 03 59 35 86 16
>> S. Ducasse - Inria
>> 40, avenue Halley,
>> Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
>> Villeneuve d'Ascq 59650
>> France
>>
>
> --------------------------------------------
> Stéphane Ducasse
> http://stephane.ducasse.free.fr <http://stephane.ducasse.free.fr/> / http://www.pharo.org <http://www.pharo.org/>
> 03 59 35 87 52
> Assistant: Aurore Dalle
> FAX 03 59 57 78 50
> TEL 03 59 35 86 16
> S. Ducasse - Inria
> 40, avenue Halley,
> Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
> Villeneuve d'Ascq 59650
> France
>
June 3, 2020
Re: [Pharo-users] ESRI ASCII raster format
by Serge Stinckwich
On Wed, Jun 3, 2020 at 3:40 PM Stéphane Ducasse <stephane.ducasse(a)inria.fr>
wrote:
> Ok Iâm a paper on the grill and I will give a try to see if I can do it in
> TDD in 1 or 1:30 as a kata.
> I will let you know but by the end of the week you have it.
>
>
Our meeting is every Friday at 11:30am (France time), 9:30am UTC time.
Regards,
--
Serge Stinckwic
h
https://twitter.com/SergeStinckwich
June 3, 2020
Re: [Pharo-users] ESRI ASCII raster format
by Stéphane Ducasse
Ok Iâm a paper on the grill and I will give a try to see if I can do it in TDD in 1 or 1:30 as a kata.
I will let you know but by the end of the week you have it.
> On 3 Jun 2020, at 09:33, Serge Stinckwich <serge.stinckwich(a)gmail.com> wrote:
>
>
>
> On Wed, Jun 3, 2020 at 3:27 PM Stéphane Ducasse <stephane.ducasse(a)inria.fr <mailto:stephane.ducasse@inria.fr>> wrote:
> Thanks for mentioning it.
> It can be a super nice exercise.
> with a line based constructor.
> It can be super fun to code for a book chapter.
>
> Yes I think so. This is not super complicated from what I see in the format description.
>
> For when do you need it?
>
>
> ASAP, but we can wait :-)
> This is part of our work on the migration of CORMAS from VW to Pharo: https://github.com/cormas/cormas <https://github.com/cormas/cormas>
> At the moment, the code to support this format is entangled in the grid model ...
>
> We can even do a pair programming session with you and other CORMERS.
> We are doing weekly meeting on Discord.
>
> Thank you.
>
> Regards,
>
> --
> Serge Stinckwich
> https://twitter.com/SergeStinckwich <https://twitter.com/SergeStinckwich>
--------------------------------------------
Stéphane Ducasse
http://stephane.ducasse.free.fr / http://www.pharo.org
03 59 35 87 52
Assistant: Aurore Dalle
FAX 03 59 57 78 50
TEL 03 59 35 86 16
S. Ducasse - Inria
40, avenue Halley,
Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
Villeneuve d'Ascq 59650
France
June 3, 2020
Re: [Pharo-users] ESRI ASCII raster format
by Serge Stinckwich
On Wed, Jun 3, 2020 at 3:27 PM Stéphane Ducasse <stephane.ducasse(a)inria.fr>
wrote:
> Thanks for mentioning it.
> It can be a super nice exercise.
> with a line based constructor.
> It can be super fun to code for a book chapter.
>
Yes I think so. This is not super complicated from what I see in the format
description.
For when do you need it?
>
>
ASAP, but we can wait :-)
This is part of our work on the migration of CORMAS from VW to Pharo:
https://github.com/cormas/cormas
At the moment, the code to support this format is entangled in the grid
model ...
We can even do a pair programming session with you and other CORMERS.
We are doing weekly meeting on Discord.
Thank you.
Regards,
--
Serge Stinckwic
h
https://twitter.com/SergeStinckwich
June 3, 2020