• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r4wp

[!REBOL3] General discussion about REBOL 3

Scot
28-Feb-2013
[1302x4]
Bottomline, better teachers, who use assessment a tool to support 
learning = good education.
Yep, we call it gaming the test.
They are learning how the test works.  Kids are great a learning.
Kids alway learn.  What they are learning is really the question.
james_nak
28-Feb-2013
[1306]
Yes and these were elementary 1st grade Sped kids!
Scot
28-Feb-2013
[1307]
Cool.  I love students.  They are smarter about what is really going 
on in the classroom than most adults.  We believe what we think we 
see rather than taking the time to really see what is there.
james_nak
28-Feb-2013
[1308]
Maybe there's something to that... An app that wants kids to figure 
out how to beat it. :-)
Scot
28-Feb-2013
[1309]
If you want to know what is going on in a classroom, ask the students. 
 If you want to know what is really going on for a student, ask the 
teacher.  If the teacher doesn't know, get a different teacher.
james_nak
28-Feb-2013
[1310]
Oh, and Brian and Nick, what I was looking at was all subscription-based....$$$
Scot
28-Feb-2013
[1311]
Learning is automatic for humans. We are learning machines.
james_nak
28-Feb-2013
[1312]
I need a lot of oil these days. Scot, I am glad to see that you're 
still ticking and doing well.
Scot
28-Feb-2013
[1313]
Subscriptions work only at the district level.  That is a long difficult 
sales cycle and you need to get a 5 year commitment.  Sales of a 
product works at the classroom and school site level.
NickA
28-Feb-2013
[1314]
Scot, I've been teaching professionally for 27 years, and my understanding 
has always been based on the idea of building habit.
Scot
28-Feb-2013
[1315]
Very close to my thinking after 30 years.
james_nak
28-Feb-2013
[1316]
I also need the habit of playing lead like you Nick. :-)
NickA
28-Feb-2013
[1317x3]
Well - and maintaining interest - that's just as important.
Thanks James  :)
And I'd like to be able to write code like some of the guys here.
james_nak
28-Feb-2013
[1320]
Me thinks that many of these guys are in the stratosphere when it 
comes to programming.
Scot
28-Feb-2013
[1321]
I am a learning scientist (and really always have been) so my interest 
in from the perpective of the learner and the community of learners. 
 This has put me at odds with administrators and teachers at times.
james_nak
28-Feb-2013
[1322]
Scot, are you a boat rocker?
Scot
28-Feb-2013
[1323x2]
So for me learning is "relating" in a particular way to an idea. 
 Much like the habits you mention.  Part of that relationship is 
how much it matters fo the learner to be engaged.
Not just relating to ideas, but people, systems, environment, etc.
NickA
28-Feb-2013
[1325]
I think that ties into "maintaining interest"
Scot
28-Feb-2013
[1326]
Absolutely.
NickA
28-Feb-2013
[1327]
I think that anyone who teaches full time for decades will make all 
the same discoveries, even if we describe them differently.
Scot
28-Feb-2013
[1328]
I think we carry "ways of relating" with us into various contexts 
and situations.  Taking interest is a way of relating.
NickA
28-Feb-2013
[1329]
let's move to chit chat
Scot
28-Feb-2013
[1330x2]
Good teachers do, but in very individualistic sorts of ways.  I'm 
always struck by how different great teachers are.
to chit chat...
Bo
1-Mar-2013
[1332]
Um...a bit of unexpected behavior here on the Linux ARM version of 
R3:

>> 6.63 / 59
== 0.

>> 6.63 / 59.0
== 4.

Neither are correct.
Cyphre
1-Mar-2013
[1333]
Bo, I guess you are missing the dtoa.c pull-request from Ladislav 
in your ARM codebase. I bet that will help you.
Bo
1-Mar-2013
[1334]
I'm using the ARM build from rebolsource.net.
Cyphre
1-Mar-2013
[1335]
(check the official Carl's R3 github repo, It's in the pull-request 
queue)
Bo
1-Mar-2013
[1336]
What that pull request more recent than 24-Jan-2013?
Cyphre
1-Mar-2013
[1337]
Doesn't the binaries on rebolsource.net only contain accepted pull-requests?
AdrianS
1-Mar-2013
[1338]
yes, only the accepted ones are built with
Cyphre
1-Mar-2013
[1339x2]
So Bo, that's why your ARM binary doesn't behave well.
(I can confirm Anodroid ARM port shows correct result)
Bo
1-Mar-2013
[1341]
OK.  Thanks for the confirmation.
Sunanda
1-Mar-2013
[1342]
Is this an R3 bug or feature? Duplicate word in a single object....

    ob: object [] append ob  [b: 2 b: 3 b: 4]
    == make object! [
        b: 2
        b: 3
        b: 4
    ]


    foreach w words-of ob [print get w]   ;; they are actually different
    2
    3
    4
Maxim
1-Mar-2013
[1343]
that HAS to be a bug.
Sunanda
1-Mar-2013
[1344]
That what I thought, thanks -- but could not see it in curecode, 
and don't remember it in earlier versions. So it may be Something 
Very Clever :)
BrianH
1-Mar-2013
[1345]
Nope, it's an APPEND bug. Please report it (and thanks for all the 
reports lately).
Sunanda
1-Mar-2013
[1346]
Thanks. Done.
http://curecode.org/rebol3/ticket.rsp?id=1979
Bo
1-Mar-2013
[1347x2]
@GrahamC: Thanks A LOT for prot-smtp.r and prot-send.r.  I was able 
to send an email from R3, but only after changing a line from:

	ehlo: any [ port/spec/ehlo "rebol3 user pc" ]
to
	ehlo: any [ port/spec/ehlo port/spec/email ]
My smtp server was throwing a 501 5.0.0 Invalid domain name
GrahamC
1-Mar-2013
[1349]
Thanks .. http://chat.stackoverflow.com/transcript/message/8019099#8019099
Bo
1-Mar-2013
[1350]
No, thank you!
Bo
2-Mar-2013
[1351]
On R3 ARM:

>> header: [
** Syntax error: missing "]" at "end-of-script"
** Near: (line 1) header: [


I guess we can't cut-n-paste multi-line scripts into the console 
at present.