Re: [Pharo-users] XML support for pharo

2018-07-12 Thread PBKResearch
Hi Oswall Well, you have located the correct node, which is some kind of XMLNode, so all you need is to access its content. If you browse the class and look at its ‘accessing’ protocol, you see the method XMLNode>>#contentString, which will give you, in your test case, ‘2014’ as a string. If

Re: [Pharo-users] Pharo 6 Freetype plugin stopped working after Windows update

2018-07-12 Thread Ben Coman
Seems similar... http://forum.world.st/Win10-Launcher-Pharo7-1122-ZdcPluginMissing-SSL-TLS-plugin-initailization-failed-VM-plugin-missing-O-tp5081539p5081573.html cheers -ben On 13 July 2018 at 03:09, webwarrior wrote: > LoadLibrary(FT2Plugin.dll) (998: Invalid access to memory location. > > )

Re: [Pharo-users] Request for Windows test

2018-07-12 Thread Hernán Morales Durand
Running Windows 8.1 here. Success, no problem at all. Impressive work BTW! Cheers, Hernán 2018-07-11 7:19 GMT-03:00 Hilaire : > Hi, > > A Windows user reported to me difficulty to start Dr. Geo. > > Although I had success to run it in a Windows system, I will be glad if > some of you would

[Pharo-users] Pharo 6 Freetype plugin stopped working after Windows update

2018-07-12 Thread webwarrior
LoadLibrary(FT2Plugin.dll) (998: Invalid access to memory location. ) Windows 10. Win32 built on May 31 2017 03:09:04 GMT Compiler: 5.4.0 VMMaker versionString VM: 201705310241 Tried latest stable VM - same error. Pharo 7 works normally. -- Sent from:

Re: [Pharo-users] XML support for pharo

2018-07-12 Thread oswall arguedas
Solved To access the values of the nodes is as follows: yearmem: = (tree xpath: '// year') first contentString asNumber. I also edit the other methods of the XMLNode class. Thanks Oswall De: Pharo-users en nombre de PBKResearch Enviado: jueves, 12 de

Re: [Pharo-users] Pharo 6 Freetype plugin stopped working after Windows update

2018-07-12 Thread PBKResearch
Hello This seems exactly like a problem I reported almost exactly a year ago - 15 July 2017. Peter Uhnak reported then that he saw it regularly. The only sure remedy we found is to reboot the machine - occasionally reboot twice. I am using Pharo 6.1 on Windows 10. Since that report, I have

[Pharo-users] Smalltalks 2018 registration and talk submissions is now open!

2018-07-12 Thread Gabriel Cotelli
We invite you to join us at Smalltalks 2018 in Salta, for the 12th free conference on Smalltalk based technologies, research and industry applications. Registration CLICK HERE TO REGISTER

Re: [Pharo-users] Pharo 6 Freetype plugin stopped working after Windows update

2018-07-12 Thread Hernán Morales Durand
Hi, I've seen the FT distorted fonts when launched several images at the same time. It could be a way to reproduce it. Cheers, Hernán 2018-07-12 19:26 GMT-03:00 PBKResearch : > Hello > > This seems exactly like a problem I reported almost exactly a year ago - 15 > July 2017. Peter Uhnak

Re: [Pharo-users] Request for Windows test

2018-07-12 Thread Jan Blizničenko
Hi Windows 10 1803 64bit: Running via DrGeo.bat, Pharo itself starts (I have SmartScreen disabled), but when opened I receive multiple errors in (gray) info messages and I do not see a way to use you app (if there should be any opened GUI or world menu items). 2018-07-12.png

Re: [Pharo-users] Request for Windows test

2018-07-12 Thread Christophe Demarey
I also had the problem with PharoLauncher. OS X and now Windows expect to have signed applications else they do not trust it. If Dr Geo is signed with a proper certificate, it should solve the issue. > Le 11 juil. 2018 à 17:05, Ben Coman a écrit : > > On 11 July 2018 at 18:19, Hilaire wrote:

