<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Index out of Bounds</title>
	<atom:link href="http://www.jonathanfritz.ca/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jonathanfritz.ca</link>
	<description>the personal portfolio of Jonathan Fritz</description>
	<lastBuildDate>Mon, 12 Dec 2011 03:22:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Scripting Secret Santa</title>
		<link>http://www.jonathanfritz.ca/software/scripting-secret-santa</link>
		<comments>http://www.jonathanfritz.ca/software/scripting-secret-santa#comments</comments>
		<pubDate>Mon, 12 Dec 2011 03:22:35 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[recursion]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[secret santa]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://www.jonathanfritz.ca/?p=498</guid>
		<description><![CDATA[Every year, my closest friends and I do a &#8216;Secret Santa&#8217; gift exchange. For the unfamiliar, the idea is to randomly draw the name of one other person, and to buy him or her a gag gift without giving away your identity. It&#8217;s a lot of fun, and we&#8217;ve been doing it for a number [...]]]></description>
			<content:encoded><![CDATA[<p>Every year, my closest friends and I do a &#8216;Secret Santa&#8217; gift exchange. For the unfamiliar, the idea is to randomly draw the name of one other person, and to buy him or her a gag gift without giving away your identity. It&#8217;s a lot of fun, and we&#8217;ve been doing it for a number of years now.</p>
<p>Unfortunately, since we no longer live under the same roof (or even in the same city), it&#8217;s hard to draw names prior to the gift exchange. Of course, one person could draw all of the names and let each other participant know who to buy for, but then the person who drew the names would already know who was giving gifts to whom, thus defeating the spirit of the exercise. There are a number of websites that purport to solve the problem, but none of them are perfect.</p>
<p>Since I&#8217;m a giant nerd, I decided to script my own solution. I went into it with three rules in mind:</p>
<ol>
<li>Every person must receive exactly one gift.</li>
<li>No person should draw their own name, or that of their significant other.</li>
<li>Participants should be notified of the draw by email, without the person who runs the script ever knowing the results.</li>
</ol>
<p>Because Python is a cool language that I&#8217;m not very experienced with, I decided to use it to hack something together. My results are shown below:</p>
<pre>#! /usr/bin/python

import random
import smtplib
from email.mime.text import MIMEText

# a recursive function to match pairs
# the goal is to get somebody in participants to give a gift to each person in ungifted
# we don't allow people to give gifts to themselves or to their significant others
def match(participants, ungifted):
     # primary base case
     if len(ungifted) == 0:
               return True

     #processing case
     else:
          # ungifted reduces by one each recursion,
          # so this is counting down from end of list
          first = participants[len(ungifted) - 1][0]
          so = participants[len(ungifted) - 1][1]

          # error base case
          if (len(ungifted) == 1 and (first == ungifted[0] or so == ungifted[0])):
               print "algorithm failed, please start again"
               return False

          #can't get yourself or significant other
          second = first
          while second == first or second == so:
               second = random.choice(ungifted)

          ungifted.remove(second)

          pairs.append([first,second])
          return match(participants, ungifted)

# list of participants in tuples of &lt;participant, significant other&gt;
participants = [['Jim','Anne'], ['Anne','Jim'], ['John','Rachel'], ['Rachel','John'],
                    ['Joseph',None], ['Ed',None], ['Mark',None]]

# participant email addresses keyed on name
emails = {'Jim':'jim@live.ca', 'Anne':'anne@gmail.com', 'John':'john@johnsmith.net',
              'Rachel':'rachel@hotmail.com', 'Joseph':'joe@gmail.com',
              'Ed':'ed@live.com', 'Mark':'mark@gmail.com'}

# take the first name in each tuple
ungifted = list(couple[0] for couple in participants)

#the list of gifting tuples of &lt;sender, recipient&gt;
pairs = []

# perform the matches
if match(participants, ungifted):

     # loop through matches, sending emails
     for pair in pairs:
          you = emails[pair[0]]
          msgstr = pair[0] + ", your secret santa is " + pair[1]
          print "Sending email to ",you

          me = 'myemailaddress@mydomain.com'
          msg = MIMEText(msgstr)
          msg['Subject'] = 'Secret Santa Pairs v2.1'
          msg['From'] = me
          msg['To'] = you

          s = smtplib.SMTP('mail.mydomain.com')
          s.login('username', 'password')
          s.sendmail(me, you, msg.as_string())
          s.quit()</pre>
<p>The vast majority of the magic takes place in the <strong>match()</strong> function. It&#8217;s a recursive algorithm that iterates over the <strong>ungifted</strong> list and randomly selects somebody from the <strong>participants</strong> list whose job it will be to purchase a gift for that person. The main downside of this approach is that it is possible to get to the last person and have no logical choice for a partner &#8211; i.e. when we try to select a partner for Jim, the only person left in the ungifted list is Anne, which violates rule #2. In that case, we fail out before sending the emails and instruct the user to run the script again.</p>
<p>In order to use the script, just copy it into a text file (paying very close attention to the indentation!), change the contents of the <strong>participants</strong> and <strong>emails</strong> arrays, and modify the last block to reflect your SMTP settings and email account username/password. Save the file with a <strong>.py</strong> extension, and from a terminal, run <strong>python &lt;scriptname&gt;.py</strong></p>
<p>Happy gifting!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanfritz.ca/software/scripting-secret-santa/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seven Days of Rdio</title>
		<link>http://www.jonathanfritz.ca/software/seven-days-of-rdio</link>
		<comments>http://www.jonathanfritz.ca/software/seven-days-of-rdio#comments</comments>
		<pubDate>Wed, 10 Aug 2011 01:51:18 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[rdio]]></category>
		<category><![CDATA[streaming]]></category>

		<guid isPermaLink="false">http://www.jonathanfritz.ca/?p=488</guid>
		<description><![CDATA[As a regular listener of tech podcasts from the United States, I have long been interested in the idea of streaming music services, but have been frustrated by the fact that very few of them seem to be able to break the border and come north to Canada. In the past, I&#8217;ve held both a [...]]]></description>
			<content:encoded><![CDATA[<p>As a regular listener of tech podcasts from the United States, I have long been interested in the idea of streaming music services, but have been frustrated by the fact that very few of them seem to be able to break the border and come north to Canada. In the past, I&#8217;ve held both a free and paid subscription to Last.fm, but found its music playback system to be extremely limited, due in part to licensing restrictions that dictate how many songs from any album or artist can be played in succession.</p>
<p>A few days ago, I was catching up on my subscription to Jesse Brown&#8217;s Search Engine podcast, and found myself listening to <a title="Search Engine Podcast Episode 95: Cloud Music Comes to Canada" href="http://www.tvo.org/cfmx/tvoorg/searchengine/index.cfm?page_id=613&amp;action=blog&amp;subaction=viewPost&amp;post_id=17132&amp;blog_id=485" target="_blank">Episode 95: Cloud Music Comes to Canada</a>. In this episode, Jesse interviewed Rdio CEO Drew Larner about the streaming service&#8217;s Canadian launch. Immediately interested, I headed over to <a title="Rdio Website" href="http://www.rdio.com" target="_blank">the company&#8217;s website</a> and signed up for their free 7-day trial subscription. The following is a collection of my thoughts about the service, in no particular order:</p>
<h3>Beautiful and Functional:</h3>
<p>I have to hand it to the Rdio web team &#8211; their in-browser media player is one of the best web apps that I&#8217;ve ever used. The screen is organized into two panels: A thin side panel that shows currently playing media and controls, and a wider main area that allows you to navigate through the Rdio music library. One of the best parts is that this view is built entirely on Javascript, so you can browser through available music and queue up songs to play without any interruption in audio playback.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2011/08/rdio-dashboard.png"><img class="aligncenter size-medium wp-image-489" title="Rdio Dashboard" src="http://www.jonathanfritz.ca/wp-content/uploads/2011/08/rdio-dashboard-300x255.png" alt="A picture of the Rdio Dashboard, with media playback controls on the left, and the main navigation window to the right." width="300" height="255" /></a></p>
<p>Speaking of audio playback, song quality is crystal clear, while tracks seem to start instantly, without any kind of buffering time. I&#8217;ve used a lot of media players in my time, and I think that this one might have the best user interface that I&#8217;ve ever seen. Navigating the massive library of available songs is simple and painless, and the prominently placed search bar provides a rich collection of query results:</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2011/08/rdio-search.png"><img class="aligncenter size-medium wp-image-490" title="Rdio Search Results for the term &quot;love&quot;" src="http://www.jonathanfritz.ca/wp-content/uploads/2011/08/rdio-search-151x300.png" alt="Rdio Search Results for the term &quot;love&quot;: Results include top artists, albums, and songs with the search term in their titles" width="151" height="300" /></a></p>
<p>The only major UI problem that I&#8217;ve encountered stems from broken links placed throughout the site. On more than one occasion, I&#8217;ve been reading an artist bio or album review, and clicked on a link to one of the albums mentioned therein, only to be transported off to a page for an album that shares the same name, but is by an entirely different artist. My guess is that all written content on the site is scanned wiki-style for clickable terms like album and artist names, and that the links are established without human intervention. In general, this process works, except when it fails to correctly choose between multiple potential targets.</p>
<h3>A Truly Massive Collection:</h3>
<p>Rdio has done an excellent job of collecting songs for their collection. During the aforementioned interview, CEO Drew Larner emphasized the fact that the company purposely negotiated US and Canadian rights to music at the same time. The result is that the vast majority of their collection is available in both countries, without <a title="Gigaom: Netflix Streaming Heads North with some Differences" href="http://gigaom.com/video/netflix-streaming-heads-north-with-some-differences/" target="_blank">the usual legal disconnect that other streaming services like Netflix suffer</a> from.</p>
<p>Some of the usual suspects are missing from the Rdio library, namely the Beatles and Led Zeppelin. For the life of me, I&#8217;ll never understand what the publishing companies that own these pieces think that they&#8217;re gaining by holding them back from online streaming services. It&#8217;s a purely artificial shortage &#8211; like many fans of these bands, I already own my favourite Beatles and Zeppelin records in both digital and physical formats, so it&#8217;s not like holding them back is generating additional sales. It&#8217;s nothing more than a piss off for fans who would like to enjoy their music on alternative services.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2011/08/the-beatles-results.png"><img class="aligncenter size-medium wp-image-491" title="Search results for &quot;The Beatles&quot;" src="http://www.jonathanfritz.ca/wp-content/uploads/2011/08/the-beatles-results-300x235.png" alt="Search results for &quot;The Beatles&quot;: The available albums are almost entirely interviews or cover albums" width="300" height="235" /></a></p>
<p>With that said, the breadth of music available on Rdio is truly impressive. I&#8217;ve been able to find nearly everything that I&#8217;ve looked for, as well as a great deal of content that I&#8217;ve never heard, and intend to explore in the near future.</p>
<h3>Finding New Music to Enjoy:</h3>
<p>This is one of the few places in which Rdio makes a misstep. Other online streaming services that I&#8217;ve tried in the past (most notably <a title="Wikipedia: Yahoo! Music Radio (formerly Launchcast)" href="https://secure.wikimedia.org/wikipedia/en/wiki/Yahoo!_Music_Radio" target="_blank">the venerable Yahoo Launchcast</a>) would start a new user&#8217;s experience by asking for a few artists or albums that the user enjoyed. Once this data was stored, the service would begin to recommend a mix of familiar and closely related songs that the user would rate in turn, thereby automatically growing their collection while introducing them to a great deal of new music in short order.</p>
<p>Rdio doesn&#8217;t seem to provide any such service. Even after I linked it to my existing Last.fm account, it scrobbled what I was listening to, but did not pull in favourite artists or songs from that account. Nearly every artist, album, and song on the site can be played as an &#8220;Rdio Station&#8221;, which plays of mix of the chosen content along with related material, and new users can choose to follow existing users and benefit from their plays and music suggestions. Despite these methods of discovering new music, there doesn&#8217;t seem to be a &#8220;genius playback&#8221; &#8211; a way to playback songs that you&#8217;ve added to your collection plus new recommended material.</p>
<p>Even after spending a few days with the service and growing my online &#8220;collection&#8221; of music to just under 250 songs, my account&#8217;s &#8220;Rdio Station&#8221; (music drawn from artists/albums that I&#8217;ve listened to, songs that I&#8217;ve added to my collection, and related material) was maddeningly boring to listen to.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2011/08/rdio-now-playing.png"><img class="aligncenter size-medium wp-image-495" title="Rdio now playing window: My personal Rdio Station on the last day of my trial" src="http://www.jonathanfritz.ca/wp-content/uploads/2011/08/rdio-now-playing-300x252.png" alt="" width="300" height="252" /></a></p>
<p>In the image above, you can see that there are only 8 artists in a list of 16 upcoming songs &#8211; indeed, content from these 8 artists was repeated, and some individual songs (like that terrible What&#8217;s My Name song by Rhianna) came up in shuffle multiple times over a 2-hour listening period, even after I physically removed them from the list on more than one occasion. In my opinion, the concept of a personal Rdio station needs more work. It simply does not present a variable enough set of music, and does not expose me to music that I have not previously found on the site.</p>
<p>That said, the amazing breadth of the Rdio collection and the powerful search tools come very close to  compensating for this problem by making it incredibly easy to call up nearly any song that pops into your mind while listening. It doesn&#8217;t take long to get lost, wikipedia style, by following links in artist bios and one can quickly find themselves with more queued albums than they will ever realistically have time to listen to.</p>
<p>Finally, Rdio doesn&#8217;t allow you to rate music in a granular fashion like traditional media players do. Instead, it provides the more binary option of adding a song to your collection. This resembles the way that Last.fm allows users to &#8220;Heart&#8221; songs as favourites. Were I to adopt Rdio as a long-term replacement of my existing music library, I suspect that I would grow to dislike this design, as it does not seem (at least on the surface) to offer enough granularity to easily sort out a large music collection. With that said, a better automatic shuffle feature could solve the problem entirely.</p>
<h3>The Big Question:</h3>
<p>Will Rdio replace my traditional music collection? Probably not. I might use it to augment my collection, and to explore new music, as well as to listen to newly released albums before deciding whether or not to purchase them. The bottom line is that I probably won&#8217;t opt into the $5/month permanent account that is necessary to continue using the service once my trial runs out sometime tomorrow. The reasons behind this decision are varied, but ultimately come back to my experience with the site&#8217;s Rdio Station feature. Its lackluster performance means that listening to Rdio becomes a chore. I can&#8217;t just throw it on and sit back and listen; I have to intervene and queue up songs that I want to listen to every time my list runs dry.</p>
<p>With that said, I will most certainly come back to this service in 6 month&#8217;s time and give it another shot. It is one of the coolest sites that I&#8217;ve seen in a long time, and I do hope that it will continue to improve to the point where I am comfortable leaving my traditional media player behind.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanfritz.ca/software/seven-days-of-rdio/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Quick thoughts on Sony and the OtherOS</title>
		<link>http://www.jonathanfritz.ca/software/some-quick-thoughts-on-sony-and-the-otheros</link>
		<comments>http://www.jonathanfritz.ca/software/some-quick-thoughts-on-sony-and-the-otheros#comments</comments>
		<pubDate>Sat, 12 Feb 2011 04:26:33 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.jonathanfritz.ca/?p=479</guid>
		<description><![CDATA[For anybody who follows tech news, this is an old story indeed. In early 2010, Sony released the PS3 &#8216;Slim,&#8217; an update to their current generation gaming console. Along with the release came some new firmware that removed a previously available feature from the machine: the ability to run an alternative operating system such as [...]]]></description>
			<content:encoded><![CDATA[<p>For anybody who follows tech news, this is an old story indeed. In early 2010, Sony released the PS3 &#8216;Slim,&#8217; an update to their current generation gaming console. Along with the release came some new firmware that removed a previously available feature from the machine: the ability to run an alternative operating system such as Linux, on the hardware. As this story has been widely covered elsewhere, I won&#8217;t both to go into the details here &#8211; you can read all about them in the links at the bottom of the page.</p>
<p>Instead, I&#8217;d like to put forth an alternative theory as to why Sony removed the feature. Regardless of your thoughts on open source software or how you feel about the potential for game piracy on these systems, I doubt that Sony removed the feature out of an effort to fulfill some kind of evil plot for world domination. As I see it, this situation revolves around the pricing models that are traditionally built into the sale of consoles and video games.</p>
<p>Just like cellphone manufacturers, console manufacturers often sell their hardware at a hugely reduced price. They do this with hopes of making up the lost revenue potential in game sales (often measured with a ratio called &#8216;attachment rate&#8217; by industry insiders). This is often called the &#8216;razor and blades&#8217; model of economics. If you&#8217;ve ever purchased four razor blades for $20 in order to use a free razor that was mailed to you by a drug store, you&#8217;ll know why. But that&#8217;s another story.</p>
<p>The point is, a hobbyist who could run Linux on her PS3 might do something ridiculous with the hardware, like oh, say, <a href="http://www.geekosystem.com/ps3-supercomputer/" target="_blank">build a supercomputer out of 1760 of them</a>. Since she isn&#8217;t buying any games to go along with all of that hardware, she represents a serious loss for Sony&#8217;s bottom line. I&#8217;m not saying that this is the average activity that most hobbyists engaged in when using the OtherOS feature of the PS3, but I can&#8217;t help but think that it is an oft-overlooked point in this debate. If you stood to lose a significant amount of money for every person who purchased a product that you sold and stood to improve your potential earnings by disabling a feature that most of your user base didn&#8217;t even know about, I think you&#8217;d do the same thing.</p>
<p><strong>Related Links:</strong></p>
<p><a href="http://arstechnica.com/gaming/news/2010/03/it-no-longer-does-everything-no-more-linux-on-playstation-3.ars" target="_blank">It no longer does everything: no more Linux on PlayStation 3 (Ars Technica)</a></p>
<p><a href="http://arstechnica.com/gaming/news/2011/01/norways-consumer-council-files-complaint-against-sonys-ps3-downgrades.ars" target="_blank">Norway: Sony&#8217;s PS3 &#8220;updates&#8221; actually downgrade system (Ars Technica)</a></p>
<p><a href="http://arstechnica.com/gaming/news/2011/01/sonys-options-are-limited-in-face-of-ps3-jailbreak.ars" target="_blank">Can&#8217;t stop the signal: Sony&#8217;s options limited in face of PS3 jailbreak (Ars Technica)</a></p>
<p><a href="https://secure.wikimedia.org/wikipedia/en/wiki/Ps3" target="_blank">Playstation 3 (Wikipedia)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanfritz.ca/software/some-quick-thoughts-on-sony-and-the-otheros/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seniority Does Not Equal Value</title>
		<link>http://www.jonathanfritz.ca/education/seniority-does-not-equal-value</link>
		<comments>http://www.jonathanfritz.ca/education/seniority-does-not-equal-value#comments</comments>
		<pubDate>Sat, 18 Dec 2010 19:56:38 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[bill gates]]></category>
		<category><![CDATA[ccsso]]></category>
		<category><![CDATA[reform]]></category>
		<category><![CDATA[speech]]></category>

		<guid isPermaLink="false">http://www.jonathanfritz.ca/?p=474</guid>
		<description><![CDATA[Last month, Microsoft founder turned philanthropist Bill Gates gave a speech to the Council of Chief State School Officers, a US-based nonprofit made up of elementary and secondary educational administrators. While a transcript of the speech is available on the Bill and Melinda Gates Foundation&#8217;s website, most people only heard about the event from a [...]]]></description>
			<content:encoded><![CDATA[<p>Last month, Microsoft founder turned philanthropist Bill Gates gave a speech to the Council of Chief State School Officers, a US-based nonprofit made up of elementary and secondary educational administrators. While <a href="http://www.gatesfoundation.org/speeches-commentary/pages/bill-gates-2010-ccsso.aspx" target="_blank">a transcript of the speech is available</a> on the Bill and Melinda Gates Foundation&#8217;s website, most people only heard about the event from a poorly-written New York Times Article entitled &#8220;<a href="https://www.nytimes.com/2010/11/19/us/19gates.html" target="_blank">Gates Urges School Budget Overhauls</a>.&#8221; Unfortunately, this article glosses over the entire point of Gates&#8217; speech, choosing instead to highlight his controversial comments about restructuring educational budgets without any kind of explanation:</p>
<blockquote><p>In a speech on Friday, Mr. Gates — who is gaining considerable clout in education  circles — plans to urge the 50 state superintendents of education to  take difficult steps to restructure the nation’s public education  budgets, which have come under severe pressure in the economic downturn.</p>
<p>He suggests they end teacher pay increases based on seniority and on  master’s degrees, which he says are unrelated to teachers’ ability to  raise student achievement. He also urges an end to efforts to reduce  class sizes. Instead, he suggests rewarding the most effective teachers  with higher pay for taking on larger classes or teaching in needy  schools.</p></blockquote>
<p>The poor coverage of Gates&#8217; speech lead to some <a href="https://twitter.com/DaveyJJ/status/15780940638851074" target="_blank">understandably vitriolic but ultimately misplaced outrage</a> on social networking sites like Twitter. The point that Gates tried to make in his speech, and the one that was ultimately missed by the New York Times article, is that school budgets are still constructed based on old and outdated ways of thinking about education. In light of recent advances, Gates advocates a move to a data-driven free-market based approach to improving the educational system for all involved.</p>
<p>Until very recently, it was nearly impossible to objectively measure student achievement, because students are dispersed geographically and come from a wide range of economic, social and religious backgrounds that impact their styles of learning and interactions with both teachers and other students. The introduction of standardized testing, while controversial, has allowed researchers to eliminate these disparate variables and isolate for the one factor that we&#8217;re actually interested in: the difference that one year&#8217;s worth of study has on student intelligence and accomplishment. After all, what is a school if not a place that we send our children to become more educated and informed members of society?</p>
<p>Once we can isolate for achievement, we can map it against the various factors that might influence it, including teacher salary, seniority, and education level; classroom size, and the ratio of adults to students in a classroom environment. These variables can then be altered and their configurations tested in order to optimize student achievement, thus producing a more efficient educational system that churns out smarter individuals who are more capable of contributing to society in a positive and meaningful way. At the same time, we can be certain that the money that is poured into educational reforms is spent wisely, and can be directly mapped to student advancement.</p>
<p>As Gates points out, these are important concepts, because the American educational system is reeling quickly towards a crisis of both funding and inadequacy. Reforms are required across the board for three main reasons:</p>
<ol>
<li>Since the 1970s, the cost of maintaining the educational system has increased dramatically, while measurable student achievement has stayed essentially flat.</li>
<li>In the same period, graduation rates have dropped from 2nd in the world to 16th.</li>
<li>The United States now ranks behind 16 countries in scientific achievement, and behind 23 countries in mathematics achievement among students.</li>
</ol>
<p>Combined with the stresses of the recent financial crisis, schools are being squeezed between a rock and a hard place. They need to change the way that they do business, but can&#8217;t afford to do so. This has lead school administrators to react to shrinking budgets by cutting personnel, using old and outdated equipment and text books, and closing down poorly performing schools. Although each of these strategies may help a district to balance its budget in the short term, all impact students negatively over time.</p>
<p>Gates&#8217; argument is that this problem can be sidestepped by addressing the way that we pay teachers for their efforts. As would be expected, a large portion of the educational system&#8217;s operating budget is dedicated to teacher salaries. With this in mind, we must consider the two primary components of personnel costs: student to teacher ratios and instructor compensation models. Gates suggests that by changing the way that these two factors are considered, we may be able to better allocate funding, and ultimately, improve student learning.</p>
<p>Past reform efforts have concentrated on reducing classroom sizes. In 1960, the average classroom in the United States put one teacher in front of 26 students. Today, that number has changed dramatically, with one teacher now in charge of just fifteen students. The argument in favour of this movement has been that students benefit from more face-to-face time with teachers. Standards-based testing has shown that this simply isn&#8217;t true: There is little correlation between smaller teacher to student ratios and higher student achievement.</p>
<p>Gates also points out that current pay structures reward teacher seniority instead of great teaching. Teachers who have been in the system longer tend to make more money, under the assumption that they get better at their jobs over time. Again, this isn&#8217;t necessarily true: studies show that after their first five years of teaching, most teachers don&#8217;t increase the positive effect that they have on student achievement, regardless of how many more years they spend teaching thereafter.</p>
<p>Gates argues that by stopping our race to shrink classroom sizes and taking some time to reconsider the elements that influence teacher&#8217;s salaries, we can spend educational funding in a more positive manner. In particular, he suggests that teacher salaries be linked to the performance of their students, thus rewarding great teachers and providing constant incentive of lackluster teachers to improve. He makes a point of noting that this pay restructuring wouldn&#8217;t mean lower salaries. The average salary of all teachers could stay the same, but those who perform well would be better compensated for their efforts, creating a positive feedback loop that ultimately benefits students. In addition, Gates advocates that the best teachers be paid extra for taking on more or troubled students, which means that his new proposal could even benefit traditionally troubled poorer neighbourhoods.</p>
<blockquote><p>&#8220;Conservative estimates suggest that we can save more than $10,000 per  classroom by increasing class size by just four pupils. If we pay some  of that money to our best teachers for taking in more students, we  accomplish three goals at once – we save money, we get more students in  classrooms with highly effective teachers, and we give our best teachers  a real raise, not just for being good, but for taking on more work.&#8221;</p></blockquote>
<p>For me, the most important part of this speech was not the claim that Gates made, but rather the reasons behind it. Once you understand why he&#8217;s advocating larger classrooms, you can see that the motivations behind such a statement are pure, and start to understand what he would like to accomplish. Essentially, he is attempting to build an economy around great teachers that rewards the best and encourages the others, while always striving to increase student achievement. That&#8217;s an admirable goal.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanfritz.ca/education/seniority-does-not-equal-value/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Area Man Constantly Mentioning He Doesn&#8217;t Have Facebook</title>
		<link>http://www.jonathanfritz.ca/nonsense/area-man-constantly-mentioning-he-doesnt-have-facebook</link>
		<comments>http://www.jonathanfritz.ca/nonsense/area-man-constantly-mentioning-he-doesnt-have-facebook#comments</comments>
		<pubDate>Fri, 10 Dec 2010 16:15:53 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Nonsense]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[oversharing]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.jonathanfritz.ca/?p=470</guid>
		<description><![CDATA[I don&#8217;t have a Facebook account. Considering that half a billion people do, that makes me pretty strange indeed, especially among my group of decidedly tech-savvy friends and acquaintances. Once upon a time, my reasoning for closing my account seemed pretty solid. I was worried about the privacy implications of a site that is constantly [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t have a Facebook account. Considering that <a href="https://www.facebook.com/press/info.php?statistics&amp;_fb_noscript=1" target="_blank">half a billion people do</a>,  that makes me pretty strange indeed, especially among my group of  decidedly tech-savvy friends and acquaintances. Once upon a time, my  reasoning for closing my account seemed pretty solid. I was worried  about the privacy implications of a site that is constantly changing its  terms of service and actively working to make it hard for people to  hide their information from its real customers, the advertisers who pay  for access to users&#8217; information.</p>
<p>Since then however, I&#8217;ve become a huge proponent of <a href="https://twitter.com/jonathanmfritz" target="_blank">Twitter</a>, kept up my own website here, written extensively over at <a href="http://thelinuxexperiment.com/" target="_blank">The Linux Experiment</a>, and started a podcast with a few friends called <a href="http://slightlysauced.com/" target="_blank">SlightlySauced</a>.  I may indeed be guilty of oversharing, and my original reasons for  leaving Facebook now sound silly, considering how much content I create  for the Internet without the help of the online social network.</p>
<p>Just to poke fun at me, <a href="http://www.jakebillo.com/" target="_blank">a good friend of mine</a> recently re-wrote one of my favourite Onion News articles, <a href="http://www.theonion.com/articles/area-man-constantly-mentioning-he-doesnt-own-a-tel,429/" target="_blank">Area Man Constantly Mentioning He Doesn&#8217;t Have a Television</a>,  supplanting my name and vitriol for Facebook for the original article&#8217;s  content. It&#8217;s pretty funny, so I decided that I&#8217;d share it here:</p>
<blockquote>
<div>WATERLOO, ON–Area resident Jonathan Fritz does not have a Facebook  account, a fact he repeatedly points out to friends, family, and  coworkers–as well as to his mail carrier, neighborhood convenience-store  clerks, and the woman who cleans the hallways in his apartment  building.</div>
<div>&#8220;I, personally, would rather spend my time doing something useful  than playing Farmville,&#8221; Fritz told a random woman Monday at Wilfrid  Laurier University, noticing the distinctive blue layout of the site on  her laptop. &#8220;I don&#8217;t even have [an account].&#8221;</div>
<div>According to Tyler Burton, a roommate of Fritz at Richmond Square, a  Waterloo apartment complex, Fritz steers the conversation toward  Facebook whenever possible, just so he can mention not having an active  profile.</div>
<div>&#8220;A few days ago, Kayla [Orr] was saying her new contacts were  bothering her,&#8221; Burton said. &#8220;The second she said that, I knew Jonathan  would pounce. He was like, &#8216;I didn&#8217;t know you had contacts, Kayla. Are  your eyes bad? That a shame. I&#8217;m really lucky to have almost perfect  vision. I&#8217;m guessing it&#8217;s because I don&#8217;t stare at Facebook. In fact, I  don&#8217;t even have an account.&#8221;</div>
<div>According to Burton, &#8220;Stalkbook&#8221; is Fritz&#8217;s favorite derogatory term for the social networking site.</div>
<div>&#8220;He uses that one a lot,&#8221; he said. &#8220;But he&#8217;s got other ones, too, like &#8216;Zuckerberg the weasel&#8217; and &#8216;waste of time.&#8217;&#8221;</div>
<div>Burton said Fritz always makes sure to read the copies of The Cord  lying around their apartment, &#8220;just so he can point out all the Facebook  groups he&#8217;s never heard of.&#8221;</div>
<div>&#8220;Last week, in one of the papers, there was an invitation to a  group supporting improvements to the pool,&#8221; Burton said, &#8220;and Jonathan  announced, &#8216;I have absolutely no idea what this issue is all about.  Crumbling structure? Am I supposed to have heard of it? I&#8217;m sorry, but I  haven&#8217;t.&#8217;&#8221;</div>
<div>Dave Lahn, who lives in an apartment several floors below Fritz&#8217;s  and occasionally chats with the 23-year-old by the mailboxes, is well  aware of his neighbor&#8217;s disdain for Facebook.</div>
<div>&#8220;About a week ago, we were talking, and I made some kind of profile  picture reference,&#8221; Lahn said. &#8220;He asked me what I was talking about,  and when I told him it was from Facebook, he just went off, saying how  the last time he looked at the site there was some group supporting fair  copyright, and even then, he could only read for about two minutes  before having to go to Michael Geist because it insulted his  intelligence so terribly.&#8221;</div>
<div>Added Lahn: &#8220;Once, I made the mistake of saying I saw something on  the news feed, and he started in with, &#8216;Saw the news feed? I don&#8217;t know  about you, but I read Digg.&#8221;</div>
<div>Fritz has lived without Facebook since 2008, when it kicked his dog or something.</div>
<div>&#8220;When I learned about the Canadian privacy commissioner&#8217;s  investigation, the profile got deleted,&#8221; Fritz said. &#8220;But instead of  just going back and reactivating it–which I certainly could have done,  that wasn&#8217;t the issue–I decided to stand up to Zuckerberg, that weasel.&#8221;</div>
<div>&#8220;I&#8217;m not an elitist,&#8221; Fritz said. &#8220;It&#8217;s just that I&#8217;d much rather  tweet or write on my blog or record a podcast than sit there passively  staring at some eternally boring party pictures.&#8221;</div>
<div>&#8220;If I need a fix of lame interactions with so-called &#8216;friends&#8217;,  I&#8217;ll go and do it in real life,&#8221; Fritz said. &#8220;I certainly wouldn&#8217;t waste  my time perusing the so-called Mini-Feed or, God forbid, any of the  mind sewage the Zynga idiots pump out.&#8221;</div>
<div>Continued Fritz: &#8220;People don&#8217;t realize just how much time their  Facebook-using habit–or, shall I say, addiction–eats up. Four hours of  Facebook a day, over the course of a month, adds up to 120 hours. That&#8217;s  five entire days! Why not spend that time living your own life, instead  of watching fictional people live theirs? I can&#8217;t begin to tell you how  happy I am not to have a Facebook account.&#8221;</div>
</blockquote>
<div>Hey, if you can&#8217;t laugh at yourself&#8230;</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanfritz.ca/nonsense/area-man-constantly-mentioning-he-doesnt-have-facebook/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Copyright and Bill C-32: My Ignite! Waterloo Presentation</title>
		<link>http://www.jonathanfritz.ca/software/digital-copyright-and-bill-c-32-my-ignite-waterloo-presentation</link>
		<comments>http://www.jonathanfritz.ca/software/digital-copyright-and-bill-c-32-my-ignite-waterloo-presentation#comments</comments>
		<pubDate>Tue, 30 Nov 2010 02:57:48 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Local]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[bill c-32]]></category>
		<category><![CDATA[c-32]]></category>
		<category><![CDATA[c32]]></category>
		<category><![CDATA[ignite]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[waterloo]]></category>

		<guid isPermaLink="false">http://www.jonathanfritz.ca/?p=440</guid>
		<description><![CDATA[A few weeks ago, I gave a shortened version of my C-32 and You presentation at Ignite! Waterloo. It was a great experience, and really challenged me as a speaker. Although I do quite a bit of public speaking, the format of this particular presentation required me to know my presentation cold, and to cut [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago, I gave a shortened version of my <a href="http://www.jonathanfritz.ca/software/c-32-and-you-my-kwdm-presentation" target="_blank">C-32 and You presentation</a> at Ignite! Waterloo. It was a great experience, and really challenged me as a speaker. Although I do quite a bit of public speaking, the format of this particular presentation required me to know my presentation cold, and to cut down on the rambling that usually gets me by when I inevitably forget everything shortly after taking the stage.</p>
<p>If you&#8217;ve never been out to an Ignite! event, I highly suggest that you check one out. It&#8217;s kind of like a <a href="http://www.ted.com/" target="_blank">TED talk</a>, but each presentation is only 5 minutes long, and consists of 20 slides that auto advance every 15 seconds. Since the event had a videographer, you can choose to either watch my presentation or to scroll down to see my slides and notes. I won&#8217;t fault you for either.</p>
<h3>Talking Pictures</h3>
<p>For all you ADD-riddled folks with no patience, here&#8217;s the video version:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Oe9zR6DSep8?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/Oe9zR6DSep8?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>In Words</h3>
<p>For those of you who like to read stuff, here are my slides and associated text. Keep in mind that the text below the slides is what I was supposed to say, and is not necessarily the same as what I actually said.</p>
<p style="text-align: center;"><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img0.png"><img class="size-medium wp-image-441 aligncenter" title="Slide 1: Introduction" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img0-300x225.png" alt="Slide 1: Introduction" width="300" height="225" /></a></p>
<p style="text-align: left;">Good evening everybody, my name is Jonathan Fritz. Tonight I&#8217;d like to speak to you about <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Intellectual_property" target="_blank">intellectual property</a>. Before I begin though, I should stress the fact that I&#8217;m not a lawyer. I&#8217;m just a computer programmer who has spent way too much time reading way too much legalese. To save you from a similar fate, I&#8217;ll try to quickly brief you on everything that I&#8217;ve learned about copyright.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img1.png"><img class="aligncenter size-medium wp-image-442" title="Slide 2: What is Intellectual Property?" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img1-300x225.png" alt="Slide 2: What is Intellectual Property?" width="300" height="225" /></a></p>
<p>Intellectual property is a fancy name that lawyers have given to the ownership of ideas. Since ideas are non-physical, intangible, and infinite things, a new set of laws had to be developed so that they could be owned in the same sense as the physical objects that we&#8217;re all used to. This lead to the three primary types of intellectual property and their associated bodies of law.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img2.png"><img class="aligncenter size-medium wp-image-443" title="Slide 3: Trademarks" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img2-300x225.png" alt="Slide 3: Trademarks" width="300" height="225" /></a></p>
<p>The first type of intellectual property that I&#8217;d like to address is called a <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Trademark" target="_blank">Trademark</a>. This is a distinctive sign or indicator that is used by a business to identify itself, its products, and services to customers. Common trademarks include slogans, catch-phrases, jingles, and logos.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img3.png"><img class="aligncenter size-medium wp-image-444" title="Slide 4: Patents" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img3-300x225.png" alt="Slide 4: Patents" width="300" height="225" /></a>The second type of intellectual property is called a <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Patent" target="_blank">Patent</a>. This is a set of legal rights that can be issued to the inventor or discoverer of some method or process. Once a patent has been granted, its holder retains the sole right to benefit from any implementation of their invention or idea for a finite period of time.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img4.png"><img class="aligncenter size-medium wp-image-446" title="Slide 5: Introduction to Copyright" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img4-300x225.png" alt="Slide 5: Introduction to Copyright" width="300" height="225" /></a>The third type of intellectual property, and the on that I want to focus on this evening, is called <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Copyright" target="_blank">Copyright</a>. Once granted, it gives the author of a recorded work the exclusive right to distribute copies of that work for a finite period of time. Throughout most of the world, whenever you commit something to record, you are immediately granted copyright to that work.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img5.png"><img class="aligncenter size-medium wp-image-447" title="Slide 6: Differences" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img5-300x225.png" alt="Slide 6: Differences" width="300" height="225" /></a></p>
<p>Now the differences between these bodies of law are key. Both trademarks and patents protect ideas and concepts &#8211; abstract stuff that isn&#8217;t tangible. Copyright on the other hand, protects the expression of those ideas, like a book or a compact disc. When a work is copyrighted, the copyright holder can control who makes and distributes copies of the work, but not the ideas or themes that the work deals with.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img6.png"><img class="aligncenter size-medium wp-image-448" title="Slide 7: Balance" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img6-300x225.png" alt="Slide 7: Balance" width="300" height="225" /></a></p>
<p>The idea behind copyright is to provide an incentive for authors to make more stuff. We all enjoy the stuff that they make, and so we agree to give up some of our personal rights to ensure that they can afford to continue to make it. This requires that we strike a careful balance; we don&#8217;t want to give up too many rights, but we do want authors and artists to be able to make a living.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img7.png"><img class="aligncenter size-medium wp-image-449" title="Slide 8: Poorly Named" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img7-300x225.png" alt="Slide 8: Poorly Named" width="300" height="225" /></a>Copyright is a poorly named body of law. The truth is, the rights that it provides aren&#8217;t natural rights as the name implies. They are awarded by governments and courts. This means that we all have to agree on the rights that copyright provides to both the author and the user of her work. This fact is often lost in the rhetoric surrounding debates about the subject.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img8.png"><img class="aligncenter size-medium wp-image-450" title="Slide 9: Creative Commons" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img8-300x225.png" alt="Slide 9: Creative Commons" width="300" height="225" /></a></p>
<p>The idea of copyright only works because of the temporary monopoly that it provides. When that monopoly expires, the works that copyright protects go into the creative commons. This means that anybody can use them in any way, shape, or form. As copyright terms lengthen, works enter the commons with less regularity, and we chance losing access to our history and culture.</p>
<p><em>Note: This slide should read <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Public_domain" target="_blank">public domain</a> in place of <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Creative_commons" target="_blank">creative commons</a>. The two are distinct and equally important concepts that shouldn&#8217;t be confused. Sorry. &#8211; Jonathan</em></p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img9.png"><img class="aligncenter size-medium wp-image-451" title="Slide 10: How Temporary?" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img9-300x225.png" alt="Slide 10: How Temporary?" width="300" height="225" /></a>In order for this temporary monopoly to work out, it has to be just that: Temporary. When copyright was original proposed, the term lasted for only fourteen years. In present-day Canada, copyright terms last for fifty years past the death of their original owner. In the USA and the UK, terms last for seventy years past the death of their original owner.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img10.png"><img class="aligncenter size-medium wp-image-452" title="Slide 11: Artistic Inspiration" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img10-300x225.png" alt="Slide 11: Artistic Inspiration" width="300" height="225" /></a></p>
<p>Artists are inspired by the works of others. &#8220;Good artists borrow, great artists steal.&#8221; That&#8217;s a Pablo Picasso quote that was stolen by Steve Jobs. Because artists don&#8217;t create in a bubble, they need access to past works in order to create inspiring and relevant art. If our works of art stop being distributed just as soon as they are no longer profitable to their owners, we as a society lose access to them.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img11.png"><img class="aligncenter size-medium wp-image-453" title="Slide 12: Intro to C-32" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img11-300x225.png" alt="Slide 12: Intro to C-32" width="300" height="225" /></a></p>
<p>Back in June, the Conservative Federal Government introduced Bill C-32. The goal of the bill is to modernize copyright law in Canada. This is a great idea, because our current laws date back to 1997.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img12.png"><img class="aligncenter size-medium wp-image-454" title="Slide 13: The Rise of Digital Media" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img12-300x225.png" alt="Slide 13: The Rise of Digital Media" width="300" height="225" /></a>If you&#8217;ve been on the internet since 1997, you&#8217;ll know that a lot has changed. The rise of digital cloud-based media like Hulu, Netflix, YouTube, Last.FM, and Pandora have really challenged our conception of traditional copyright. We don&#8217;t really have anything in our existing laws to handle these technologies.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img13.png"><img class="aligncenter size-medium wp-image-455" title="Slide 14: You are a Criminal" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img13-300x225.png" alt="Slide 14: You are a Criminal" width="300" height="225" /></a></p>
<p>In addition, common activities like ripping a CD or DVD to your computer, or taping a television show on your VCR or PVR to play back later are technically illegal under current Canadian law. The proposed bill includes lots of positive clauses that correct these problems with our current laws.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img14.png"><img class="aligncenter size-medium wp-image-456" title="Slide 15: Piracy and File-sharing" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img14-300x225.png" alt="Slide 15: Piracy and File-sharing" width="300" height="225" /></a>In recent years, file-sharing has kind of broken down traditional media economies. Today, it is possible to make an unlimited number of perfect copies of a movie or a song and send them to friends via the internet for next to nothing. This poses a serious challenge to traditional media companies who made their money by controlling the distribution of physical media.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img15.png"><img class="aligncenter size-medium wp-image-457" title="Slide 16: DRM as a Response" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img15-300x225.png" alt="Slide 16: DRM as a Response" width="300" height="225" /></a>To counter this trend, media companies started to encrypt their content and began selling licenses to unlock it. This practice is called <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Digital_rights_management" target="_blank">DRM, or Digital Rights Management</a>. It generally stops people from making copies of their media, and is currently used to protect video games, movies, television broadcasts, and other media. Bill C-32 aims to make it illegal to break this protection once it has been placed on your media.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img16.png"><img class="aligncenter size-medium wp-image-458" title="Slide 17: So Where's the Problem?" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img16-300x225.png" alt="Slide 17: So Where's the Problem?" width="300" height="225" /></a>The problem with this approach is that it has already been tried, and has failed miserably. In 1998, the USA passed the <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Dmca" target="_blank">DMCA, or Digital Millenium Copyright Act</a>. It resulted in thousands of people being sued by record and movie companies, and yet piracy rates have only increased since its introduction.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img17.png"><img class="aligncenter size-medium wp-image-459" title="Slide 18: Piracy Timeline" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img17-300x225.png" alt="Slide 18: Piracy Timeline" width="300" height="225" /></a>In 1999, Napster was introduced, and file-sharing became a household phenomenon. In 2001, BitTorrent improved on the technology, and file sharers started to move entire movies around the internet in addition to smaller music files. By 2005, YouTube had made a business model out of sharing largely copyrighted music and video clips that were all ripped from protected sources.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img18.png"><img class="aligncenter size-medium wp-image-460" title="Slide 19: A Call to Action" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img18-300x225.png" alt="Slide 19: A Call to Action" width="300" height="225" /></a></p>
<p>So get in touch with your government and make your voice heard. Anti-circumvention laws like those proposed in C-32 don&#8217;t work, and just result in people getting sued by entertainment companies who are cannibalizing their own consumer base instead of modernizing their business practices. <a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img19.png"><img class="aligncenter size-medium wp-image-461" title="Slide 20: Contact Me" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/img19-300x225.png" alt="Slide 20: Contact Me" width="300" height="225" /></a>I&#8217;ve only managed to touch on the tip of the iceberg during this presentation, so please check out my various online presences or come and talk to me after the show if you&#8217;d like to discuss copyright and Bill C-32 farther.</p>
<h3>In Closing</h3>
<p>That&#8217;s about it. Be sure to check out all of the videos from this and past Ignite! Waterloo events <a href="http://www.youtube.com/user/ignitewaterloo" target="_blank">on their YouTube page</a>, and to take a look at the reviews that my colleagues <a href="http://www.tylerburton.ca/2010/11/ignite-waterloo/" target="_blank">Tyler Burton</a> and <a href="http://audiophonik.com/ignite-waterloo-4-was-awesome-pt-1/" target="_blank">Phil Downey</a> posted earlier this week.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanfritz.ca/software/digital-copyright-and-bill-c-32-my-ignite-waterloo-presentation/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Passwords and Why Yours Suck: My KWDM Presentation</title>
		<link>http://www.jonathanfritz.ca/software/passwords-and-why-yours-suck-my-kwdm-presentation</link>
		<comments>http://www.jonathanfritz.ca/software/passwords-and-why-yours-suck-my-kwdm-presentation#comments</comments>
		<pubDate>Wed, 24 Nov 2010 02:06:00 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[cryptography]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[keepass]]></category>
		<category><![CDATA[lastpass]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.jonathanfritz.ca/?p=424</guid>
		<description><![CDATA[This post has been a long time coming. These slides are from a presentation that I did at the Kitchener-Waterloo Web Design Meetup back in October. The goal of the presentation was to teach people the importance of strong passwords, how to create good passwords, and most importantly, some techniques that can be used to [...]]]></description>
			<content:encoded><![CDATA[<p>This post has been a long time coming. These slides are from a presentation that I did at the <a href="http://www.meetup.com/webdesign-472/calendar/14467142/">Kitchener-Waterloo Web Design Meetup</a> back in October. The goal of the presentation was to teach people the importance of strong passwords, how to create good passwords, and most importantly, some techniques that can be used to manage all of the passwords that you create.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/1.png"><img class="aligncenter size-medium wp-image-425" title="Slide 1" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/1-300x200.png" alt="Passwords and Why Yours Suck" width="300" height="200" /></a></p>
<p>These days, a lot of people use cloud-based services to manage their personal information and communications. These services are great because they&#8217;re available everywhere and naturally protect your data from loss and disaster.</p>
<p>Unfortunately, each service requires a username and password to keep the data that it stores safe from others.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/2.png"><img class="aligncenter size-medium wp-image-426" title="Slide 2" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/2-300x200.png" alt="A selection of the cloud-based services that many people use" width="300" height="200" /></a></p>
<p>Naturally, this is a lot of passwords to remember. Some people try to counter this problem by using short, easy to remember passwords. These often consist of names of loved ones, favourite sports, or curse words with numbers appended to the end.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/3.png"><img class="aligncenter size-medium wp-image-427" title="Slide 3" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/3-300x200.png" alt="A selection of common easy-to-remember passwords that people use" width="300" height="200" /></a></p>
<p>The problem with this approach is that it creates an easy target for people who try to break into your account by brute force.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/4.png"><img class="aligncenter size-medium wp-image-428" title="Slide 4" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/4-300x201.png" alt="Brute forcing is an attack method that tries to guess every possible password" width="300" height="201" /></a></p>
<p>The whole idea behind a <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Brute_force_attack" target="_blank">brute force attack</a> is to guess every possible password that can be created out of an alphabet of characters. As the length of your chosen password and the number of possible characters that it could be made up from increases, the number of possible passwords increases exponentially.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/5.png"><img class="aligncenter size-medium wp-image-429" title="Slide 5" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/5-300x201.png" alt="As the length of a password and the number of characters that it could be made up of increases, so does the number of possible passwords" width="300" height="201" /></a></p>
<p>Because most people make passwords out of common words, another approach that an attack can take is a <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Dictionary_attack" target="_blank">dictionary attack</a>. This is kind of like an educated brute forcing. The attacker starts guessing passwords from a dictionary of known words, names, and other significant strings. This can significantly reduce the time that it takes the attacker to guess the average password.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/6.png"><img class="aligncenter size-medium wp-image-430" title="Slide 6" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/6-300x200.png" alt="Dictionary attacks begin by guessing passwords from common words and phrases" width="300" height="200" /></a></p>
<p>The obvious defense against both of these attacks is to choose really long and complicated passwords that are made up of all kinds of different characters and don&#8217;t contain dictionary words. These will make brute force attacks infeasible and defeat dictionary attacks altogether.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/7.png"><img class="aligncenter size-medium wp-image-431" title="Slide 7" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/7-300x199.png" alt="IT Departments have been telling us to make our passwords more complicated for years now" width="300" height="199" /></a></p>
<p>Unfortunately, these passwords are extremely hard to remember. Every IT department in the world has been telling us to follow these rules for years now, and yet nobody does.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/8.png"><img class="aligncenter size-medium wp-image-432" title="Slide 8" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/8-300x201.png" alt="Realistically, the average person cannot remember a good number of suitably complicated passwords" width="300" height="201" /></a></p>
<p>Whenever IT departments insist on implementing draconian password policies, users become frustrated when trying to remember them, and some inevitably seek other ways to keep them in the forefront of their minds.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/9.png"><img class="aligncenter size-medium wp-image-433" title="Slide 9" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/9-300x201.png" alt="To compensate for complicated passwords, people often leave reminders on slips of paper around their offices" width="300" height="201" /></a></p>
<p>So what is a responsible computer user to do? Long, complicated passwords are necessary to keep your data safe, but writing them down is dangerous. Luckily, plenty of other people have had this problem before, and a few of them have come up with some solutions.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/10.png"><img class="aligncenter size-medium wp-image-434" title="Slide 10" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/10-300x199.png" alt="LastPass is a cloud-based utility that saves all of your passwords securely on their servers" width="300" height="199" /></a></p>
<p><a href="http://lastpass.com/" target="_blank">LastPass</a> is a pretty cool cloud-based application that stores all of your passwords in a securely encrypted container on the LastPass servers. The company provides plugins for all of the popular web browsers that allow you to access your passwords securely from any computer.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/11.png"><img class="aligncenter size-medium wp-image-435" title="Slide 11" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/11-300x201.png" alt="The combination of KeyPass and Dropbox is another possibility that will allow you to move your passwords between multiple=" width="300" height="201" /></a></p>
<p>Another possibility is the combination of an application called <a href="http://keepass.com/" target="_blank">KeePass</a> and a cloud service called <a href="http://keepass.com/" target="_blank">Dropbox</a>. KeePass (and its open-sourced linux-based cousin, <a href="http://www.keepassx.org/" target="_blank">KeePassX</a>) store your passwords in an encrypted container format on your computer. If you store that container file in a Dropbox folder, your passwords are safely accessible from any computer in the world. Unfortunately, there&#8217;s always a catch.</p>
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/12.png"><img class="aligncenter size-medium wp-image-436" title="Slide 12" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/11/12-300x201.png" alt="Of course, a password is only as safe as its keeper" width="300" height="201" /></a></p>
<p>A basic rule of cryptography is that a secret is only as safe as its keeper. This is similar in concept to that old adage about the weakest link in a chain.</p>
<p>Although both LastPass and KeePass solve the problem of keeping a lot of passwords safe, it&#8217;s important to remember to keep the master password safe. Ideally, it should be committed to memory and not shared with anyone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanfritz.ca/software/passwords-and-why-yours-suck-my-kwdm-presentation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Minister&#8217;s Response</title>
		<link>http://www.jonathanfritz.ca/politics/the-ministers-response</link>
		<comments>http://www.jonathanfritz.ca/politics/the-ministers-response#comments</comments>
		<pubDate>Tue, 24 Aug 2010 01:05:02 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[anti-circumvention]]></category>
		<category><![CDATA[bill c-32]]></category>
		<category><![CDATA[c-32]]></category>
		<category><![CDATA[c32]]></category>
		<category><![CDATA[Copyright]]></category>
		<category><![CDATA[DRM]]></category>
		<category><![CDATA[james moore]]></category>
		<category><![CDATA[letter]]></category>
		<category><![CDATA[response]]></category>

		<guid isPermaLink="false">http://www.jonathanfritz.ca/?p=409</guid>
		<description><![CDATA[This evening I received an email from the Honourable James Moore. At first glance, it appears to be a form letter in response to the letter that I sent to him and other federal government representatives well over two months ago. Perhaps his tubes were clogged. According to Mozilla Thunderbird, it also appears to be [...]]]></description>
			<content:encoded><![CDATA[<div lang="x-western">This evening I received an email from the Honourable James Moore. At first glance, it appears to be a form letter in response to <a href="http://www.jonathanfritz.ca/politics/a-letter-to-the-federal-government-regarding-bill-c-32" target="_blank">the letter that I sent to him and other federal government representatives well over two months ago</a>. Perhaps his tubes were clogged. According to Mozilla Thunderbird, it also appears to be a scam.</div>
<div lang="x-western">
<p><a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/08/Screenshot1.png"><img class="aligncenter size-full wp-image-412" title="This Message May be a Scam" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/08/Screenshot1.png" alt="Perhaps thunderbird is right... Bill C-32 could rightly be called a scam" width="604" height="37" /></a></p>
<p>And so without  further ado, here is the Minister&#8217;s response, as annotated by yours truly:</p>
<blockquote><p>Thank you for writing to me about copyright policy.  I appreciate you taking the time to share your views with me on this important issue.</p></blockquote>
<p>No, you don&#8217;t.</p>
<blockquote><p>My colleague, the Honourable Tony Clement, Minister of Industry, and I are pleased to inform you that our Government has introduced legislation to modernize the Copyright Act, bringing it up to date with the advances of the digital age.</p></blockquote>
<p>Yes, three months ago. If I wasn&#8217;t aware that you had done such a thing, I probably wouldn&#8217;t have written you two different letters about said legislation.</p>
<blockquote><p>This legislation will bring Canada in line with international standards and promote home grown innovation and creativity.  It is a fair, balanced and common-sense approach, respecting both the rights of creators and the interests of consumers in a modern marketplace.  We are working to secure Canada’s place in the digital economy and to promote a more prosperous and competitive country.</p></blockquote>
<p>On this note, we disagree. Perhaps you should take some time to review the aforementioned letters instead of sending me back a useless form letter response.</p>
<blockquote><p>The popularity of Web 2.0, social media and new technologies such as MP3 players and digital books have changed the way Canadians create and make use of copyrighted material.  This bill recognizes the many new ways in which teachers, students, artists, software companies, consumers, families, copyright owners and many others use technology.  It gives creators and copyright owners the tools to protect their work and grow their business models.  It also provides clearer rules that will enable all Canadians to fully participate in the digital economy, now and in the future.</p></blockquote>
<p>And with the anti-circumvention clauses that are built into the bill, it does all of this at the cost of consumer rights, and applies a Made in the USA approach to Canadian copyright law. Digital rights management schemes do not protect against wide scale piracy, and anti-circumvention laws that give them legal protection serve only to limit the ability of everyday Canadians to use their lawfully purchased media in a fair and open manner.</p>
<blockquote><p>Detailed information about the bill is available on-line at http://www.balancedcopyright.gc.ca.</p>
<p>Please accept my best wishes.</p>
<p>Sincerely,</p>
<p>The Honourable James Moore, P.C., M.P.</p></blockquote>
<p>Hopefully his best wishes are better than his best efforts to acknowledge the concerns of people who disagree with his proposed legislation.</p>
<p>It&#8217;s probably silly of me to expect anything more than a poorly written form letter in response to my concerns. In truth, I didn&#8217;t expect anything at all, and was surprised when Moore&#8217;s ridiculously overdue response hit my inbox tonight. After all, Moore isn&#8217;t even my Member of Parliament. But as far as I&#8217;m concerned, nothing at all would have been better than this thoughtlessly canned response.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanfritz.ca/politics/the-ministers-response/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>C-32 and You: My #kwdm Presentation</title>
		<link>http://www.jonathanfritz.ca/software/c-32-and-you-my-kwdm-presentation</link>
		<comments>http://www.jonathanfritz.ca/software/c-32-and-you-my-kwdm-presentation#comments</comments>
		<pubDate>Sat, 31 Jul 2010 14:54:35 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Local]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[anti-circumvention]]></category>
		<category><![CDATA[bill c-32]]></category>
		<category><![CDATA[bill c32]]></category>
		<category><![CDATA[c32]]></category>
		<category><![CDATA[Copyright]]></category>
		<category><![CDATA[digital rights management]]></category>
		<category><![CDATA[DRM]]></category>
		<category><![CDATA[kitchener web design meetup]]></category>
		<category><![CDATA[kwdm]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[technical protection measures]]></category>
		<category><![CDATA[tpm]]></category>

		<guid isPermaLink="false">http://www.jonathanfritz.ca/?p=368</guid>
		<description><![CDATA[This past Thursday, I did a presentation about the dangers of Bill C-32 for the Kitchener Web Design Meetup (KWDM). It went really well, and the audience had a lot of questions and provided some great feedback. Unfortunately, since I didn&#8217;t think to record the audio from the presentation, you&#8217;ll have to make do with [...]]]></description>
			<content:encoded><![CDATA[<p><em>This past Thursday, I did a presentation about the dangers of Bill C-32 for the Kitchener Web Design Meetup (KWDM). It went really well, and the audience had a lot of questions and provided some great feedback. Unfortunately, since I didn&#8217;t think to record the audio from the presentation, you&#8217;ll have to make do with my slides and notes. Enjoy</em>.</p>
<ol>
<li><strong>Introduction<br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img0.jpg"><img class="aligncenter size-medium wp-image-372" title="img0" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img0-300x199.jpg" alt="" width="300" height="199" /></a></strong></p>
<ul>
<li>Good 		evening, my name is Jonathan Fritz. Tonight I&#8217;m going to attempt 		the nearly impossible: I&#8217;d like to discuss copyright law, while not 		putting you to sleep</li>
</ul>
</li>
<li><strong>Not a Lawyer</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img1.jpg"><img class="aligncenter size-medium wp-image-373" title="img1" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img1-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>Copyright 		law is something that I&#8217;ve taken an interest in during my spare 		time. I&#8217;d like to make it clear from the outset that I am not a 		lawyer.</li>
</ul>
</li>
<li><strong>I am a Programmer</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img2.jpg"><img class="aligncenter size-medium wp-image-374" title="img2" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img2-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>During the 		day, I&#8217;m a programmer for a small company called Skybound Software, 		and the co-owner of another small company called inScope Software 		and Solutions</li>
<li>The only 	reason that I mention these is because I want to make it clear that 	everything that I talk about this evening is 100% my opinion, and 	does not necessarily reflect the opinions of my employers or 	business partners</li>
</ul>
</li>
<li><strong>The Crowd</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img3.jpg"><img class="aligncenter size-medium wp-image-375" title="img3" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img3-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>Now that the 		boring legal crap is out of the way, let&#8217;s jump into some more 		boring legal crap</li>
<li>Ok, so I&#8217;d 		like to see what kind of people we have in the audience tonight. 		Show of hands if you&#8217;re a:
<ul>
<li>Web 			developer</li>
<li>Web or 			print designer</li>
<li>Artist, 			photographer, or musician</li>
<li>Programmer 			or engineer</li>
</ul>
</li>
<li>You may not 		realize it, but copyright law affects each and every one of you 		every single day</li>
</ul>
</li>
<li><strong>Copyright</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img4.jpg"><img class="aligncenter size-medium wp-image-376" title="img4" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img4-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>Any time you 		commit something to record, be it a computer program, a photograph, 		a piece of music or art, it is covered in Canada by copyright.</li>
</ul>
</li>
<li><strong>What is Copyright?</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img5.jpg"><img class="aligncenter size-medium wp-image-377" title="img5" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img5-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>Copyright is 		a poorly named body of law that gives people who make stuff a 		monopoly on the distribution of that stuff for a finite period of 		time</li>
<li>This is an 		effort to ensure that they make a decent living off of their stuff, 		and thus have an incentive to make even more stuff.</li>
<li>As a 		society, we enjoy the use of the stuff that they create, and so we 		give up some of our personal rights and freedoms to ensure that the 		people that create stuff can afford to continue to do so.</li>
</ul>
</li>
<li><strong>Poorly Named</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img6.jpg"><img class="aligncenter size-medium wp-image-378" title="img6" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img6-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>I say that 		copyright is poorly named because it isn&#8217;t actually a right</li>
<li>It&#8217;s a 		privilege awarded by law, and thus by society as a whole.</li>
<li>In order for 		this to work, we have to all agree that the terms set out in 		copyright law are an appropriate balance between personal freedoms, 		and creators&#8217; ability to make a decent living.</li>
</ul>
</li>
<li><strong>Lord Macaulay</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img7.jpg"><img class="aligncenter size-medium wp-image-379" title="img7" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img7-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>During an 		1841 debate in the British house of commons, one Lord Macaulay did 		a great job outlining this dilemma:</li>
</ul>
</li>
<li><strong>Evil Quote</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img8.jpg"><img class="aligncenter size-medium wp-image-380" title="img8" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img8-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>“[Copyright] 		is a tax on readers for the purpose of giving a bounty to writers. 		The tax is an exceedingly bad one&#8230; It is good that authors should 		be remunerated; and the least exceptionable way of remunerating 		them is by a monopoly. Yet monopoly is an evil. For the sake of the 		good we must submit to the evil; but the evil ought not to last a 		day longer than is necessary for the purpose of securing the good”</li>
</ul>
</li>
<li><strong>Inspiration</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img9.jpg"><img class="aligncenter size-medium wp-image-381" title="img9" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img9-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>So here&#8217;s 		the thing: In order for the temporary monopoly to work out as 		planned, it has to end within a reasonable period of time.</li>
<li>Society has 		to get their rights back at some point, or else they aren&#8217;t getting 		a fair deal.</li>
<li>Artists&#8217; 		work is informed and influenced by the work of their 		contemporaries.</li>
<li>Without the 		ability to access, borrow from, or outright steal inspiration from 		other pieces of art, most artists wouldn&#8217;t be able to create with 		any kind of regularity.</li>
<li>Pablo 		Picasso by way of Steve Jobs: “Good artists borrow, great artists 		steal”</li>
<li>Imagine 		taking a photo haven never seen another persons&#8217; work with lighting 		and composition.</li>
<li>Writing a 		song without ever nicking a particularly nice chord or melody?</li>
<li>Artists 		don&#8217;t create in a bubble – they filter and combine all kinds of 		different influences into works of their own.</li>
</ul>
</li>
<li><strong>Ghosts<br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img10.jpg"><img class="aligncenter size-medium wp-image-382" title="img10" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img10-300x199.jpg" alt="" width="300" height="199" /></a></strong></p>
<ul>
<li>Way back in 		ancient history, the monopoly awarded by copyright only lasted 14 		years.</li>
<li>After that 		period, it was assumed that the rights&#8217; holder had made his money 		(and it was always his money), and the work moved into the creative 		commons, meaning that anybody could use it however they saw fit.</li>
<li>Today in 		Canada, copyright lasts 50 years past the death of the rights&#8217; 		holder.</li>
<li>Some 		countries have pushed that up to 70 years past death</li>
</ul>
</li>
<li><strong>Afoul of the Law</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img11.jpg"><img class="aligncenter size-medium wp-image-383" title="img11" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img11-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>This means 		that far less media ends up in the creative commons while it is 		still relevant to society, which makes it increasingly hard for 		artists to create without running afoul of the law</li>
</ul>
</li>
<li><strong>Preservation of Culture, intro 	to C-32</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img12.jpg"><img class="aligncenter size-medium wp-image-384" title="img12" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img12-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>More 		importantly, when reinforced by something called digital rights 		management, copyright laws make it very possible that our culture 		will not be preserved in the same way that past cultures were – 		but more on that later</li>
<li>Back in early June, the 		conservative government released Bill C-32, “The Copyright 		Modernization Act.”</li>
<li>It has been sponsored by the 		Honourable James Moore, Minister of Heritage and Official 		Languages, and the Honourable Tony Clement, Minister of Industry.</li>
<li>Just like 		the title says, this bill aims to modernize Canadian copyright law. 		This is a really good idea, because our current laws were haven&#8217;t 		been revised since 1997</li>
</ul>
</li>
<li><strong>1997 Websites:</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img13.jpg"><img class="aligncenter size-medium wp-image-385" title="img13" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img13-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>In 1997, the top five websites on 		the internet were:
<ul>
<li>Geocities</li>
<li>Yahoo (including services called 			yahooligans, yahoo sports, and my yahoo)</li>
<li>Starwave corporation “where 			more people click”</li>
<li>Excite, Magellan, and City.net</li>
<li>PathFinder, 			and the family of Time/Warner and CNN sites</li>
</ul>
</li>
</ul>
</li>
<li><strong>2010 Websites:</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img14.jpg"><img class="aligncenter size-medium wp-image-386" title="img14" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img14-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>In March of 2010, the to five 		websites were: (15)
<ul>
<li>Google</li>
<li>Facebook</li>
<li>Yahoo</li>
<li>YouTube</li>
<li>MSN</li>
</ul>
</li>
</ul>
</li>
<li><strong>You are a criminal</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img15.jpg"><img class="aligncenter size-medium wp-image-387" title="img15" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img15-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>As you&#8217;ve 		probably noticed, a few things have changed.</li>
<li>Old folk may 		also remember that the infamous Napster, the first file-sharing 		service, wasn&#8217;t invented until 1999.</li>
<li>And 		BitTorrent, the American entertainment industry&#8217;s nefarious 		arch-enemy wasn&#8217;t invented until 2001.</li>
<li>Similarly, 		YouTube, harbinger of all things evil, didn&#8217;t hit the tubes until 		2005.</li>
<li>Simply put, 		our existing laws don&#8217;t cover any of these massive shifts in 		technology, and many of the things that Canadians do on a daily 		basis are actually considered illegal under current laws.</li>
</ul>
</li>
<li><strong>The Good</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img16.jpg"><img class="aligncenter size-medium wp-image-388" title="img16" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img16-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>Some 		important sections of proposed law that aims to fix these problems:
<ul>
<li><em>Network Services</em> section:
<ul>
<li>a safe harbour clause for 				Internet service providers and other network operators.</li>
<li>Provides legal protection for 				hosting service operators whose customers may have uploaded 				copyrighted works to their servers</li>
</ul>
</li>
<li><em>Copyright Infringement</em> section:
<ul>
<li>sets maximum monetary awards 				for copyright owners who successfully charge an individual with 				infringement of works for personal or commercial use.</li>
<li>Given the astronomical awards 				granted by American courts in both the <em>Capitol vs. Thomas</em> (2007) and <em>RIAA vs. Tenenbaum</em> (2009) cases, this is an 				extremely important clause</li>
</ul>
</li>
<li><em>Non-commercial User-generated 			Content</em> section:
<ul>
<li>Makes it 				totally legal for you to sample copyrighted works for the 				purposes of creating a non-commercial mashup.</li>
<li>Now you can 				legally use whatever music you like as the soundtrack to your 				cute kitten and dancing baby videos.</li>
</ul>
</li>
<li><em>Reproduction 			for Private Purposes</em> section:
<ul>
<li>Allows for time and format shifting practices, thus making TiVo 				and iPods legal technologies in Canada, which sounds like 				something out of that old Rick Mercer bit, Talking to Americans.</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li><strong>The Bad<br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img17.jpg"><img class="aligncenter size-medium wp-image-389" title="img17" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img17-300x199.jpg" alt="" width="300" height="199" /></a></strong></p>
<ul>
<li><em>Technological 		Protection Measures and Rights Management Information</em> section: counteracts every positive aspect of the proposed bill</li>
<li>Bans any technology or device capable of circumventing any 		technological protection measure (TPM) or called digital rights 		management (DRM) schemes that have been placed on the digital 		content by its distributor</li>
<li>The 		bill is written in such a way that this clause takes precedence 		over every one of those really cool sounding amendments that I just 		mentioned.</li>
<li>Basically, 		should C-32 pass, you&#8217;ll get a whole bunch of rights. But if the 		distributor of some media decides to put DRM on their products, 		they don&#8217;t matter, and you become a criminal if you attempt to 		exercise any of them.</li>
<li>At 		this very moment, DVDs, BluRay discs, video games, Cable 		television, Netflix digital downloads, eBooks, computer software of 		all sorts, online television services, and an uncountable number of 		other current and future consumer media products are all protected 		by some form of DRM.</li>
<li>Under 		the proposed law, none of this digital content can be backed up, 		moved to a different device, transcoded to a different format, or 		otherwise tampered with, because to do so would require that its 		owner break the DRM that has been placed on it, thus making that 		person a criminal in the eyes of Canadian courts.</li>
<li>So 		why do manufacturers use DRM anyway? Well, they seem to have gotten 		this idea that it somehow prevents people from pirating their 		media. Unfortunately, this belief could not be further from the 		truth.</li>
</ul>
</li>
<li><strong>Passive 	Systems</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img18.jpg"><img class="aligncenter size-medium wp-image-390" title="img18" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img18-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>To 		demonstrate this problem, I&#8217;ll give you a bit of background on how 		DRM technologies generally work, demonstrate why they often fail, 		etc</li>
<li>There 		are basically three kinds of DRM</li>
<li>Passive 		Systems: The distributor of a file encrypts that file with a secret key 		that&#8217;s so big that it is theoretically impossible to guess.</li>
<li>She 		then makes a deal with the manufacturer of the device that is used 		to play back that file, and embeds the secret key into that device.</li>
<li>When 		a user attempts to play back the media file, the device is able to 		unlock it, and everything is cool. This is how DVDs work</li>
<li><strong>Why 		they Suck: </strong>These 		systems tend to be very insecure, because they&#8217;re susceptible to 		what cryptographers call a class break.</li>
<li>Because 		all copies of the media file are encrypted with one of a finite 		number of keys, if somebody figures out a way to break through one 		copy of the protected media, he can usually manage to break through 		any piece of media that is protected with the same scheme.</li>
<li>Further, 		all of those keys are stored inside of some piece of software or 		some device in your living room that you have access to. It is only 		a matter of time before one is broken into, and the scheme is 		broken.</li>
</ul>
</li>
<li><strong>Active Systems</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img19.jpg"><img class="aligncenter size-medium wp-image-391" title="img19" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img19-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>Just 		like before, the distributor of a file encrypts it with a massive 		secret key.</li>
<li>This 		time, however, she buys some servers, and makes a different deal 		with the people who distribute playback devices.</li>
<li>Now, 		when a user tries to play a file, the player connects to the server 		and asks for permission to play the file.</li>
<li>The 		server checks if the user is legitimate, and if so, gives the 		encryption key to the device. The media is then unlocked, and you 		can hear your tunes.</li>
<li>This 		is how video game DRM from services like Steam and Electronic Arts 		work.</li>
<li>Because 		these types of protection call home for permission to start 		playback, they require that the user has an always-active internet 		connection.</li>
<li>For 		those with dial up or using mobile devices, this is not always 		possible, so the scheme has to allow a certain number of plays 		without speaking to the home server.</li>
<li>By 		definition, this means that they can be attacked, because they can 		be fooled into thinking that they are always in this limbo state</li>
<li><strong>Hybrid 		Systems:</strong> As the name implies, these present some combination of the previous 		two. In general, the media is encrypted, but in order to unlock it, 		the playback device executes some program that is embedded in the 		media that performs the authorization step.</li>
<li>This 		program can usually be easily updated, so that if the scheme is 		broken, it can be fixed in the field. This is how BluRay discs are 		protected.</li>
<li>These 		are far more complex than their simple cousins, but also quite a 		bit more resilient to attack.</li>
<li>Unfortunately, 		in the past, programmers have included malicious code in these 		types of systems that do some nasty low-level stuff to the users&#8217; 		computer, potentially leaving it open for attack.</li>
<li>This 		is what happened in the Sony Rootkit case of 2005, in which Sony 		BMG released 52 CD titles that altered the way that Microsoft 		Windows functions in an attempt to block users from copying their 		contents</li>
</ul>
</li>
<li><strong>Consumer Suck</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img20.jpg"><img class="aligncenter size-medium wp-image-392" title="img20" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img20-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>From 		a consumer perspective, all DRM systems suck.</li>
<li>By 		design, they intentionally limit what users can do with their 		digital media (see Defective by Design). This means that using 		digital media that is protected by a DRM scheme is more like 		licensing it than like purchasing it</li>
<li>Additionally, 		all types of DRM can result in property loss.</li>
<li>In 		the case of passive systems, this can happen if the devices used to 		play back the media are no longer produced.</li>
<li>In 		active systems, this can happen if the servers that are used for 		authentication are shut down. This often happens when a digital 		store ceases to be profitable, or if the company that operates it 		goes out of business</li>
</ul>
</li>
<li><strong>Getting 	in the Way</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img21.jpg"><img class="aligncenter size-medium wp-image-393" title="img21" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img21-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>DRM 		systems that are designed to prevent people from pirating media 		also tend to get in the way of legitimate customers who are 		attempting to use their media in perfectly legal and acceptable 		ways</li>
</ul>
</li>
<li><strong>Smart 	Cows</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img22.jpg"><img class="aligncenter size-medium wp-image-394" title="img22" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img22-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>Perhaps 		the most compelling evidence against the legislation of DRM systems 		is that they simply do not prevent people from pirating media.</li>
<li>In 		general, if you can open a legitimately purchased file, its 		contents can be copied out to a non-protected format, which can 		then be distributed.</li>
<li>If 		you can&#8217;t said file, but happen to be a hacker or encryption 		expert, you can usually figure out how to do so in short order</li>
<li>As 		soon as the DRM scheme is broken by one person, they can distribute 		it all other interested parties by way of the internet.</li>
<li>This 		is called the Smart Cow Problem (it takes only one cow to learn how 		to open a latch, and then a method can be developed that allows 		others to follow), and is the biggest issue facing companies 		relying on DRM to protect their products.</li>
<li>Combine 		this with the fact that every DRM system that I have ever heard of 		has been broken, often within weeks of release, and that the cost 		of creating and maintaining a DRM infrastructure can easily run 		into the billions, and you can see that it isn&#8217;t really a great 		technology to rely on to protect your digital media.</li>
</ul>
</li>
<li><strong>Ineffective 	Laws</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img23.jpg"><img class="aligncenter size-medium wp-image-395" title="img23" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img23-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>If 		anti-circumvention laws were truly effective, piracy should never 		have become the problem that media companies claim that it is today</li>
<li>In 		the United States, the Digital Millenium Copyright Act (DMCA) put 		anti-circumvention laws like the ones proposed in Bill C-32 in 		place a full year before the invention of Napster and three years 		before the introduction of the BitTorrent file-sharing protocol</li>
<li>Although 		laws don&#8217;t translate directly into persecutions, they give 		authorities the tools to stop piracy.</li>
<li>In 		the United States, the MPAA and RIAA have used these tools to bring 		lawsuits against more than 20,000 of their own customers – and 		yet, piracy is still a major problem for their member 		organizations.</li>
</ul>
</li>
<li><strong>Locks<br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img24.jpg"><img class="aligncenter size-medium wp-image-396" title="img24" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img24-300x199.jpg" alt="" width="300" height="199" /></a></strong></p>
<ul>
<li>DRM 		schemes are no more than the digital counterparts of real-world 		mechanical locks. There has never been, and will never be, a lock 		that cannot be broken by any determined party with time, knowledge, 		and resources on their side.</li>
<li>Because 		of these reasons, it is my opinion that the anti-circumvention 		clause in Bill C-32 makes its current form unacceptable to the 		Canadian people.</li>
</ul>
</li>
<li><strong>What 	We Can Do</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img25.jpg"><img class="aligncenter size-medium wp-image-397" title="img25" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img25-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>I&#8217;ve 		been trying to get the word out about this issue in my own way. 		Obviously, I&#8217;m here speaking to you tonight. I&#8217;ve also tweeted 		about the issue, written blog posts on my website and others, 		written letters to various members of parliament, and spoken 		personally with Peter Braid, my member of parliament up in Waterloo</li>
</ul>
</li>
<li><strong>Contact 	Me</strong><br />
<a href="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img26.jpg"><img class="aligncenter size-medium wp-image-398" title="img26" src="http://www.jonathanfritz.ca/wp-content/uploads/2010/07/img26-300x199.jpg" alt="" width="300" height="199" /></a></p>
<ul>
<li>If 		you&#8217;re interested in getting involved, in telling me that I&#8217;m 		wrong, or just in talking more about this issue, please don&#8217;t 		hesitate to contact me</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanfritz.ca/software/c-32-and-you-my-kwdm-presentation/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MP James Moore: Please Drop the Rhetoric</title>
		<link>http://www.jonathanfritz.ca/politics/mp-james-moore-please-drop-the-rhetoric</link>
		<comments>http://www.jonathanfritz.ca/politics/mp-james-moore-please-drop-the-rhetoric#comments</comments>
		<pubDate>Wed, 23 Jun 2010 17:17:00 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[bill c-32]]></category>
		<category><![CDATA[bill c32]]></category>
		<category><![CDATA[c-32]]></category>
		<category><![CDATA[c32]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[Copyright]]></category>
		<category><![CDATA[copyright reform]]></category>
		<category><![CDATA[james moore]]></category>
		<category><![CDATA[mp]]></category>
		<category><![CDATA[reform]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.jonathanfritz.ca/?p=364</guid>
		<description><![CDATA[We tried to be civil. Unfortunately, Conservative Heritage Minister James Moore has decided to take the battle over Bill C-32 to a new low: In the video, Moore frames all opposed to his precious copyright reform bill as fear mongers and evil doers who are against any kind of copyright reform. This kind of false [...]]]></description>
			<content:encoded><![CDATA[<p>We tried to be civil. Unfortunately, Conservative Heritage Minister James Moore has decided to take the battle over Bill C-32 to a new low:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/03IhHeZwJuM&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/03IhHeZwJuM&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>In the video, Moore frames all opposed to his precious copyright reform bill as fear mongers and evil doers who are against any kind of copyright reform. This kind of false rhetorical framing will not result in a copyright solution that benefits all affected parties. Instead, it just muddies the waters and makes it tough to have a real discussion about the important issues that are at hand.</p>
<p>As many have probably guessed from the contents of my website and twitter stream, I am against the current iteration of Bill C-32. That said, I believe strongly that copyright reform is necessary in this country. Our current laws were written before the internet really took off, and need to be modernized in order to effectively deal with new technologies and situations. Most of the proposed bill is quality content, but the Section 41, <a href="http://www2.parl.gc.ca/HousePublications/Publication.aspx?DocId=4580265&amp;Mode=1&amp;Language=F&amp;File=72#16" target="_blank"><em>Technological Protection Measures and Rights Management Information</em></a>, is not.</p>
<p>Mr. Moore needs to step down from his high horse, cut out the rhetorical bullshit, and join in on the discussion that we are having about his proposed bill. Plugging your ears and screaming &#8216;na-na-na-na-boo-boo&#8217; just doesn&#8217;t cut it when you&#8217;re an elected representative of the people.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanfritz.ca/politics/mp-james-moore-please-drop-the-rhetoric/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

