Farzeen discusses career trajectory with Ms. Bell’s class

Project research assistant Farzeen Harunani visited Courtney Bell’s classroom on March 11, and led a discussion about her career trajectory, from computer science student to industry professional to researcher.

As described by Akira Kamiya, project teacher learning center directory, Farzeen discussed “her experience as a woman of color, and the students were completely engaged, asking questions for almost 20 minutes after her presentation was over! I especially liked the fact that it was mostly the girls of color in the class that were doing most of the talking.”

Ms. Bell added, “Farzeen was amazing! The kids were so engaged the whole class and they were making connections between their interests and potential futures in computer science.”

farzeen-20160311

Team presents at MassCUE 2015 conference

The CS Pathways team members at MassCUE, October 21, 2015. L-R: Erin Natale, Dawn Munro, Akira Kamiya, Denise Salemi, Molly Laden, Lori Blank, and Fred Martin.
The CS Pathways team members at MassCUE, October 21, 2015. L-R: Erin Natale, Dawn Munro, Akira Kamiya, Denise Salemi, Molly Laden, Lori Blank, and Fred Martin.

The CS Pathways team delivered a successful presentation, Middle School Project-Based Computing, at the MassCUE 2015 conference at Gillette Stadium in Foxboro, MA on October 21, 2015.

The session immediately followed the opening keynote, and more than 40 conference-goers attended.

The presentation was organized by Akira Kamiya, who led the session itself. Molly Laden, Fred Martin, and Everett teachers Denise Salemi and Dawn Munro also contributed.

The session covered the goals of the project, provided an overview of the curriculum, and offered live demos of student work from Ms. Salemi’s and Ms. Munro’s spring 2015 classes.

A copy of the presentation slides and other handouts from the session are available.

CS Pathways summer camps were a huge success!

We hosted 72 Everett and Medford middle school students for our 2015 CS Pathways summer camps!

The camps were held July 6 through 10, at Medford High School and Everett High School.

At Medford, project teacher Mike Scarola was joined by PhD candidate Mark Sherman, along with Jessica Hamerly (Medford Public Schools) and Damian DeMarco (Revere Public Schools) in leading the session. UMass Lowell undergraduate Katherine Brunelle assisted.

At Everett, project teachers Denise Salemi and Dawn Munro were joined by Prof. Fred Martin in leading the session. UMass Lowell undergraduate Qiana Curcuru assisted.

Akira Kamiya, the project’s Teacher Learning Center Director, made sure all of our technology worked as smoothly as possible.

The Everett Independent published a lovely article about the kids’ work.

Thanks everyone!

A simplified MoleMash

The MIT MoleMash tutorial for App Inventor introduces several best practices.

But sometimes “best practices” distract novices from what they really need to understand.

MoleMash means to introduce these particular big ideas:

  • sprites—which can move around and react to being “touched”
  • the random function, and using it to move a sprite by setting its X and Y coordinates
  • keeping a score variable, and incrementing it.

But the tutorial obscures these ideas by forcing you to learn other stuff:

Subprocedures. The code to move the mole around is put into a subprocedure.

  • But it’s only two lines long. We don’t need a subprocedure for this.

Positioning the mole by querying the canvas for its dimensions, constructing them as a ratio, and scaling it to the full canvas size by multiplying by the “random fraction” primitive. Seriously? I can barely understand this.

  • Let’s just hard-code some X and Y limits. It’s easier to explain to kids this way.

Concatenating label text with a numerical value. The approach for keeping score uses both a label to hold the word “Score” and a global for keeping track of the score number. Then, to update the score, the label “Score” plus the number value are concatenated.

  • Let’s just put a number only in the text label. Then we don’t need a separate global, and we can increment the label’s text directly.
  • Also there’s no need for an UpdateScore procedure.

With this simplified MoleMash, the entire code is this:

Code for simplified MoleMash.
Code for simplified MoleMash.

This is far, far simpler than the MIT code.

Notice that the bounds of the random X and Y coordinates are 1 to 100. These are the default parameters of the “random integer” block when you pull it out of the palette.

This means that the mole will only jump about in the upper left corner of the canvas. That’s fine! Kids can figure out on their own how to expand the range.

For beginners, it’s better to use concrete values than abstract functions.

Time to MoleMash!

Azita is a technology teacher at the Andrews Middle School in Medford. This is her computer classroom:

Azita's classroom.
Azita’s classroom.

Kim, Akira and I visited with her today as she was introducing the MIT MoleMash tutorial to her students. They had previously worked on the MIT Paintpot tutorial.

Most of her students already had PaintPot working. Azita encouraged them to move on to MoleMash—if they needed to go back to PaintPot later, they could do that.

