Re: [Pharo-users] [ANN] Pharo Newsletter December 2018

2018-12-12 Thread Sean P. DeNigris
Marcus Denker-4 wrote > Last we the Pharo Newsletter December 2018 was send. Wow, RMapViewer looks really cool :) Is the Units framework mentioned the same one from SqS? - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-12 Thread Paul DeBruicker
can also do the code rewriting described here as a stopgap measure: http://forum.world.st/stfx-eu-down-tp5090610p5090624.html Vitor Medina Cruz wrote > Hello, > > Here is my baseline > > BaselineOfEmployees >> baseline: spec [ > > > > spec for: #'common' do: [ >

Re: [Pharo-users] [ANN] Git Thermite integration with Iceberg

2018-12-12 Thread Paul DeBruicker
Please take this with a grain of salt and I'm not at all trying to do anything but be helpful and expose my confusion. It looks interesting but what are some use cases of Thermite? I don't have a real good sense of what kind of understanding it helps with. >From reading the github page I can

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-12 Thread Johan Brichau
Busy changing this in the BaselineOfSeaside3 as we speak… Johan > On 12 Dec 2018, at 20:20, Gabriel Cotelli wrote: > > You can use the lock API in Metacello to use the dependency you want, > ignoring the ones defined in the baselines. > > On Wed, Dec 12, 2018 at 4:16 PM Vitor Medina Cruz

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-12 Thread Gabriel Cotelli
You can use the lock API in Metacello to use the dependency you want, ignoring the ones defined in the baselines. On Wed, Dec 12, 2018 at 4:16 PM Vitor Medina Cruz wrote: > I can't depend on https://github.com/svenvc/zinc because this is a > transitive dependency, my baseline depends of seaside

Re: [Pharo-users] [ANN] Git Thermite integration with Iceberg

2018-12-12 Thread Alexandre Bergel via Pharo-users
--- Begin Message --- It would be really great to have feedback. Please, providing feedback is key to enable innovation in this community! Cheers, Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-12 Thread Vitor Medina Cruz
I can't depend on https://github.com/svenvc/zinc because this is a transitive dependency, my baseline depends of seaside that depends of Zinc. Is there a way to exclude Zinc dependency from Seaside so that I can force a Zinc dependency definition of my baseline? On Wed, Dec 12, 2018 at 5:08 PM

Re: [Pharo-users] Submitting HTML Forms

2018-12-12 Thread Sven Van Caekenberghe
> On 12 Dec 2018, at 20:02, Ben Coman wrote: > > > > On Thu, 13 Dec 2018 at 00:27, horrido wrote: > Okay, I managed to hack together a solution from the example. It's not pretty > but it seems to work. I needed to remain within the Teapot framework. > > However, I have a question

Re: [Pharo-users] Problem loading seaside with Zinc

2018-12-12 Thread Sven Van Caekenberghe
> On 12 Dec 2018, at 18:56, Vitor Medina Cruz wrote: > > Note it is trying to reach http://mc.stfx.eu/ZincHTTPComponents, which don't > seems to be hosting Zinc anymore. Since these are transitive dependencies, I > tried to define Zinc in the root of my baseline, as I did with seaside >

Re: [Pharo-users] Submitting HTML Forms

2018-12-12 Thread Ben Coman
On Thu, 13 Dec 2018 at 00:27, horrido wrote: > Okay, I managed to hack together a solution from the example. It's not > pretty > but it seems to work. I needed to remain within the Teapot framework. > > However, I have a question regarding the ZnEntityTooLarge exception. How > can > I capture it

Re: [Pharo-users] Pharo 7 under Linux

2018-12-12 Thread Esteban Lorenzano
Hi, While it should not crash (just disable iceberg), it will be useful to know which kind of linux are you using. There are too many around :) Esteban > On 12 Dec 2018, at 16:00, Konrad Hinsen wrote: > > Hi everyone, > > I haven't had much success running Pharo 7 under Linux as follows: >

[Pharo-users] Problem loading seaside with Zinc

