They they are ...
Posted by: Richard
February022010
Posted by: Richard
February022010
Posted by: Richard
January252010

Posted by: Richard
January222010
It is with those computers that were donated by CG and the Rotary, [my son's] help, albeit small, in setting them up that has allowed some of the connections and relationships with others around the world. The people of Matenwa are still able to communicate and receive email/news, which is amazing. It is so important to them to know others care and are trying to help.
Posted by: Richard
January182010
What do middle school students need to know about Facebook? On January 13, middle school head Paul Andrichuk and Information Technology staff Daisy Steele and Richard Kassissieh led an afternoon workshop with middle students to encourage critical thought about personal information and the corporate entities behind the popular social network site.
Click on the links in this outline to see examples shared with the students.
What is a social network?
Facebook is the leader of social network sites, but many more exist. If we broaden our view to social media sites, in fact dozens exist. Social network sites represent a significant development, because:
1. Ordinary users contribute most of the content.
2. Companies have little control over site content.
3. They appeal to people's sense of community.
Adoption is widespread. Alexa estimates that 30% of their users worldwide visit Facebook every day.
So much about social networks is new. People and organizations are less able to keep tight control over their website presence. Even giant companies are still figuring it out. Individuals have gained the possibility to use social media to gain unprecedented visibility.
How will the use of social networks change how people communicate? Facebook's CEO thinks that it is changing social norms. Many disagree. How will students use social networks for good? What will Facebook do next? What will succeed Facebook?
The goal of today's workshop is to apply our critical thinking skills to our use of social networks.
Students proceeded into three breakout groups by grade level. They then participated in three sessions led by Paul, Daisy, and Richard. Paul and two upper school students introduced sixth grade students to the process of setting up a new Facebook account. Daisy examined privacy settings with seventh and eighth graders. Richard investigated how Facebook applications access personal information. Below, please find notes from the apps workshop.
All About Apps (seventh and eighth grades)
A Facebook application ("app") is a piece of software that adds functionality to your Facebook page. Most are games or information-gathering devices (e.g., polls).
Most apps are built by companies other than Facebook. Installing an app shares your profile information with that other company.
To view your list of installed apps and uninstall one, go to the Applications link in the lower left-hand corner of the Facebook interface and click Edit Applications.

You may recognize status updates generated by applications from their nonstandard icons, the "via" text, and phrases like "Click here to help."
.png)
Though I am sure you are a very helpful person, clicking on that link will lead to the installation of a new app.

Note that Farmville will gain access to your profile information, photos, and freinds information, at the very least. Are you okay with this?
During the workshop, students completed a role play activity to learn more about the movement of personal information between a user, Facebook, and Zynga (the maker of Farmville). Download the handout.
After the role play, the group discussed the following questions.
The presenter then provided the group with more information about Zynga.
Clicking Allow indicates that you agree to the Farmville Terms of Service, which would should read and understand! Just one part of the TOS is fairly illuminating.
Section 4c
You grant to Zynga the unrestricted, unconditional, unlimited, worldwide, irrevocable, perpetual fully-paid and royalty-free right and license to host, use, copy, distribute, reproduce, disclose, sell, resell, sublicense, display, perform, transmit, publish, broadcast, modify, make derivative works from, retitle, reformat, translate, archive, store, cache or otherwise exploit in any manner whatsoever, all or any portion of your User Content [emphasis added] to which you have contributed, for any purpose whatsoever, in any and all formats; on or through any and all media, software, formula or medium now known or hereafter known; and with any technology or devices now known or hereafter developed and to advertise, market and promote same.
Can you trust Zynga with your personal information? Foudner and CEO Mark Pincus speaks in the following video about the measures he took to raise money for the company. The video sheds some light on the character of Zynga, its founder, and its reasons for existence. This may help you make an informed decisions about whether to share your personal information with this company.
Other companies have come under scrutiny for their security practices. RockYou improperly handled and inadvertently exposed 32 million usernames, passwords, and email address. Another company produced a "Secret Crush" application that didn't actually reveal a secret crush but instead installed unwanted advertising on their computer.
We encourage student to think critically about Facebook apps and understand how personal information is handled when you play one of these games.
Posted by: Richard
January122010
Posted by: Richard
January052010
Posted by: Richard
January042010

Posted by: Richard
January042010







Posted by: Richard
January032010


Posted by: Richard
December212009
Posted by: Richard
December142009


Posted by: Richard
December122009
Dear Colleagues,
Facebook has implemented new privacy settings that make it much easier to broadly share your personal information. If you accept Facebook's recommended privacy settings, Facebook will make your status updates, links, photos, videos, and notes available to the entire Internet (think Google). I recommend that you instead manually adjust your settings. Select Settings -> Privacy Settings from the blue menu bar and review the options in there.
In addition, Facebook will now share your friend list both on the Internet and with third-party Facebook applications. You do not have control over that.
This article explains the change in greater detail.
I encourage you to raise this topic with your students. Let me know if you have further questions.
Richard
Posted by: Richard
December052009
Posted by: Richard
December032009


function cgs_blog_form_alter(&$form, $form_state, $form_id) {
if (isset($form['#node']) && ($form['#node']->type == 'blog')) { // apply only to "create blog entry" form
// add a submit function
$form['#submit'][] = 'cgs_blog_form_submit';
}
}
function cgs_blog_form_submit($form, &$form_state) {
// load content access functions
require_once(drupal_get_path('module', 'content_access') .'/content_access.rules.inc');
// load node object
$node = node_load($form_state['values']['nid']);
// set anonymous user grant array
$settings['view'][0] = 1;
// change node access permissions for this node
if ($form_state['values']['field_blog_public'][0]['value'] == 'Make this post public') {
// add view grant for anonymous users to this node
content_access_action_grant_node_permissions($node, $settings);
} else {
// remove view grant for anonymous users to this node
content_access_action_revoke_node_permissions($node, $settings);
}
}
Posted by: Richard
December032009