<?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>refract.me</title>
	<atom:link href="http://refract.me/feed/" rel="self" type="application/rss+xml" />
	<link>http://refract.me</link>
	<description></description>
	<lastBuildDate>Mon, 01 Mar 2010 20:16:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fragmented OS</title>
		<link>http://refract.me/2010/03/01/fragmented-os/</link>
		<comments>http://refract.me/2010/03/01/fragmented-os/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 20:16:34 +0000</pubDate>
		<dc:creator>Alison</dc:creator>
				<category><![CDATA[CS]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Industry]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://refract.me/?p=391</guid>
		<description><![CDATA[So, the Technical Account Manager for Android at Google came for the department&#8217;s seminar session. She&#8217;s basically in charge of Google&#8217;s relationship with manufacturers that use the Android OS. First off, Google is not the soul creator of Android. It&#8217;s actually a creation of the Open Handset Alliance, a group of handset manufacturers, software developers, ]]></description>
			<content:encoded><![CDATA[<p>So, the Technical Account Manager for <a title="Android OS" href="http://www.android.com/">Android</a> at <a title="Google Corporate Information" href="http://www.google.com/intl/en/corporate/">Google</a> came for the department&#8217;s seminar session. She&#8217;s basically in charge of Google&#8217;s relationship with manufacturers that use the Android OS. First off, Google is not the soul creator of Android. It&#8217;s actually a creation of the <a href="http://www.openhandsetalliance.com/">Open Handset Alliance</a>, a group of handset manufacturers, software developers, cell phone service companies, <abbr title="et cetera">etc</abbr>.</p>
<p>The Android <acronym title="operating system">OS</acronym>, despite being less than a year and a half old, has fragmented to an appalling degree. Different manufacturers include varied screen sizes, sensors and actuators. So, application developers cannot predict what hardware is available. And consumers cannot easily predict if an application they download will function correctly.</p>
<p>The operating system itself has even become fragmented. There are five different versions of Android available across different hardware. Developers now have to consider these different versions, not unlike working with different browsers. Developing for the latest version (as Google does), effectively tells anyone with an older version (<a href="http://developer.android.com/resources/dashboard/platform-versions.html">79.6% of the Android market at the moment</a>) that they&#8217;re out of luck.</p>
<p>I will note that the speaker suggested using version 1.5 or 1.6 rather than 2.1 in developing. On the one hand, that does solve a short term problem of diverse systems. On the other, it makes an unsafe assumption of developers: that we&#8217;d <em>want</em> to use an older specification. For most programming languages, it is better practice and makes a person more employable to use the latest standard whenever possible.</p>
<p>And, there are some genuine reasons for this fragmentation. With more varied hardware, it becomes increasingly difficult to include the appropriate drivers (needing to write one for every new feature for every individual piece of hardware). Some devices do not contain the memory or processing to be upgraded, which effectively keeps them trapped with their original version.</p>
<p>It&#8217;s this fragmentation that will eventually lead to different flavors of the Android OS, more or less defeating the purpose of a unified operating system. Manufacturers may want to consider having an easy Lego-like means of upgrading hardware, but that still does not account for building the drivers (and assumes that manufacturers would even want open hardware).</p>
<p>Ah well. It was a nice idea.</p>
]]></content:encoded>
			<wfw:commentRss>http://refract.me/2010/03/01/fragmented-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Structures</title>
		<link>http://refract.me/2010/02/26/data-structures/</link>
		<comments>http://refract.me/2010/02/26/data-structures/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 21:48:54 +0000</pubDate>
		<dc:creator>Alison</dc:creator>
				<category><![CDATA[CS]]></category>
		<category><![CDATA[Teaching assistant]]></category>
		<category><![CDATA[data structures]]></category>
		<category><![CDATA[grading]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[teaching styles]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://refract.me/?p=381</guid>
		<description><![CDATA[I&#8217;m grading for the data structures course this semester. The prof has never taught the course and is reusing assignments from a previous professor&#8217;s version of the coursework.
I spent Monday sick and grading. (I did not receive the assignments to grade until after the department grade-by due date and had to rush.)
Grading is a very disheartening. The ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m grading for the data structures course this semester. The prof has never taught the course and is reusing assignments from a previous professor&#8217;s version of the coursework.</p>
<p>I spent Monday sick and grading. (I did not receive the assignments to grade until after the department grade-by due date and had to rush.)</p>
<p>Grading is a very disheartening. The purpose of the assignment was to demonstrate using a queue. Prof said they could use more advanced data structures. The students did not comprehend they were to still follow the queue requirements (enqueue, dequeue, limited access, etc.).</p>
<p>Out of 70 students only 1 included a queue, reused from recitation. About 20 had included Java&#8217;s queue (many of which preceded to use a secondary data structure to do the actual work). The rest used another data structure altogether to reach the same effect: ArrayLists to LinkedLists to HashMaps to trees.</p>
<p>For people that are not familiar with a queue, this is among one of the simplest data structures to implement. It implements a First In, First Out (FIFO) means of accessing data. One can only access the first (or &#8220;top&#8221;) Object in the queue; all other contents are inaccessible.</p>
<p>… I don&#8217;t understand the drive of these students to use more complex data structures (and code design) than is necessary. A queue uses notably less memory and has a faster access time these other data structures.</p>
<p>I read comments that a hash table is more efficient than a queue. Queues have constant time adds (enqueues) and removals (dequeues). A hash table has O(1 + k/n), where k is the number of keys and n is the number of elements; this is between linear and logarithmic time scales (meaning the amount of time to perform an add or removal will increase with an increase in the size of data structure).</p>
<p>This scares me. There will be (if there aren&#8217;t already) computer scientists and programmers making inefficient code because they genuinely believe their way is better.</p>
<p>… I talked to the prof in charge (who has been out of town this week) about my issues. My actual boss, the Director of Mentoring and Retention, had spoken to him previously about this. (I was actually third to complain about it to her.) And she was not getting through to him; she was even considering going to the department chair.</p>
<p>After I told the prof what had transpired, the light bulb finally went on for him. Students will not prove they understand concepts unless they are forced to. Getting the right answer is more important than learning, I guess.</p>
]]></content:encoded>
			<wfw:commentRss>http://refract.me/2010/02/26/data-structures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brand Me</title>
		<link>http://refract.me/2010/02/19/brand-me/</link>
		<comments>http://refract.me/2010/02/19/brand-me/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 21:19:29 +0000</pubDate>
		<dc:creator>Alison</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Industry]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[media]]></category>

		<guid isPermaLink="false">http://refract.me/?p=372</guid>
		<description><![CDATA[My first years at university, I was a journalism advertising major. So, the inevitable question is how does one go from that to computer science?
As a journalism major, it became quickly obvious that journalism (at least in the United States) has fallen quite far on the integrity scale. Today, it has gotten even worse. While ]]></description>
			<content:encoded><![CDATA[<p>My first years at university, I was a journalism advertising major. So, the inevitable question is how does one go from that to computer science?</p>
<p>As a journalism major, it became quickly obvious that journalism (at least in the United States) has fallen quite far on the integrity scale. Today, it has gotten even worse. While <a href="http://www.thedailyshow.com/"><cite>The Daily Show</cite></a>, a <em>comedy</em> program, employs a full time fact checker, news organizations will employ one perhaps part time. Most mass media is owned by one of five megacorporations. Megacorporations that have other assets to promote and a profit-oriented view.</p>
<p>So, I decided if I were to be evil, I just as well be honest about it. So, I switched to advertising. I really enjoyed the topic, particularly the discussions of intersections and media interactions. I love being creative and creating stories, which is the foundation of the creative area of advertising (as opposed to branding). My profs were great.</p>
<p>But, my peers were a different story. I really did not have any thing in common with them. Even with advertising, I don&#8217;t want to just watch the ads. Advertising needs to <em>earn</em> my attention. And most did not seem to look past the surface while creating; to sell something you need to get in the mindset of the market.</p>
<p>At this point, I stepped back and considered what I wanted and what had drawn me to advertising. It was telling stories. It was swapping my viewpoint with that of someone completely different; learning about socio-economic and cultural aspects of others. And there is something appealing about convincing someone that you have something that will <em>genuinely </em>make their life better.</p>
<p>I decided I wanted to make the things that would be worthwhile. These things that advertising could be honest. And technology is where the world is innovating. So, engineering or computer science? Computer science just felt more right to me.</p>
<p>The world is becoming ambient advertising. Even journalism, traditionally viewed as objective, has an angle; what new pandemic, book, sports team am I being sold now? Buses, sidewalks, television, movies, textbooks… all are subtly trying to sell me something.</p>
<p>Let&#8217;s say it&#8217;s a free, open source tool. Alternative tools (which may have equal features) won&#8217;t be mentioned. And rarely, they&#8217;ll give me a reason why I need X feature. No one is even being paid in these cases.</p>
<p>Word of mouth is the most effective and cheapest advertising medium available. It&#8217;s people that like your product or service to talk about it to others that trust this person&#8217;s judgement.</p>
<p>People even advertise themselves: public versus private personas. And there may be more than one. What language do you use with children? Coworkers? Friends? Family? Doubt it&#8217;s the same across all of them. (I&#8217;d certainly get in trouble if my thoughts always got to my mouth.)</p>
<p>Then, there&#8217;s the question of labels that are used. Despite building little embedded and alternative interface systems, I&#8217;m not about to call myself a &#8220;maker,&#8221; &#8220;hobbyist,&#8221; or &#8220;engineer.&#8221; These terms conjure images that I do not associate with even if they could be correct.</p>
<p>… So, if the whole world is one big advertisement, how do you brand a person. First, we need to consider what branding is. No, not the kind involving a hot iron. Branding is an idea that is painted onto a commodity. Owning a Mac does not make a person creative. A sports car does not guarantee a fast (possibly reckless) driver. Having lung cancer doesn&#8217;t mean the person is a smoker and deserved it. All computers, cars, and cancers are more or less the same. Yet, we associate these things with social messages.</p>
<p>So how do people brand? Well, I&#8217;ve been building the brand that is Alison since I came into existence. It&#8217;s not that I am creating one from scratch: I am just continuing my branding. (Think of Disney. When was that not about family entertainment?)</p>
<p>While it is possible to rebrand a person, that&#8217;s increasingly difficult. A doctor isn&#8217;t going to become a shoe salesman easily. So, think on what you have and how to sell that. Let&#8217;s try dissecting me:</p>
<ul>
<li>Person (I prefer human-first labeling)
<ul>
<li>Humor: Dry, sarcastic, and dark with occasional bad puns</li>
<li>Morals: Emphasizes integrity and being honest with oneself about immoral behavior</li>
<li>Animal lover: has pets and buys humane animal products</li>
<li>Creative: paints, writes, and creates projects</li>
</ul>
</li>
<li>Computer scientist
<ul>
<li>Mixed advanced courses: diverse CS interests</li>
<li>Diversity work: wants equal opportunities for everyone</li>
<li>Tutor: knows material to be able to teach</li>
</ul>
</li>
</ul>
<p>That&#8217;s a very basic one. I could go into being female, a person with a disability (with its subgroups), middle class, European-American, older child, being raised in diverse locations, enjoying Asian foods, being dairy-free etc. What of me is worth selling? Well, as with selling anything, it depends on who I&#8217;m selling to.</p>
]]></content:encoded>
			<wfw:commentRss>http://refract.me/2010/02/19/brand-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Missing Something</title>
		<link>http://refract.me/2010/02/19/missing-something/</link>
		<comments>http://refract.me/2010/02/19/missing-something/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 19:09:08 +0000</pubDate>
		<dc:creator>Alison</dc:creator>
				<category><![CDATA[Rant]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[classism]]></category>
		<category><![CDATA[Congress]]></category>
		<category><![CDATA[health care]]></category>

		<guid isPermaLink="false">http://refract.me/?p=373</guid>
		<description><![CDATA[Upon graduation, I will become medically uninsured. And that scares the shit out of me. My medical record more or less indicates that the inside of my head is a mess of pain and disorganization.
What if a new insurance will not cover my preventative medications? Do I pay out of pocket or do I succumb to constant ]]></description>
			<content:encoded><![CDATA[<p>Upon graduation, I will become medically uninsured. And that scares the shit out of me. My medical record more or less indicates that the inside of my head is a mess of pain and disorganization.</p>
<p>What if a new insurance will not cover my preventative medications? Do I pay out of pocket or do I succumb to constant pain? What if I develop a new condition? Does that count as &#8220;preexisting&#8221; and not covered?</p>
<p>Last election, it seemed that the <acronym title="United States">US</acronym> had voted for <span>health care</span> reform. But then the cries of &#8220;it&#8217;s socialism&#8221; came.</p>
<p>This entire situation pisses me off. There are so many things wrong with it.</p>
<p>First off, medical coverage in this country is <span><span>classist</span></span>. Not everyone can afford adequate <span>health care</span>. And with <span><span>classism</span></span>, comes our dear friends racism, sexism, and <span><span>ableism</span></span>; certain people are more likely to be poor.</p>
<p>Second, the Congress people that vote against coverage get top-notch taxpayer provided <span>health care</span>. I don&#8217;t know why no one seems to think this is relevant. The people that make the decisions for everyone else already have single-payer <span>health care</span>. Can this be revoked? People voting it down and proclaiming its evil must not want it for themselves. Right? <em>Right?</em></p>
<p>I need a third party to be viable. Mostly because the Democrats do not fight for their convictions (or at least the ones they claimed to have). Alternatively, I could try running for a government position rather than lying down and accepting this bullshit.</p>
<p>Third, why does everyone pick on socialism? It&#8217;s socialist to have:</p>
<ul>
<li>Public access and maintenance of roads.</li>
<li>A postal service.</li>
<li>Public education.</li>
<li>Consumer protection regulations on food, medications, etc.</li>
</ul>
<p>I&#8217;m personally a fan of all of these services and more. (Who wants rat burgers?) Socialism accepts that people do not start at equal starting points, but works to allow equal opportunities for everyone.</p>
]]></content:encoded>
			<wfw:commentRss>http://refract.me/2010/02/19/missing-something/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JUnit</title>
		<link>http://refract.me/2010/02/03/junit/</link>
		<comments>http://refract.me/2010/02/03/junit/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 04:13:47 +0000</pubDate>
		<dc:creator>Alison</dc:creator>
				<category><![CDATA[CS]]></category>
		<category><![CDATA[Class]]></category>
		<category><![CDATA[JUnit]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://refract.me/?p=365</guid>
		<description><![CDATA[JUnit is a unit testing framework developed for Java programs. It&#8217;s not my favorite thing in the world. For starters, it only tests public methods. Which is a bit of a problem if from a development standpoint; many internal &#8220;heavy lifting&#8221; methods are not needed by outside classes and should be private. In addition, I ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.junit.org/">JUnit</a> is a unit testing framework developed for Java programs. It&#8217;s not my favorite thing in the world. For starters, it only tests public methods. Which is a bit of a problem if from a development standpoint; many internal &#8220;heavy lifting&#8221; methods are not needed by outside classes and should be private. In addition, I cannot use <a href="http://eclipse.org/">Eclipse</a>, my <acronym title="integrated development environment">IDE</acronym>, to debug as I do with other code.</p>
<p>For my software engineering course, I am creating a very simple Roman to Arabic numeral converter. (If anyone knows what the unicode character for Roman numeral 5000, a V with a line over it, I would appreciate it for accuracy.) It isn&#8217;t the converter program that is important. The purpose is to demonstrate <a href="http://en.wikipedia.org/wiki/Black_box_testing">black box</a> testing methodologies: testing without knowledge of the internals of a program.</p>
<p>I developed a test plan and wrote the test cases in JUnit, as instructed, before proceeding on to writing the actual converter. I then ran my tests. A couple failed and a hand full had an error. I rewrote the code; the class is small enough to justify it, rather than worry about where my sometimes failing  bug was.</p>
<p>Yet, I still had the same problems. So, I copied the short bits of code into a main() function to use the debugger. The debugger revealed no faults: my system produced the correct output. JUnit had produced a false negative. I didn&#8217;t know it could even do that. It did not occur across similar tests with identical assert statements, so I&#8217;m not sure what it could be.</p>
]]></content:encoded>
			<wfw:commentRss>http://refract.me/2010/02/03/junit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intellectual Property IV: Public Domain</title>
		<link>http://refract.me/2010/01/26/intellectual-property-iv-public-domain/</link>
		<comments>http://refract.me/2010/01/26/intellectual-property-iv-public-domain/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 02:17:43 +0000</pubDate>
		<dc:creator>Alison</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[intellectual property]]></category>
		<category><![CDATA[media]]></category>

		<guid isPermaLink="false">http://refract.me/?p=341</guid>
		<description><![CDATA[Note: This is from my original blog, written December 2008. This is US-centric. I&#8217;ve decided to revive some of them.
What do Beethoven&#8217;s &#8220;Piano Sonata No. 14&#8243; (also known as the &#8220;Moonlight Sonata&#8221;), Frank Capra&#8217;s It&#8217;s a Wonderful Life, and photographs from the Hubble Space Telescope have in common? In case the title wasn&#8217;t a giant ]]></description>
			<content:encoded><![CDATA[<p><em>Note: This is from my original blog, written December 2008. This is <acronym title="United States">US</acronym>-centric. I&#8217;ve decided to revive some of them.</em></p>
<p>What do Beethoven&#8217;s &#8220;Piano Sonata No. 14&#8243; (also known as the &#8220;Moonlight Sonata&#8221;), Frank Capra&#8217;s <cite>It&#8217;s a Wonderful Life</cite>, and photographs from the Hubble Space Telescope have in common? In case the title wasn&#8217;t a giant clue, these are all works in the public domain.</p>
<p>Property in the <strong>public domain </strong>belong to, well, the public. Anyone can use content in the public domain and could create new protected materials from them. Copyrights, patents, and trademarks, once the protection ends, enter the public domain. In addition, works by the United States government (and several other governments) automatically enter the public domain.</p>
<p>Works created based on public domain content can have their own shiny new intellectual property protections (same as if the work were made from scratch). For example, modern productions of <cite>Hamlet</cite> are protected under copyright laws despite the play being in the public domain.</p>
<p>And, seeing as the protections are already covered, here&#8217;s a list of places to get public domain content:</p>
<ul>
<li><a href="http://librivox.org/">LibriVox</a> for audio recordings of books.</li>
<li><a href="http://openclipart.org">Open Clip Art</a> for clipart.</li>
<li><a href="http://www.gutenberg.org/wiki/Main_Page">Project Gutenberg</a> for text of books.</li>
</ul>
<p><em>(Also see <a href="http://en.wikipedia.org/wiki/Wikipedia:Public_domain_resources">Wikipedia&#8217;s list of public domain resources</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://refract.me/2010/01/26/intellectual-property-iv-public-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intellectual Property III: Patents</title>
		<link>http://refract.me/2010/01/26/intellectual-property-iii-patents/</link>
		<comments>http://refract.me/2010/01/26/intellectual-property-iii-patents/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 02:15:22 +0000</pubDate>
		<dc:creator>Alison</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[intellectual property]]></category>

		<guid isPermaLink="false">http://refract.me/?p=339</guid>
		<description><![CDATA[Note: This is from my original blog, written December 2008. This is US-centric. I&#8217;ve decided to revive some of them.
And now to part 3. This is much shorter because I really don&#8217;t care much for patent laws.
Patents are mostly to protect inventions. Patented inventions are protected against other people from making, using, or selling them. ]]></description>
			<content:encoded><![CDATA[<p><em>Note: This is from my original blog, written December 2008. This is <acronym title="United States">US</acronym>-centric. I&#8217;ve decided to revive some of them.</em></p>
<p>And now to part 3. This is much shorter because I really don&#8217;t care much for patent laws.</p>
<p><a href="http://www.uspto.gov/"><strong>Patents</strong></a> are mostly to protect inventions. Patented inventions are protected against other people from making, using, or selling them. Utility patents extend about 20 years, while design patents only last 14 years. Utility patents also require maintenance fees for the 3½, 7½ and 11½ years into the granted period; the patent can be removed then. Patents can be extended, but this is much fuzzier than trademarks: the U.S. patent office chooses if and for how long the extension should be for. Like trademarks, patents must be filed for each country.</p>
<p>Patents have much more criticism than copyrights and trademarks<em></em>. These include:</p>
<ol>
<li>Prevention of new inventions: Pharmaceutical companies notoriously patent chemicals and do no further research with them; this prevents the chemicals to be used for other&#8217;s research.<em> </em> <em>(See &#8220;<a href="http://en.wikipedia.org/wiki/Patent_troll">Patent trolling</a>&#8220;)</em></li>
<li>Complaints against simultaneous inventions: It&#8217;s perfectly possible for two people, with no connections, to invent the same thing. That does not matter for patent law; whoever filed first (rather than finished inventing first) keeps the patent.</li>
</ol>
<p>Some interesting aspects of patents, is that they can cover things not covered by copyright, like fashion designs and recipes. <a href="http://en.wikipedia.org/wiki/Software_patent_debate">It&#8217;s still under debate whether software should be patented in addition to copyrighted.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://refract.me/2010/01/26/intellectual-property-iii-patents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intellectual Property II: Trademarks</title>
		<link>http://refract.me/2010/01/26/intellectual-property-ii-trademarks/</link>
		<comments>http://refract.me/2010/01/26/intellectual-property-ii-trademarks/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 02:12:14 +0000</pubDate>
		<dc:creator>Alison</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[intellectual property]]></category>
		<category><![CDATA[media]]></category>

		<guid isPermaLink="false">http://refract.me/?p=336</guid>
		<description><![CDATA[Note: This is from my original blog, written December 2008. This is US-centric. I&#8217;ve decided to revive some of them.
Next up, something I got way to familiar with as an ad major: trademarks.
Trademarks are the little things that discern one service or product from another, like logos or slogans. (Branding is built around these things. ]]></description>
			<content:encoded><![CDATA[<p><em>Note: This is from my original blog, written December 2008. This is <acronym title="United States">US</acronym>-centric. I&#8217;ve decided to revive some of them.</em></p>
<p>Next up, something I got <em>way</em> to familiar with as an ad major: trademarks.</p>
<p><a href="http://www.uspto.gov/"><strong>Trademarks</strong></a> are the little things that discern one service or product from another, like logos or slogans. (Branding is built around these things. But, that&#8217;s a topic for another time.)</p>
<p>In the U. S., trademarks <em>must</em> be used in commerce before they can be filed. That said sticking a small &#8220;TM&#8221; (trademark) or &#8220;SM&#8221; (service mark) next to or on a trademark can be used until it&#8217;s registered. Once registered, the trademark will be active for 10 years and can be renewed for 10 years (and then renewed again). Unlike copyright laws, there are not international trademark protections; a trademark will need to be registered for every country it will be in effect for.</p>
<p>When it&#8217;s being registered, a trademark can either be granted to a person or a business/organization. In most cases, it&#8217;s wiser to keep it with the person and just license it for a set period. It makes sure that if the company is taken over, closes, etc. that the creator actually gets to keep their creations.</p>
<p>So, what&#8217;s so great about them? Sounds like copyrights would be better. First, many trademarks can&#8217;t be copyrighted. Words, phrases, and colors cannot be copyrighted. What&#8217;s special about &#8220;Puma&#8221; or &#8220;Good to the Last Drop&#8221; or the pink color used for Owens Corning&#8217;s fiberglass insulation?</p>
<p>Even better, knockoffs are also prevented. While there are a variety of mice in overalls, Disney will get involved if there&#8217;s something akin to Mickey Mouse, particularly in animation.</p>
]]></content:encoded>
			<wfw:commentRss>http://refract.me/2010/01/26/intellectual-property-ii-trademarks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intellectual Property I: Copyright</title>
		<link>http://refract.me/2010/01/26/intellectual-property-i-copyright/</link>
		<comments>http://refract.me/2010/01/26/intellectual-property-i-copyright/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 02:09:03 +0000</pubDate>
		<dc:creator>Alison</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[intellectual property]]></category>

		<guid isPermaLink="false">http://refract.me/?p=334</guid>
		<description><![CDATA[Note: This is from my original blog, written December 2008. This is US-centric. I&#8217;ve decided to revive some of them.
Alright, I&#8217;m a little pissy about intellectual property. Digital content is ridiculously easy to share. For people growing up with digital content, there&#8217;s lots of temptation to use readily available materials to be creative (animated music ]]></description>
			<content:encoded><![CDATA[<p><em>Note: This is from my original blog, written December 2008. This is <acronym title="United States">US</acronym>-centric. I&#8217;ve decided to revive some of them.</em></p>
<p>Alright, I&#8217;m a little pissy about intellectual property. Digital content is ridiculously easy to share. For people growing up with digital content, there&#8217;s lots of temptation to use readily available materials to be creative (animated music videos come to mind). Uh, yeah. That&#8217;s illegal.</p>
<p>So, I&#8217;m going to do a nice series on the topic. I expect something in the format of:</p>
<ol>
<li>Copyright: protections for creative endeavors.</li>
<li>Trademarks: protecting identifiers (slogans, logos, and colors).</li>
<li>Patents: protects inventions and discoveries.</li>
<li>Fair use: staying out of trouble</li>
<li>Alternatives: public domain and creative commons.</li>
</ol>
<p><a href="http://www.copyright.gov/"><strong>Copyright</strong></a> protects artistic work including literary, dramatic/choreographed, musical, pictorial/graphic/sculptural, film/audiovisual, sound recordings, and architectural. It should be stated that copyright does not protect ideas, slogans, non-tangible works (like not recording a dance routine), and works that solely use public content (units of measurement, for example).</p>
<p>In the U.S., copyright is granted to every applicable thing created, but the copyright will need to be registered for legal considerations. Copyright extends 90 years from creation or 120 years from publication (whichever&#8217;s shorter). In terms of the owner of the copyright, that&#8217;s usually the creator(s). If you were to buy a painting, the artist probably did not also sell the copyrights to it.</p>
<p>So, what does a copyright protect? These are the <em>exclusive</em> rights that are granted to the copyright holder:</p>
<ul>
<li>To <em>reproduce</em> the work in copies or phonorecords.</li>
<li>To prepare <em>derivative works</em> based upon the work.</li>
<li>To <em>distribute</em> copies or phonorecords of the work to the public by sale or other transfer of ownership, or by rental, lease, or lending.</li>
<li>To <em>publicly perform</em> the work, in the case of literary, musical, dramatic, and choreographic works, pantomimes, and motion pictures and other audiovisual works.</li>
<li>To <em>publicly display</em> the work, in the case of literary, musical, dramatic, and choreographic works, pantomimes, and pictorial, graphic, or sculptural works, including the individual images of a motion picture or other audiovisual work.</li>
</ul>
<p>Yep. You cannot legally copy and distribute works (no P2P downloads), create works based on a work (like, oh, fanfiction), or have it readily available to the public (damn, no projecting<em> WALL•E</em> onto buildings). These exclusive rights are <strong>not</strong> dependent on who makes money, so that &#8220;no money = okay&#8221; excuse can get someone into trouble.</p>
<p>Alright then, how can there be so much blatant use of copyrighted materials? One option is that someone wrote the copyright holder and was granted permission (more effective for a lone musician than RCA).</p>
<p>But, in addition to the rights there&#8217;s also a list of limitations in copyright. These include: fair use, reproduction by archives and libraries, and creation of an accessible copy for a person with a disability that would not be able to access the material.</p>
]]></content:encoded>
			<wfw:commentRss>http://refract.me/2010/01/26/intellectual-property-i-copyright/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring Work</title>
		<link>http://refract.me/2010/01/26/spring-work/</link>
		<comments>http://refract.me/2010/01/26/spring-work/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 20:13:19 +0000</pubDate>
		<dc:creator>Alison</dc:creator>
				<category><![CDATA[Class]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[classes]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://refract.me/?p=331</guid>
		<description><![CDATA[So, this semester I&#8217;m going to have quite a workload. All my courses have a high reading amount. Two require homework and/or a programming assignment each week.
In addition, I will be grading the first programming course, tutoring a foreign visually impaired student, and doing side research for the Director of Mentoring &#38; Retention. I&#8217;m not ]]></description>
			<content:encoded><![CDATA[<p>So, this semester I&#8217;m going to have quite a workload. All my <a href="http://refract.me/2010/01/21/compilers-networks-and-software-engineering/">courses</a> have a high reading amount. Two require homework and/or a programming assignment each week.</p>
<p>In addition, I will be grading the first programming course, tutoring a foreign visually impaired student, and doing side research for the Director of Mentoring &amp; Retention. I&#8217;m not even sure my workstudy is for this semester, but I&#8217;m guessing the Director wants to spend every dime (thereby making sure I get the full employment pay).</p>
<p>In most semesters, I have done side projects which dabble into my interest. Yet, I&#8217;m not sure I will have the time this time. So, I have decided that I will continue watching how this semester goes and then decide whether I have the time.</p>
<p>If it does work out, I think I would like to do some cell phone programming (probably <a href="http://www.android.com/">Android</a>, but maybe the <a href="http://developer.apple.com/iphone/">iPhone</a>&#8217;s Objective C). I don&#8217;t know what I would want to program though. I would like to involve hardware, like the <acronym title="global positioning satellite">GPS</acronym> or accelerometer. I think the best tools are tangible or ubiquitous.</p>
]]></content:encoded>
			<wfw:commentRss>http://refract.me/2010/01/26/spring-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