2018-12-12 Thread Vitor Medina Cruz
Hello, Here is my baseline BaselineOfEmployees >> baseline: spec [ spec for: #'common' do: [ spec blessing: #'baseline'; baseline: 'Seaside3' with: [ spec repository: 'github://SeasideSt/Seaside:v3.2.2/repository' ]; baseline: 'Magritte'

Re: [Pharo-users] Submitting HTML Forms

2018-12-12 Thread Sven Van Caekenberghe
> On 12 Dec 2018, at 17:26, horrido wrote: > > Okay, I managed to hack together a solution from the example. It's not pretty > but it seems to work. I needed to remain within the Teapot framework. > > However, I have a question regarding the ZnEntityTooLarge exception. How can > I capture it

Re: [Pharo-users] Submitting HTML Forms

2018-12-12 Thread horrido
Okay, I managed to hack together a solution from the example. It's not pretty but it seems to work. I needed to remain within the Teapot framework. However, I have a question regarding the ZnEntityTooLarge exception. How can I capture it and resume execution? The exception seems to occur before

[Pharo-users] [ANN] Git Thermite integration with Iceberg

2018-12-12 Thread Ronie Salgado
Hello, Some time ago I presented Git Thermite in this mailing. Git Thermite is a tool for visualizing Git commits that I am making for my master thesis. Now I have managed to integrate Git Thermite with Iceberg. GitHub page: https://github.com/ronsaldo/pharo-git-thermite Demo video:

Re: [Pharo-users] [pharo7] loading mcz files

2018-12-12 Thread Guillermo Polito
PR with fix: https://github.com/pharo-project/pharo/pull/2062 On Wed, Dec 12, 2018 at 3:46 PM Guillermo Polito wrote: > I've opened an issue here: > > > https://pharo.fogbugz.com/f/cases/22754/Exception-while-opening-a-MCSubDirectoryRepository > > The reason is that several parts of monticello

Re: [Pharo-users] good game plan for AoC2015 day 4

2018-12-12 Thread Ben Coman
On Wed, 12 Dec 2018 at 19:10, Richard O'Keefe wrote: > PS: converting the result of MD5 hashMessage: to hex is a total waste of > time. > Just ask: > - is the first byte zero? > - is the second byte zero? > - is the third byte less than 16? > Good point. cheers -ben > > On Thu, 13 Dec 2018

Re: [Pharo-users] [pharo7] loading mcz files

2018-12-12 Thread Guillermo Polito
Hi Hans, I'm trying to reproduce this one. It seems it happens only with a "Directory with subdirectories" kind of repository. Can you confirm? I do now know exactly what this should do, never used it before. I'll check it and come back to you. Guille On Wed, Dec 12, 2018 at 12:46 PM Baveco,

[Pharo-users] [pharo7] loading mcz files

2018-12-12 Thread Baveco, Hans
It appeared impossible to load any packages (mcz files) from a MCFileRepositoryInspector, in a recent pharo (moose) 7 image (on windows 7), stack below. Apparently, somewhere a Character null is encountered where an integer is expected... Any ideas how to solve this? TIA, Hans

Re: [Pharo-users] good game plan for AoC2015 day 4

2018-12-12 Thread Richard O'Keefe
PS: converting the result of MD5 hashMessage: to hex is a total waste of time. Just ask: - is the first byte zero? - is the second byte zero? - is the third byte less than 16? On Thu, 13 Dec 2018 at 00:07, Richard O'Keefe wrote: > This is the puzzle where you have to find the smallest

Re: [Pharo-users] good game plan for AoC2015 day 4

2018-12-12 Thread Richard O'Keefe
This is the puzzle where you have to find the smallest integer such that '' , (that integer) printString has an MD5 hash beginning with 5 hexadecimal zeros? Brute force is just fine. Calling libnettle's MD5 functions from a C program, it found the right answer in under 0.2 seconds on a cheap

Re: [Pharo-users] Reify RBLiteralNode and RBBlockNode args/return with MetaLink?

2018-12-12 Thread Marcus Denker
> On 28 Nov 2018, at 09:38, Marcus Denker wrote: > >>> >>> >>> i) How do I reify the value of an RB(Valuel|Literal|LiteralValue)Node? >>> RFValueReification does not work, and there is no reification for literal, >>> value, or literal value nodes. > > This is now fixed. All subclasses of

[Pharo-users] [ANN] Next Pharo Sprint: Dec 21

2018-12-12 Thread Marcus Denker
We will organize a Pharo sprint / Moose dojo Dec 21, starting at 10:00am. (Local Time Paris). Goals of this sprint: • Pharo 7 issues Remote Sprint: Remotely, you can join us on Discord. During the sprint, we synchronize local and remote Pharo sprinters:

Re: [Pharo-users] Submitting HTML Forms

2018-12-12 Thread Sven Van Caekenberghe
Richard, You are mixing several aspects. I can only answer for Zinc itself, not Teapot. First start a local server ZnServer startDefaultOn: 1701. Then go to the example (handler) at http://localhost:1701/form-test-3 and try uploading a text file. If all goes well you will see its contents

Re: [Pharo-users] any ihint how to do this

2018-12-12 Thread Torsten Bergmann
>is there a way I can check if a word has 2 the same chars after each other Use #pairsCollect: 'hello' pairsCollect: [:a :b | a = b ] There is also a #pairsDo: 'hello' pairsCollect: [:a :b | Transcript show: a asString; show: b asString ] Have fun T. (aka astares)

Re: [Pharo-users] [ANN] Pharo Newsletter December 2018

2018-12-12 Thread Marcus Denker
> On 11 Dec 2018, at 14:08, Marcus Denker wrote: > > Hi, > > Last we the Pharo Newsletter December 2018 was send. > > You can find the archived version now here: > > https://mailchi.mp/pharo/pharo-newsletter-december-2018 > I am looking for content for the January newsletter.