You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <ben...@id...> - 2004-05-25 08:29:51
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
|
From: zauhar <r.z...@us...> - 2004-05-18 16:34:08
|
Hi! (I guess this is going to Drew, correct?) I am attempting to incorporate Narrative plots into an NSTableView. It is intended that the user be able to resize the cells. Before I get too embroiled in calculating sizes and how to distribute objects in the plot area, let me ask this: Is there an easy path to rescale the entire plot (including annotations) to fit within a given bounding rectangle? Thanks! Randy Randy J. Zauhar, PhD Assoc. Prof. of Biochemistry Director, Graduate Program in Bioinformatics Dept. of Chemistry & Biochemistry University of the Sciences in Philadelphia 600 S. 43rd Street Philadelphia, PA 19104 Phone: (215)596-8691 FAX: (215)596-8543 E-mail: r.z...@us... Web: http://tonga.usip.edu/zauhar Discussion after watching Disney's "Lilo & Stitch": DAD: "But why did the space aliens speak English, as opposed to French, or Swahili? And why did the one alien speak English with an Eastern European accent? I don't get it." CATHERINE (age 7): "That's 'cause you don't have a good cartoon brain." |
|
From: Scott P. <pr...@ec...> - 2003-05-09 13:40:07
|
Hi,
I have been waiting for someone to release a Cocoa plotting framework.
Thanks. I am just starting to try and use the Narrative framework and
have a question.
In the example.app one finds
-(unsigned)numberOfDataClustersForPlot:(NRTPlot *)plot {
unsigned num = 0;
if ( [[plot identifier] isEqual:@"ChartLinePlot"] ) {
num = 10;
}
else if ( [[plot identifier] isEqual:@"ChartHistogramPlot"] ) {
num = 30;
}
return num;
}
Now, this suggests to me that the Chart data has 10 points and the
Histogram
data has 30 points. However, when the plots are made, only 10 points
from
each data set is made. Is this intentional? If so, how does one plot
two
data sets with different numbers of points?
Thanks
Scott
|