Re: [Pharo-users] Naming parameters - conventions?

2018-07-12 Thread john pfersich
+100 // Encrypted email at jgpfers...@protonmail.com Web: www.objectnets.net and www.objectnets.org > On Jul 11, 2018, at 18:20, Richard Sargent > wrote: > > Tim Mackinnon wrote >> Hi everyone, something I’ve meant to ask over the years, as I’ve seen lots >> of variation

Re: [Pharo-users] Naming parameters - conventions?

2018-07-12 Thread monty
The primary trade-off is between Type Suggesting vs. Role Suggesting parameter names. For example, aString and aSymbol tell us only what type of object the parameter expects, while aName and aTitle tell us the *role* (or purpose) of the parameter, with the expected type hopefully obvious. You

Re: [Pharo-users] Naming parameters - conventions?

2018-07-12 Thread Tim Mackinnon
This payer/payee example is exactly what I was thinking about, and I’ve tended to do as Dennis suggests and use a type suffix on the name - and wondered if that was what most people do. I’ll certainly check what Andreas says on the topic. Tim Sent from my iPhone On 12 Jul 2018, at 06:31,

Re: [Pharo-users] Naming parameters - conventions?

2018-07-12 Thread Erik Stel
In the day, I learned from Smalltalk with Style: http://sdmeta.gforge.inria.fr/FreeBooks/WithStyle/SmalltalkWithStyle.pdf On PDF-page 13 naming starts. On PDF-page 29 parameter names are explained (but refers back to typed names for example). Naming ends at PDF-page 35. So quite elaborate

Re: [Pharo-users] Naming parameters - conventions?

2018-07-12 Thread Esteban A. Maringolo
On 11/07/2018 21:21, Sean P. DeNigris wrote: > Paul DeBruicker wrote >> It also seems like a "how much milk do you like in your coffee?" choice >> where the tradeoffs between one vs the other isn't high and the code in >> action will let you know whether you've got it right. > > +1. I also

[Pharo-users] Pharo TechTalk at 5pm (UTC+2)

2018-07-12 Thread Serge Stinckwich
I will start my techtalk at 5pm (UTC+2) about Pharo: https://association.pharo.org/event-2973748 on Youtube live: https://www.youtube.com/channel/UCtelfhEzvzvsNjXrGesm2fA Questions on Discord, channel #techtalk: http://discord.gg/Sj2rhxn Thank you. -- Serge Stinckwich UMI UMMISCO 209

Re: [Pharo-users] Naming parameters - conventions?

2018-07-12 Thread Tim Mackinnon
Sounds like what I’ve been doing is what others do too - I just wasn’t sure if my memory had served me well. It was great to be reminded about some of the subtleties though - hadn’t thought about a/an stopping inst var collisions. I actually have an original copy of that style book, I was

Re: [Pharo-users] Naming parameters - conventions?

2018-07-12 Thread Tim Mackinnon
Having refreshed my memory by rereading that section of the style book - I see the source of my discomfort... I don’t find the guidelines on parameters very strong - and I think (like others) I side more with guideline 25 most of the time where it’s sensible (not just for multiple similar

Re: [Pharo-users] XML support for pharo

2018-07-12 Thread oswall arguedas
Regards, I practice with the example of the book. I can not read the atomic values of the nodes. For example, with this piece of the example: Arcane Lighthouse Land 2014 To get the atomic value of the node year and assign it to the variable yearmem, I do

Re: [Pharo-users] XML support for pharo

2018-07-12 Thread PBKResearch
Hi Oswall What sort of failure did you get? It helps with this sort of thing to execute the code in a playground and inspect the result. One thing you need to know is that the result of xpath is almost always some sort of XMLCollection, even when there is only one element. I would expect

Re: [Pharo-users] XML support for pharo

2018-07-12 Thread oswall arguedas
Hello Peter, Thanks for your help. The value I get is: 2014 What I need is to extract the atomic value of the node, which is: 2014 To assign it to variables and create objects. I can not find how to obtain that punctual value 2014. The main