Monthly Archives: July 2014

AP Computer Science Summative Labs

I have selected the summative labs for next year’s AP Computer Science course. Students complete a huge number of practice programming activities as a whole class, through pair programming, or on their own. The purpose of these practice activities is to focus on learning and receive and provide feedback. At the end of each unit, students complete a summative lab. I kept the most successful labs from last year pretty much unchanged, revised some, and incorporated some new ones. An important element of each summative lab are the extensions. None of the extensions are required, but most students try to implement some of them or create their own extension. I have students with a diverse set of programming experience and knowledge, and the extensions provide the opportunity for each student to be challenged.

A new element of next year’s class, which affects all the labs, is the use of [GitHub](https://github.com/education). I want students to be exposed to and gain familiarity with some of the best practices of software engineering. Last year, students leveraged JUnit to write unit tests. This year, they will use GitHub for source control management. I created a repository for each unit which contains some practice projects and at least an empty project for the summative lab (maybe more, depending on the lab). Students will fork these repositories into their own accounts and commit changes as they work on the practice programming activities and summative lab throughout the unit. When they complete the summative lab, they will create a pull request. In response, I will offer feedback and assess their summative lab. At the end of the course, students will have a collection of repositories in their own GitHub account that captures all of their coding.

Here are the summative labs with links to the associated unit’s GitHub repository:

[Turtle Lab](https://github.com/nnhsapcs201415/unit1Objects)
===

*This is a new summative lab. I’m de-emphasizing (but not eliminating) GridWorld. The first lab used to involve placing GridWorld actors in a world. Instead, students will do something similar with turtles. This lab leverages the [Media Computation classes from Georgia Tech](http://coweb.cc.gatech.edu/mediaComp-teach). This lab nicely frames the first unit as students create a turtle world program on their very first day of class.*

### Purpose

The goal of this lab for you to experience what your first assignment as a software developer at a software company may be like. You will be working with a large body of code (Turtle and TurtleWorld) with which you are unfamiliar. You don’t understand all of the intricacies of the existing code base and you aren’t yet familiar with many of the Java language features that you will use. However, through experimentation and browsing the documentation, you will be able to complete this assignment and most likely go beyond the requirements!

### Requirements

* Sync the TurtleLab directory from GitHub.
* Draw a pattern using at least two Turtle objects.
* Invoke multiple methods on the turtle objects to change their attributes.
* Follow our Java style guidelines.

### Extensions

* Make a more sophisticated pattern.
* Make a pattern that involves multiple colors.
* Change the picture for the turtle to something else.
* Add more awesome.
* Something else? Be creative and share!

### Submission

* Submit a pull request in GitHub and submit a link to the request with this assignment.

[Cityscape Lab](https://github.com/nnhsapcs201415/unit2Classes)
===

*This lab was new last year and was created by my counterpart at our sister high school. I’ve left it as is other than incorporating the design class diagram into the lab description. (I drew the DCD on the whiteboard last year in response to student questions.)*

### Introduction

The goal of this lab is for you to demonstrate that you can define classes, create objects, and display graphics via a Java application.

### Requirements

* Create a Java graphical application (with a Viewer class, Component class) that displays a cityscape.
* Design at least three classes for elements of the cityscape (e.g., building, window, sun, moon, car, tree)
* demonstrate good class design (encapsulation)
* provide configurability through constructors and instance variables (size, color, etc.)
* Create multiple instances of a class with different properties and display in the cityscape.
* Document the class using JavaDoc comments as demonstrated in our code template.
* Peer review another student’s lab and provide comments in the rubric hosted in Canvas.

Here is a design class diagram to illustrate the relationship among the classes in this project:

CityscapeDCD

### Extensions

* Define additional classes for additional elements of the cityscape.
* Animate your cityscape (e.g., day and night, lights in windows, moving cars)
* Randomize your cityscape (a different cityscape every time)
* Add more awesome.

### Submission

* Submit a pull request in GitHub and submit a link to the request with this assignment.

[Game of Life Lab](https://github.com/nnhsapcs201415/unit3DecisionsLoops)
===

*This was the [first lab](https://pedagoguepadawan.net/202/the-game-of-life-and-grid-world/) that I created on my own and have used it the past two years. It is a perennial favorite of the students. Last year, I tried to incorporate unit testing into this lab and it was a bit rocky. This year, I’m providing more scaffolding to help students implement their unit tests.*

### Introduction

The goal of this lab is to apply your understanding of decision and loop structures to implement a complex algorithm within the context of an unfamiliar and significant software framework (GridWorld). In addition, you will implement a unit test for your program using the JUnit framework and create documentation for your program using JavaDoc.

### Requirements

Write a program that plays [Conway’s Game of Life][1]. Conway’s Game of Life is a cellular automaton. From Wikipedia:

_The universe of the Game of Life is an infinite two-dimensional orthogonal grid of square cells, each of which is in one of two possible states, alive or dead. Every cell interacts with its eight neighbours, which are the cells that are horizontally, vertically, or diagonally adjacent. At each step in time, the following transitions occur:_

* _Any live cell with fewer than two live neighbours dies, as if caused by underpopulation._
* _Any live cell with two or three live neighbours lives on to the next generation._
* _Any live cell with more than three live neighbours dies, as if by overcrowding._
* _Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction._
* _The initial pattern constitutes the seed of the system. The first generation is created by applying the above rules simultaneously to every cell in the seed—births and deaths occur simultaneously, and the discrete moment at which this happens is sometimes called a tick (in other words, each generation is a pure function of the preceding one). The rules continue to be applied repeatedly to create further generations._

### Nonfunctional Requirements:

* the program must be implemented in Java and utilize the GridWorld platform
* I recommend not use GridWorld’s execution engine to produce subsequent generations. It will be easier to implement the unit test if you directly produce and display subsequent generations.

### Artifacts to Produce:

* Requirements Document: Many functional and nonfunctional requirements needs to be defined. You must define additional requirements that are reasonable and document them in a requirements document. I must review your requirements document before you start the design document or test plan. You may change the requirements document throughout development.
* Design Document: You must do some design activity before starting implementation. This may consist of a flow cart, pseudocode, or other design artifact. I must review your design document before you start implementing code. You may change your design document throughout development.
* Test Plan: You must create a test plan with specific test cases (at least two) before starting implementation. I must review your test plan before you start implementing your test class. You may change your test plan throughout development. The provided code in GitHub is an example of implementing an initial test case.
* `GameOfLifeTest `Test Class: JUnit-compatible test class that implements the test plan.
* `GameOfLife` class: You must produce a working class the meets the requirements and is verified and validated by your test plan.
* Reflection Document: This is a significant and challenging lab. Please reflect on this experience and share your feedback with me. What did you like or dislike and why? What was surprising or unexpected? What did you learn? What questions do you still have? What advice would you offer next year’s students?

### Extensions:

* Add custom icons for alive or dead cells.
* Implement more sophisticated seed patterns.
* Add more awesome.

### Submission:

* Ensure the following artifacts have been committed to GitHub in addition to your code:
* requirements document
* design document (pseudocode, flow charts, etc.)
* test plan (with specific test cases)
* HTML documentation generated by JavaDoc
* reflection document
* Submit a pull request in GitHub and submit a link to the request with this assignment.

### Rubric:

The implementation will be evaluated according to the Computer Science Grading Rubric in Canvas. The other artifacts will be evaluated independently.

[Signals in Noise Lab](https://github.com/nnhsapcs201415/unit4ArraysArrayLists)
===

*This is a new lab. It is inspired by the post “[Detecting Signals and Noise](http://www.datagenetics.com/blog/may22014/index.html)” on the DataGenetics blog. I was looking for a new lab for arrays and array lists. I also wanted a lab that more directly represented an authentic application of computer science. This technique to detect a signal in the presence of noise is conceptually very similar to that used in particle physics experiments (e.g., dark matter candidates hitting multiple CCD pixels or tracks reconstructed within a particle collider). I wrote the code for the case of a stationary target as an example. Students will tackle the more challenging case of a moving target. I’m really looking forward to seeing how students engage with this lab.*

### Introduction

The goal of this lab is to apply your understanding of 2D arrays to implement a complex algorithm. In addition, you will implement a unit test for your program using the JUnit framework and create documentation for your program using JavaDoc.

One common application of computing is signal analysis. In real-world applications, the data that is processed is a combination of something of interest (the signal) and garbage that obscures the signal (noise). Computational techniques for signal analysis are prevalent in a wide variety of scientific and financial applications. This lab provides a simplified context in which to explore signal analysis. Conceptually, the techniques you will use in this lab are similar to those used in particle physics experiments.

### Requirements

* Write a Monster Early Warning program that finds a moving monster based on the data from your noisy radar system. This is described in DataGenetics blog post, “[Detecting Signals in Noise][2].” The sample code in GitHub implements the case of a stationary monster. You may leverage this code to implement the case of a moving monster, which is more complicated.
* Design your program such that the initial position and velocity (dx and dy) of the monster can be specified interactively (e.g., from a user) or as parameters (e.g., for your unit test).
* Implement a unit test for your program that tests multiple cases.
* Document your code with standard JavaDoc comments.

### Extensions:
* Add support for detecting multiple monsters.
* Develop a different detection algorithm.
* Add support for straight-line constant acceleration motion.
* Add more awesome.

### Submission:

* Submit a pull request in GitHub and submit a link to the request with this assignment.

[Collage Lab](https://github.com/nnhsapcs201415/unit6MediaComp)
===

*This lab is from the [Media Computation materials from Georgia Tech](http://coweb.cc.gatech.edu/mediaComp-teach). Students create [incredibly creative collages](https://pedagoguepadawan.net/279/media-computation-collages/). This is the first lab of the spring semester and is a good review of the fall semester after winter break. This lab is very similar to the new [AP Picture Lab](http://apcentral.collegeboard.com/apc/public/courses/teachers_corner/222163.html). I’m going to have students complete most of the activities in the AP Picture Lab as practice programming activities.*

### Introduction

The goal of this lab is for you to apply creatively the filters and transformations that you have developed throughout this unit.

### Requirements

* collage contains at least 4 copies of the image
* the 4 copies includes the original image and at least 3 modifications of the original image
* modifications must include one or more filters (changing colors) and one or more transformations (scaling, cropping, mirroring)
* the collage must run on its own (don’t invoke FileChooser.pickAFile())
* * instead copy the source image file into the same folder as your Java source files and just specify the file name to the Picture constructor
* For example: Picture sourcePic = new Picture(“beach.jpg”);
* the collage must be saved as an image file, the path needs to be absolute and specific to where you have your bookClasses folder stored. I recommend copying and pasting the path from an Explorer window to your code and then escaping the backslashes. For example:
* * finalPic.write(“H:\2014\AP Computer Science\Media Computation\bookClasses\MyCollage.jpg”);

### Extensions

* Add more copies.
* Add more filters
* sepia:
* convert to grayscale
* if red < 60 then reduce all three components to 90% of their original value
* else if red < 190 then reduce just blue to 80% of its original value
* else reduce just blue to 90% of its original value
* posterize
* set all color component values in a range to one value (the midpoint of the range)
* try with four ranges for each color (0-63, 64-127, 128-191, 192-255)
* pixelate
* Add more transformations (e.g., rotation)
* Add more awesome.

### Submission

* Commit the generated collage image file to GitHub.
* Submit a pull request in GitHub and submit a link to the request with this assignment.

[Elevens Lab](https://github.com/nnhsapcs201415/unit7ObjectOrientedDesign)
===

*This is one of the new [AP Computer Science labs](http://apcentral.collegeboard.com/apc/public/courses/teachers_corner/222163.html). I wanted to try a new object-oriented design lab and this looks like it may be a good fit.*

### Introduction

The goal of this lab is for you to apply object-oriented design principles to implement the card game Elevens.

### Requirements

* complete Activities 1-9 of the AP Elevens Lab.
* peer review another student’s lab and provide comments in Canvas.

### Extensions

* complete Activities 10-11 of the AP Elevens Lab.
* Add more awesome.

### Submission

* Submit a pull request in GitHub and submit a link to the request with this assignment.

[Fractal Tree Lab](https://github.com/nnhsapcs201415/unit8RecursionSortsSearches)
===

*The [original version of this lab](https://pedagoguepadawan.net/241/fractal-tree-lab/) was inspired by George Peck from Lynbrook High School. The end product of this lab has remained the same over the past two years, but last year it was more effective since I provided much less scaffolding. That change was a result of feedback from students who let me know that the original version of the lab was too easy. I’m keeping it unchanged for next year.*

### Introduction

The goal of this lab is to create a recursive algorithm to draw a tree.

Imagine you were describing how to draw a tree. You might say:

1. Draw a vertical line
2. At the top of the line, draw two smaller lines (“branches”) in a v shape
3. At the ends of each of those two branches, draw two even smaller branches
4. Keep repeating the process, drawing smaller and smaller branches until the branches are too small to draw

This process of repeating the same design at a continually decreasing scale is an example of a _Fractal_. Using fractals to draw trees can give some [interesting and beautiful patterns.][3] In this assignment we will use a recursive branching function to create a fractal tree.

### Requirements

* Use the Koch Snowflake program as a starting point for an TreeViewer class and a TreeComponent class.
* The trunk of the tree needs four values: the X and Y of the starting point and the X and Y of the end point. We will also have three member variables that will control:
* how much smaller the branches are
* how small the branches will get
* the angle between the branches.

### Extensions:

* Add controls (e.g., scrollbars) to allow the user to change member variables that affect the construction of the tree.
* Some fantastic trees can be produced by modify algorithm to add asymmetry, adjust angles,
 adjust thickness, or adjust color.
* Add more awesome.

### Submission:

* Submit a pull request in GitHub and submit a link to the request with this assignment.

[1]: http://en.wikipedia.org/wiki/Conway’s_Game_of_Life
[2]: http://www.datagenetics.com/blog/may22014/index.html
[3]: http://www.visualbots.com/tree_project.htm

A Different Kind of Computer Science Literacy: Reading, Writing, Debate

I want my AP Computer Science course to be more than a programming class. I want my students to read, think, write, and debate issues at the intersection of technology, society, and ethics. I suppose this aligns with the AP Computer Science course goal of “understand the ethical and social implications of computer use,” and “Computing in Context” topics (“An awareness of the ethical and social implications of computing systems is necessary for the study of computer science. These topics need not be covered in detail, but should be considered throughout the course.”). I’ve never seen a question related to these topics on the AP Exam, and I wonder how much these topics are addressed in classes throughout the world. Regardless, students should explore these topics. In addition, practicing reading, writing, analyzing, and debating these topics incorporates various Common Core literacy standards.

The first standard for my course is: “Standard 1 – Analyze, evaluate, and debate examples combining technology, society, and ethics.” Last year, students completed five discussion assignments associated with this standard; three the first semester and two the second. In preparation for next year, I revised these assignments. I kept the ones that resulted in the most engagement and discussion relatively unchanged. I combined a couple into a richer collection of articles in hopes of generating a stronger discussion. I created a couple of new assignments to expose students to topics I felt were important. Next year, I plan to have students complete three discussion assignments in the fall semester and three in the spring.

In hopes that other computer science educators will find these assignments useful in their classrooms, I’ve copied the six from [Canvas](http://www.instructure.com) into this blog post.

What is Computer Science? Who should learn it? When should they start?
==

In the past couple of years, there have been efforts to promote computer science to the public and primary and secondary students in particular. Last December, [Code.org][1] hosted the [Hour of Code][2]. On January 1, 2012, [Codeacedemy][3] declared that 2012 would be “Code Year.” Audrey Waters wrote [an article][4] about “Code Year,” the press it generated, and if it is a good idea. The controversy erupted when Jeff Atwood, co-founder of Stack Overflow, published his response: “[Please Don’t Learn to Code][5].” In the Association of Computing Machinery journal, Esther Shein wrote an [excellent article][6] on the subject. In February, National Public Radio [did a piece][7] on these efforts. What complicates all of these efforts is the general lack of agreement about what is computer science. Jonah Kagan raises this point in his article “[Computer science isn’t a science and it isn’t about computers][8]”.

**Requirements**:

* Read all five articles (Waters, Atwood, Shein, NPR, Kagan) and any others related to the topic that you find interesting.
* Post a response to these articles. Your response must:
* Provide a brief overview of each of the four articles.
* Answer multiple prompts (potential, not exclusive, prompts are enumerated below) in detail.
* Cite specifics from each of the four articles to support your response and demonstrate that you carefully read and analyzed each article.
* Connect the articles to your personal experience (past, present, or future).
* Comment in a civil and respectful manner on other’s responses or comments. (You must post before you can see others’ responses or comments.)

Some potential (but not exclusive) prompts:

* Do you strongly agree with one side or the other in the everyone should learn to code debate? Why?
* Does your decision to take AP Computer Science support or refute any of these claims?
* What is the most important thing to learn in AP Computer Science? Java? Writing programs? What?
* How is Kagan’s description of computer science consistent or inconsistent with your understanding of computer science?
* How does this Kagan’s essay support (or doesn’t support) your expectations for this computer science course?
* Do you agree that society in general and even technically sophisticated people are unsure exactly what computer science is? Does this matter?
* Is this class a math class, a business class, a science class, an engineering class, or something else? Why?

[1]: http://code.org/
[2]: http://code.org/learn
[3]: http://codecademy.com/
[4]: http://www.insidehighered.com/blogs/hack-higher-education/top-ed-tech-trends-2012-learning-code
[5]: http://www.codinghorror.com/blog/2012/05/please-dont-learn-to-code.html
[6]: http://cacm.acm.org/magazines/2014/2/171674-should-everybody-learn-to-code/fulltext
[7]: http://www.npr.org/blogs/alltechconsidered/2014/02/17/271151462/a-push-to-boost-computer-science-learning-even-at-an-early-age
[8]: http://www.jonahkagan.me/projects/writing/cs-essay.html

Net Neutrality
==

Vi Hart’s video [Net Neutrality in the US: Now What?][9] is the best explanation of what Net Neutrality is and the history of the issue. In Forbes, Joshua Steimle, wrote a piece about his opposition to Net Neutrality: [Am I The Only Techie Against Net Neutrality?][10].

**Requirements**:

* Watch Vi Hart’s video, read Steimle’s article, and watch or read at least two other videos or articles linked in the description of the video.
* Post a response to these videos and articles. Your response must:
* Provide a brief overview of each of the four videos/articles (clearly state which other two videos or articles you watched or read).
* Answer multiple prompts (potential, not exclusive, prompts are enumerated below) in detail.
* Cite specifics from each of the four articles to support your response and demonstrate that you carefully read and analyzed each article.
* Connect the articles to your personal experience (past, present, or future).
* Comment in a civil and respectful manner on other’s responses or comments. (You must post before you can see others’ responses or comments.)

Some potential (but not exclusive) prompts:

* Do you support Net Neutrality? Why or why not? Defend your position with evidence.
* Will the FCC ruling on this topic actually affect you in any significant way?
* What, if anything, do you plan to do after analyzing this issue as a result of this assignment?

[9]: https://www.youtube.com/watch?v=NAxMyTwmu_M
[10]: http://www.forbes.com/sites/joshsteimle/2014/05/14/am-i-the-only-techie-against-net-neutrality/

Diversity in Computer Science
==

As a group, Computer Science students are one of the least diverse. What needs to be done to increase the participation of women and underrepresented minorities? In [this interview][101], Dr. Maria Klawe, president of of Harvey Mudd College in California, addresses this question on PBS Newshour. In her article, [Want More Women in Tech? Fix Misperceptions of Computer Science][102], Shuchi Grover focuses on the image problem of computer science. The last two sections of Tasneem Raja’s recent article [Is Coding the New Literacy?][103] summarizes the challenges and various efforts underway. Philip Guo writes about his [Silent Technical Privilege][104] as an Asian male.

**Requirements**:

* Read or watch all four pieces (Klawe, Grover, Raja, Guo) and any others related to the topic that you find interesting.
* Post a response to these articles. Your response must:
* Provide a brief overview of each of the four articles.
* Answer multiple prompts (potential, not exclusive, prompts are enumerated below) in detail.
* Cite specifics from each of the four articles to support your response and demonstrate that you carefully read and analyzed each article.
* Connect the articles to your personal experience (past, present, or future).
* Comment in a civil and respectful manner on other’s responses or comments. (You must post before you can see others’ responses or comments.)

Some potential (but not exclusive) prompts:

* Is it feasible to address the gender and underrepresented minority gap in computer science in high school?
* Do you agree that the lack of diversity is due to a misperception of computer science?
* What can high school students do to address this gender gap? What about teachers (computer science and others)? What about the school as a whole? What about parents? What about society?
* Do you have a personal experience that either encouraged or discouraged you to take this or previous computer science courses?

[101]: http://www.pbs.org/newshour/bb/science/jan-june12/womenscience_04-26.html
[102]: https://www.edsurge.com/n/2014-01-07-want-more-women-in-tech-fix-misperceptions-of-computer-science
[103]: http://www.motherjones.com/media/2014/06/computer-science-programming-code-diversity-sexism-education
[104]: http://www.slate.com/articles/technology/technology/2014/01/programmer_privilege_as_an_asian_male_computer_science_major_everyone_gave.html

Stuxnet
==

“Three years after it was discovered, Stuxnet, the first publicly disclosed cyberweapon, continues to baffle military strategists, computer security experts, political decision-makers, and the general public. A comfortable narrative has formed around the weapon: how it attacked the Iranian nuclear facility at Natanz, how it was designed to be undiscoverable, how it escaped from Natanz against its creators’ wishes. Major elements of that story are either incorrect or incomplete.”

**Requirements**:

* Read [this article][201] about Stuxnet and the cyberattack on Iran’s centrifuges. Also browse this [detailed report][202] for more information.
* Post a response to these articles. Your response must:
* Provide a brief overview of the two variants of the virus. Compare and contrast them to each other .
* Answer multiple prompts (potential, not exclusive, prompts are enumerated below) in detail.
* Cite specifics from the article and report to support your response and demonstrate that you carefully read and analyzed the article and report.
* Connect the articles to your personal experience (past, present, or future).
* Comment in a civil and respectful manner on other’s responses or comments. (You must post before you can see others’ responses or comments.)

Some potential (but not exclusive) prompts:

* What security vulnerabilities were exposed?
* Did the attack work as designed?
* What does this attack on Iran’s centrifuges mean for the security of critical technologies within the United States?
* What types of defenses would be effective? What types of defenses are not?

[201]: http://www.foreignpolicy.com/articles/2013/11/19/stuxnets_secret_twin_iran_nukes_cyber_attack
[202]: http://www.langner.com/en/wp-content/uploads/2013/11/To-kill-a-centrifuge.pdf

Data, Privacy, and the Future of Ed-Tech
==

**Requirements**:

* Read the following excerpt. Choose two or more of the questions presented to explore further, either by following the links or doing additional research.
* Post a response to these articles. Your response must:
* Provide a brief overview of the articles related to the two questions that you chose to explore.
* Cite specifics from each of the articles related to the two questions that you chose to explore to support your response and demonstrate that you carefully read and analyzed each article.
* Connect the articles to your personal experience (past, present, or future). For example:
* How do the issues of data and privacy affect you personally?
* What personal behaviors are influenced by your understanding of data and privacy?
* Will you change your behavior after researching this topic?
* Comment in a civil and respectful manner on other’s responses or comments. (You must post before you can see others’ responses or comments.)

## Data, Privacy, and the Future of Ed-Tech

Facebook CEO Mark Zuckerberg famously [declared privacy “dead” back in 2010][301]. This year, incidentally, he bought the four houses adjacent to his after hearing that a developer had plans to market a neighboring property as being “[next door to Mark Zuckerberg][302].”

Nevertheless, you hear it a lot in technology circles – “privacy is dead” – often uttered by those with a stake in our handing over increasing amounts of personal data without question.

To see privacy as something will inevitably “die,” to view it as a monolithic notion is [quite ahistorical][303]. To do so ignores the varied cultural and social expectations we have about privacy today. It ignores how power relations have always shaped who has rights and access to autonomy, self-determination, solitude. It ignores the ongoing resistance (by [teens][304], for example, by [activists][305], and by [librarians][306]) to surveillance.

Nonetheless, as the adoption of ed-tech continues (and with it, the increasing amount of data created – intentionally or unintentionally, as content or as “[exhaust][307]”), there are incredibly important discussions to be had about data and privacy:

* What role will [predictive modeling][308] and predictive policing have in education? Who will be marked as “deviant”? [Why][309]? Against whom will data [discriminate][310]?
* What role does privacy play – or phrase differently: what role does a respite from surveillance play – in a child’s development?
* How can we foster agency and experimentation in a world of algorithms?
* What assumptions go into our algorithms and models? Who builds them? Are they transparent? (After all, [data is not objective][311].)
* [What can we _really_ learn from big data in education][312]? [Bill Gates says][313] big data will “save American schools.” [Really][314]? Save from what? For whom? Or is all this data hype just [bullshit][315]?
* Who owns education data?
* [What happens to our democracy][316] if we give up our privacy and surrender our data to tech companies and to the federal government? What role will education play in resisting or acquiescing to these institutions’ demands?

_The above is a portion of the article [Top Ed-Tech Trends of 2013: Data vs Privacy][317] by Audrey Waters who blogs at [Hack Education][318]._

[301]: http://readwrite.com/2010/01/09/facebooks_zuckerberg_says_the_age_of_privacy_is_ov#awesm=~opKIRcAaQq9fLD
[302]: http://www.mercurynews.com/business/ci_24285169/
[303]: http://techcrunch.com/2013/11/20/googles-cerf-says-privacy-may-be-an-anomaly-historically-hes-right/
[304]: http://youtu.be/5t9ck8K1Ddc
[305]: http://www.insidehighered.com/news/2013/12/10/digital-freedom-groups-road-recognition-sparks-legal-debate-iowa-state-u
[306]: http://readerprivacy.org/news.jsp?id=48
[307]: http://blogs.wsj.com/cio/2013/11/20/who-owns-your-data-exhaust/
[308]: http://www.insidehighered.com/news/2013/10/18/u-kentucky-hopes-boost-student-retention-prescriptive-analytics
[309]: http://www.thenation.com/blog/173877/punishing-students-who-they-are-not-what-they-do
[310]: http://www.technologyreview.com/news/520131/data-discrimination-means-the-poor-may-experience-a-different-internet/
[311]: http://mathbabe.org/2013/01/29/bill-gates-is-naive-data-is-not-objective/
[312]: http://mfeldstein.com/why-big-data-mostly-cant-help-improve-teaching/
[313]: http://www.theatlantic.com/business/archive/2013/01/can-big-data-save-american-schools-bill-gates-is-betting-on-yes/272719/
[314]: https://naperville.instructure.com/courses/860065/discussion_topics/undefined
[315]: http://chronicle.com/blogs/wiredcampus/big-data-is-bunk-obama-campaigns-tech-guru-tells-university-leaders/47885
[316]: http://www.technologyreview.com/featuredstory/520426/the-real-privacy-problem/
[317]: http://www.hackeducation.com/2013/12/11/top-ed-tech-trends-2013-data-privacy/
[318]: http://www.hackeducation.com/

Aaron Swartz
==

From Wikipedia: [Aaron Swartz][401] (November 8, 1986 – January 11, 2013) was an American computer programmer, writer, political organizer and Internet [Hacktivist][402].

Swartz was involved in the development of the [web feed][403] format [RSS][404],[[3]][405] the organization [Creative Commons][406],[[4]][407] the website framework web.py[[5]][408] and the social news site, [Reddit][409], in which he became a partner after its merger with his company, Infogami.[[i]][410]

Swartz’s work also focused on sociology, civic awareness and activism.[[6]][411][[7]][412] He helped launch the [Progressive Change Campaign Committee][413] in 2009 to learn more about effective online activism. In 2010 he became a research fellow at [Harvard University][414]’s Safra Research Lab on Institutional Corruption, directed by [Lawrence Lessig][415].[[8]][416][[9]][417] He founded the online group [Demand Progress][418], known for its campaign against the [Stop Online Piracy Act][419].

On January 6, 2011, Swartz was arrested by [MIT police][420] on state breaking-and-entering charges, after systematically downloading [academic journal][421] articles from [JSTOR][422].[[10]][423][[11]][424]Federal prosecutors later charged him with two counts of [wire fraud][425] and 11 violations of the [Computer Fraud and Abuse Act][426],[[12]][427] carrying a cumulative maximum penalty of $1 million in fines, 35 years in prison, [asset forfeiture][428], [restitution][429] and [supervised release][430].[[13]][431]

Swartz declined a [plea bargain][432] under which he would serve six months in federal prison. Two days after the prosecution rejected a counter-offer by Swartz, he was found dead in his [Brooklyn][433], [New York][434] apartment, where he had hanged himself.[[14]][435][[15]][436]

In June 2013, Swartz was posthumously inducted into the [Internet Hall of Fame][437].[[16]][438][[17]][439]

Boston Magazine published an article titled, “[Losing Aaron, Bob Swartz on MIT’s Role in His Son’s Death][440]”.

In January 2013, [Aaron’s Law][441] was authored in Congress. The Electronic Frontier Foundation has been [leading efforts][442] to reform CFAA and pass Aaron’s Law and similar initiatives.

Lawrence Lessig used the occasion of his Chair Lecture at Harvard to speak about Aaron Swartz: “[Aaron’s Laws: Law and Justice in a Digital Age][443]”.

**Requirements**:

* Read the articles from [Boston Magazine][440], [WIRED][441], and [EFF][442]. (Watch Lessig’s

[443], if interested; it is excellent.)
* Post a response to these articles. Your response must:
* Provide a brief overview of Aaron Swartz, CFAA, and Aaron’s Law.
* Answer multiple prompts (potential, not exclusive, prompts are enumerated below) in detail.
* Cite specifics from each of the three articles to support your response and demonstrate that you carefully read and analyzed each article.
* Connect the articles to your personal experience (past, present, or future).
* Comment in a civil and respectful manner on other’s responses or comments. (You must post before you can see others’ responses or comments.)

Some potential (but not exclusive) prompts:

* Is it accurate to compare Aaron’s actions to that of civil disobedience?
* Did Aaron’s downloading of JSTOR archive cause harm?
* What role and responsibility does MIT have in this case?
* What reforms, if any, are needed? Does Aaron’s Law go far enough?
* What can you do? What should you do?

[401]: http://en.wikipedia.org/wiki/Aaron_Swartz
[402]: http://en.wikipedia.org/wiki/Hacktivism “Hacktivism”
[403]: http://en.wikipedia.org/wiki/Web_feed “Web feed”
[404]: http://en.wikipedia.org/wiki/RSS “RSS”
[405]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-harvmag-3
[406]: http://en.wikipedia.org/wiki/Creative_Commons “Creative Commons”
[407]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-4
[408]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-grehan-5
[409]: http://en.wikipedia.org/wiki/Reddit “Reddit”
[10]: http://en.wikipedia.org/wiki/Aaron_Swartz#endnote_merger
[411]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-6
[412]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-7
[413]: http://en.wikipedia.org/wiki/Progressive_Change_Campaign_Committee “Progressive Change Campaign Committee”
[414]: http://en.wikipedia.org/wiki/Harvard_University “Harvard University”
[415]: http://en.wikipedia.org/wiki/Lawrence_Lessig “Lawrence Lessig”
[416]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-Seidman-8
[417]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-safra-9
[418]: http://en.wikipedia.org/wiki/Demand_Progress “Demand Progress”
[419]: http://en.wikipedia.org/wiki/Stop_Online_Piracy_Act “Stop Online Piracy Act”
[420]: http://en.wikipedia.org/wiki/Massachusetts_Institute_of_Technology_Police_Department “Massachusetts Institute of Technology Police Department”
[421]: http://en.wikipedia.org/wiki/Academic_journal “Academic journal”
[422]: http://en.wikipedia.org/wiki/JSTOR “JSTOR”
[423]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-gerstein-10
[424]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-IncidentReport-11
[425]: http://en.wikipedia.org/wiki/Mail_and_wire_fraud#Wire “Mail and wire fraud”
[426]: http://en.wikipedia.org/wiki/Computer_Fraud_and_Abuse_Act “Computer Fraud and Abuse Act”
[427]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-Indictment-12
[428]: http://en.wikipedia.org/wiki/Asset_forfeiture “Asset forfeiture”
[429]: http://en.wikipedia.org/wiki/Restitution “Restitution”
[430]: http://en.wikipedia.org/wiki/United_States_federal_probation_and_supervised_release “United States federal probation and supervised release”
[431]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-SwartzAaronPR-13
[432]: http://en.wikipedia.org/wiki/Plea_bargain “Plea bargain”
[433]: http://en.wikipedia.org/wiki/Brooklyn “Brooklyn”
[434]: http://en.wikipedia.org/wiki/New_York “New York”
[435]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-autogenerated1-14
[436]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-Time-15
[437]: http://en.wikipedia.org/wiki/Internet_Hall_of_Fame “Internet Hall of Fame”
[438]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-:1-16
[439]: http://en.wikipedia.org/wiki/Aaron_Swartz#cite_note-:0-17
[440]: http://www.bostonmagazine.com/news/article/2014/01/02/bob-swartz-losing-aaron/
[441]: http://www.wired.com/2013/06/aarons-law-is-finally-here/
[442]: https://www.eff.org/issues/cfaa
[443]: https://vimeo.com/60093875

2013-2014 in Numbers

The 2013-2014 school year by the numbers:

* 88 students in the fall; 86 students in the spring
* 71 recommendation letters for 36 different students
* 30 standards in AP Physics B; 80, in Honors Physics; 20 in AP Computer Science
* 596 [tweets](https://twitter.com/gcschmit)
* 16 [blog posts](https://pedagoguepadawan.net/)
* 186 [180 posts](http://180.pedagoguepadawan.net/)
* 9288 school e-mails received; 4820 sent
* 23 partial or full days missed; none due to illness
* 0.55 FCI gain (n=18)
* 4.484 average AP Physics B score; 4.407 average AP Computer Science score