Hi guys,
Having a graph of objects that doesn't want to go away even after GC but we
think they should have, is a common scenario. At least, in my case. When I
have this kind of issue, I spend hours, doing a "Strong Pointers" view from
the explorer. And this is a pain and hard.
So I wonder...has anyone build a visualization tool to help this task?
thanks,
--
Mariano
http://marianopeck.wordpress.com
http://stackoverflow.com/questions/25414857/roassal-conditional-x-axis-labe…
In my chart, the x axis represents the Date. I'd like to only label the
first day of a month. Specifying a number of ticks is problematic because
they can be fractional.
What I'm looking for is something like:
someRoassalObject
if: [ :point | point date dayOfMonth = 1 ]
label: [ :point | point date mmddyyyy ]
(where points are my domain objects that respond to #date)
I did the following quick and dirty hack in the mean time:
b axisConfiguration
labelConvertion: [ :x | (Date julianDayNumber: x rounded) mmddyyyy
].
-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/Conditional-X-Axis-Labeling-tp4774245.html
Sent from the Moose mailing list archive at Nabble.com.
Hello.
I implemented Voronyj diagrams for Roassal. You can read about it here: http://natalia.tymchuk.me/RTVoronyjDiagram/ .
I will be on vacation from Monday till Thursday, but it will be really cool if you can write me your opinion about this project and all your remarks.
Best regards,
Natalia
Should've started a separate thread before...
"CompiledMethod DNU #numberOfLinesOfCode"
The transformation from #numberOfLinesOfCode -> #linesOfCode seems to be
needed in many of the examples throughout Roassal & PBE2.
- RTCharterBuilder examples are broken, mostly because of this
- RTCharterBuilder>>#exampleHistogram seems to have a different problem, not
sure; but possibly redundant because there is another histogram example?
HTH
-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/Roassal-Examples-Broken-tp4773942.html
Sent from the Moose mailing list archive at Nabble.com.
I again want to highlight the importance of dimensions that are not scalable.
If you remember Voronyj diagrams[1] that Natalia did, usually you do not care about the size of borders, or the size of sites compared to the rest of diagram. But as total size of a resulting diagram is not predictable, and you scale it to fill your viewport, you end up with a different size of borders which is sometimes inappropriate.
Again, when you have a scatterplot. Sometimes you have clusters, and sometimes you have sparse plots. I think that it can be essential to be able to say: “I need my elements to be always 5px in radius”. This way you can always see them when you zoom out and they are not overlapping when you zoom in.
I understand that this may be hard to implement. Just wanted to highlight because maybe someone is planing to do something cool on the next weekend :)
Uko
[1] http://natalia.tymchuk.me/RTVoronyjDiagram/
Hi guys - I was really amazed by the advances I saw being made in Moose at ESUG and so I’ve downloaded the latest 2292 image (using Pharo Launcher) to give things a spin.
Can I first check that this is the image I should use? I checked out the stable 4.9 version - but it doesn’t seem to have the playground that I observed people using at ESUG and seemed slicker? I should also say that I don’t mind if its a bit wobbly, as I figure I might as well help test the latest version.
Assuming this is the right version - I notice that on OSX when I press Shift-Enter (to spotlight search code), it doesn’t give me any auto-completed items like it does in Pharo (e.g. Typing “Order” doesn’t start showing any classes). I noticed this was broken in a version I downloaded at ESUG as well, so I took the latest just to check.
Tim
Hi Jan,
Would it be possible to clean PP-Islands so that it can be loaded together
with the rest of PetitParser? I would like to integrate it in the main
distribution because it is too cool :)
Doru
--
www.tudorgirba.com
"Every thing has its own flow"
Hi.
as far as I understand Spec binding from Roassal 2 was removed from the current configuration. Should I explicitly add it to my project as package? Or there are other plans?
Uko