Is there a way nice way to do a lookup in PP ?
for example, I want to ensure that I have a 'a' then a 'b'.
But I don't wan't to consume 'b'
'a' asParser , 'b' asParser lookup
currently I implemented it with a double not :-)
'a' asParser , 'b' asParser not not
not very nice
nicolas
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-Glamour
New issue 860 by tu...(a)tudorgirba.com: Updatng a list disables the visible
selection
http://code.google.com/p/moose-technology/issues/detail?id=860
For example, try:
GLMFinder new
show: [:a | a list display: [:x | 1 to: x]];
openOn: 10;
with: [:b | b panes first presentations selection: 4. b update ].
Doing it without the explicit update works just fine, though
How am I supposed to create an overview pyramid?
After importing an mse and settting the model root,
MessageNotUnderstood: receiver of "classScope" is nil
Repeatable in both 4.6 release and 4.7 dev with
a jhotdraw 7.1 created with the latest inFusion
Cheers,
Stephan Eggeront
Hi,
The ConfigurationOfSoftwarenaut is broken because the new examples packages
were added only in the groups without being defined in the package list.
I tried to commit the fix, but I do not have the access. Dennis, could you
fix this, please?
Cheers,
Doru
--
www.tudorgirba.com
"Every thing has its own flow"
Hi all,
I took part in a little visualization contest Stack Exchange is hosting.
The announcement is here:
http://blog.stackoverflow.com/2012/10/stack-overflow-data-visualization-con…
And here is my entry (as well as the others):
http://www.kaggle.com/c/predict-closed-questions-on-stack-overflow/prospect…
.
Full image of the visualization: http://i.imgur.com/tax5s.png
The deadline for entries was yesterday - now voting is open until 5th of
September.
My main goal was to show that Softwarenaut could be used to visualize
anything, not just Software Systems.
I am not totally satisfied with the entry, but just did not have enough
time to implement all my ideas, since I only saw about the contest a week
or so ago. Also the scientific analysis of the data could be better... also
the storytelling...
Anyhoo, take a look, and if you like it, why not vote for my entry, will
spread some love for Pharo, Roassal etc. :)
Cheers,
Dennis
I am trying to set the background color of the StringMorph that
represents the label & value of the description.
From looking at MADescription>>morphColor
^ self propertyAt: #morphColor ifAbsent: [ self class
defaultMorphColor ]
I thought I might go like "THIS LINE" below...
-------------------
magritteDescription
<magritteContainer>
| container |
container := MAContainer new.
container add: (MAStringDescription new
accessor: #emptyString ;
label: 'Equipment123456789' ;
beReadonly ;
propertyAt: #morphColor put: Color white;
"<<<<<<<<<<<<<<<<<<THIS LINE"
yourself).
"more deleted"
^ container
-------------------
but "THIS LINE" has no effect. Digging in further, it appears that
MADescriptionMorph>>defaultBackgroundColor is the only sender of
#morphColor,
but then there are no senders of #defaultBackgroundColor.
What is the correct way to go about changing the background color of the
description's morph?
cheers -ben
btw, What I am trying to create a separator label between several groups
of descriptions as shown in the attached image.