> Begin forwarded message:
>
> From: Sven Van Caekenberghe <sven(a)stfx.eu>
> Subject: [Pharo-users] [ ANN ] Pharo Days 2016
> Date: December 9, 2015 at 9:52:09 AM EST
> To: Any question about pharo is welcome <pharo-users(a)lists.pharo.org>, Pharo Development List <pharo-dev(a)lists.pharo.org>, Pharo Business <pharo-business(a)lists.pharo.org>
> Reply-To: Any question about pharo is welcome <pharo-users(a)lists.pharo.org>
>
> Dear fellow Pharoers,
>
> Mark your calendars: on Thursday March 31 & Friday April 1 we are organising the Pharo Days 2016. This year we moved the location to Namur, Belgium, just a bit south of Brussels, at the very beautiful location of the ‘Cercle de Wallonie’ overlooking the river Meuse.
>
> We’ll update the following page moving forward.
>
> https://medium.com/concerning-pharo/pharo-days-2016-c52fe4d7caf
>
> You can ask questions on any of the Pharo mailing lists or you can email the Pharo Board.
>
> Let's make this another success, together ! We hope to see as many of you as possible.
>
>
--
www.tudorgirba.com
"We are all great at making mistakes."
Hi,
Glamorous Toolkit has evolved quite a bit over the past months, and we now would like to announce that we reached alpha.2 version. It runs on top of Pharo 7:
feenk.com/gt
There quite a number of new things. Some highlights are:
- We added extensive documentation for GT, Bloc and Brick. By running "GtWorld openTour” you essentially transform the image into an elaborate wiki.
- We worked on Coder, a new set of tools that are dedicated for affecting code. For example, in the picture below we see an editor on embedded examples that can be edited and run independently.
And this one shows how we can visualize and edit the result of querying.
Just a note: To make Coder work the way we want, we extended Brick with several widgets, and enhanced significantly the linear and grid layouts.
- We added the first version of xdoc in order to serialize the Playground every time you evaluate something.
As always, we are looking forward to your feedback.
Have fun,
The feenk team
--
www.feenk.com
--
www.feenk.com
"Every thing should have the right to be different."
Several strange behavior in Roassal on a fresh moose 7.1 image (the
behavior with moose 6.1).
The following script tries to show classes within their packages, with
color according to their numberOfLinesOfCode:
|model v|
model := MooseModel root allModels last.
v := RTMondrian new.
v shape rectangle.
v nodes: (model allModelNamespaces)
forEach: [ :p |
v shape rectangle.
v nodes: p types.
v normalizer
normalizeColor: #numberOfLinesOfCode
using: {Color white . Color black}
min: 0
max: 1000.
v layout grid.
].
v layout grid.
v
The result is that package color changes, not class color:
Now let's add the name of the packages (same script but for the 4th line):
|model v|
model := MooseModel root allModels last.
v := RTMondrian new.
v shape rectangle withTextAbove: #mooseName.
v nodes: (model allModelNamespaces)
forEach: [ :p |
v shape rectangle.
v nodes: p types.
v normalizer
normalizeColor: #numberOfLinesOfCode
using: {Color white . Color black}
min: 0
max: 1000.
v layout grid.
].
v layout grid.
v
The result is that packages are not colored anymore but package names are :
So the question is:
What's wrong ?
How to have package with text above in black and color of inner class
depending on their numberOfLinesOfCode ?
thanks
nicolas
--
Nicolas Anquetil
RMod team -- Inria Lille
Hi,
The current Moose build from https://ci.inria.fr/moose/job/moose-6.1 no
longer works and there is the following error when creating a Famix model:
- "AssertionFailure: Link to opposite links should be a bijective
operation... Please check your model!"
This is caused by `FAMIX.BehaviouralReference.pointed` and
`FAMIX.BehaviouralReference.referer` that point to attributes
in FAMIXBehaviouralEntity that are not there.
They were added by Famix-CPlusPlus that is now loaded
by ConfigurationOfFamix.
Are there some commits missing that add the missing functionality to
FAMIXBehaviouralEntity?
Or should we remove for now `Famix-CPlusPlus` from ConfigurationOfFamix?
Cheers,
Andrei
Dear Smalltalk community,
My current contract at Lam Research is ending soon, I am looking for job opportunities starting in January 2019.
Last year, I finished my Ph.D. in Testing and Software Quality in the Inria's Rmod team in France.
I have been working with Pharo for five years and Visual Works for one year.
I am also experienced in creating tools to improve the efficiency of the developers.
Here are my website: https://vincentblondeau.github.io/
my LinkedIn: https://www.linkedin.com/in/vincent-blondeau/
and my GitHub: https://github.com/VincentBlondeau/
You can find my resume as an attachment.
I look forward to hearing from you.
Best Regards,
Vincent Blondeau