As with all of the other project classrooms, students were working in pairs.

The students had already been introduced to the Canvas in PaintPot. MoleMash introduced several new concepts—a sprite component inside the canvas, a clock component (which triggers the mole’s movements), and random numbers.

All four of us went around and worked with the students in small groups. Most of them were able to construct the interface elements for MoleMash. When I had the opportunity, I described the clock and random movement code to students directly, rather than having them copy it out of the tutorial.

I worked with two students in particular, Jamal and Raul, who were delighted when they got the mole jumping around! Then I encouraged them to explain their code to other students.

Extending the text-to-speech app

Mike is an engineering teacher, so his kids work in a spacious lab with lots of work areas, not just computers:

Mike's engineering classroom at Andrews Middle School
Mike’s engineering classroom at McGlynn Middle School

This was Mike’s 7th day into the Pathways in CS curriculum. Some of his students continued work on their versions of the MIT TalkToMe demonstration text-to-speech app, while others began the MIT Digital Doodle app. Like the other project classrooms, students were working in pairs, and midway through the class period, Mike asked them to “switch drivers” so that all students had mouse/keyboard time.

Some of his students were taking TalkToMe in fun directions. One pair of girls was working on “virtual boyfriend” app. When you pressed the button on the screen, the app would tell you a story in a deep British accent.

Another group was working on a Fortune Teller. Using App Inventor’s random number generator, the app would answer “Yes” or “No” to the question you typed in. Their code looked like this:

Fortune teller code—depending on the length of your question, you're more or less likely to get a “Yes” as the answer.
Fortune teller code—depending on the length of your question, you’re more or less likely to get a “Yes” as the answer.

The kid named Simon had keyed in the question—“Simon is awesome.” At first, their number range was from 1 to 50, so the app was mostly saying “No.” I encouraged them to think about how likely it was to say yes or no. At first they thought it was just random—or equally likely—but then the realized they were getting lots more No’s then Yes’s, and changed the range from 1 to 25. (The threshold between No and Yes is the length of the question-string. I had previously helped them with the length block.)

After class, Mike showed me his 15-session lesson plan for the project. He is taking notes after each session as to what’s actually been accomplished each day. Here’s the plan:

Mike class Mar 17_2

In the next class, he’ll be helping student learn about audio files, and getting them thinking about their final apps.

Doing the Digital Doodle

Debbie’s class has the computers arranged in rows, like this:

Debbie is using this computer room in the Andrews Middle School.
Debbie is using this computer room in the McGlynn Middle School.

All of the students were working in pairs.

In her class today, the students had built the MIT “Digital Doodle” tutorial, which lets you draw on the tablet using a Canvas component (see http://explore.appinventor.mit.edu/sites/all/files/hourofcode/DigitalDoodle_2perpage.pdf). The key bit of code looks like this (from Page 7 of the tutorial):

Code from MIT Digital Doodle tutorial PDF.
Code from MIT Digital Doodle tutorial PDF.

They all had it working. So then I asked them, can you get it to draw a different color?

A few of the students figured it out. Here’s the code from one of the groups:

Adding color to the Digital Doodle app with the Set Canvas PaintColor method.
Adding color to the Digital Doodle app with the Set Canvas PaintColor method.

The new part is the “Set Canvas PaintColor” command, plus the use of a color block.

I asked the students who figured it out to share the solution with each other.

Creative Commons images and teamwork

In Dawn’s classroom today, students were working on pairs on Macs. Here’s a photo of her lab (the kids had already left when I took the photo):

Dawn's classroom

She was leading a lesson that was projected at the front of the room, so all of the kids could see what she was doing. (She was standing off to the right side of the room, working on her own Mac.)

Dawn had the kids learn how to do safe searches by including the phrase “Creative Commons” in your search. She told them this will provide images that they’re allowed to use in their apps—even if they want to sell them in the Google Play store! She gave them an example of “creative commons pizza,” which produces results like this:

Creative Commons pizza search

Yum—when is lunch time!

Then she showed them how to right-click on an image and save it to the students’ project folders. This was trickier than it sounds, because most of the computers had that Apple mouse with the scrolly-wheel and no obvious right button! So students had to Control-click to get the pop-up menu with the “Save Image As…” dialog!

Dawn made a worksheet for kids to follow. It looked like this:

Dawn's worksheet for kids to search and save images.
Dawn’s worksheet for kids to search and save images.

Previously, Dawn had done a session with students where they brainstormed about what makes a good partner. Here’s what the class produced:

Dawn's class brainstorms about good partnerships!
Dawn’s class brainstorms about good partnerships!

Overall, today’s lesson was skill-building for when kids move on to making their own apps.