Re: [Edu-sig] K–12 Computer Science Framework -- k12cs.org

2016-10-18 Thread kirby urner
Hi Wes --

I'm in agreement with points 7 & 8 in:

https://code.org/files/Making_CS_Fundamental.pdf

i.e. the policy of making compsci courses count
towards math requirements.

NCTM has endorsed this approach as well, though
maybe only luke-warmly.

The above paper,  Making Computer Science
Fundamental to K–12 Education: Eight Policy Ideas.
is linked from:

https://k12cs.org/implementation-curriculum-course-pathways-and-teacher-development/

wherein it's suggested high schools offer "specialized courses"
in addition to AP CS.  That leaves the door open for
some much needed innovation and curriculum development
(what role will the teachers themselves play in that?).

Here's my main question:  will already on-the-job math
teachers get it together to offer these "specialized courses"
that include significant amounts of programming?

Example titles these high school math teachers might use:

Hacking Math Class by Peter Farrell
http://www.farrellpolymath.com/  (uses Raspberry-Pi)

Mathematics for the Digital Age & Programming
in Python by Litvin & Litvin
http://www.skylit.com/mathandpython.html

Doing Math with Python by Amit Saha
https://www.nostarch.com/doingmathwithpython

In other words, what public policies will enable / empower
math teachers to shift gears and get certification to teach
these specialized compsci-like courses?

As a consultant to the Oregon legislature, and lobbyist,
I'm keen to provide such opportunities to Oregon's math
teachers, in part so we don't have to wait for an all new
compsci faculty to boot itself up within every high school.

That'll take longer than offering free professional devel-
opment to the math teachers we've already got.  It's not
either / or.

https://medium.com/@kirbyurner/the-plight-of-high-school-math-teachers-c0faf0a6efe6#.7wj2ik8o3

Thoughts?

Kirby

PS:  also, yes to teaching unit testing, testing in general, early.
That's part of the "check your work" ethic already prevalent in
math teaching.  I show that approach in action here, about
composition of functions.

https://github.com/4dsolutions/Python5/blob/master/Abducted!.ipynb
(see code cell #5)
___
Edu-sig mailing list
Edu-sig@python.org
https://mail.python.org/mailman/listinfo/edu-sig


Re: [Edu-sig] K–12 Computer Science Framework -- k12cs.org

2016-10-18 Thread Wes Turner
On Mon, Oct 17, 2016 at 7:37 PM, Wes Turner  wrote:
> There is a new K–12 Computer Science Framework:
> [...]
>
> - Additionally,
>   I can't help but wonder whether it makes sense it start with TDD
> (Test-Driven Development) first when teaching Python (and STEM, and CS, in
> general).

Hello World with TDD (and links to {Wikipedia, DBPedia} concept URIs):
https://westurner.org/2016/10/17/teaching-test-driven-development-first.html

import unittest

class TestHelloWorld(unittest.Testcase):

def setUp(self):
# print("setUp")
self.data = {'name': 'TestName'}

def test_hello_world(self, data=None):
if data is None:
data = self.data
name = data['name']
expected_output = "Hello, {}!".format(name)
output = hello_world(name)
assert expected_output == output
self.assertEqual(ouput, expected_output)

 # def tearDown(self):
 #print("tearDown")
 #print(json.dumps(self.data, indent=2))
___
Edu-sig mailing list
Edu-sig@python.org
https://mail.python.org/mailman/listinfo/edu-sig


[Edu-sig] K–12 Computer Science Framework -- k12cs.org

2016-10-18 Thread Wes Turner
There is a new K–12 Computer Science Framework:

- Homepage: https://k12cs.org
- HTML: https://k12cs.org/navigating-the-practices/
- PDF: https://k12cs.org/wp-content/uploads/2016/09/K%E2%80%9312-Co
mputer-Science-Framework.pdf

- There are: Concepts and Practices
- The site provides navigation by: Grade-Band, Concept, Progression
- A number of CS organizations and companies have contributed

Ideas / Feedback:
- It may be helpful (and efficient) to coordinate [Python] CS educational
resources with this new K-12 Computer Science Framework:
- Additionally,
  I can't help but wonder whether it makes sense it start with TDD
(Test-Driven Development) first when teaching Python (and STEM, and CS, in
general).
___
Edu-sig mailing list
Edu-sig@python.org
https://mail.python.org/mailman/listinfo/edu-sig